@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --txt-black: #00070F;
  --txt-gray: #AEB3BA;
  --blue: #3783D0;
  --header-height: 74px;
  --cont-pd: 20px;
  --topnav-shd-whity: #27AFEB39;
  --topnav-shd-dotica: #A42E5339;
  --topnav-shd-coms: #91C95739;
  --topnav-shd-walk: #B92A2D39;
  --topnav-shd-nannan: #C1A50039;
  --topnav-shd-avetika: #EE7DB339;
  --topnav-shd-onthe: #686C7228;
}
@media screen and (min-width: 768px) {
  :root {
    --header-height: 90px;
  }
}

/* 大枠 */
html,
body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch !important;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 500;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--txt-black);
  font-size: 14px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 15px;
  }
  body.wrap {
    overflow: visible;
  }
}
body.wrap {
  overflow: hidden;
}
body #wrapper {
  height: auto;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

#screen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 200;
}

@media print {
  html,
  html body {
    overflow: visible !important;
  }
}
@-webkit-keyframes top_ttl_anime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes top_ttl_anime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes gnav_menu_item_contact {
  0% {
    stroke-width: 2px;
    stroke-dasharray: 600, 0;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-width: 5;
    stroke-dasharray: 15, 585;
    stroke-dashoffset: 48;
  }
  100% {
    stroke-width: 2px;
    stroke-dasharray: 600, 0;
    stroke-dashoffset: 648;
  }
}
@keyframes gnav_menu_item_contact {
  0% {
    stroke-width: 2px;
    stroke-dasharray: 600, 0;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-width: 5;
    stroke-dasharray: 15, 585;
    stroke-dashoffset: 48;
  }
  100% {
    stroke-width: 2px;
    stroke-dasharray: 600, 0;
    stroke-dashoffset: 648;
  }
}
@-webkit-keyframes btn_bg {
  0% {
    stroke-width: 2px;
    stroke-dasharray: 696, 0;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-width: 5;
    stroke-dasharray: 15, 681;
    stroke-dashoffset: 48;
  }
  100% {
    stroke-width: 2px;
    stroke-dasharray: 696, 0;
    stroke-dashoffset: 744;
  }
}
@keyframes btn_bg {
  0% {
    stroke-width: 2px;
    stroke-dasharray: 696, 0;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-width: 5;
    stroke-dasharray: 15, 681;
    stroke-dashoffset: 48;
  }
  100% {
    stroke-width: 2px;
    stroke-dasharray: 696, 0;
    stroke-dashoffset: 744;
  }
}
/* アクセシビリティ */
img {
  image-rendering: auto;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-box-shadow: #000 0 0 0;
          box-shadow: #000 0 0 0; /* ロールオーバー対応 */
}

img,
x:-moz-any-link,
x:default {
  box-shadow: #000 0 0 0; /* IE7対応 */
}

