@charset "UTF-8";
/* ==============================
リセットcss
============================== */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  text-align: left;
}

main {
  display: block;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
ol,
dl {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

table {
  text-align: left;
  border-collapse: separate;
  border-spacing: 0;
}

input,
select {
  vertical-align: middle;
}

* {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* 大枠 */
html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
}

body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  line-height: 1.8;
  word-wrap: break-word;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #333;
}

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

body > #wrapper {
  height: auto;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  content: " ";
  clear: both;
  height: 0;
}

@media print {
  html {
    overflow: visible !important;
  }
  html body {
    overflow: visible !important;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  vertical-align: bottom;
  -webkit-box-shadow: #000 0 0 0;
          box-shadow: #000 0 0 0;
  /* ロールオーバー対応 */
  box-shadow: #000 0 0 0;
}

/* レスポンシブ対応 */
x:-moz-any-link, x:default {
  box-shadow: #000 0 0 0;
  /* IE7対応 */
}

font:empty {
  display: none;
}
font:empty + br {
  display: none;
}

/* リンク */
a:link, a:visited {
  color: #0066FF;
  text-decoration: none;
}
a:hover, a:active {
  color: #0066FF;
  text-decoration: underline;
}

.mincho {
  font-family: 游明朝, "Yu Mincho", YuMincho, Georgia, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  position: relative;
  font-weight: normal;
}

.container {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

/*----------------------------------------------------
アニメーション
----------------------------------------------------*/
.translateScaleUp {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateY(50px) scale(0.1);
          transform: translateY(50px) scale(0.1);
}

.visible.translateScaleUp {
  display: block;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
  opacity: 1;
}

/*----------------------------------------------------
	レスポンシブ
----------------------------------------------------*/
/*------------------------------------------
  Responsive Grid Media Queries - 1280, 1024, 768, 480
   1280-1024   - デスクトップ（デフォルトのグリッド）
   1024-768    - タブレット横長
   768-480     - タブレット縦長
   480-less    - スマホ

   .pc　　　 PCのみ
   .pc-tab　PCとタブレット
   .tab　　　タブレット
   .sp-tab　スマホとタブレット
   .sp      スマホ
--------------------------------------------*/
@media all and (min-width: 1025px) {
  .pc {
    display: block;
  }
  .pc-tab {
    display: block;
  }
  .tab {
    display: none;
  }
  .sp-tab {
    display: none;
  }
  .sp {
    display: none;
  }
}
@media all and (min-width: 769px) and (max-width: 1024px) {
  .pc {
    display: none;
  }
  .pc-tab {
    display: block;
  }
  .tab {
    display: block;
  }
  .sp-tab {
    display: block;
  }
  .sp {
    display: none;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  .pc {
    display: none;
  }
  .pc-tab {
    display: block;
  }
  .tab {
    display: block;
  }
  .sp-tab {
    display: block;
  }
  .sp {
    display: none;
  }
}
@media all and (max-width: 480px) {
  .pc {
    display: none;
  }
  .pc-tab {
    display: none;
  }
  .tab {
    display: none;
  }
  .sp-tab {
    display: block;
  }
  .sp {
    display: block;
  }
}
/* ▼▼▼ ヘッダー
=====================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 0;
  background: #fff;
}
header .container {
  width: 100%;
  max-width: 1200px;
  padding: 0;
  height: 134px;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .container .header_inner {
  width: 26.67%;
  max-width: 320px;
}
header .lang {
  cursor: pointer;
  padding: 0 10px;
  position: fixed;
  right: 0;
  top: 144px;
  width: 60px;
  height: 60px;
  border-radius: 10px 0 0 10px;
  background-color: #0074d1;
  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;
  z-index: 10;
  -webkit-transition: width 0.2s linear, padding 0.2s linear;
  transition: width 0.2s linear, padding 0.2s linear;
}
header .lang .icon {
  width: 40px;
}
header .lang:hover {
  cursor: auto;
  width: auto;
}
header .lang:hover .translate {
  display: block;
}
header .lang .translate {
  display: none;
  margin-left: 15px;
  -webkit-transition: display 0.2s linear;
  transition: display 0.2s linear;
}

#google_translate_element {
  border-radius: 3px;
  overflow: hidden;
}
#google_translate_element .goog-te-gadget-simple {
  border: none;
}

#site_title {
  width: 320px;
  height: 51px;
}
#site_title a {
  vertical-align: top;
  display: inline-block;
  height: 51px;
}
#site_title a img {
  vertical-align: top;
}

.hamburger_menu_wrap {
  display: none;
}

/* ====================
ページタイトル
==================== */
.page_main {
  position: relative;
  margin: 0 auto 100px;
}
.page_main .page_main__title {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30%;
  text-align: center;
  font-size: 60px;
  color: #0053A5;
  line-height: 1.4;
}
.page_main .page_main__title::before {
  position: absolute;
  top: -120px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: " ";
  display: inline-block;
  width: 69px;
  height: 108px;
  background: url(../img/common/panda_front.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.page_main .page_main__image {
  height: 550px;
  width: 70%;
  background-color: #fff;
  margin: 0 0 0 auto;
}
.page_main .mv_slide {
  height: 550px;
  width: 70%;
  background-color: #fff;
  margin: 0 0 0 auto;
  overflow: hidden;
}
.page_main .mv_slide .swiper .swiper-wrapper .swiper-slide {
  height: 550px;
  width: 100%;
}
.page_main .mv_slide .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 550px;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.sub_title {
  font-size: 42px;
  text-align: center;
  color: #0053A5;
  margin: 0 0 20px -118px;
  position: relative;
}
.sub_title::before {
  margin: 0 10px 0 0;
  content: " ";
  display: inline-block;
  width: 108px;
  height: 86px;
  background: url(../img/common/sub_title_panda.svg) no-repeat;
  background-size: cover;
  vertical-align: middle;
}
.sub_title .sub_wrap {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  line-height: 1.2;
}
.sub_title .sub_wrap .sub {
  margin: 10px 0 0;
  display: block;
  font-size: 20px;
  text-align: center;
  line-height: 1.2;
}

.sub_title_txt {
  text-align: center;
  font-size: 18px;
  line-height: 2;
  margin: 0 0 40px;
}

/* グローバルナビゲーション */
#gnav {
  width: 62.1%;
  max-width: 745px;
  background-color: #EEEEEE;
  height: 40px;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#gnav::before {
  position: absolute;
  left: -68px;
  top: -47px;
  content: " ";
  display: inline-block;
  width: 40px;
  height: 87px;
  background-color: #EEEEEE;
  border-radius: 0 0 0 10px;
}
#gnav::after {
  position: absolute;
  left: 99.5%;
  top: 0;
  content: " ";
  display: inline-block;
  width: 100vw;
  height: 40px;
  background-color: #EEEEEE;
  z-index: 0;
}
#gnav .gnav_list {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 653px;
  font-size: 16px;
  position: relative;
  margin-right: 14px;
}
#gnav .gnav_list::before {
  position: absolute;
  left: -28px;
  top: 0;
  content: " ";
  display: inline-block;
  width: 14px;
  height: 40px;
  background-color: #eee;
}
#gnav .gnav_list li {
  width: calc((100% - 56px) / 5);
  position: relative;
}
#gnav .gnav_list li:first-child::before {
  position: absolute;
  left: -14px;
  top: -4px;
  content: " ";
  display: inline-block;
  width: 14px;
  height: 48px;
  background-color: #EEEEEE;
  border-radius: 2px;
}
#gnav .gnav_list li::after {
  position: absolute;
  right: -14px;
  top: -4px;
  content: " ";
  display: inline-block;
  width: 14px;
  height: 48px;
  background-color: #EEEEEE;
  border-radius: 2px;
}
#gnav .gnav_list li a {
  color: inherit;
  -webkit-transition: background-color 0.2s linear, color 0.2s linear;
  transition: background-color 0.2s linear, color 0.2s linear;
  text-decoration: none;
  height: 40px;
  display: block;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #EEEEEE;
}
#gnav .gnav_list li a:hover {
  -webkit-transition: background-color 0.2s linear, color 0.2s linear;
  transition: background-color 0.2s linear, color 0.2s linear;
  background-color: #0053A5;
  color: #fff;
}
#gnav .header_contact {
  position: relative;
  z-index: 1;
}
#gnav .header_contact a {
  -webkit-transition: background-color 0.2s linear, border 0.2s linear;
  transition: background-color 0.2s linear, border 0.2s linear;
  height: 60px;
  width: 60px;
  background-color: #0053A5;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #fff;
}
#gnav .header_contact a path {
  -webkit-transition: fill 0.2s linear;
  transition: fill 0.2s linear;
}
#gnav .header_contact a:hover {
  background-color: #fff;
  border: 2px solid #0053A5;
  color: #fff;
}
#gnav .header_contact a:hover path {
  fill: #0053A5;
}
#gnav .header_contact::after {
  position: absolute;
  top: -23px;
  right: -55px;
  content: " ";
  display: inline-block;
  width: 33px;
  height: 41px;
  background: url(../img/common/icon_panda.svg) no-repeat;
  background-size: contain;
}
#gnav .header_contact span {
  display: none;
}

