@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- 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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
}

body.index {
  background: #358ec4;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: relative;
  padding: 20px 10px;
  background: #fff;
  border-top: 2px solid #358ec4;
  border-bottom: 2px solid #f2cb07;
}

.hd_bg::before {
  position: absolute;
  top: -2px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  content: "";
  width: 50%;
  height: 2px;
  background: #f2cb07;
  z-index: 1;
}

.hd_bg .hd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.hd_bg .hd .hd_logo a {
  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;
  width: 100%;
}

.hd_bg .hd .hd_logo a img:first-of-type {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 80px;
  height: 100%;
  margin-right: 10px;
}

.hd_bg .hd .hd_logo a img:last-of-type {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 180px;
  height: 100%;
}

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

.nav .nav_list > li {
  position: relative;
}

.nav .nav_list > li > a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 16px;
  color: #111;
  font-weight: 500;
  display: block;
  padding: 1em 1em 1em 1.5em;
  text-decoration: none;
  position: relative;
}

.nav .nav_list > li > a::after {
  content: attr(data-text);
  display: block;
  color: #358ec4;
}

.nav .nav_list > li > a:hover, .nav .nav_list > li > a.current {
  background: #358ec4;
  color: #f2cb07;
}

.nav .nav_list > li > a:hover::after, .nav .nav_list > li > a.current::after {
  color: #fff;
}

.nav .nav_list > li.current a::after {
  color: #f2cb07;
}

.nav .nav_list > li.current a:hover::after {
  color: #fff;
}

.nav .nav_list > li .nav_clist > li > a {
  background: #358ec4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: block;
  font-size: 13px;
  padding: 1em 1em 1em 2em;
  text-decoration: none;
}

.nav .nav_list > li .nav_clist > li > a:hover, .nav .nav_list > li .nav_clist > li > a.current {
  background: #4c9dcf;
  -webkit-box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}

.nav .nav_list > li .nav_clist > li .nav_glist > li > a {
  background: #4c9dcf;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: block;
  font-size: 11px;
  padding: 1em 1em 1em 3em;
  text-decoration: none;
}

.nav .nav_list > li .nav_clist > li .nav_glist > li > a:hover, .nav .nav_list > li .nav_clist > li .nav_glist > li > a.current {
  background-color: #000;
  -webkit-box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
  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: 36px;
  height: 24px;
}

.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.sp_nav_trigger span:nth-of-type(1) {
  top: 0;
}

.sp_nav_trigger span:nth-of-type(2) {
  top: 10px;
}

.sp_nav_trigger span:nth-of-type(3) {
  bottom: 0;
}

.sp_nav_trigger::after {
  position: absolute;
  left: 0;
  bottom: -20px;
  content: "MENU";
  display: block;
  width: 100%;
  padding-top: 20px;
  color: #111;
  font-size: 10px;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.sp_nav_trigger.sp_active::after {
  content: "CLOSE";
  bottom: -25px;
  color: #111;
}

.sp_nav_trigger.sp_active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
  background-color: #111;
}

.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
  background-color: #111;
}

.sp_nav_trigger.sp_active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
  background-color: #111;
}

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

.index .con {
  padding: 0;
}

.con .main {
  margin-bottom: 30px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px 10px;
  background: #358ec4;
  color: #fff;
}

.ft_bg .ft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ft_bg .ft .ft_nav {
  display: none;
}

.ft_bg .ft .ft_info {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-weight: 500;
}

.ft_bg .ft .ft_info .ft_logo {
  margin-bottom: 20px;
  text-align: center;
}

.ft_bg .ft .ft_info .ft_copy {
  margin-top: auto;
  font-size: 12px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  border-radius: 50%;
  background-color: #333;
  bottom: 10px;
  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;
  height: 40px;
  right: 10px;
  position: fixed;
  width: 40px;
  z-index: 100;
}

.pt:hover {
  opacity: 0.6;
}

.pt_btn {
  cursor: pointer;
  display: block;
  width: 14px;
  height: 14px;
  margin-top: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: relative;
}

.pt_btn::before, .pt_btn::after {
  background-color: #FFF;
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
}

.pt_btn::before {
  width: 5px;
  bottom: 0;
}

