@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** style
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  /*background: url(../images/body_bg.png);*/
}

w_base02 {
  margin: 0 10px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: relative;
  background: url(../images/hd_bg.png) top center;
  background-size: cover;
}

.hd {
  padding: 20px 10px;
}

.hd_logo {
  display: flex;
  align-content: center;
  align-items: center;
  width: calc(100% - 15vw);
  padding-left: 60px;
}
.hd_logo a {
  text-decoration: none;
  color: #fff;
  font-size: 1.3em;
  line-height: 1.2;
}

.con_bg {
  background: #fff;
}
.con_bg h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  padding: 45px 0;
  background: url(../images/index_bg.png);
  background-size: cover;
}
.con_bg h1 span {
  display: inline-block;
  margin: 0 0 0 15px;
  font-size: 22px;
  font-weight: normal;
}

.hd_bg .logp_img,
.index_hd_bg .logp_img {
  width: 50px;
  position: absolute;
  top: 20px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
  box-shadow: inset 0 0 5px 5px #222;
  background: #333;
  color: #fff;
  height: calc(100% + 500px);
  padding-bottom: 500px;
  z-index: 100;
  width: 70%;
  overflow-x: none;
  overflow-y: auto;
  top: 0px;
  right: -70%;
  position: fixed;
  transition: All 0.5s ease;
}

.nav_list > li > a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 1.5em;
  color: #fff;
  font-weight: bold;
  display: block;
  padding: 1em 1.5em;
  text-decoration: none;
  position: relative;
}
.nav_list > li > a:hover {
  box-shadow: inset 0 0 10px 2px rgba(0, 0, 0, 0.3);
}
.nav_list > li > a::after {
  content: attr(data-text);
  display: block;
}
.nav_list > li > a img {
  display: none;
}

.nav_clist > li > a {
  background-color: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: block;
  font-size: 1.3em;
  padding: 1em 2em;
  text-decoration: none;
}
.nav_clist > li > a:hover, .nav_clist > li > a.current {
  background-color: #000;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}

.nav_glist > li > a {
  background-color: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: block;
  font-size: 1.1em;
  padding: 1em 3em;
  text-decoration: none;
}
.nav_glist > li > a:hover, .nav_glist > li > a.current {
  background-color: #000;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}

.sp_nav_open {
  right: 0 !important;
}

.sp_nav_trigger {
  cursor: pointer;
  z-index: 1000;
  position: fixed !important;
  top: 25px;
  right: 15px;
  margin-top: -5px;
  width: 46px;
  height: 34px;
  background: #fff;
}
.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 10%;
  width: 80%;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  transition: all 0.4s;
  box-sizing: border-box;
}
.sp_nav_trigger span:nth-of-type(1) {
  top: 5px;
}
.sp_nav_trigger span:nth-of-type(2) {
  top: 15px;
  z-index: 1;
}
.sp_nav_trigger span:nth-of-type(3) {
  bottom: 5px;
  z-index: 1;
}
.sp_nav_trigger::after {
  position: absolute;
  left: 0;
  bottom: -15px;
  content: "MENU";
  display: block;
  width: 100%;
  padding-top: 20px;
  background: #fff;
  color: #000;
  font-size: 10px;
  text-decoration: none;
  text-align: center;
  transition: all 0.4s;
}
.sp_nav_trigger.active {
  background: none;
}
.sp_nav_trigger.active::after {
  content: "CLOSE";
  bottom: -25px;
  background: none;
  color: #fff;
}
.sp_nav_trigger.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
  background: #fff;
}
.sp_nav_trigger.active span:nth-of-type(2) {
  opacity: 0;
  background: #fff;
}
.sp_nav_trigger.active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
  background: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con {
  padding: 0 10px;
}

.main {
  margin-bottom: 30px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  background: url(../images/ft_bg.png) no-repeat;
  background-size: cover;
}

.ft {
  position: relative;
  padding-top: 20px;
  padding-bottom: 30px;
}

.ft_con .ft_logo, .ft_con .ft_nav {
  display: none;
}
.ft_con .ft_bnr {
  width: 90%;
  margin: 0 auto 30px;
}
.ft_con .ft_bnr ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
}
.ft_con .ft_bnr ul > li {
  width: 100%;
  margin: 0 0 10px;
}
.ft_con .ft_bnr ul > li:last-of-type {
  margin-bottom: 0;
}
.ft_con .ft_bnr ul > li > a {
  position: relative;
  display: block;
  padding: 10px 5px;
  background: #fff;
  color: #636363;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
.ft_con .ft_bnr ul > li > a:after {
  position: absolute;
  top: 0;
  right: 5px;
  content: url(../images/icon_elink_gray.png);
}

.ft_copy {
  color: #fff;
  font-size: 12px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  width: 100%;
  height: 70px;
  margin: 0 auto 20px;
  z-index: 100;
}

.pt_btn {
  position: relative;
  border-radius: 50%;
  color: #FFF;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 15px;
  font-weight: bold;
  height: 100%;
  line-height: 1.3;
  opacity: 0.8;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  width: 100%;
}
.pt_btn:before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  content: url(../images/pt_arrow.png);
}
.pt_btn:hover {
  opacity: 0.6;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider {
  position: absolute;
  height: 100vh;
}
.index_slider img {
  -o-object-fit: cover !important;
     object-fit: cover !important;
  height: 100vh !important;
}

.index_hd {
  position: relative;
  height: 100vh;
  padding: 20px 10px;
}
.index_hd .eyecatch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #fff;
  font-size: 220%;
  font-weight: bold;
  text-align: center;
  line-height: 1.1;
}
.index_hd .eyecatch span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 150%;
  margin: 0 0 10px;
}
.index_hd .fuwafuwa {
  animation: fuwafuwa 1.8s linear infinite;
}
.index_hd .button_down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 0);
  display: block;
  text-align: center;
  text-decoration: none;
  color: #FFF;
  z-index: 100;
  transition: All 0.5s ease;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 0);
  display: block;
  text-align: center;
  text-decoration: none;
  color: #FFF;
  font-size: 15px;
  font-weight: bold;
  z-index: 100;
  transition: All 0.5s ease;
  z-index: 1;
}
.index_hd .button_down:after {
  content: url(../images/pt_arrow.png);
  display: block;
  transform: rotate(-180deg);
}