/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
=====================================*/
#main {
  width: 100%;
  padding: 134px 0 0;
  margin: 0 auto;
  clear: both;
  overflow: hidden;
}

/* パンくず */
#path {
  margin-bottom: 10px;
  font-size: 1.4rem;
  overflow: hidden;
}
#path li {
  float: left;
  margin-right: 10px;
}
#path li:after {
  content: ">";
  margin-left: 10px;
  color: #333;
}
#path li:last-child:after {
  content: "";
}

/* ▼▼▼ ページナビ
============================== */
#pager .pagination {
  width: 100%;
  position: relative;
  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;
}
#pager .pagination .item {
  margin: 0 5px;
  width: 40px;
  height: 40px;
  text-align: center;
  position: relative;
}
#pager .pagination .item .page-numbers {
  display: block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #eee;
  color: #333;
  text-decoration: none;
  -webkit-transition: background 0.2s linear, color 0.2s linear;
  transition: background 0.2s linear, color 0.2s linear;
}
#pager .pagination .item .page-numbers:hover {
  background: #0053A5;
  color: #fff;
}
#pager .pagination .item .page-numbers.current {
  background: #0053A5;
  color: #fff;
  text-align: center;
}
#pager .pagination .item .page-numbers.dots:hover {
  background: #eee;
  color: #333;
}
#pager .pagination .item .prev,
#pager .pagination .item .next {
  font-size: 12px;
}

.btn {
  width: 330px;
  position: relative;
}
.btn a,
.btn input {
  display: block;
  border: 3px solid #0053A5;
  height: 60px;
  border-radius: 30px;
  text-align: center;
  line-height: 54px;
  background-color: #fff;
  font-size: 16px;
  font-weight: bold;
  color: #0053A5;
  text-decoration: none;
  -webkit-transition: background-color 0.2s linear, color 0.2s linear;
  transition: background-color 0.2s linear, color 0.2s linear;
}
.btn a::before,
.btn input::before {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: " ";
  display: inline-block;
  width: 9px;
  height: 16px;
  background: url(../img/common/btn_arrow_right.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
  -webkit-transition: background 0.2s linear, color 0.2s linear;
  transition: background 0.2s linear, color 0.2s linear;
}
.btn:hover a,
.btn:hover input {
  background-color: #0053A5;
  color: #fff;
  text-decoration: none;
}
.btn:hover a::before,
.btn:hover input::before {
  width: 9px;
  height: 16px;
  background: url(../img/common/btn_arrow_right_wh.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
}

/* =====================================
ポップアップ
===================================== */
.popup,
.popup_movie {
  cursor: pointer;
}

#pop_up {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  z-index: 9999;
}
#pop_up .pop_up_inner {
  height: 80%;
  width: 70%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
#pop_up .pop_up_inner .close {
  width: 60px;
  height: 60px;
  position: absolute;
  right: -80px;
  top: 0;
}
#pop_up .pop_up_inner .pop_up_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding: 40px;
}
#pop_up .pop_up_inner .pop_up_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
}
#pop_up .pop_up_inner .pop_up_movie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding: 40px;
}
#pop_up .pop_up_inner .pop_up_movie iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  max-width: 1000px;
  max-height: 100%;
  display: block;
  margin: auto;
}