/* リンク */
a {
  display: inline-block;
}
a:link, a:visited, a:active {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a:hover {
    color: inherit;
    opacity: 0.7;
    text-decoration: none !important;
  }
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  max-width: 260px;
  width: 100%;
  height: 48px;
  margin: 30px auto 0;
  background: #fff;
  border: 1px solid var(--txt-black);
  border-radius: 2px;
  color: var(--txt-black);
  font-size: 15px;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .btn {
    margin-top: 45px;
  }
}
.btn_back::after, .btn_more::after {
  --arrow-size: 8px;
  content: "";
  width: var(--arrow-size);
  height: var(--arrow-size);
  border-top: 1px solid var(--txt-black);
  border-right: 1px solid var(--txt-black);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg);
}
.btn_back::after {
  -webkit-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg);
  left: calc(var(--arrow-size) * 2);
}
.btn_more::after {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  right: calc(var(--arrow-size) * 2);
}
.btn_blank {
  max-width: 300px;
  padding-right: 20px;
  background: url(https://tw.osaka-chikagai.jp/front/www/img/common/icon_blank.svg) no-repeat right 14px center/11px 11px;
}
@media screen and (min-width: 768px) {
  .btn_left {
    margin-left: 0;
  }
}
.btn_bg_svg {
  border: none;
}
.btn_bg_svg svg.btn_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.btn_bg_svg rect {
  fill: none;
  stroke: var(--txt-black);
  stroke-width: 2px;
  stroke-dasharray: 696, 0;
}
@media screen and (min-width: 768px) {
  .btn_bg_svg:hover rect {
    -webkit-animation-name: btn_bg;
            animation-name: btn_bg;
    -webkit-animation-duration: 1.35s;
            animation-duration: 1.35s;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
}

.icon_pdf::after {
  --pdf-clr: #B92A2D;
  content: "PDF";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 43px;
  height: 21px;
  margin-left: 16px;
  border: 1px solid var(--pdf-clr);
  border-radius: 2px;
  color: var(--pdf-clr);
  font-size: 14px;
  font-weight: 500;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  line-height: 1;
}

.NotoSans {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.NotoSerif {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}

.font_robo {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
.font_akshar {
  font-family: "Akshar", "Noto Sans JP", sans-serif;
}

.container {
  display: block;
  width: 100%;
  max-width: calc(1100px + var(--cont-pd) * 2);
  padding: 0 var(--cont-pd);
  margin: 0 auto;
  position: relative;
}

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

/* ▼ タイトル
--------------------------------------- */
.page_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-line-pack: end;
      align-content: flex-end;
  height: 180px;
  padding: 105px 0 0;
  background: url(https://tw.osaka-chikagai.jp/front/www/img/common/ttl_page_l.webp) no-repeat left center/contain, url(https://tw.osaka-chikagai.jp/front/www/img/common/ttl_page_r.webp) no-repeat right center/contain;
}
@media screen and (min-width: 768px) {
  .page_ttl {
    height: 350px;
    padding: 105px 0 0;
  }
}
.page_ttl_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-line-pack: baseline;
      align-content: baseline;
  gap: 10px;
}
.page_ttl_inner_anime {
  width: 0%;
  overflow: hidden;
  white-space: nowrap;
  -webkit-animation-name: top_ttl_anime;
          animation-name: top_ttl_anime;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.page_ttl_main {
  font-size: 44px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .page_ttl_main {
    font-size: 78px;
  }
}
.page_ttl_min {
  font-size: 13px;
}
.page_ttl_detail {
  margin-bottom: 20px;
  color: var(--txt-black);
  font-size: 26px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .page_ttl_detail {
    margin-bottom: 25px;
    font-size: 30px;
  }
}
.page_base {
  background: #F5F6F7;
  padding: 30px 0 10px;
}
@media screen and (min-width: 768px) {
  .page_base {
    padding: 60px 0 10px;
  }
}
.page_base_com {
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .page_base_com {
    padding-bottom: 80px;
  }
}
.page_art {
  padding: 24px 20px 40px;
  background: #FFF;
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .page_art {
    padding: 65px 8% 65px;
  }
}
.page_art:not(:last-child) {
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .page_art:not(:last-child) {
    margin-bottom: 50px;
  }
}
.page_read {
  margin: 20px auto 45px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .page_read {
    margin: 30px auto 90px;
    font-size: 20px;
  }
}

/* ▼ リスト共通
--------------------------------------- */
.news_list {
  margin-top: -20px;
}
.news_list li {
  border-bottom: 1px solid #E0E0E0;
}
.news_list li a {
  display: block;
  padding: 20px 0;
  -webkit-transition: 1s;
  transition: 1s;
}
@media screen and (min-width: 768px) {
  .news_list li a {
    padding: 20px 30px 35px 0;
    position: relative;
  }
  .news_list li a:hover {
    background: #F5F6F7;
    opacity: 1;
  }
  .news_list li a::after {
    --arrow: 12px;
    --arrow-c: var(--txt-black);
    content: "";
    width: var(--arrow);
    height: var(--arrow);
    border-top: 1px solid var(--arrow-c);
    border-right: 1px solid var(--arrow-c);
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translate(0, -50%) rotate(45deg);
            transform: translate(0, -50%) rotate(45deg);
  }
}
.news_list_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  font-weight: bold;
}
.news_list_date {
  margin-right: 17px;
  color: var(--txt-gray);
  font-weight: 500;
}
.news_list_ttl {
  margin-top: 7px;
  font-size: 15px;
}

.com_btm {
  padding-top: 20px;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  .com_btm {
    padding-top: 45px;
  }
}
.com_footer {
  display: grid;
  grid-template-columns: 3fr 4fr;
  max-width: 100%;
  width: 761px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .com_footer {
    grid-template-columns: 2fr 3fr 2fr 2fr;
  }
}
.com_footer li a > span::after {
  --arrow-size: 17px;
  content: "";
  width: var(--arrow-size);
  height: var(--arrow-size);
  background: url(https://tw.osaka-chikagai.jp/front/www/img/common/icon_com_arrow.svg) no-repeat center center/var(--arrow-size) var(--arrow-size);
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .com_footer li:nth-last-child(n+3) {
    border-bottom: 1px solid #D3DCE5;
  }
  .com_footer li:not(:nth-child(2n)) a > span {
    border-right: 1px solid #D3DCE5;
  }
  .com_footer li:not(:nth-child(2n+1)) a {
    padding-left: 25px;
  }
  .com_footer li:nth-child(2n) a > span::after {
    right: 0;
  }
}
@media screen and (min-width: 768px) {
  .com_footer li:nth-last-child(n+5) {
    border-bottom: 1px solid #D3DCE5;
  }
  .com_footer li:not(:nth-child(4n)) a > span {
    border-right: 1px solid #D3DCE5;
  }
  .com_footer li:not(:nth-child(4n+1)) a {
    padding-left: 40px;
  }
  .com_footer li:nth-child(4n) a > span::after {
    right: 0;
  }
}
.com_footer a {
  display: block;
  padding: 8px 0;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .com_footer a {
    padding: 13px 0;
  }
}
.com_footer a > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  height: 35px;
  position: relative;
}

.ttl_dot {
  padding-left: 22px;
  margin-bottom: 20px;
  color: var(--txt-black);
  font-size: 20px;
  line-height: 1.4;
  position: relative;
}
@media screen and (min-width: 768px) {
  .ttl_dot {
    font-size: 23px;
  }
}
.ttl_dot::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--blue);
  position: absolute;
  left: 0;
  top: 0.7em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.ttl_date_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ttl_date_right_item {
  font-size: 13px;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .ttl_date_right_item {
    font-size: 15px;
  }
}

.link_list {
  margin-top: 20px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .link_list {
    margin-top: 30px;
  }
}

.sec_wrap {
  counter-reset: ttlnum 0;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .sec_wrap {
    margin-top: 30px;
  }
}
.sec:not(:last-child) {
  margin-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .sec:not(:last-child) {
    margin-bottom: 70px;
  }
}
.sec_ttlnum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: bold;
  position: relative;
}
@media screen and (min-width: 768px) {
  .sec_ttlnum {
    margin-bottom: 30px;
    font-size: 23px;
  }
}
.sec_ttlnum::before {
  counter-increment: ttlnum 1;
  content: counter(ttlnum) ".";
}
.sec_txt {
  font-size: 15px;
}
.sec_txt_right {
  text-align: right;
}
.sec_numlist {
  counter-reset: listnum 0;
}
.sec_numlist li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sec_numlist li::before {
  counter-increment: listnum 1;
  content: "（" counter(listnum) "）";
}
.sec_block:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .sec_block:not(:last-child) {
    margin-bottom: 35px;
  }
}
.sec_box {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 15px 44px;
}
@media screen and (min-width: 768px) {
  .sec_box {
    grid-template-columns: 40% 1fr;
  }
}
.sec_box_ttl {
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: bold;
}
.sec_blod_ttl {
  margin-bottom: 15px;
  font-size: 15px;
}

