/* ----------------------------------------------------------------header*/
header {
  position: relative;
  text-align: left;
}
#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  padding: 0 15px;
  background: url("../img/common_img/bg_corner_green.png") right top no-repeat;
  background-size: auto 100%;
  z-index: 999;
}
h1 {
  height: 20px;
  padding-top: 3px;
  line-height: 1.1;
  text-align: left;
  font-size: 9px;
  color: #fff;
}
.header_logo {
  display: inline-block;
  padding-top: 4px;
}
.header_logo img {
  width: auto;
  height: 32px;
}
.header_contact {
  position: fixed;
  align-items: center;
  top: 20px;
  right: 60px;
  display: flex;
  z-index: 999999;
}
.header_contact .tel, .header_contact .mail {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: rgba(32, 62, 115, 0.9);
}
.header_contact .tel {
  margin-right: 5px;
}
.header_contact .tel p, .header_contact .mail span {
  display: none;
}
.header_contact .tel img, .header_contact .mail img {
  width: auto;
  height: auto;
  max-width: 20px;
  max-height: 20px;
}
@media print, screen and (min-width:768px) {
  h1 {
    height: 30px;
    padding-top: 5px;
    text-align: left;
  }
  #header {
    padding: 0 50px;
  }
  .header_logo {
    padding-top: 0;
    transition: all 0.5s;
  }
  .header_logo img {
    width: auto;
    height: 50px;
  }
  .header_contact {
    top: 38px;
    right: 50px;
    height: 34px;
    transition: all 0.5s;
  }
  .header_contact .tel, .header_contact .mail {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    background: none;
  }
  .header_contact a {
    line-height: 1.1;
    text-decoration: none;
    color: #fff;
  }
  .header_contact .tel {
    margin-right: 12px;
    transition: all 0.5s;
  }
  .header_contact .tel p {
    display: block;
    font-size: 25px;
    color: #fff;
  }
  .header_contact .tel p span {
    display: inline-block;
    margin-right: 7px;
    font-size: 19px;
  }
  .header_contact .tel img {
    display: none;
  }
  .header_contact .mail {
    width: 140px;
    height: 34px;
    line-height: 1.0;
    font-family: "NotoSerifSemiBold";
    font-size: 15px;
    border: solid 1px #fff;
    transition: all 0.5s;
  }
  .header_contact .mail:hover {
    border: solid 1px #203e73;
    background: #203e73;
  }
  .header_contact .mail img {
    width: auto;
    height: auto;
    max-width: 18px;
    max-height: 18px;
    margin-right: 7px;
  }
  .header_contact .mail span {
    display: inline;
  }
}
@media print, screen and (min-width:992px) {
  h1 {
    height: 40px;
  }
  .header_logo img {
    width: auto;
    height: auto;
  }
  .header_contact {
    top: 10px;
  }
}
/*------------------------------------------------------------header fixed*/
@media print, screen and (min-width:768px) {
  header.fixed #header {
    display: block;
    top: 0;
    left: 0;
    position: fixed;
    height: 70px;
    z-index: 9999;
    animation: haslide linear .3s 1;
    -webkit-animation: haslide linear .3s 1;
    background: rgba(32, 62, 115, 0.9);
  }
  header.fixed h1 {
    display: none;
  }
  header.fixed #header .header_logo {
    display: none;
  }
  header.fixed #header .header_logo img {
    height: 40px;
  }
  header.fixed .header_contact {
    position: fixed;
    top: 18px;
    right: 50;
  }
  header.fixed .header_contact .tel {
    display: none;
  }
}
@media print, screen and (min-width:992px) {
  header.fixed #header .header_logo {
    display: inline-block;
    padding-top: 13px;
  }
  header.fixed #header .header_logo img {
    height: 44px;
  }
}
@keyframes haslide {
  0% {
    top: -130px;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes haslide {
  0% {
    top: -130px;
  }
  100% {
    top: 0;
  }
}
/*------------------------------------------------------------toggle*/
.toggle {
  position: fixed;
  top: 20px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(32, 62, 115, 0.9);
  z-index: 99999;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}
.toggle span {
  display: block;
  background: #fff;
  width: 20px;
  height: 2px;
  position: absolute;
  left: 10px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}
.toggle span:first-child {
  top: 12px;
}
.toggle span:nth-child(2) {
  margin-top: -1px;
  top: 50%;
}
.toggle span:nth-child(3) {
  bottom: 12px;
}
.toggle.opennav {
  position: fixed;
  z-index: 99999;
}
.toggle.opennav span {}
.toggle.opennav span:first-child {
  -webkit-transform: translateY(7px) rotate(45deg);
  -moz-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}
.toggle.opennav span:nth-child(2) {
  opacity: 0;
}
.toggle.opennav span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  -moz-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}
@media print, screen and (min-width:768px) {
  .toggle {
    display: none;
  }
}
/*------------------------------------------------------------mainnavi*/
#mainnavi {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 70px 15px 0;
  text-align: center;
  background: rgba(32, 62, 115, 0.9);
  z-index: 9999;
}
#mainnavi ul li {
  padding: 8px 0;
}
#mainnavi ul li a {
  display: block;
  line-height: 1.1;
  text-decoration: none;
  font-family: "NotoSerifMedium";
  color: #fff;
}
#mainnavi ul li a span {
  display: inline-block;
  height: 100%;
  padding: 10px 0;
  border-bottom: solid 2px transparent;
}
#mainnavi ul li.active a span {
  border-bottom: solid 2px #fff;
}
@media print, screen and (min-width:576px) {
  #mainnavi ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  #mainnavi ul li {
    margin: 15px;
    padding: 0;
  }
}
@media print, screen and (min-width:768px) {
  #mainnavi {
    position: absolute;
    top: 80px;
    left: auto;
    right: 50px;
    bottom: auto;
    width: auto;
    height: auto;
    display: inline-block;
    padding: 0;
    background: none;
    transition: all 0.5s;
  }
  #mainnavi ul {
    width: auto;
    justify-content: flex-end;
  }
  #mainnavi ul li {
    margin: 0 0 0 15px;
    padding: 0;
  }
  #mainnavi ul li a span {
    transition: all 0.5s;
  }
  #mainnavi ul li a:hover span {
    border-bottom: solid 2px #fff;
  }
}
@media print, screen and (min-width:992px) {
  #mainnavi {
    top: 50px;
  }
  #mainnavi ul li {
    margin: 0 0 0 20px;
  }
}
@media print, screen and (min-width:1200px) {
  #mainnavi ul li {
    margin: 0 0 0 30px;
  }
}
/*------------------------------------------------------------mainnavi fixed*/
@media print, screen and (min-width:768px) {
  header.fixed #mainnavi {
    position: fixed;
    top: 15px;
    right: 205px;
    height: auto;
    display: block;
    padding: 0;
    background: none;
    z-index: 999999;
  }
}
@media print, screen and (min-width:992px) {
  header.fixed #mainnavi ul li {
    margin: 0 0 0 15px;
  }
}
@media print, screen and (min-width:1200px) {
  header.fixed #mainnavi {
    position: fixed;
    top: 15px;
    right: 220px;
    height: auto;
    display: block;
    padding: 0;
    background: none;
    z-index: 999999;
  }
  header.fixed #mainnavi ul li {
    margin: 0 0 0 30px;
  }
}
/*------------------------------------------------------------pagetitle*/
#pagetitle {
  height: 240px;
}
#pagetitle h2 {
  position: absolute;
  left: 15px;
  bottom: 40px;
  text-align: left;
  line-height: 1.3;
  font-family: "NotoSerifMedium", serif;
  font-size: 24px;
  color: #fff;
  z-index: 2;
}
@media print, screen and (min-width:768px) {
  #pagetitle {
    height: 440px;
  }
  #pagetitle h2 {
    left: 50px;
    bottom: 80px;
    font-size: 48px;
  }
}
/*------------------------------------------------------------content*/
.content_bg01 {
  padding: 40px 0;
  text-align: left;
}
.content_bg02 {
  padding: 40px 0;
  text-align: left;
  background: #eee;
}
@media print, screen and (min-width:768px) {
  .content_bg01 {
    padding: 80px 0;
    text-align: center;
  }
  .content_bg02 {
    padding: 80px 0;
    text-align: center;
  }
}
/* ----------------------------------------------------------------footer*/
footer {
  text-align: left;
  padding: 50px 0;
  color: #fff;
  background: #203e73;
  box-shadow: 0 1px #203e73;
}
#footerinfo {
  margin-bottom: 30px;
}
#footerinfo h2 {
  width: 180px;
}
#footerinfo p {
  margin-top: 15px;
}
#footerinfo a {
  text-decoration: none;
  color: #fff;
}
#footerinfo a.btn_map {
  position: relative;
  display: inline-block;
  margin-left: 15px;
  padding-right: 28px;
}
#footerinfo a.btn_map::before {
  position: absolute;
  left: 0;
  bottom: -1px;
  display: block;
  width: 50px;
  height: 1px;
  content: "";
  background: #fff;
}
#footerinfo a.btn_map::after {
  position: absolute;
  left: 40px;
  bottom: 3px;
  display: block;
  width: 11px;
  height: 1px;
  margin-right: -2px;
  content: "";
  transform: rotate(45deg);
  background: #fff;
}
#footer a {
  text-decoration: none;
  color: #fff;
}
#footer nav {
  display: flex;
  flex-wrap: wrap
}
#footer nav ul {
  display: flex;
  flex-wrap: wrap;
}
#footer nav ul li {
  margin: 5px 15px 5px 0;
}
#footer small {
  display: block;
  margin-top: 30px;
  font-size: 11px;
}
@media print, screen and (min-width:768px) {
  footer {
    padding: 80px 0;
  }
  footer > div {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  #footerinfo {
    margin-bottom: 0;
  }
  #footerinfo p {
    margin-top: 22px;
    white-space: nowrap;
  }
  #footerinfo a.btn_map {
    transition: all 0.5s;
  }
  #footerinfo a.btn_map:hover {
    margin-left: 20px;
  }
  #footerinfo a.btn_map::before {
    transition: all 0.5s;
  }
  #footerinfo a.btn_map::after {
    transition: all 0.5s;
  }
  #footerinfo a.btn_map:hover::before {
    left: 5px;
  }
  #footerinfo a.btn_map:hover::after {
    left: 45px;
  }
  #footer {}
  #footer nav ul {
    display: block;
  }
  #footer nav ul li {
    margin: 5px 0 5px 0;
  }
  #footer nav ul:first-child li {
    margin: 5px 40px 5px 0;
  }
  #footer nav ul li a:hover {
    text-decoration: underline;
  }
  #footer small {
    text-align: right;
  }
}
@media print, screen and (min-width:1200px) {
  #footer small {
    margin-top: 50px;
  }
  #footer nav ul:first-child li {
    margin: 5px 60px 5px 0;
  }
}
/*カレンダー更新プログラム（フッター）フォーマット*/
.calendar {
  width: 100%;
  padding: 10px 9px;
  margin: 0 0 10px;
  background: #fff;
  position: relative;
}
.calendar .cal_title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}
.calendar .month {
  font-size: 11px;
  line-height: 1.2;
  font-weight: bold;
  text-align: right;
  position: absolute;
  top: 12px;
  right: 10px;
  z-index: 999;
}
.calendar .month strong {
  font-size: 16px;
}
.calendar table {
  width: 100%;
  border-collapse: collapse;
}
.calendar table th, .calendar table td {
  font-size: 12px;
  text-align: center;
  padding: 10px 0;
}
.calendar table th {
  background: #C0C0C0;
  font-weight: bold;
}
.calendar table td.color01 {
  font-weight: bold;
  background: url(../img/common_img/holiday.png) no-repeat center center;
}
.calendar table td.color02 {
  font-weight: bold;
  background: url(../img/common_img/half.png) no-repeat center center;
}
.calendar table td.color03 {
  color: #fff;
  font-weight: bold;
  background: url(../img/common_img/monday.png) no-repeat center center;
}
.calendar ul.page_ctl {
  text-align: center;
  padding: 8px 10px;
  margin: 0 0 10px;
}
.calendar ul.page_ctl li {
  font-size: 12px;
  color: #389e7c;
}
.calendar ul.page_ctl li a {
  text-decoration: underline;
}
.calendar ul.page_ctl li a:hover {
  color: #999;
}
.calendar ul.page_ctl .ctl_left {
  float: left;
}
.calendar ul.page_ctl .ctl_right {
  float: right;
}
.calendar .tx_color01 {
  float: left;
  margin-right: 20px;
  padding: 0 0 0 15px;
  background: url(../img/common_img/holiday_s.png) no-repeat left center;
}
.calendar .tx_color02 {
  float: left;
  padding: 0 0 0 15px;
  background: url(../img/common_img/half_s.png) no-repeat left center;
}
.calendar .tx_color03 {
  clear: both;
  padding: 0 0 0 15px;
  background: url(../img/common_img/monday_s.png) no-repeat left center;
}
@media print, screen and (min-width:768px) {
  .calendar {
    width: 60%;
    margin: 0 auto 10px;
  }
}
@media print, screen and (min-width:992px) {
  .calendar {
    width: 100%;
    margin: 0 0 10px;
  }
}
/*カレンダー更新プログラム（メインカラム）フォーマット*/
.calender02 .note {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  background-color: #969696;
  top: 0px;
  border-radius: 4px;
  padding: 5px 10px;
  margin-bottom: 20px;
}
.calender02 .calender_nav {
  width: 260px;
  margin: 0 auto;
  text-align: center;
}
.calender02 div.date {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.calender02 .calender_table {
  overflow-x: auto;
  clear: both;
  position: relative;
}
.calender02 table {
  width: 600px;
  border-collapse: collapse;
  margin-bottom: 10px;
}
.calender02 table tr th {
  text-align: center;
  background: #CBCBCB;
  border: 1px dotted #6F6F6F;
  border-bottom: 1px solid #6F6F6F;
  padding: 10px;
  width: 14%;
}
.calender02 table tr td {
  text-align: center;
  border: 1px dotted #6F6F6F;
  padding: 10px;
}
.calender02 table tr.tr_date td {
  background: #E5E5E5;
}
.calender02 table tr.tr_text td {
  height: 60px;
  vertical-align: top;
}
.calender02 .bg_color01 {
  background: #D5A8A9;
}
.calender02 .bg_color02 {
  background: #B1CAD8;
}
.calender02 .tx_color01 {
  color: #D5A8A9;
}
.calender02 .tx_color02 {
  color: #B1CAD8;
}
@media print, screen and (min-width:768px) {
  .calender02 .note {
    display: none;
  }
  .calender02 table {
    width: 100%;
  }
}
/*------------------------------------------------------------Pankuzu*/
/*pankuzu*/
#pankuzu {
  width: 100%;
  padding: 5px 15px 0;
  text-align: right;
  clear: both;
}
#pankuzu ol {
  display: inline-block;
  list-style: none;
}
#pankuzu ol li {
  float: left;
  line-height: 1.1;
  font-size: 11px;
  padding: 0 7px 0 10px;
  background: url(../img/common_img/icon_pankuzu.gif) no-repeat 0 50%;
}
#pankuzu ol li em {
  font-style: normal;
}
#pankuzu ol li.home {
  padding-left: 0;
  background: none;
}
#pankuzu ol li a:link, #pankuzu ol li a:visited {
  text-decoration: underline;
}
#pankuzu ol li a:hover, #pankuzu ol li a:active {
  text-decoration: underline;
}
@media print, screen and (min-width:768px) {
  #pankuzu {
    width: 100%;
    padding: 10px 50px 0;
    text-align: right;
    clear: both;
  }
}
/* ----------------------------------------------------------------rayout*/
.center {
  display: block;
  margin: auto;
}
/*------------------------------------------------------------table*/
.sheet_basic {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px dotted #888;
}
.sheet_basic tr th, .sheet_basic tr td {
  display: block;
  border-bottom: 1px dotted #888;
  padding: 10px 5px;
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
}
.sheet_basic tr th {
  display: block;
  border-bottom: none;
  padding: 10px 5px 0;
  font-family: "NotoSansMedium";
  font-weight: normal;
  color: #203e73;
}
@media print, screen and (min-width:768px) {
  .sheet_basic tr th, .sheet_basic tr td {
    display: table-cell;
    padding: 10px;
  }
  .sheet_basic tr th {
    border-bottom: 1px dotted #888;
  }
}