/* ▼▼▼ フッター
=====================================*/
footer {
  width: 100%;
  background: #00347A;
  clear: both;
  overflow: hidden;
  color: #fff;
  font-size: 13px;
  padding: 50px 0 0;
}
footer .footer_logo {
  width: 320px;
  height: 51px;
}
footer .footer_logo a {
  vertical-align: top;
  display: inline-block;
  height: 51px;
}
footer .footer_logo a img {
  vertical-align: top;
}
footer .footer_inner {
  width: 100%;
  padding: 40px 0 50px;
  margin: 0 auto;
  position: relative;
}
footer .footer_inner .footer_left {
  width: 31.7%;
  max-width: 380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
footer .footer_inner .footer_left .address {
  line-height: 1.8;
  font-weight: 500;
  margin: 0;
  width: 100%;
}
footer .footer_inner .footer_left .address font + br {
  display: none;
}
footer .footer_inner .footer_left .address small {
  font-size: 0;
}
footer .footer_inner .footer_left .address font small {
  font-size: inherit;
}
footer .footer_inner .footer_left .google_map_link {
  position: relative;
  margin: 0 0 15px;
}
footer .footer_inner .footer_left .google_map_link::before {
  margin: 0 5px 0 0;
  content: " ";
  display: inline-block;
  width: 12px;
  height: 16px;
  background: url(../img/common/icon_map.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
}
footer .footer_inner .footer_left .google_map_link a {
  color: #fff;
  text-decoration: underline;
}
footer .footer_inner .footer_left .btn_iitoko {
  width: 180px;
  margin-top: auto;
}
footer .footer_inner .footer_left .btn_iitoko 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;
  border: none;
  width: 180px;
  height: 50px;
  border-radius: 4px;
  text-align: center;
  color: #00347A;
}
footer .footer_inner .footer_left .btn_iitoko a::before {
  right: 10px;
  top: 50%;
  width: 6px;
  height: 11px;
}
footer .footer_inner .footer_left .btn_iitoko a svg {
  height: 34px;
}
footer .footer_inner .footer_left .btn_iitoko a svg path,
footer .footer_inner .footer_left .btn_iitoko a svg rect {
  -webkit-transition: fill 0.2s linear;
  transition: fill 0.2s linear;
}
footer .footer_inner .footer_left .btn_iitoko:hover a {
  background-color: #00347A;
  border: 1px solid #fff;
}
footer .footer_inner .footer_left .btn_iitoko:hover a::before {
  width: 6px;
  height: 11px;
  background: url(../img/common/btn_arrow_right_wh.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
}
footer .footer_inner .footer_left .btn_iitoko:hover a svg path,
footer .footer_inner .footer_left .btn_iitoko:hover a svg rect {
  fill: #fff;
}
footer .footer_inner .footer_right {
  width: 68.3%;
  max-width: 820px;
}
footer .footer_inner .footer_right .footer_nav {
  width: 100%;
  margin: 0 0 40px;
}
footer .footer_inner .footer_right .footer_nav .nav_box {
  width: 25%;
}
footer .footer_inner .footer_right .footer_nav .nav_box .lower_page {
  margin: 0 0 10px;
}
footer .footer_inner .footer_right .footer_nav .nav_box .lower_page a {
  color: #fff;
}
footer .footer_inner .footer_right .footer_nav .nav_box .child_page li:not(:last-child) {
  margin: 0 0 5px 0;
}
footer .footer_inner .footer_right .footer_nav .nav_box .child_page li::before {
  content: "−";
  margin: 0 2px 0 0;
}
footer .footer_inner .footer_right .footer_nav .nav_box .child_page li a {
  color: #fff;
}
footer .footer_inner .footer_right .footer_nav .nav_box .lower_pagelist li:not(:last-child) {
  margin: 0 0 10px 0;
}
footer .footer_inner .footer_right .footer_nav .nav_box .lower_pagelist li a {
  color: #fff;
}
footer .footer_inner .footer_right .footer_sub_nav {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .footer_inner .footer_right .footer_sub_nav .sub_left {
  width: 50%;
}
footer .footer_inner .footer_right .footer_sub_nav .sub_left .nav_movie::before {
  margin: 0 10px 0 0;
  content: " ";
  display: inline-block;
  width: 29px;
  height: 20px;
  background: url(../img/common/icon_youtube.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
}
footer .footer_inner .footer_right .footer_sub_nav .sub_left .nav_movie a {
  color: #fff;
}
footer .footer_inner .footer_right .footer_sub_nav .sub_left .lower_pagelist {
  width: 100%;
}
footer .footer_inner .footer_right .footer_sub_nav .sub_left .lower_pagelist li {
  width: 50%;
}
footer .footer_inner .footer_right .footer_sub_nav .sub_left .lower_pagelist li:not(:last-child) {
  margin: 0;
}
footer .footer_inner .footer_right .footer_sub_nav .sub_left .lower_pagelist li a {
  color: #fff;
}
footer .footer_inner .footer_right .footer_sub_nav .sub_right .footer_contact {
  width: 300px;
  position: relative;
}
footer .footer_inner .footer_right .footer_sub_nav .sub_right .footer_contact a {
  border: 3px solid #fff;
  background-color: #fff;
  color: #00347A;
}
footer .footer_inner .footer_right .footer_sub_nav .sub_right .footer_contact:hover a {
  background-color: #00347A;
  color: #fff;
}
footer .copyright {
  font-size: 12px;
  text-align: center;
  height: 50px;
  background-color: #01285D;
  line-height: 50px;
}

/* =====================================
reCAPTCHA
===================================== */
.grecaptcha-badge {
  visibility: hidden;
}

/* =====================================
404ページ
===================================== */
#not_found {
  padding: 100px 20px 150px;
  max-width: 940px;
}
#not_found .title_wrap_404 {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#not_found .title_wrap_404 .title_wrap {
  width: calc(100% - 330px);
}
#not_found .title_wrap_404 .title_wrap .title_404 {
  color: #00347A;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}
#not_found .title_wrap_404 .title_wrap .title_not {
  font-size: 22px;
  margin-top: 10px;
  color: #00347A;
}
#not_found .title_wrap_404 .title_wrap .txt_404 {
  margin-top: 50px;
}
#not_found .title_wrap_404 .image {
  width: 300px;
  height: 300px;
}
#not_found .title_wrap_404 .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
}
#not_found .btn {
  margin: 70px auto 0;
}

