@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クラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html {
  overflow-x: hidden;
}

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

.w_base {
  margin: 0 auto;
  width: 960px;
}

.w_base02 {
  margin: 0 auto;
  width: 1150px;
}

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

.hd {
  position: absolute;
  height: 120px;
}

.hd_logo {
  top: 15px;
  left: 80px;
  position: absolute;
  width: 600px;
}
.hd_logo a {
  text-decoration: none;
  color: #fff;
  font-size: 1.4em;
  line-height: 1.2;
}

.hd_bg .logp_img,
.index_hd_bg .logp_img {
  position: absolute;
  top: 12px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_bg {
  position: absolute;
  width: 100%;
}

.nav {
  position: absolute;
  top: 20px;
  right: 0;
  width: 390px;
}
.nav .nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
  margin: 0 0 10px;
}
.nav .nav_list > li {
  position: relative;
  z-index: 1000;
}
.nav .nav_list > li > a {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
.nav .nav_list > li a:after {
  content: "/";
  display: inline-block;
  margin: 0 5px;
  color: #fff;
}
.nav .nav_list > li:last-of-type a:after {
  content: "";
  margin: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.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;
}

.con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 0;
  background: #fff;
}

.main {
  order: 1;
}

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

.ft {
  position: relative;
  padding: 40px 0 10px;
}

.ft_con {
  display: flex;
  justify-content: space-between;
  margin: 0 0 70px;
}
.ft_con h1 a {
  text-decoration: none;
  color: #fff;
  font-size: 1.4em;
  line-height: 1.3;
}
.ft_con h1 a span {
  text-decoration: none;
  color: #fff;
  font-size: 0.8em;
}
.ft_con .ft_nav {
  width: 280px;
}
.ft_con .ft_nav .ft_nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 30px 0 0;
}
.ft_con .ft_nav .ft_nav_list li {
  width: 40%;
  margin: 0 0 5px;
}
.ft_con .ft_nav .ft_nav_list li > a {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}
.ft_con .ft_bnr {
  position: relative;
  width: 530px;
}
.ft_con .ft_bnr ul {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.ft_con .ft_bnr ul > li {
  width: calc(50% - 5px);
  margin: 6px 0;
}
.ft_con .ft_bnr ul > li:nth-child(1) > a {
  font-size: 1em;
  line-height: 1;
  height: 44px;
}
.ft_con .ft_bnr ul > li:nth-child(1) > a:after {
  position: absolute;
  top: 5px;
  right: 5px;
  content: url(../images/icon_elink_gray.png);
}
.ft_con .ft_bnr ul > li > a {
  position: relative;
  display: block;
  padding: 10px 5px;
  background: #fff;
  color: #636363;
  font-size: 15px;
  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 {
  position: absolute;
  top: 30px;
  right: 0;
  width: 30px;
  height: 70px;
  z-index: 100;
}

.pt_btn {
  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;
}
.index_hd .eyecatch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}
.index_hd .eyecatch span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 52px;
  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;
}
.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_info {
  margin: 0 0 50px;
}
.index_info h2 {
  color: #001746;
  font-size: 50px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 0px;
}
.index_info h2 span {
  display: block;
  margin: -15px 0 0;
  font-size: 16px;
  font-weight: normal;
}

.index_info_con {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0 0;
}
.index_info_con dl {
  display: flex;
  width: 33.3333333333%;
  margin: 0 0 40px;
}
.index_info_con dl dt {
  display: flex;
  align-items: center;
  height: 86px;
  padding: 10px 6px;
  background: #001746;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  text-align: center;
}
.index_info_con dl dt span {
  display: block;
  font-size: 16px;
}
.index_info_con dl dd {
  margin: 0 0 0 10px;
  font-size: 18px;
}

.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;
  border-bottom: 1px dotted #4EA4E2;
  margin-bottom: 10px;
  padding: 10px 0 20px 0;
  width: 100%;
}
.index_info_con_02 dl dt {
  display: flex;
  align-items: center;
  height: 86px;
  padding: 10px 6px;
  background: #001746;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  text-align: center;
}
.index_info_con_02 dl dt span {
  display: block;
  font-size: 16px;
}
.index_info_con_02 dl dd {
  margin: 0 0 0 10px;
  font-size: 18px;
}
.index_info_con_02 dd {
  /*display: flex;
  align-items: center*/
}

.scroll {
  height: 600px;
  overflow-y: scroll;
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  padding: 10px 20px;
}

.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;
  justify-content: space-between;
}
.index_con > div {
  width: calc(50% - 30px);
  margin: 0 0 40px;
}
.index_con div h2 {
  color: #001746;
  font-size: 50px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}
.index_con div h2 span {
  display: block;
  margin: -15px 0 0;
  font-size: 16px;
  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: 35px;
  font-weight: bold;
}
.index_con div .more a {
  position: relative;
  display: block;
  width: 310px;
  margin: 30px 0 0;
  padding: 17px 0;
  font-size: 18px;
  font-weight: bold;
  color: #001746;
  text-align: center;
  text-decoration: none;
  border: 1px solid #001746;
  transition: all 0.5s ease;
}
.index_con div .more a:hover {
  background: #001746;
  color: #fff;
}
.index_con div .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;
}
.index_con div .more a:hover:after {
  content: url(../images/more_arrow_ov.png);
}

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

.index_message_eyecatch {
  margin: 0 0 30px;
  font-size: 26px;
  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: 45px;
}

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

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

#index_access_map {
  width: 100%;
  height: 500px;
}
#index_access_map iframe {
  width: 100%;
  height: 100%;
}

.more a {
  position: relative;
  display: block;
  width: 310px;
  margin: 0 auto;
  padding: 17px 0;
  font-size: 18px;
  font-weight: bold;
  color: #001746;
  text-align: center;
  text-decoration: none;
  border: 1px solid #001746;
  transition: all 0.5s ease;
}
.more a:hover {
  background: #001746;
  color: #fff;
}
.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;
}
.more a:hover:after {
  content: url(../images/more_arrow_ov.png);
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.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 #ccc;
}
.mcon h4 {
  font-size: 1.2em;
  margin-bottom: 5px;
  margin-top: 5px;
}
.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=style.css.map */