.table_bg {
  width: 100%;
  border: 1px solid #FFF;
  border-collapse: collapse;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .table_bg {
    margin-top: 30px;
  }
}
.table_bg_nomt {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .table_bg_nomt {
    margin-top: 0;
  }
}
.table_bg th, .table_bg td {
  border: 1px solid #FFF;
  padding: 5px 10px 5px 20px;
  vertical-align: middle;
  height: 64px;
}
@media screen and (min-width: 768px) {
  .table_bg th, .table_bg td {
    padding-left: 70px;
  }
}
.table_bg th {
  width: 40%;
  background: #E4EEF8;
  color: var(--blue);
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .table_bg th {
    width: 30%;
  }
}
.table_bg td {
  width: 60%;
  background: #F5F6F7;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .table_bg td {
    width: 70%;
  }
}
.table_line {
  margin-top: -20px;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .table_line {
    margin-top: -30px;
  }
}
@media screen and (max-width: 767px) {
  .table_line tr, .table_line th, .table_line td {
    display: block;
  }
}
.table_line tr {
  position: relative;
}
.table_line tr::before {
  content: "";
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(var(--blue)), color-stop(12.5%, var(--blue)), color-stop(12.5%, #D3DCE5), to(#D3DCE5));
  background: linear-gradient(to right, var(--blue) 0%, var(--blue) 12.5%, #D3DCE5 12.5%, #D3DCE5 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.table_line th, .table_line td {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .table_line th, .table_line td {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}
.table_line th {
  padding-top: 20px;
  color: var(--blue);
}
@media screen and (min-width: 768px) {
  .table_line th {
    width: 150px;
  }
}
.table_line td {
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .table_line td {
    width: calc(100% - 150px);
  }
}
.table_line a {
  text-decoration: underline;
}

.anchor_list {
  display: grid;
  grid-template-columns: 100%;
  gap: 5px;
  background: #DFE8F0;
  padding: 16px 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .anchor_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 13px 22px;
    padding: 28px 6.6%;
    margin-bottom: 60px;
  }
}
.anchor_list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  min-height: 40px;
  background: #fff;
  padding: 5px 20px;
  font-size: 13px;
  font-weight: bold;
  position: relative;
}
@media screen and (min-width: 768px) {
  .anchor_list a {
    min-height: 67px;
    font-size: 15px;
  }
}
.anchor_list a::after {
  --arrow-size: 17px;
  content: "";
  width: var(--arrow-size);
  height: var(--arrow-size);
  background: url(https://tw.osaka-chikagai.jp/front/www/img/common/icon_com_arrow.svg) no-repeat center center/var(--arrow-size) var(--arrow-size);
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

/* ▼▼▼ ヘッダー
====================================================== */
#site_title {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  #site_title {
    font-size: 34px;
  }
}

header {
  --header-pr: 148px;
  --header-txt: var(--txt-black);
  width: 100%;
  height: var(--header-height);
  padding: 0;
  background: #fff;
  color: var(--header-txt);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  overflow: visible;
}
header::before {
  content: "";
  width: 100%;
  height: 135px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(139, 127, 109, 0.4)), color-stop(50%, rgba(129, 125, 117, 0.29)), color-stop(75%, rgba(111, 111, 111, 0.15)), to(rgba(111, 111, 111, 0)));
  background: linear-gradient(rgba(139, 127, 109, 0.4) 0%, rgba(129, 125, 117, 0.29) 50%, rgba(111, 111, 111, 0.15) 75%, rgba(111, 111, 111, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 var(--header-pr) 0 72px;
  }
}
header .header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 100%;
  height: var(--header-height);
  padding: 0 60px 0 20px;
  background: #FFFFFF;
  position: relative;
  z-index: 99999;
}
@media screen and (min-width: 768px) {
  header .header_inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    width: auto;
    background: rgba(255, 255, 255, 0);
  }
}