/* =====================================

	▼▼▼ min-width: 1025px 〜　max-width: 1200px

===================================== */
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  #site_title {
    width: 100%;
    height: 4.25vw;
  }
  #site_title a {
    vertical-align: top;
    display: inline-block;
    height: 4.25vw;
  }
  #site_title a img {
    vertical-align: top;
  }
  /* グローバルナビゲーション */
  #gnav .header_contact::after {
    position: static;
    content: none;
    display: none;
  }
}
/* =====================================

	▼▼▼ 1024px以下

===================================== */
@media screen and (max-width: 1024px) {
  #main {
    padding: 70px 0 0;
  }
  /* ▼▼▼ ヘッダー
  =====================================*/
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    z-index: 200;
  }
  header .container {
    width: 100%;
    max-width: 100%;
    display: block;
    height: 70px;
    padding: 0 20px;
  }
  header .container .header_inner {
    width: 100%;
    max-width: 100%;
    position: relative;
    height: 70px;
    z-index: 2000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .lang {
    cursor: pointer;
    padding: 0;
    position: static;
    top: 144px;
    width: calc(100% - 80px);
    height: auto;
    margin: 40px auto 0;
    border-radius: 25px;
    background-color: transparent;
    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;
    z-index: 10;
    -webkit-transition: width 0.2s linear, padding 0.2s linear;
    transition: width 0.2s linear, padding 0.2s linear;
  }
  header .lang .icon {
    width: 40px;
    display: none;
  }
  header .lang:hover {
    cursor: auto;
    width: auto;
  }
  header .lang:hover .translate {
    display: block;
  }
  header .lang .translate {
    display: block;
    margin-left: 0;
  }
  #site_title {
    width: 100%;
    height: 4.25vw;
  }
  #site_title a {
    vertical-align: top;
    display: inline-block;
    height: 4.25vw;
  }
  #site_title a img {
    vertical-align: top;
    height: 4.25vw;
  }
  /* --------------------
  	ハンバーガーメニュー
  -------------------- */
  .hamburger_menu_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    right: 0;
    top: 19px;
  }
  .hamburger_menu_wrap .menu {
    margin-right: 10px;
    font-size: 13px;
    color: #0053A5;
  }
  .hamburger_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    border: none;
    background: #fff;
  }
  .hamburger_menu .hamburger-menu__line {
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background-color: #0053A5;
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .hamburger_menu .hamburger-menu__line::before, .hamburger_menu .hamburger-menu__line::after {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background-color: #0053A5;
    position: absolute;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .hamburger_menu .hamburger-menu__line::before {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
  .hamburger_menu .hamburger-menu__line::after {
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
  .hamburger_menu.is_nav_open {
    background-color: transparent;
  }
  .hamburger_menu.is_nav_open .hamburger-menu__line {
    background-color: transparent;
  }
  .hamburger_menu.is_nav_open .hamburger-menu__line::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .hamburger_menu.is_nav_open .hamburger-menu__line::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  /* グローバルナビゲーション */
  #gnav {
    display: block;
    pointer-events: auto;
    right: -380px;
    width: 85%;
    max-width: 380px;
    position: fixed;
    z-index: 1000;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    visibility: visible;
    left: auto;
    overflow: auto;
    height: 100%;
    background: #0053A5;
    padding-bottom: 100px;
  }
  #gnav::before {
    position: static;
    content: none;
    display: none;
  }
  #gnav::after {
    position: static;
    content: none;
    display: none;
  }
  #gnav.is_nav_open {
    z-index: 100;
    right: 0;
  }
  #gnav .gnav_list {
    display: block;
    width: calc(100% - 80px);
    max-width: calc(100% - 80px);
    font-size: 16px;
    margin: 40px auto 0;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
  }
  #gnav .gnav_list::before {
    position: static;
    content: none;
    display: none;
  }
  #gnav .gnav_list li {
    width: 100%;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
  }
  #gnav .gnav_list li:first-child::before {
    position: static;
    content: none;
    display: none;
  }
  #gnav .gnav_list li::after {
    position: absolute;
    right: 20px;
    top: 50%;
    content: " ";
    display: inline-block;
    width: 36px;
    height: 6px;
    background: url(../img/common/menu_arrow.svg) no-repeat;
    background-size: contain;
    vertical-align: middle;
  }
  #gnav .gnav_list li a {
    padding: 0 20px;
    height: 60px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    background-color: #0053A5;
    color: #fff;
  }
  #gnav .gnav_list li a:hover {
    background-color: #0053A5;
    color: #fff;
  }
  #gnav .header_contact {
    margin: 40px 0 0;
    position: relative;
    z-index: 1;
  }
  #gnav .header_contact a {
    text-decoration: none;
    -webkit-transition: background-color 0.2s linear, border 0.2s linear;
    transition: background-color 0.2s linear, border 0.2s linear;
    height: 50px;
    width: calc(100% - 80px);
    background-color: #fff;
    border-radius: 30px;
    border: none;
    color: #0053A5;
    margin: 0 auto;
  }
  #gnav .header_contact a svg {
    width: 24px;
  }
  #gnav .header_contact a path {
    -webkit-transition: fill 0.2s linear;
    transition: fill 0.2s linear;
    fill: #0053A5;
  }
  #gnav .header_contact a:hover {
    background-color: #fff;
    border: none;
    color: #0053A5;
  }
  #gnav .header_contact a:hover path {
    fill: #0053A5;
  }
  #gnav .header_contact::after {
    position: static;
    content: none;
    display: none;
  }
  #gnav .header_contact span {
    display: inline-block;
    margin-left: 10px;
  }
  /* ====================
  ページタイトル
  ==================== */
  .page_main .page_main__title {
    font-size: 48px;
  }
}
/* =====================================

	▼▼▼ max-width: 767px

===================================== */
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
  /* ====================
  ページタイトル
  ==================== */
  .page_main {
    margin: 0 auto 50px;
  }
  .page_main .page_main__title {
    width: 35%;
    text-align: center;
    font-size: 26px;
    margin-top: 15px;
  }
  .page_main .page_main__title::before {
    position: absolute;
    top: -60px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    content: " ";
    display: inline-block;
    width: 40px;
    height: 63px;
    background: url(../img/common/panda_front.svg) no-repeat;
    background-size: contain;
    vertical-align: middle;
  }
  .page_main .page_main__image {
    height: 40vw;
    width: 65%;
    background-color: #eee;
    margin: 0 0 0 auto;
  }
  .page_main .mv_slide {
    height: 40vw;
    width: 65%;
    margin: 0 0 0 auto;
  }
  .page_main .mv_slide .swiper .swiper-wrapper .swiper-slide {
    height: 40vw;
  }
  .page_main .mv_slide .swiper .swiper-wrapper .swiper-slide img {
    height: 40vw;
  }
  .sub_title {
    font-size: 22px;
    margin: 0 0 10px -70px;
  }
  .sub_title::before {
    content: " ";
    display: inline-block;
    width: 60px;
    height: 48px;
    background: url(../img/common/sub_title_panda.svg) no-repeat;
    background-size: cover;
    vertical-align: middle;
  }
  .sub_title_txt {
    text-align: left;
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 20px;
  }
  .btn {
    width: 300px;
    position: relative;
  }
  .btn a {
    border: 2px solid #0053A5;
    height: 50px;
    border-radius: 27px;
    text-align: center;
    line-height: 46px;
    font-size: 14px;
  }
  .btn a::before {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    content: " ";
    display: inline-block;
    width: 7px;
    height: 13px;
    background: url(../img/common/btn_arrow_right.svg) no-repeat;
    background-size: contain;
    vertical-align: middle;
    -webkit-transition: background 0.2s linear, color 0.2s linear;
    transition: background 0.2s linear, color 0.2s linear;
  }
  .btn:hover a::before {
    width: 7px;
    height: 13px;
    background: url(../img/common/btn_arrow_right_wh.svg) no-repeat;
    background-size: contain;
    vertical-align: middle;
  }
  #pop_up .pop_up_inner {
    height: 420px;
    width: 90%;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
  }
  #pop_up .pop_up_inner .close {
    width: 60px;
    height: 60px;
    position: absolute;
    right: 0;
    top: -70px;
  }
  #pop_up .pop_up_inner .pop_up_img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
  }
  #pop_up .pop_up_inner .pop_up_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    font-family: "object-fit: contain;";
  }
  /* ▼▼▼ フッター
  =====================================*/
  footer {
    width: 100%;
    font-size: 13px;
    padding: 30px 0 0;
  }
  footer .footer_logo {
    width: auto;
    height: 4.25vw;
  }
  footer .footer_logo a {
    height: 4.25vw;
  }
  footer .footer_inner {
    width: 100%;
    padding: 40px 0 50px;
    display: block;
  }
  footer .footer_inner .footer_left {
    width: 100%;
    max-width: 100%;
    margin: 0 0 30px;
    display: block;
  }
  footer .footer_inner .footer_left .address {
    line-height: 1.8;
    font-weight: 500;
    margin: 0 auto 0;
  }
  footer .footer_inner .footer_left .google_map_link {
    position: relative;
  }
  footer .footer_inner .footer_left .google_map_link::before {
    margin: 0 5px 0 0;
    content: " ";
    display: inline-block;
    width: 12px;
    height: 16px;
    background: url(../img/common/icon_map.svg) no-repeat;
    background-size: contain;
    vertical-align: middle;
  }
  footer .footer_inner .footer_left .google_map_link a {
    color: #fff;
    text-decoration: underline;
  }
  footer .footer_inner .footer_left .btn_iitoko {
    width: 200px;
    margin: 30px 0 0;
  }
  footer .footer_inner .footer_left .btn_iitoko a {
    width: 200px;
    height: 50px;
    border-radius: 4px;
    text-align: center;
    color: #00347A;
  }
  footer .footer_inner .footer_left .btn_iitoko a::before {
    right: 10px;
    top: 50%;
    width: 6px;
    height: 11px;
  }
  footer .footer_inner .footer_left .btn_iitoko a svg {
    height: 34px;
  }
  footer .footer_inner .footer_left .btn_iitoko a svg path,
  footer .footer_inner .footer_left .btn_iitoko a svg rect {
    -webkit-transition: fill 0.2s linear;
    transition: fill 0.2s linear;
  }
  footer .footer_inner .footer_left .btn_iitoko:hover a {
    background-color: #00347A;
    border: 1px solid #fff;
  }
  footer .footer_inner .footer_left .btn_iitoko:hover a::before {
    width: 6px;
    height: 11px;
    background: url(../img/common/btn_arrow_right_wh.svg) no-repeat;
    background-size: contain;
    vertical-align: middle;
  }
  footer .footer_inner .footer_left .btn_iitoko:hover a svg path,
  footer .footer_inner .footer_left .btn_iitoko:hover a svg rect {
    fill: #fff;
  }
  footer .footer_inner .footer_right {
    width: 100%;
    max-width: 100%;
  }
  footer .footer_inner .footer_right .footer_nav {
    width: 100%;
    margin: 0 0 40px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .footer_inner .footer_right .footer_nav .nav_box {
    width: 50%;
    margin: 0 0 20px;
  }
  footer .footer_inner .footer_right .footer_nav .nav_box .lower_page {
    margin: 0 0 10px;
  }
  footer .footer_inner .footer_right .footer_nav .nav_box .lower_page a {
    color: #fff;
  }
  footer .footer_inner .footer_right .footer_nav .nav_box .child_page li:not(:last-child) {
    margin: 0 0 5px 0;
  }
  footer .footer_inner .footer_right .footer_nav .nav_box .child_page li::before {
    content: "−";
    margin: 0 2px 0 0;
  }
  footer .footer_inner .footer_right .footer_nav .nav_box .child_page li a {
    color: #fff;
  }
  footer .footer_inner .footer_right .footer_nav .nav_box .lower_pagelist li:not(:last-child) {
    margin: 0 0 10px 0;
  }
  footer .footer_inner .footer_right .footer_nav .nav_box .lower_pagelist li a {
    color: #fff;
  }
  footer .footer_inner .footer_right .footer_sub_nav {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  footer .footer_inner .footer_right .footer_sub_nav .sub_left {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  footer .footer_inner .footer_right .footer_sub_nav .sub_left .nav_movie::before {
    margin: 0 10px 0 0;
    content: " ";
    display: inline-block;
    width: 29px;
    height: 20px;
    background: url(../img/common/icon_youtube.svg) no-repeat;
    background-size: contain;
    vertical-align: middle;
  }
  footer .footer_inner .footer_right .footer_sub_nav .sub_left .nav_movie a {
    color: #fff;
  }
  footer .footer_inner .footer_right .footer_sub_nav .sub_left .lower_pagelist {
    width: 100%;
  }
  footer .footer_inner .footer_right .footer_sub_nav .sub_left .lower_pagelist li {
    width: 50%;
  }
  footer .footer_inner .footer_right .footer_sub_nav .sub_left .lower_pagelist li:not(:last-child) {
    margin: 0;
  }
  footer .footer_inner .footer_right .footer_sub_nav .sub_left .lower_pagelist li a {
    color: #fff;
  }
  footer .footer_inner .footer_right .footer_sub_nav .sub_right .footer_contact {
    width: 300px;
    position: relative;
  }
  footer .footer_inner .footer_right .footer_sub_nav .sub_right .footer_contact a {
    border: 3px solid #fff;
    background-color: #fff;
    color: #00347A;
  }
  footer .footer_inner .footer_right .footer_sub_nav .sub_right .footer_contact:hover a {
    background-color: #00347A;
    color: #fff;
  }
  footer .copyright {
    font-size: 12px;
    text-align: center;
    height: 50px;
    background-color: #01285D;
    line-height: 50px;
  }
}
/* =====================================

	▼▼▼ 500px以下

===================================== */
@media screen and (max-width: 500px) {
  /* ====================
  ページタイトル
  ==================== */
  .page_main {
    margin: 0 auto 40px;
  }
  .page_main .page_main__title {
    width: 40%;
    text-align: center;
    font-size: 20px;
    margin-top: 5px;
  }
  .page_main .page_main__title::before {
    top: -50px;
    width: 30px;
    height: 48px;
  }
  .page_main .page_main__image {
    height: 40vw;
    width: 60%;
    margin: 0 0 0 auto;
  }
  .page_main .mv_slide {
    height: 40vw;
    width: 60%;
    margin: 0 0 0 auto;
  }
  .page_main .mv_slide .swiper .swiper-wrapper .swiper-slide {
    height: 40vw;
  }
  .page_main .mv_slide .swiper .swiper-wrapper .swiper-slide img {
    height: 40vw;
  }
  .sub_title {
    font-size: 22px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  .sub_title .sub_wrap .sub {
    font-size: 14px;
  }
  .sub_title_txt {
    text-align: justify;
  }
  #site_title {
    width: 100%;
    height: 32px;
  }
  #site_title a {
    vertical-align: top;
    display: inline-block;
    height: 32px;
  }
  #site_title a img {
    vertical-align: top;
    height: 32px;
  }
  /* ▼▼▼ ページナビ
  ============================== */
  .pager {
    margin: 30px 0 0;
    font-size: 14px;
  }
  .pager li {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 5px 10px;
    text-align: center;
  }
  #pop_up .pop_up_inner {
    height: 300px;
    width: 90%;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
  }
  #pop_up .pop_up_inner .close {
    width: 60px;
    height: 60px;
    position: absolute;
    right: 0;
    top: -70px;
  }
  #pop_up .pop_up_inner .pop_up_img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
  }
  #pop_up .pop_up_inner .pop_up_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    font-family: "object-fit: contain;";
  }
  /* ▼▼▼ フッター
  =====================================*/
  footer {
    width: 100%;
    font-size: 13px;
    padding: 30px 0 0;
  }
  footer .footer_logo {
    width: auto;
    height: 30px;
  }
  footer .footer_logo a {
    height: 30px;
  }
  footer .footer_logo a img {
    height: 30px;
  }
  footer .footer_inner {
    width: 100%;
    padding: 20px 0 40px;
    display: block;
  }
  footer .footer_inner .footer_left {
    width: 100%;
    max-width: 100%;
    margin: 0 0 30px;
  }
  footer .footer_inner .footer_left .address {
    line-height: 1.8;
    font-weight: 500;
    margin: 0 auto 0;
  }
  footer .footer_inner .footer_left .google_map_link {
    position: relative;
  }
  footer .footer_inner .footer_left .google_map_link::before {
    margin: 0 5px 0 0;
    content: " ";
    display: inline-block;
    width: 12px;
    height: 16px;
    background: url(../img/common/icon_map.svg) no-repeat;
    background-size: contain;
    vertical-align: middle;
  }
  footer .footer_inner .footer_left .google_map_link a {
    color: #fff;
    text-decoration: underline;
  }
  footer .footer_inner .footer_left .btn_iitoko {
    width: 280px;
    margin: 30px auto 0;
  }
  footer .footer_inner .footer_left .btn_iitoko a {
    width: 280px;
    height: 50px;
  }
  footer .footer_inner .footer_right {
    width: 100%;
    max-width: 100%;
  }
  footer .footer_inner .footer_right .footer_nav {
    width: 100%;
    margin: 0 0 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .footer_inner .footer_right .footer_nav .nav_box {
    width: 50%;
    margin: 0 0 20px;
  }
  footer .footer_inner .footer_right .footer_nav .nav_box .lower_page {
    margin: 0 0 10px;
  }
  footer .footer_inner .footer_right .footer_nav .nav_box .lower_page a {
    color: #fff;
  }
  footer .footer_inner .footer_right .footer_nav .nav_box .child_page li:not(:last-child) {
    margin: 0 0 5px 0;
  }
  footer .footer_inner .footer_right .footer_nav .nav_box .child_page li::before {
    content: "−";
    margin: 0 2px 0 0;
  }
  footer .footer_inner .footer_right .footer_nav .nav_box .child_page li a {
    color: #fff;
  }
  footer .footer_inner .footer_right .footer_nav .nav_box .lower_pagelist li:not(:last-child) {
    margin: 0 0 10px 0;
  }
  footer .footer_inner .footer_right .footer_nav .nav_box .lower_pagelist li a {
    color: #fff;
  }
  footer .footer_inner .footer_right .footer_sub_nav {
    display: block;
  }
  footer .footer_inner .footer_right .footer_sub_nav .sub_left {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  footer .footer_inner .footer_right .footer_sub_nav .sub_left .nav_movie {
    margin: 0 0 30px;
    text-align: center;
  }
  footer .footer_inner .footer_right .footer_sub_nav .sub_left .nav_movie::before {
    margin: 0 10px 0 0;
    content: " ";
    display: inline-block;
    width: 29px;
    height: 20px;
    background: url(../img/common/icon_youtube.svg) no-repeat;
    background-size: contain;
    vertical-align: middle;
  }
  footer .footer_inner .footer_right .footer_sub_nav .sub_left .nav_movie a {
    color: #fff;
  }
  footer .footer_inner .footer_right .footer_sub_nav .sub_left .lower_pagelist {
    width: 100%;
    margin: 0 0 20px;
  }
  footer .footer_inner .footer_right .footer_sub_nav .sub_left .lower_pagelist li {
    width: 50%;
  }
  footer .footer_inner .footer_right .footer_sub_nav .sub_left .lower_pagelist li:not(:last-child) {
    margin: 0;
  }
  footer .footer_inner .footer_right .footer_sub_nav .sub_left .lower_pagelist li a {
    color: #fff;
  }
  footer .footer_inner .footer_right .footer_sub_nav .sub_right .footer_contact {
    width: 300px;
    position: relative;
    margin: 0 auto;
  }
  footer .footer_inner .footer_right .footer_sub_nav .sub_right .footer_contact a {
    height: 50px;
    line-height: 48px;
    border: 1px solid #fff;
    background-color: #fff;
    color: #00347A;
  }
  footer .footer_inner .footer_right .footer_sub_nav .sub_right .footer_contact:hover a {
    background-color: #00347A;
    color: #fff;
  }
  footer .copyright {
    font-size: 12px;
    text-align: center;
    height: 50px;
    background-color: #01285D;
    line-height: 50px;
  }
}
/* ==============================

MAPページ

============================== */
#kawanishi_map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

#map_canvas_wrapper {
  width: calc(100% - 420px);
  height: 100vh;
  background-color: #fff;
  text-align: center;
  /*     min-height: 800px; */
}