@keyframes fuwafuwa {
  0% {
    margin-bottom: -4px;
    opacity: 1;
  }
  50% {
    margin-bottom: 4px;
    opacity: 0.7;
  }
  100% {
    margin-bottom: -4px;
    opacity: 1;
  }
}
.index_main {
  padding: 10px 10px 0;
  background: #fff;
}

.index_info {
  margin: 0 0 50px;
}
.index_info h2 {
  flex-direction: column;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: #001746;
  font-size: 38px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 0px;
}
.index_info h2 span {
  display: block;
  margin: -10px 0 0;
  font-size: 14px;
  font-weight: normal;
}

.index_info_con {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0 0;
}
.index_info_con dl {
  display: flex;
  width: 100%;
  margin: 0 0 20px;
}
.index_info_con dl dt {
  display: flex;
  align-items: center;
  padding: 10px 6px;
  background: #001746;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  text-align: center;
}
.index_info_con dl dt span {
  display: block;
  margin: 0 0 -5px;
  font-size: 14px;
}
.index_info_con dl dd {
  /*display: flex;
  align-items: center;*/
  margin: 0 0 0 10px;
  font-size: 16px;
}

.index_info_con_02 {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0 0;
}
.index_info_con_02 dl {
  display: flex;
  width: 100%;
  margin: 0 0 40px;
}
.index_info_con_02 dl dt {
  display: flex;
  align-items: center;
  padding: 10px 6px;
  background: #001746;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  text-align: center;
}
.index_info_con_02 dl dt span {
  display: block;
  margin: 0 0 -5px;
  font-size: 14px;
}
.index_info_con_02 dl dd {
  margin: 0 0 0 10px;
  font-size: 16px;
}

.scroll {
  height: 300px;
  overflow-y: scroll;
  width: 100%;
  margin: 20px 0;
  border: 1px solid #ccc;
  padding: 5px;
}

.index_info_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}
.index_info_new:before {
  content: "NEW";
}

.index_con {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.index_con div {
  width: 100%;
  margin: 0 0 20px;
}
.index_con div h2 {
  color: #001746;
  font-size: 38px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}
.index_con div h2 span {
  display: block;
  margin: -10px 0 0;
  font-size: 14px;
  font-weight: normal;
}
.index_con div figure img {
  width: 100%;
}
.index_con div a {
  position: relative;
  display: block;
}
.index_con div a span {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 10px;
  background: #000;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

.index_message {
  margin: 0 10px;
  padding: 55px 0;
  background: url(../images/index_bg.png);
  background-size: cover;
}

.index_message_eyecatch {
  margin: 0 0 30px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1.1;
}
.index_message_eyecatch span {
  display: block;
  margin: 0 0 10px;
  font-family: "Roboto", sans-serif;
  font-size: 40px;
}

.index_message p {
  padding: 0 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 2.2;
}

.index_access {
  margin: 0 10px;
  padding: 55px 0 0;
  background: #fff;
}
.index_access h2 {
  padding: 0 10px;
  color: #001746;
  font-size: 38px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 0px;
}
.index_access h2 span {
  display: block;
  margin: -10px 0 0;
  font-size: 14px;
  font-weight: normal;
}
.index_access p {
  margin: 15px 0 20px;
  padding: 0 10px;
  font-size: 16px;
}

#index_access_map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
}
#index_access_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.more {
  width: 90%;
  margin: 30px auto;
}
.more a {
  position: relative;
  display: block;
  width: 100%;
  padding: 17px 0;
  color: #001746;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border: 1px solid #001746;
}
.more a:after {
  position: absolute;
  right: 10px;
  transform: translate(0, -50%);
  display: inline-block;
  content: url(../images/more_arrow.png);
  width: 22px;
  height: 6px;
  transition: all 0.5s ease;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  line-height: 1.6;
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h1 {
  font-size: 20px;
  margin-bottom: 20px;
}
.mcon h2 {
  position: relative;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0 0 0.2em;
  font-size: 24px;
  border-bottom: 3px solid #ccc;
}
.mcon h2:after {
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: 2;
  content: "";
  width: 20%;
  height: 3px;
  background-color: #001d4f;
}
.mcon h3 {
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 0 0.5em;
  color: #333;
  font-size: 20px;
  border-bottom: 1px dotted rgb(153, 153, 153);
}
.mcon h4 {
  font-size: 18px;
  margin-bottom: 5px;
  margin-top: 5px;
  color: #EF7E00;
}
.mcon h5, .mcon h6 {
  font-size: 1.1em;
  margin-bottom: 2px;
  margin-top: 5px;
}
.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon iframe {
  max-width: 100%;
}
.mcon img {
  max-width: 100%;
  height: auto;
}
.mcon ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.mcon ol.ol_pub li:nth-child(even) {
  background: #E1EEEC;
  padding: 8px 0;
}
.mcon p {
  margin-bottom: 1em;
}
.mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}/*# sourceMappingURL=sp.css.map */