@media screen and (min-width: 768px) {
  body.scroll_view:not(.menu_fixed) header:not(:hover) {
    background: rgba(255, 255, 255, 0);
  }
}
@media screen and (max-width: 767px) {
  body.scroll_view:not(.menu_fixed) header {
    background: rgba(255, 255, 255, 0);
  }
  body.scroll_view:not(.menu_fixed) header .header_inner {
    background: rgba(255, 255, 255, 0);
  }
}
@media screen and (min-width: 768px) {
  body.scroll_view:not(.menu_fixed)#top header:not(:hover) {
    --header-txt:#FFF;
  }
  body.scroll_view:not(.menu_fixed)#top header:not(:hover)::before {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  body.scroll_view:not(.menu_fixed)#top header {
    --header-txt:#FFF;
  }
  body.scroll_view:not(.menu_fixed)#top header::before {
    opacity: 1;
  }
}

.menu, .menubtn {
  --menu-width:32px;
  --menu-height:16px;
  --menu-bar-color:var(--header-txt);
  --menu-bar-width:32px;
  --menu-bar-height:2px;
  --menu-bar-gap:3px;
  display: block;
  width: var(--menu-width);
  height: var(--menu-height);
  border-radius: 50%;
  position: absolute;
  top: 40%;
  right: 20px;
  z-index: 2000;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .menu, .menubtn {
    display: none;
  }
}
.menu .icon, .menubtn .icon {
  display: block;
  width: var(--menu-bar-width);
  height: var(--menu-bar-height);
  position: absolute;
  top: 50%;
  right: calc((var(--menu-width) - var(--menu-bar-width)) / 2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.menu .icon::before, .menu .icon::after, .menubtn .icon::before, .menubtn .icon::after {
  content: "";
  width: var(--menu-bar-width);
  height: var(--menu-bar-height);
  background: var(--menu-bar-color);
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  right: 0;
}
.menu .icon::before, .menubtn .icon::before {
  top: calc(-1 * var(--menu-bar-gap));
}
.menu .icon::after, .menubtn .icon::after {
  bottom: calc(-1 * var(--menu-bar-gap));
}
.menu .icon span:before, .menubtn .icon span:before {
  content: "Menu";
  color: var(--menu-bar-color);
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  left: 50%;
  bottom: -23px;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
}
.menu .icon.active, .menubtn .icon.active {
  background: transparent;
}
.menu .icon.active::before, .menubtn .icon.active::before {
  -webkit-transform: rotate(-160deg);
          transform: rotate(-160deg);
  top: 0;
}
.menu .icon.active::after, .menubtn .icon.active::after {
  -webkit-transform: rotate(160deg);
          transform: rotate(160deg);
  bottom: 0;
}
.menu .icon.active span:before, .menubtn .icon.active span:before {
  content: "";
}
.menu.is-active .icon, .menubtn.is-active .icon {
  background: transparent;
}
.menu.is-active .icon::before, .menubtn.is-active .icon::before {
  -webkit-transform: rotate(-160deg);
          transform: rotate(-160deg);
  top: 0;
}
.menu.is-active .icon::after, .menubtn.is-active .icon::after {
  -webkit-transform: rotate(160deg);
          transform: rotate(160deg);
  bottom: 0;
}
.menu.is-active .icon span:before, .menubtn.is-active .icon span:before {
  content: "";
}

/* グローバルナビゲーション */
#gnav {
  display: block;
  -webkit-transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
  float: none;
  max-width: 100%;
  width: 100%;
  max-height: 100vh;
  margin: 0;
  background: #FFF;
  padding: var(--header-height) 20px 20px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1000;
  overflow: auto;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
#gnav.open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 768px) {
  #gnav {
    height: 100%;
    width: auto;
    padding: 0;
    background: none;
    -webkit-transition: 0s;
    transition: 0s;
    position: static;
    top: auto;
    left: auto;
    overflow: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@media screen and (min-width: 768px) {
  .gnav_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 20px;
    height: 100%;
  }
}
.gnav_menu_item {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .gnav_menu_item:not(:first-child) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .gnav_menu_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    font-size: 18px;
  }
  .gnav_menu_item:hover .gnav_mega {
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .gnav_menu_item_label {
    --arrow: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    border-top: 1px solid #D3DCE5;
    padding: 20px 0;
    font-size: 15px;
    position: relative;
  }
  .gnav_menu_item_label:last-child {
    border-bottom: 1px solid #D3DCE5;
  }
  .gnav_menu_item_label a::after {
    content: "";
    width: var(--arrow);
    height: var(--arrow);
    border-top: 1px solid var(--blue);
    border-right: 1px solid var(--blue);
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
}
@media screen and (min-width: 768px) {
  .gnav_menu_item_label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    cursor: pointer;
    position: relative;
  }
  .gnav_menu_item_label_after {
    width: 100%;
    height: 4px;
    background: var(--blue);
    position: absolute;
    bottom: -1px;
    left: 0;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    z-index: 100;
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}
.gnav_menu_item_contact {
  --arrow: 8px;
}
.gnav_menu_item_contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 61px;
  border-radius: 4px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .gnav_menu_item_contact a {
    width: 250px;
    height: 42px;
  }
}
@media screen and (max-width: 767px) {
  .gnav_menu_item_contact a::after {
    content: "";
    width: var(--arrow);
    height: var(--arrow);
    border-top: 1px solid var(--header-txt);
    border-right: 1px solid var(--header-txt);
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
}
.gnav_menu_item_contact a svg.btn_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.gnav_menu_item_contact a rect {
  fill: none;
  stroke: var(--header-txt);
  stroke-width: 2px;
  stroke-dasharray: 600, 0;
}
@media screen and (min-width: 768px) {
  .gnav_menu_item_contact a:hover rect {
    -webkit-animation-name: gnav_menu_item_contact;
            animation-name: gnav_menu_item_contact;
    -webkit-animation-duration: 1.35s;
            animation-duration: 1.35s;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
}
.gnav_mega {
  display: block;
  background: #F5F6F7;
}
@media screen and (min-width: 768px) {
  .gnav_mega {
    width: 100vw;
    border-top: 1px solid #D3DCE5;
    padding: 40px 0 45px;
    position: absolute;
    top: var(--header-height);
    right: calc(0px - var(--header-pr));
    z-index: 90;
    -webkit-transition: opacity 0.25s, visibility 0.25s;
    transition: opacity 0.25s, visibility 0.25s;
    opacity: 0;
    visibility: hidden;
  }
}
.gnav_mega_list {
  display: grid;
  grid-template-columns: 3fr 4fr;
  gap: 0 20px;
  max-width: 100%;
  width: 761px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .gnav_mega_list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}
.gnav_mega_list li {
  font-size: 15px;
}
.gnav_mega_list li a > span::after {
  --arrow-size: 17px;
  content: "";
  width: var(--arrow-size);
  height: var(--arrow-size);
  background: url(https://tw.osaka-chikagai.jp/front/www/img/common/icon_com_arrow.svg) no-repeat center center/var(--arrow-size) var(--arrow-size);
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .gnav_mega_list li {
    font-size: 12px;
  }
  .gnav_mega_list li a {
    height: 43px;
    padding: 0;
  }
  .gnav_mega_list li a > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    height: 43px;
  }
  .gnav_mega_list li a > span::after {
    right: 0;
  }
  .gnav_mega_list li:not(:nth-last-child(-n+2)) {
    border-bottom: 1px solid #D3DCE5;
  }
}
@media screen and (min-width: 768px) {
  .gnav_mega_list_com {
    grid-template-columns: 2fr 3fr 2fr 2fr;
  }
  .gnav_mega_list_com li:not(:nth-child(4n)) a > span {
    border-right: 1px solid #D3DCE5;
  }
  .gnav_mega_list_com li:not(:nth-child(4n+1)) a {
    padding-left: 40px;
  }
  .gnav_mega_list_com li:nth-child(4n) a > span::after {
    right: 0;
  }
}
@media screen and (min-width: 768px) {
  .gnav_mega_list_faci {
    grid-template-columns: repeat(3, 1fr);
  }
  .gnav_mega_list_faci li:not(:nth-child(3n)) a > span {
    border-right: 1px solid #D3DCE5;
  }
  .gnav_mega_list_faci li:not(:nth-child(3n+1)) a {
    padding-left: 40px;
  }
  .gnav_mega_list_faci li:nth-child(3n) a > span::after {
    right: 0;
  }
}
.gnav_mega_list a {
  display: block;
  padding: 8px 0;
}
@media screen and (min-width: 768px) {
  .gnav_mega_list a {
    padding: 13px 0;
  }
}
.gnav_mega_list a > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  height: 35px;
  position: relative;
}
.gnav_mega .container {
  padding: 0 8px;
}

.h_lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 28px;
  height: 100%;
  text-align: center;
  font-weight: 500;
  position: absolute;
  top: 50%;
  right: 82px;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  z-index: 100000;
}
@media screen and (min-width: 768px) {
  .h_lang {
    width: 62px;
    right: 102px;
  }
  .h_lang::after {
    content: "Language";
    font-family: "Akshar", "Noto Sans JP", sans-serif;
    font-size: 11px;
    text-align: center;
  }
}
.h_lang_icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  text-align: center;
}
.h_lang_list {
  background: #fff;
  padding: 0;
  border-radius: 2px;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.12);
}
.h_lang_list_wrap {
  display: none;
  font-size: 14px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
}
.h_lang_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 120px;
  height: 46px;
  position: relative;
}
.h_lang_list li:not(:last-child) a::after {
  content: "";
  height: 1px;
  width: 97px;
  background: #D3DCE5;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}

/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
====================================================== */
#main {
  padding-top: 0 !important;
  padding: 0;
  margin: 0 auto;
  clear: both;
  overflow: hidden;
}

