@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: flex;
  flex-direction: column;
}

body {
  min-height: 100vh;
}

.w_base {
  width: 100%;
  margin: 0 auto;
  max-width: 1220px;
  padding-right: 10px;
  padding-left: 10px;
}

/*----------------------------------------------------------------------------
******************************************************************************
**  color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}
.hd_bg .hd {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.hd_bg .hd .hd_logo a {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #fff;
  color: #000;
  border-radius: 0 0 5px 5px;
  transition: 0.3s;
}
.hd_bg .hd .hd_logo a img {
  width: 60px;
  height: auto;
  margin-right: 7px;
}
.hd_bg .hd .hd_logo a .hd_ttl {
  font-size: 30px;
  line-height: 1.1;
}
.hd_bg .hd .hd_logo a .hd_ttl span {
  display: block;
  font-size: 0.53em;
  letter-spacing: 0.07em;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_bg .nav {
  overflow: visible;
}
.nav_bg .nav .nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  width: 100%;
}
.nav_bg .nav .nav_list > li {
  position: relative;
  z-index: 1000;
}
.nav_bg .nav .nav_list > li > a {
  position: relative;
  display: block;
  padding: 10px 25px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  border-radius: 0 0 5px 5px;
}
.nav_bg .nav .nav_list > li > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #ed7e24;
  border-radius: 0 0 5px 5px;
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #f2932f 0%, #ee7f23 100%);
  border-radius: 0 0 5px 5px;
}
.nav_bg .nav .nav_list > li > a:hover::before {
  opacity: 0;
}
.nav_bg .nav .nav_list > li.current a::before {
  opacity: 0;
}
.nav_bg .nav .nav_list > li:hover .child_wrap {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav_bg .nav .nav_list > li > .child_wrap {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  display: none;
  width: 100%;
  transition: All 0.5s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  margin-top: 15px;
  background: #ed7e24;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li {
  position: relative;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li:first-of-type:after {
  content: "";
  width: 10px;
  height: 10px;
  background: #ed7e24;
  position: absolute;
  top: -10px;
  left: 1em;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  padding: 10px;
  color: #fff;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a:hover {
  opacity: 0.8;
  background: rgba(0, 0, 0, 0.4);
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li:hover .child_wrap {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 100;
  display: none;
  width: 100%;
  background: #ed7e24;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li {
  position: relative;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a {
  display: flex;
  align-items: center;
  padding: 10px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a:hover {
  opacity: 0.8;
  background: rgba(0, 0, 0, 0.4);
}
.nav_bg .nav .nav_list > li:last-of-type > .child_wrap > .sub-menu > li > .child_wrap {
  left: -100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg .con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.con_bg .con .main {
  order: 1;
  width: 100%;
  padding-bottom: 70px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  margin-top: auto;
  background: #d2d4d5;
  border-top: 1px solid #fff;
}
.ft_bg .ft {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 80px 0 60px;
}
.ft_bg .ft .ft_ttl h1 {
  color: #484848;
  font-size: 24px;
  line-height: 1.3;
}
.ft_bg .ft .ft_ttl p {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.ft_bg .ft .ft_copy {
  font-size: 14px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: -80px;
  bottom: -60px;
  z-index: 100;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 70px;
  padding-bottom: 5px;
  padding-left: 10px;
  background-color: #ed7611;
  -webkit-clip-path: polygon(24% 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(24% 0, 100% 0, 100% 100%, 0% 100%);
  transition: 0.5s all;
}
.pt:hover {
  right: 0 !important;
  bottom: 0 !important;
}
.pt .pt_btn {
  position: relative;
  transform: rotate(45deg);
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
}
.pt .pt_btn::before, .pt .pt_btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-color: #FFF;
}
.pt .pt_btn::before {
  bottom: 0;
  width: 7px;
}
.pt .pt_btn::after {
  right: 0;
  height: 7px;
}
.pt.slideOutLeft {
  right: -10px;
  bottom: -10px;
  animation-name: slideOutLeft;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(-100%, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 0, 0);
  }
}
/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider_bg .index_slider {
  position: relative;
}
.index_slider_bg .index_slider img {
  width: 100vw;
  max-width: 100vw;
  height: 600px !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.index_slider_bg .index_slider .catchcopy_bg {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: auto;
  min-height: 365px;
  margin: -210px auto 0;
  background: url(../images/eyecatch_bg.png) no-repeat center center;
  background-size: cover;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy {
  padding: 20px 175px;
  color: #fff;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy h2 {
  font-size: 17px;
  text-align: center;
  margin-bottom: 15px;
}
.index_main {
  order: 1;
  width: 100%;
  padding-top: 130px;
}
.index_main .index_greet {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 120px;
  padding: 0 40px;
}
.index_main .index_greet .txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 90px;
  max-width: 100%;
}
.index_main .index_greet .txt h2 {
  color: #ed7e24;
  font-size: 48px;
  text-align: center;
  line-height: 1.3;
}
.index_main .index_greet .txt h2::after {
  display: block;
  content: attr(data-text);
  font-size: 16px;
}
.index_main .index_greet img {
  max-width: 100%;
  max-height: 100%;
  padding-left: 40px;
}
.index_main .index_company {
  padding-top: 50px;
  padding-bottom: 50px;
}
.index_main .index_company h2 {
  color: #ed7e24;
  text-align: center;
  font-size: 42px;
  margin-bottom: 30px;
}
.index_main .index_company h3 {
  font-size: 24px;
  position: relative;
  margin-bottom: 30px;
}
.index_main .index_company h3::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  border-bottom: 5px solid #d2d4d5;
}
.index_main .index_company h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30%;
  border-bottom: 5px solid #ed7e24;
}
.index_main .index_company_btn {
  margin-bottom: 30px;
}
.index_main .index_company_btn_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.index_main .index_company_btn_list li a {
  display: block;
  color: #ed7e24;
  padding: 10px;
  border: 2px solid #ed7e24;
  border-radius: 5px;
  transition: 0.3s;
  font-weight: bold;
}
.index_main .index_company_btn_list li a:hover {
  background: #ed7e24;
  color: #fff;
}
.index_main .index_company > section {
  margin-bottom: 50px;
}
.index_main .index_company_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, 200px);
  grid-row-gap: 30px;
  grid-column-gap: 30px;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}
.index_main .index_company_list_item {
  box-shadow: 0 2px 10px #bbb;
  transition: 0.5s;
}
.index_main .index_company_list_item:hover {
  scale: 1.05;
}
.index_main .index_company_list_item > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: #000;
}
.index_main .index_company_list_item_img figure {
  aspect-ratio: 1/1;
}
.index_main .index_company_list_item_img figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.index_main .index_company_list_item_con {
  width: 100%;
  padding: 20px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #bbb;
}
.index_main .index_news {
  padding: 90px 0;
  background: url(../images/news_bg.png) no-repeat center center;
  background-size: cover;
}
.index_main .index_news .index_news_con {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index_main .index_news .index_news_con h2 {
  padding: 0 70px;
  color: #fff;
  font-size: 48px;
}
.index_main .index_news .index_news_con .index_news_scrl {
  width: 100%;
  max-width: 950px;
  max-height: 300px;
  overflow: auto;
}
.index_main .index_news .index_news_con .index_news_scrl .index_news_item {
  display: flex;
  align-content: space-between;
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px dotted #fff;
}
.index_main .index_news .index_news_con .index_news_scrl .index_news_item .index_news_item_date {
  width: 140px;
  color: #fff;
  text-align: center;
}
.index_main .index_news .index_news_con .index_news_scrl .index_news_item .index_news_item_ttl {
  width: calc(100% - 140px);
  color: #fff;
}
.index_main .index_news .index_news_con .index_news_scrl .index_news_item .index_news_item_ttl a {
  color: #fff;
  text-decoration: underline;
}
.index_main .index_news .index_news_con .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new {
  display: inline-block;
  margin-left: 0.3em;
  padding: 0 5px;
  background: #fff;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  border-radius: 3px;
}
.index_main .index_news .index_news_con .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new:before {
  content: "NEW";
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon .mcon_ttl {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-top: 140px;
  border-bottom: 2px solid #ed7e24;
  overflow: hidden;
}
.mcon .mcon_ttl h1 {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em 2em;
  color: #000;
  font-size: 36px;
  line-height: 1.4;
  z-index: 1;
}
.mcon .mcon_ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/ttl_bg.jpg) no-repeat center center;
  background-size: cover;
  filter: blur(3px);
}
.mcon > section {
  padding-top: 2em;
}
.mcon > section > *:first-of-type {
  margin-top: 0;
  padding-top: 0;
}
.mcon h2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 2em 0 1.1em;
  color: #ed7611;
  font-size: 1.5em;
}
.mcon h2::before {
  content: "";
  width: 50px;
  height: 1px;
  background: #ed7611;
}
.mcon h3 {
  position: relative;
  margin: 1em 0 0.75em;
  padding-bottom: 10px;
  color: #484848;
  font-size: 1.3em;
}
.mcon h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background: #ed7611;
}
.mcon h4 {
  display: flex;
  align-items: center;
  margin: 5px 0;
  color: #484848;
  font-size: 1.15em;
}
.mcon h4::before {
  content: "";
  display: block;
  width: 3px;
  height: 20px;
  margin-right: 10px;
  background: #f2932f;
}
.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 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 */