#map_canvas {
  height: 100%;
  /*     min-height: 800px; */
}

#map_contents {
  width: 420px;
  height: 100vh;
  background-color: #0054A6;
  /*     min-height: 800px; */
}
#map_contents .map_contents_inner {
  padding: 30px 30px;
  overflow-y: auto;
  height: 100%;
}
#map_contents .map_contents_inner .map_logo {
  width: 90%;
  height: auto;
  margin: 0 auto 15px;
}
#map_contents .map_contents_inner .map_logo img {
  width: 100%;
}
#map_contents .map_contents_inner .map_text {
  color: #fff;
  text-align: justify;
  font-size: 16px;
  line-height: 1.3;
  margin: 0 0 20px;
}

#articlebox .article_wrap {
  background-color: #fff;
  padding: 0 30px 20px;
  position: relative;
}
#articlebox .article_wrap:not(:first-child) {
  margin-top: 30px;
}
#articlebox .article_wrap .cat {
  display: inline-block;
  height: 26px;
  line-height: 26px;
  color: #fff;
  padding: 0 10px;
  background: #0053A5;
  min-width: 4em;
  font-weight: bold;
  text-align: center;
  vertical-align: top;
  font-size: 13px;
}
#articlebox .article_wrap .cat.communiy {
  background: #A38932;
}
#articlebox .article_wrap .cat.company {
  background: #326395;
}
#articlebox .article_wrap .cat.public {
  background: #89B080;
}
#articlebox .article_wrap .cat.park {
  background: #54BCC7;
}
#articlebox .article_wrap .cat.photo {
  background: #EEC917;
  height: 26px;
  width: auto;
}
#articlebox .article_wrap .cat.hospital {
  background: #84A8F2;
}
#articlebox .article_wrap .cat.car {
  background: #A361D2;
}
#articlebox .article_wrap .cat.kanko {
  background: #FF85AF;
}
#articlebox .article_wrap .cat.shop {
  background: #1D9F7D;
}
#articlebox .article_wrap .cat.enjoy {
  background: #FF5341;
}
#articlebox .article_wrap .cat.denki {
  background: #44C55A;
}
#articlebox .article_wrap .cat.eat {
  background: #FF6632;
}
#articlebox .article_wrap h3 {
  font-size: 16px;
  color: #0053A5;
  font-weight: bold;
  margin: 5px 0 0;
  line-height: 1.2;
}
#articlebox .article_wrap h3 a {
  color: #0053A5;
  text-decoration: none;
  padding: 0 0 10px;
  display: inline-block;
}
#articlebox .article_wrap .photo {
  width: 100%;
}
#articlebox .article_wrap .photo a {
  width: 100%;
}
#articlebox .article_wrap .photo a img {
  width: 100%;
  max-height: 400px;
  /*
  					width: 100%;
  					height: 100%;
  					-o-object-fit: contain;
  					object-fit: contain;
  					font-family: 'object-fit: contain;';
  */
}
#articlebox .article_wrap .text {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.6;
}
#articlebox .article_wrap .text a {
  color: #0053A5;
  text-decoration: underline;
}
#articlebox .article_wrap .text > p {
  text-align: justify;
}
#articlebox .article_wrap .address {
  font-size: 14px;
  margin: 10px 0 0;
  padding: 5px 0;
  border-top: 1px solid #0053A5;
  border-bottom: 1px solid #0053A5;
  line-height: 1.4;
}
#articlebox .article_wrap .address > span {
  color: #0053A5;
  font-weight: 700;
}
#articlebox .article_wrap .map .maplink {
  display: block;
  width: 80%;
  height: 44px;
  margin: 20px auto 0;
  border-radius: 25px;
  text-align: center;
  background-color: #0053A5;
  color: #fff;
  line-height: 44px;
  font-size: 14px;
  text-decoration: none;
}
#articlebox .article_wrap .map .maplink::before {
  margin: -5px 5px 0 0;
  content: " ";
  display: inline-block;
  width: 20px;
  height: 18px;
  background: url(../img/map/icon_map.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
}
#articlebox .article_wrap .lat {
  display: none;
}
#articlebox .article_wrap .lng {
  display: none;
}