/* ▼ パンくず
--------------------------------------- */
#path {
  margin: 100px 0 0;
  padding-bottom: 10px;
  font-size: 12px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #path {
    margin: 60px 0 0;
    padding-bottom: 30px;
    font-size: 14px;
  }
}
#path ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#path li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  color: var(--txt-gray);
}
#path li:not(:first-child)::before {
  content: "";
  width: 12px;
  height: 1px;
  background: var(--txt-gray);
  margin: 0 8px;
}
#path li a {
  color: var(--txt-black) !important;
}

/* ▼ システム
--------------------------------------- */
.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* ▼▼▼ フッター
===================================== */
footer {
  width: 100%;
  padding: 40px 0 60px;
  background: #000;
  clear: both;
  position: relative;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 40px 0 70px;
  }
}
footer::after {
  content: "";
  --f-bg-size: 96px;
  width: var(--f-bg-size);
  height: var(--f-bg-size);
  background: url(https://tw.osaka-chikagai.jp/front/www/img/common/f_bg.webp) no-repeat left top/cover;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media screen and (min-width: 768px) {
  footer::after {
    --f-bg-size: 162px;
  }
}

.fnav_wrap {
  border-top: 1px solid #54565C;
  padding-top: 30px;
  margin-top: 30px;
  color: #fff;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .fnav_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 40px;
  }
}
.fnav_logo {
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .fnav_logo {
    font-size: 33px;
  }
}
.fnav ul {
  display: grid;
  grid-template-columns: 100%;
  gap: 16px 32px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .fnav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    margin-top: 0;
  }
}
.fnav ul a {
  padding-left: 30px;
  position: relative;
}
.fnav ul a::after {
  content: "";
  height: 17px;
  width: 17px;
  background: url(https://tw.osaka-chikagai.jp/front/www/img/common/arrow_fnav.svg) no-repeat center center/17px 17px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .fnav ul a {
    padding-left: 0;
    padding-right: 30px;
  }
  .fnav ul a::after {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 768px) {
  .fnav_link {
    position: relative;
  }
  .fnav_link_after {
    width: 100%;
    height: 2px;
    background: #FFF;
    position: absolute;
    bottom: -5px;
    left: 0;
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}
.fnav_btm {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
}

.fbtm_logo_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
@media screen and (min-width: 768px) {
  .fbtm_logo_list {
    grid-template-columns: repeat(6, 1fr);
  }
}
.fbtm_logo_list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 15px 12px;
  background: #fff;
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .fbtm_logo_list a {
    padding: 17px;
  }
}
.fbtm_li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
  color: #FFF;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .fbtm_li {
    margin-top: 50px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 30px;
  }
}
.fbtm_li a {
  display: block;
  padding-left: 20px;
  position: relative;
}
.fbtm_li a::after {
  --arrow: 6px;
  content: "";
  width: var(--arrow);
  height: var(--arrow);
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  top: 50%;
  left: -2px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.f_copy {
  margin-top: 40px;
  color: #FFF;
  font-size: 10px;
  font-weight: 200;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .f_copy {
    margin-top: 18px;
    text-align: right;
  }
}

.pagination {
  --nav-size:50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: 290px;
  margin: 40px auto 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .pagination {
    margin-top: 60px;
  }
}
.pagination li:first-child, .pagination li:last-child {
  top: 3px;
  position: absolute;
}
.pagination li:first-child span, .pagination li:last-child span {
  display: none;
}
.pagination li:first-child a, .pagination li:last-child a {
  --arrow: 25px;
  content: "";
  width: var(--arrow);
  position: relative;
}
.pagination li:first-child a::before, .pagination li:last-child a::before {
  content: "";
  width: var(--arrow);
  height: var(--arrow);
  background: url(https://tw.osaka-chikagai.jp/front/www/img/common/icon_arrow_page.svg) no-repeat center center/var(--arrow) var(--arrow);
  position: absolute;
  top: 0;
}
.pagination li:first-child {
  left: -30px;
}
@media screen and (min-width: 768px) {
  .pagination li:first-child {
    left: -55px;
  }
}
.pagination li:first-child a::before {
  right: 0;
  -webkit-transform: scaleX(-100%);
          transform: scaleX(-100%);
}
.pagination li:last-child {
  right: -30px;
}
@media screen and (min-width: 768px) {
  .pagination li:last-child {
    right: -55px;
  }
}
.pagination li:last-child a::before {
  left: 0;
}
.pagination .page-link {
  display: block;
  width: var(--nav-size);
  padding-bottom: 15px;
  color: #AEB3BA;
  font-size: 20px;
  font-weight: 600;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  text-align: center;
}
.pagination .active .page-link {
  color: var(--txt-black);
  position: relative;
}
.pagination .active .page-link::after {
  content: "";
  width: 100%;
  height: 3px;
  background: var(--txt-black);
  position: absolute;
  bottom: 0;
  left: 0;
}

/* ▼ ページ上部へ戻る
--------------------------------------- */
.pagetop {
  --size: 40px;
  --arrow-size: 11px;
  width: var(--size);
  height: var(--size);
  background: var(--txt-black);
  bottom: 20px;
  right: 20px;
  z-index: 2000;
  position: fixed;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .pagetop {
    --size: 60px;
  }
}
.pagetop::after {
  content: "";
  width: var(--arrow-size);
  height: var(--arrow-size);
  border-left: #FFF 1px solid;
  border-top: #FFF 1px solid;
  position: absolute;
  top: calc(50% - 3px);
  right: calc(50% - 6px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* ▼▼▼ 404
====================================================== */
#not_found {
  padding: 100px 20px 60px;
}
@media screen and (min-width: 768px) {
  #not_found {
    padding: 8vw 20px;
  }
}
#not_found p {
  font-size: 14px;
  text-align: center;
}
#not_found p.arial {
  margin-bottom: 10px;
  font-size: 39px;
  font-family: "Arial", "メイリオ";
}
@media screen and (min-width: 768px) {
  #not_found p.arial {
    margin-bottom: 10px;
    font-size: 42px;
  }
}
#not_found p.arial + p {
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  #not_found p.arial + p {
    font-size: 18px;
  }
}
#not_found p.txt {
  margin-bottom: 30px;
  line-height: 1.6;
}
#not_found .top_btn a {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #ccc;
}