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

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

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: relative;
  height: 110px;
  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: 25%;
  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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 410px;
}

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

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-bottom: 15px;
  padding-right: 20px !important;
}

.nav_bg .nav {
  overflow: visible;
}

.nav_bg .nav .nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
}

.nav_bg .nav .nav_list > li {
  position: relative;
  z-index: 1000;
}

.nav_bg .nav .nav_list > li::before, .nav_bg .nav .nav_list > li::after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background-color: #f2cb07;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.nav_bg .nav .nav_list > li::before {
  top: 0;
  left: 0;
}

.nav_bg .nav .nav_list > li::after {
  bottom: 0;
  right: 0;
}

.nav_bg .nav .nav_list > li:hover::before, .nav_bg .nav .nav_list > li:hover::after {
  width: 100%;
}

.nav_bg .nav .nav_list > li > a {
  position: relative;
  display: block;
  padding: 3px 0;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.nav_bg .nav .nav_list > li > a::after {
  content: attr(data-text);
  display: block;
  margin-top: 3px;
  color: #358ec4;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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

.nav_bg .nav .nav_list > li.current::before, .nav_bg .nav .nav_list > li.current::after {
  width: 100%;
}

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

.nav_bg .nav .nav_list > li:hover .nav_clist {
  display: block;
  -webkit-animation: nav_active 1s ease 0s 1 alternate;
  animation: nav_active 1s ease 0s 1 alternate;
}

@-webkit-keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav_bg .nav .nav_list > li .nav_clist {
  display: none;
  -webkit-transition: All 0.5s ease;
  transition: All 0.5s ease;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 100%;
  left: 0;
  left: calc((150px - 100%) / -2);
  min-width: 150px;
}

/*.nav_bg .nav .nav_list > li .nav_clist li::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5px;
    margin: auto;
    transform: rotate(45deg);
    border-top: 1px solid #358EC4;
    border-right: 1px solid #358EC4;
    box-sizing: border-box;
    width: 6px;
    height: 6px;
    transition: 0.3s;
}*/
.nav_bg .nav .nav_list > li .nav_clist > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  position: relative;
}

.nav_bg .nav .nav_list > li .nav_clist > li > a {
  display: block;
  padding: 10px;
  background: #fff;
  color: #333;
  font-weight: 500;
  text-decoration: none;
}

.nav_bg .nav .nav_list > li .nav_clist > li > a:hover, .nav_bg .nav .nav_list > li .nav_clist > li > a.current {
  opacity: 0.9;
  color: #358ec4;
}

.nav_bg .nav .nav_list > li .nav_clist > li:hover .nav_glist {
  display: block;
  -webkit-animation: nav_active 1s ease 0s 1 alternate;
  animation: nav_active 1s ease 0s 1 alternate;
}

.nav_bg .nav .nav_list > li .nav_clist > li .nav_glist {
  display: none;
  width: 100%;
  position: absolute;
  top: 0;
  left: 100%;
}

.nav_bg .nav .nav_list > li .nav_clist > li .nav_glist > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.nav_bg .nav .nav_list > li .nav_clist > li .nav_glist > li > a {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: block;
  padding: 10px;
  text-decoration: none;
}

.nav_bg .nav .nav_list > li .nav_clist > li .nav_glist > li > a:hover, .nav_bg .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);
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {
  margin-bottom: auto;
}

.con_bg .con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.con_bg .con .main {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: 100%;
  padding: 0 20px 0 10px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  /*margin-top: auto;*/
  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;
  height: 100%;
  min-height: 220px;
  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 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  width: 70%;
  min-height: 180px;
  padding: 5px 0;
}

.ft_bg .ft .ft_nav .ft_nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 86%;
  margin: 0 auto;
}

.ft_bg .ft .ft_nav .ft_nav_list li a {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.no_link {
  pointer-events: none;
}

.ft_bg .ft .ft_nav .ft_nav_list li a:hover {
  text-decoration: underline;
}

.ft_bg .ft .ft_nav .ft_nav_list li .ft_nav_clist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.ft_bg .ft .ft_nav .ft_nav_list li .ft_nav_clist a {
  font-size: 13px;
  font-weight: 300;
}

.ft_bg .ft .ft_nav .ft_nav_list li .ft_nav_clist a:hover {
  text-decoration: underline;
}

.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;
  width: 30%;
  min-height: 180px;
  padding: 5px 0;
  border-right: 1px solid #fff;
  font-weight: 500;
}

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

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

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

.pt:hover {
  opacity: 0.6;
}

.pt_btn {
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
  -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: 7px;
  bottom: 0;
}

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

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_main {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  position: relative;
  width: 100%;
}

.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;
  height: 600px;
}

.index_main .index_visual .index_visual_img_01 {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.index_main .index_visual .index_visual_img_02 {
  position: absolute;
  top: 20px;
  left: 8%;
}

.index_main .index_visual .index_visual_img_03 {
  position: absolute;
  top: 20px;
  right: 8%;
}

.index_main .index_visual .index_visual_img_04 {
  position: absolute;
  bottom: 20px;
  left: -10px;
}

.index_main .index_visual .index_visual_img_05 {
  position: absolute;
  bottom: 20px;
  right: -10px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** 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 {
  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: 40px 0;
  background: url(../images/main_bg.png) center center;
  background-size: cover;
  font-size: 36px;
  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: 18px;
  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: 24px;
  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: 20px;
  font-weight: 500;
  border-left: 2px solid #358ec4;
}

.mcon h4 {
  position: relative;
  margin: 30px 0 10px;
  padding-left: 25px;
  font-size: 1.2em;
  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;
  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;
  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;
}/*# sourceMappingURL=style.css.map */