.pt_btn::after {
  height: 5px;
  right: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_main {
  position: relative;
  margin-bottom: 20px;
}

.index_main::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/main_bg.png) center center;
  background-size: cover;
  -webkit-animation: flash 2s linear infinite;
  animation: flash 2s linear infinite;
}

@-webkit-keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
@keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
.index_main .index_visual {
  position: relative;
  padding: 20px;
}

.index_main .index_visual .index_visual_img_01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.index_main .index_visual .index_visual_img_01 img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 50%;
  height: auto;
}

.index_main .index_visual .index_visual_img_02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-top: -18%;
}

.index_main .index_visual .index_visual_img_02 img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 45%;
  height: auto;
  margin-right: 5%;
}

.index_main .index_visual .index_visual_img_03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin-top: -18%;
}

.index_main .index_visual .index_visual_img_03 img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 45%;
  height: auto;
  margin-left: 5%;
}

.index_main .index_visual .index_visual_img_04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  width: 100%;
  margin-top: -18%;
}

.index_main .index_visual .index_visual_img_04 img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 40%;
  height: auto;
  margin-right: 10%;
}

.index_main .index_visual .index_visual_img_05 {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** accordion
******************************************************************************
----------------------------------------------------------------------------*/
.accordion_title {
  position: relative;
  display: inline;
}
.accordion_title > * {
  display: inline;
}

.accordion-trigger {
  position: absolute;
  top: 50%;
  right: -40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  width: 35px;
  height: 35px;
  background: #358ec4;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
}
.accordion-trigger:before, .accordion-trigger:after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background: #fff;
}
.accordion-trigger::before {
  top: 50%;
  left: 50%;
  -webkit-transform: rotate(0deg) translateX(-50%);
          transform: rotate(0deg) translateX(-50%);
}
.accordion-trigger:after {
  top: 50%;
  left: 10px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.accordion-trigger.close:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.accordion_con {
  display: none;
  margin-block: 1rem;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  line-height: 1.6;
  word-wrap: break-word;
}

.mcon a img:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mcon h1 {
  position: relative;
  z-index: 10;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 20px 0;
  background: url(../images/main_bg.png) center center;
  background-size: cover;
  font-size: 32px;
  font-weight: 500;
  text-align: center;
}

.mcon h1::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
}

.mcon h1::after {
  position: relative;
  z-index: 10;
  content: attr(data-text);
  display: block;
  margin-top: 3px;
  color: #358ec4;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.mcon h1 span {
  position: relative;
  z-index: 10;
}

.mcon h2 {
  position: relative;
  margin: 30px 0 10px;
  padding: 0.3em;
  font-size: 22px;
  font-weight: 500;
  border-bottom: 2px solid #358ec4;
}

.mcon h2::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
  content: "";
  width: 15%;
  height: 2px;
  background: #f2cb07;
}

.mcon h3 {
  margin: 30px 0 10px;
  padding: 0 0.5em;
  font-size: 18px;
  font-weight: 500;
  border-left: 2px solid #358ec4;
}

.mcon h4 {
  position: relative;
  margin: 30px 0 10px;
  padding-left: 25px;
  font-size: 1.15em;
  font-weight: 500;
}

.mcon h4::after {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  content: "";
  width: 15px;
  height: 2px;
  background: #f2cb07;
}

.mcon h5,
.mcon h6 {
  font-size: 1.05em;
  font-weight: 500;
  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 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;
}


.btn {
  display: block;
  position: relative;
  width: 100%;
  padding: 0.8em;
  text-align: center;
  text-decoration: none;
  color: #358EC4;
  background: #fff;
  border: 1px solid #358EC4;
}

.btn:hover {
  background: #358EC4;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

.btn02 {
  display: block;
  position: relative;
  width: 100%;
  padding: 0.8em;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #358EC4;
  border: 1px solid #358EC4;
}

.btn02:hover {
  background: #fff;
  border: 1px solid #358EC4;
  color: #358EC4;
  cursor: pointer;
  text-decoration: none;
}

.btn.btn_orange {
  border: 1px solid rgba(220, 150, 30, 0.9019607843);
  color: rgba(220, 150, 30, 0.9019607843);
}

.btn.btn_orange:hover {
  background: rgba(220, 150, 30, 0.9019607843);
  color: #fff;
}

.gmap iframe {
  max-width: 100%;
  height: auto;
}

.tbl_topics td {
  display: block !important;
}/*# sourceMappingURL=sp.css.map */