@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, body {
  overflow-x: hidden;
}

body {
  background: url(../images/body_bg.png);
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: relative;
  background: url(../images/ft_bg.png) no-repeat;
}

.hd {
  padding: 20px 10px;
}

.hd_logo {
  display: flex;
  align-content: center;
  align-items: center;
}
.hd_logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}
.hd_logo a h1 {
  font-size: 23px;
  line-height: 1.3;
}
.hd_logo a h1 span {
  display: block;
}
.hd_logo a h1 span:first-child {
  font-size: 0.6em;
}
.hd_logo a h1 span:last-child {
  font-size: 0.44em;
}
.hd_logo a img {
  width: 50px;
  margin-right: 10px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** 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: 16px;
  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_list > li > .sub-menu > 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_list > li > .sub-menu > li:hover a,
.nav_list > li > .sub-menu > li .current a {
  background-color: #000;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}
.nav_list > li > .sub-menu > li > .sub-menu > 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_list > li > .sub-menu > li > .sub-menu > li:hover a,
.nav_list > li > .sub-menu > li > .sub-menu > li .current a {
  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 {
  padding: 20px 10px 15px;
  background: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  background: url(../images/ft_bg.png) no-repeat;
  background-size: cover;
}
.ft_bg .ft {
  position: relative;
  padding-top: 20px;
  padding-bottom: 30px;
}
.ft_bg .ft .ft_con .ft_logo,
.ft_bg .ft .ft_con .ft_nav {
  display: none;
}
.ft_bg .ft .ft_con .ft_bnr {
  width: 90%;
  margin: 0 auto 30px;
}
.ft_bg .ft .ft_con .ft_bnr ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
}
.ft_bg .ft .ft_con .ft_bnr ul > li {
  width: 100%;
  margin: 0 0 10px;
}
.ft_bg .ft .ft_con .ft_bnr ul > li:last-of-type {
  margin-bottom: 0;
}
.ft_bg .ft .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_bg .ft .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 .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 .pt_btn:before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  content: url(../images/pt_arrow.png);
}
.pt .pt_btn:hover {
  opacity: 0.6;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_hd_bg {
  position: relative;
  overflow: hidden;
}
.index_hd_bg::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.index_hd {
  position: relative;
  height: 100vh;
  height: 100svh;
  padding: 20px 10px;
  z-index: 1;
}
.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;
}
.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_slider {
  position: absolute;
  top: 0;
  left: 0;
}
.index_slider img {
  height: 100vh !important;
  height: 100svh;
  -o-object-fit: cover;
     object-fit: cover;
}

.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;
}

.icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}
.icon_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%;
  height: auto;
}
.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;
}

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

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  padding: 30px 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;
}

.mcon {
  line-height: 1.6;
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h2 {
  position: relative;
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: 40px;
  padding: 0 0 0.2em;
  border-bottom: 3px solid #ccc;
}
.mcon h2:first-child {
  margin-top: 0;
}
.mcon h2:after {
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: 2;
  content: "";
  width: 20%;
  height: 3px;
  background-color: #001d4f;
}
.mcon h3 {
  margin-bottom: 8px;
  margin-top: 8px;
  color: #333;
  font-size: 16px;
  border-bottom: 1px dotted #ccc;
}
.mcon h4 {
  font-size: 13px;
  margin-bottom: 5px;
  margin-top: 5px;
}
.mcon h5, .mcon h6 {
  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, .mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li, .mcon ul li {
  margin-bottom: 0.5em;
}
.mcon ol li {
  margin-left: 2em;
}
.mcon ul li {
  list-style-type: disc;
  margin-left: 1.5em;
}
.mcon p {
  margin-bottom: 1em;
}
.mcon .member_container .is-layout-flex {
  flex-direction: column-reverse;
}/*# sourceMappingURL=sp.css.map */