/* =====================================

	▼▼▼ 768px以下

===================================== */
@media screen and (max-width: 768px) {
  /* ==============================

  MAPページ

  ============================== */
  #kawanishi_map {
    display: block;
    width: 100%;
  }
  #map_canvas_wrapper {
    width: 100%;
    height: 340px !important;
    position: fixed;
    left: 0;
    top: 70px;
    z-index: 100;
  }
  #map_canvas {
    height: 340px !important;
  }
  #map_contents {
    margin-top: 340px;
    width: 100%;
    height: auto;
    min-height: calc(100vw - 410px);
    background-color: #0054A6;
  }
  #map_contents .map_contents_inner {
    padding: 20px 20px;
    overflow-y: auto;
    height: 100%;
    min-height: calc(100vw - 410px);
  }
  #map_contents .map_contents_inner .map_logo_wrap {
    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;
  }
  #map_contents .map_contents_inner .map_logo {
    width: 42%;
    height: auto;
    margin: 0;
  }
  #map_contents .map_contents_inner .map_logo img {
    width: 100%;
  }
  #map_contents .map_contents_inner .map_text {
    width: 52%;
    font-size: 13px;
    margin: 0;
  }
  #articlebox {
    margin: 10px 0 0;
  }
  #articlebox .article_wrap {
    background-color: #fff;
    padding: 0 20px 20px;
    position: relative;
  }
  #articlebox .article_wrap:not(:first-child) {
    margin-top: 30px;
  }
  #articlebox .article_wrap .cat {
    height: 24px;
    line-height: 24px;
    min-width: 4em;
    font-size: 12px;
  }
  #articlebox .article_wrap .cat.communiy {
    background: #A38932;
  }
  #articlebox .article_wrap .cat.company {
    background: #326395;
  }
  #articlebox .article_wrap .cat.public {
    background: #89B080;
  }
  #articlebox .article_wrap .cat.park {
    background: #54BCC7;
  }
  #articlebox .article_wrap .cat.photo {
    background: #EEC917;
    height: 24px;
  }
  #articlebox .article_wrap .cat.hospital {
    background: #84A8F2;
  }
  #articlebox .article_wrap .cat.car {
    background: #A361D2;
  }
  #articlebox .article_wrap .cat.kanko {
    background: #FF85AF;
  }
  #articlebox .article_wrap .cat.shop {
    background: #1D9F7D;
  }
  #articlebox .article_wrap .cat.enjoy {
    background: #FF5341;
  }
  #articlebox .article_wrap .cat.denki {
    background: #44C55A;
  }
  #articlebox .article_wrap .cat.eat {
    background: #FF6632;
  }
  #articlebox .article_wrap h3 {
    font-size: 16px;
    margin: 5px 0 0;
  }
  #articlebox .article_wrap h3 a {
    padding: 0 0 10px;
  }
  #articlebox .article_wrap .photo {
    width: 100%;
  }
  #articlebox .article_wrap .photo a {
    width: 100%;
  }
  #articlebox .article_wrap .photo a img {
    width: 100%;
    max-height: 400px;
  }
  #articlebox .article_wrap .text {
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 1.6;
  }
  #articlebox .article_wrap .address {
    font-size: 13px;
    margin: 10px 0 0;
  }
  #articlebox .article_wrap .map .maplink {
    width: 80%;
    height: 44px;
    margin: 20px auto 0;
    border-radius: 25px;
    text-align: center;
    background-color: #0053A5;
    color: #fff;
    line-height: 44px;
    font-size: 13px;
    text-decoration: none;
  }
  #articlebox .article_wrap .map .maplink::before {
    margin: -5px 5px 0 0;
    content: " ";
    display: inline-block;
    width: 20px;
    height: 18px;
    background: url(../img/map/icon_map.svg) no-repeat;
    background-size: contain;
    vertical-align: middle;
  }
  #articlebox .article_wrap .lat {
    display: none;
  }
  #articlebox .article_wrap .lng {
    display: none;
  }
}
/* =====================================

	▼▼▼ 500px以下

===================================== */
@media screen and (max-width: 500px) {
  /* =====================================
  404ページ
  ===================================== */
  #not_found {
    padding: 50px 20px 70px;
    max-width: 940px;
  }
  #not_found .title_wrap_404 {
    display: block;
  }
  #not_found .title_wrap_404 .title_wrap {
    width: 100%;
    margin-top: 40px;
  }
  #not_found .title_wrap_404 .title_wrap .title_404 {
    text-align: center;
    font-size: 32px;
  }
  #not_found .title_wrap_404 .title_wrap .title_not {
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
  }
  #not_found .title_wrap_404 .title_wrap .txt_404 {
    margin-top: 20px;
  }
  #not_found .title_wrap_404 .image {
    width: 100%;
    max-width: 250px;
    height: 250px;
    margin: 0 auto;
  }
  #not_found .title_wrap_404 .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    font-family: "object-fit: contain;";
  }
  #not_found .btn {
    margin: 40px auto 0;
  }
}
/* ==============================

古いページ

============================== */
#old {
  padding: 0 0 100px;
  /* ====================
  ページタイトル
  ==================== */
}
#old .page_main .page_main__title {
  padding: 0 20px;
}
#old .page_main .page_main__title .page_main__title {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30%;
  text-align: center;
  font-size: 60px;
  color: #0053A5;
  line-height: 1.4;
}
#old .page_main .page_main__title .page_main__title::before {
  position: absolute;
  top: -120px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: " ";
  display: inline-block;
  width: 69px;
  height: 108px;
  background: url(../img/common/panda_front.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
}
#old .page_main .page_main__image {
  background: url(../img/company/mv.png) no-repeat scroll center center;
  background-size: cover;
}
#old .article {
  max-width: 600px;
  margin: 0 auto;
}
#old .article .aligncenter {
  display: block;
  margin: 0 auto;
}
#old .article .alignright {
  float: right;
}
#old .article .alignleft {
  float: left;
}
#old .article a {
  color: #0053A5;
  text-decoration: underline;
}
#old .article img {
  width: 100%;
  height: auto;
}
#old .article .imgw_normal img {
  width: auto;
}
#old .article P {
  margin: 0 0 10px;
}
#old .article h1 {
  font-size: 30px;
  line-height: 1.2;
  color: #0053A5;
  margin: 0 0 10px;
}
#old .article h2 {
  font-size: 24px;
  line-height: 1.2;
  color: #0053A5;
  padding: 0 0 5px;
  border-bottom: 1px solid #0053A5;
  margin: 0 0 10px;
}
#old .article h3 {
  font-size: 20px;
  line-height: 1.2;
  color: #0053A5;
  margin: 0 0 10px;
}
#old .article h3::before {
  content: "■";
  margin: 0 5px 0 0;
}
#old .article h4 {
  font-size: 18px;
  line-height: 1.4;
  color: #0053A5;
  margin: 0 0 10px;
}
#old .article .list {
  /* 	border-bottom: 1px dotted #ccc; */
  padding: 15px 0;
  font-size: 86%;
}
#old .article .list li {
  margin-right: 20px;
  text-indent: 20px;
  font-weight: bold;
  border-bottom: 1px dotted #ccc;
  padding: 10px 0;
}
#old .article .list li::before {
  content: "■";
  color: #0053A5;
  margin: 0 5px 0 0;
}
#old .article table {
  width: 100%;
  border-top: 1px solid #ccc;
  margin-bottom: 1.5em;
}
#old .article table th,
#old .article table td {
  padding: 15px;
  border-bottom: 1px solid #ccc;
  line-height: 1.4;
}
#old .article table th {
  background: #EAEFFE;
  font-weight: bold;
  text-align: left;
}
#old .article table.phototable_half th,
#old .article table.phototable_half td {
  width: 48%;
  padding: 5px;
}/*# sourceMappingURL=base.css.map */