/*------------------------------------------------------------Decoration*/
/*Line*/
hr.line_01 {
  height: 1px;
  clear: both;
  margin: 30px 0px;
  border-top: 1px dotted #888;
  border-right: 0 dotted #CCC;
  border-bottom: 0 dotted #CCC;
  border-left: 0 dotted #CCC;
}
@media print, screen and (min-width:768px) {
  hr.line_01 {
    margin: 40px 0px;
  }
}
.space_10 {
  height: 10px;
  clear: both;
}
.space_20 {
  height: 20px;
  clear: both;
}
.space_30 {
  height: 30px;
  clear: both;
}
.space_10 hr, .space_20 hr, .space_30 hr {
  display: none;
}
/*------------------------------------------------------------Text*/
/*title*/
.title01 {
  position: relative;
  margin-bottom: 24px;
  line-height: 1.3;
  text-align: center;
  font-family: "NotoSerifRegular";
  font-size: 22px;
}
.title01 span {
  display: block;
  margin-top: 5px;
  font-family: "NotoSansRegular";
  font-size: 16px;
  color: #203e73;
}
.title02 {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 10px;
  line-height: 1.3;
  text-align: center;
  font-family: "NotoSansMedium";
  font-size: 19px;
}
.title02::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  width: 160px;
  height: 1px;
  margin-left: -80px;
  content: "";
  background: #203e73;
}
.title03 {
  font-size: 16px;
  font-weight: bold;
  color: #6D6D6D;
  padding-left: 10px;
  margin-bottom: 10px;
  border-left: 3px solid #6D6D6D;
}
.title03 span {
  font-size: 12px;
}
.title_catch {
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: "NotoSerifRegular";
  font-size: 19px;
  color: #203e73;
}
@media print, screen and (min-width:768px) {
  .title01 {
    margin-bottom: 40px;
    font-size: 34px;
  }
  .title01 span {
    margin-top: 10px;
    font-size: 18px;
  }
  .title02 {
    margin-bottom: 25px;
    padding-bottom: 20px;
    font-size: 24px;
  }
  .title02::after {
    width: 220px;
    margin-left: -110px;
  }
  .title_catch {
    margin-bottom: 30px;
    font-size: 26px;
  }
}
/*TextRight*/
.tx_right {
  text-align: right;
}
/*TextLeft*/
.tx_left {
  text-align: left;
}
/*TextCenter*/
.tx_cent {
  text-align: center;
}
/*bold*/
.tx_bold {
  font-style: normal;
  font-weight: bold;
}
/*TextRed*/
.tx_red {
  color: #C33;
}
/*attention*/
.attention {
  font-size: 10px;
  line-height: 130%;
  margin: 5px 0;
}
/*------------------------------------------------------------Float*/
/*FloatLeft*/
.float_left {
  float: left;
}
/*FloatRight*/
.float_right {
  float: right;
}
/*ClearBoth*/
.clearboth {
  clear: both;
}
/*phbox*/
.phbox_right {
  text-align: center;
}
.phbox_right img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.phbox_left {
  text-align: center;
}
.phbox_left img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.ov_hidden {
  overflow: hidden;
}
@media print, screen and (min-width:768px) {
  .phbox_right {
    float: right;
    margin-left: 20px;
    margin-bottom: 0px;
  }
  .phbox_left {
    float: left;
    margin-right: 20px;
    margin-bottom: 0px;
  }
}
/*------------------------------------------------------------Margin*/
/*MarginTop*/
.margin_t05 {
  margin-top: 5px;
}
.margin_t10 {
  margin-top: 10px;
}
.margin_t20 {
  margin-top: 20px;
}
.margin_t30 {
  margin-top: 30px;
}
.margin_t40 {
  margin-top: 40px;
}
.margin_t50 {
  margin-top: 50px;
}
/*MarginBottom*/
.margin_b05 {
  margin-bottom: 5px;
}
.margin_b10 {
  margin-bottom: 10px;
}
.margin_b20 {
  margin-bottom: 20px;
}
.margin_b30 {
  margin-bottom: 30px;
}
.margin_b40 {
  margin-bottom: 40px;
}
.margin_b50 {
  margin-bottom: 50px;
}
/*MarginRight*/
.margin_r05 {
  margin-right: 5px;
}
.margin_r10 {
  margin-right: 10px;
}
.margin_r15 {
  margin-right: 15px;
}
.margin_r20 {
  margin-right: 20px;
}
/*MarginLeft*/
.margin_l05 {
  margin-left: 50px;
}
.margin_l10 {
  margin-left: 10px;
}
.margin_l15 {
  margin-left: 15px;
}
.margin_l20 {
  margin-left: 20px;
}
/*Margin_device*/
.margin-xs-b10 {
  margin-bottom: 10px;
}
@media print, screen and (min-width:768px) {
  .margin-xs-b10 {
    margin-bottom: 0px;
  }
}
/*------------------------------------------------------------ClearFix*/
.clearfix {
  zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
/*------------------------------------------------------------Hoverimg*/
a:hover img.hoverimg {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}
/*------------------------------------------------------------other*/
/*Pagetop*/
#pagetop {
  position: fixed;
  bottom: 20px;
  right: 0;
  z-index: 99999;
}
#pagetop a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  background: #244580;
}
#pagetop a::before {
  position: absolute;
  right: 10px;
  bottom: 0;
  display: block;
  width: 1px;
  height: 30px;
  content: "";
  background: #fff;
}
#pagetop a::after {
  position: absolute;
  right: 9px;
  bottom: 25px;
  display: block;
  width: 11px;
  height: 1px;
  content: "";
  transform: rotate(-45deg);
  background: #fff;
}
@media print, screen and (min-width:768px) {
  #pagetop {
    bottom: 0;
  }
  #pagetop a {
    width: 60px;
    height: 60px;
    transition: all 0.5s;
  }
  #pagetop a::before {
    right: 15px;
    height: 40px;
  }
  #pagetop a::after {
    right: 13px;
    bottom: 33px;
    width: 17px;
    height: 1px;
    content: "";
    transform: rotate(-45deg);
    background: #fff;
  }
  #pagetop a:hover {
    background: rgba(36, 69, 128, 0.7);
  }
  #pagetop a::before {
    transition: all 0.5s;
  }
  #pagetop a::after {
    transition: all 0.5s;
  }
  #pagetop a:hover::before {
    bottom: 8px;
  }
  #pagetop a:hover::after {
    bottom: 41px;
  }
}
.sp_nowrap {
  display: none;
}
@media print, screen and (min-width:768px) {
  .sp_nowrap {
    display: inline;
  }
}
.anchor_point {
  margin-top: -40px;
  padding-top: 40px;
}
@media print, screen and (min-width:768px) {
  .anchor_point {
    margin-top: -70px;
    padding-top: 70px;
  }
}