@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クラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** spスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html,
body {
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 14px;
}

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

.con_bg {
  padding-bottom: 100px;
  background: #fffaf0;
}

.main {
  padding-top: 40px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 100px;
  background: #fffaf0;
}
.hd_bg a {
  color: #000;
}
.hd_bg .hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 35px);
  height: inherit;
  margin: 0;
  padding: 0 10px;
}
.hd_bg .hd .hd_logo a {
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.hd_bg .hd .hd_logo a:hover {
  opacity: 0.7;
  text-decoration: none !important;
}
.hd_bg .hd .hd_logo .hd_ttl {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
}
.hd_bg .hd .hd_logo .hd_ttl span {
  display: block;
  font-size: 0.9em;
  font-weight: normal;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
nav {
  width: 60%;
  height: calc(100% + 500px);
  padding-bottom: 500px;
  position: fixed;
  top: 0px;
  right: -60%;
  color: #fff;
  background: #000;
  box-shadow: 1px 1px 5px rgb(0, 0, 0);
  overflow-x: none;
  overflow-y: auto;
  z-index: 100;
  transition: All 0.5s ease;
}

.nav_list li {
  position: relative;
}
.nav_list li a {
  display: block;
  color: #fff;
  text-decoration: none;
}
.nav_list li.current > a {
  position: relative;
}
.nav_list li.current > a:after {
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #ffffff;
  background: #000;
  border-radius: 5px;
  z-index: -1;
}
.nav_list > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.nav_list > li > a {
  position: relative;
  padding: 0.8em 1em 0.8em 24px;
  font-size: 16px;
  font-weight: bold;
}
.nav_list > li > a:after {
  content: attr(data-text);
  display: block;
}
.nav_list > li.lang {
  border: 1px solid #d2f1fe;
  background: #004b6b;
  margin: 1em 8px;
  border-radius: 5px;
  text-align: center;
}
.nav_list > li.lang a {
  padding: 0.5em 1em 0.6em 24px;
}
.nav_list > li {
  /* 子要素を持つメニュー（親）の場合 */
}
.nav_list > li.has_clist {
  position: relative;
}
.nav_list > li.has_clist .sub-menu-trigger {
  position: absolute;
  top: 0.8em;
  right: 8px;
  z-index: 10;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.nav_list > li.has_clist .sub-menu-trigger:before, .nav_list > li.has_clist .sub-menu-trigger:after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #fff;
}
.nav_list > li.has_clist .sub-menu-trigger::before {
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translateX(-50%);
}
.nav_list > li.has_clist .sub-menu-trigger:after {
  top: 50%;
  left: 7px;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav_list > li.has_clist .sub-menu-trigger.close:after {
  transform: rotate(180deg);
}
.nav_list > li.has_clist .sub_menu_wrap {
  padding: 0 8px 8px;
  display: none;
  /* メニュー（子・孫）*/
}
.nav_list > li.has_clist .sub_menu_wrap .sub-menu {
  background: #595959;
}
.nav_list > li.has_clist .sub_menu_wrap .sub-menu li {
  border-left: none !important;
}
.nav_list > li.has_clist .sub_menu_wrap .sub-menu li > a {
  display: block;
  font-weight: 500;
  padding: 0.7em 10px 0.7em 16px;
  text-decoration: none;
}
.nav_list > li.has_clist .sub_menu_wrap .sub-menu li:last-child {
  border: none;
}
.nav_list > li.has_clist .sub_menu_wrap .sub-menu li.current > a:after {
  background: none;
  border-color: #333;
  background: #b1b1b1;
  z-index: 1;
}
.nav_list > li.has_clist .sub_menu_wrap {
  /* メニュー（子）*/
}
.nav_list > li.has_clist .sub_menu_wrap > .sub-menu {
  transition: All 0.5s ease;
  box-shadow: inset 0 0 3px 3px rgba(0, 0, 0, 0.15);
}
.nav_list > li.has_clist .sub_menu_wrap > .sub-menu > li {
  position: relative;
  border-bottom: 1px solid #fff;
}
.nav_list > li.has_clist .sub_menu_wrap > .sub-menu > li > a {
  font-size: 14px;
}
.nav_list > li.has_clist .sub_menu_wrap > .sub-menu > li > .sub-menu {
  width: 100%;
  top: 0;
  left: 100%;
  background: #b1b1b1;
}
.nav_list > li.has_clist .sub_menu_wrap > .sub-menu > li > .sub-menu > li {
  border-bottom: 1px solid #fff;
}
.nav_list > li.has_clist .sub_menu_wrap > .sub-menu > li > .sub-menu > li > a {
  padding-left: 32px;
  font-size: 12px;
}

.sp_nav_open {
  right: 0 !important;
}

.sp_nav_trigger {
  width: 30px;
  height: 24px;
  margin-top: -5px;
  position: fixed !important;
  top: 25px;
  right: 15px;
  cursor: pointer;
  z-index: 1000;
}
.sp_nav_trigger span {
  width: 100%;
  height: 4px;
  display: inline-block;
  position: absolute;
  left: 0;
  background-color: #000;
  border-radius: 4px;
  transition: all 0.4s;
  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.sp_active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
  background: #fff;
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
  background: #fff;
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
  background: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  width: 100%;
  color: #fff;
  background: #000;
}
.ft_bg a {
  color: #fff;
}
.ft_bg .ft {
  height: 100%;
  padding: 10px;
}
.ft_bg .ft .ft_ttl {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
}
.ft_bg .ft .ft_ttl span {
  display: block;
  font-size: 0.9em;
  font-weight: normal;
}
.ft_bg .ft .ft_list {
  display: flex;
  flex-wrap: wrap;
}
.ft_bg .ft .ft_list > li > a {
  position: relative;
  display: block;
  padding: 5px 0;
  margin-right: 3em;
  text-align: center;
  transition: 0.1s all;
}
.ft_bg .ft .ft_list > li > a:after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  content: "";
  width: 70%;
  height: 2px;
  margin: auto;
  transform: scale(0, 1);
  transform-origin: right top;
  background: #fff;
  transition: transform 0.3s;
}
.ft_bg .ft .ft_list > li > a:hover {
  text-decoration: none;
}
.ft_bg .ft .ft_list > li.current > a:after, .ft_bg .ft .ft_list > li:hover > a:after {
  transform: scale(1, 1);
  transform-origin: left top;
}
.ft_bg .ft_copy {
  font-size: 10px;
  text-align: center;
  line-height: 1.3;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  width: 45px;
  height: 45px;
  padding-bottom: 5px;
  position: fixed;
  right: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  box-shadow: 0 0 2px #000;
  border: 1px solid #fff;
  z-index: 100;
  transition: 0.5s all;
}
.pt:hover {
  opacity: 0.6;
}
.pt .pt_btn {
  cursor: pointer;
  display: block;
  background: url(../images/arrow.png) center/contain no-repeat;
  width: 24px;
  height: 23px;
  margin-top: 3px;
}
.pt.fadeIn {
  animation: fadeIn ease 2s;
  bottom: 25px;
}
.pt.fadeOut {
  animation: fadeOut ease 0.8s;
  bottom: -50px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider_bg {
  margin-top: 100px;
  position: relative;
}
.index_slider_bg figure {
  width: 100%;
  height: 60vh !important;
  height: 60svh !important;
  overflow: hidden;
}
.index_slider_bg figure img {
  width: 100%;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
.index_slider_bg .catchcopy_bg {
  width: 100%;
  position: absolute;
  bottom: 0;
  color: #fff;
  z-index: 1;
}
.index_slider_bg .catchcopy_bg .catchcopy {
  display: flex;
  justify-content: flex-end;
  text-shadow: 0 0 8px #000;
}
.index_slider_bg .catchcopy_bg .catchcopy h2 {
  font-size: 2rem;
  font-family: Rajdhani, "Noto Sans JP", sans-serif;
  margin-bottom: 15px;
  line-height: 1.3;
}
.index_main {
  padding-top: 50px;
}
.index_main h2 {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 30px;
  color: #000;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
}
.index_main h2::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -45px;
  width: 10px;
  height: 40px;
  background: linear-gradient(#b1b1b1 0%, #595959 100%);
  transform: translate(13px, -50%) skewX(-33deg);
}
.index_main h2 span {
  display: block;
  font-size: 0.44em;
}
.index_main h3 {
  font-size: 1.5rem;
  line-height: 1.5;
}
.index_main p {
  margin: 10px 0;
}

.index_news h2 {
  font-family: Rajdhani, "Noto Sans JP", sans-serif;
  font-size: 3.5em;
  letter-spacing: 0.02em;
}

.news_scrl dl > div {
  width: 100%;
  display: block;
  padding: 8px 0;
  border-bottom: 1px dotted #e9e6df;
}
.news_scrl dl > div dt {
  padding-bottom: 5px;
}
.news_scrl dl > div dd {
  padding-bottom: 10px;
}
.news_scrl dl > div dd .icon_new {
  display: inline-block;
  color: #c00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}
.news_scrl dl > div dd .icon_new:before {
  content: "NEW";
}
.news_scrl dl > div:first-child {
  border-top: 1px dotted #e9e6df;
}

.index_project h2 {
  font-size: 2.3em;
}
.index_project .project_con > * {
  border-bottom: 1px solid #e9e6df;
}
.index_project .project_con > *:last-child {
  border-bottom: none;
}

.index_btn {
  position: relative;
  display: block;
  width: 240px;
  height: 60px;
  padding: 0;
  color: #000;
  background-color: transparent;
  border-radius: 0.5rem;
  font-size: 20px;
  font-family: Rajdhani, "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.index_btn svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.index_btn svg rect {
  transition: all 400ms ease;
  stroke: #000;
  stroke-width: 2;
  stroke-dasharray: 270px, 16px;
  stroke-dashoffset: 120px;
}
.index_btn:hover {
  text-decoration: none;
}
.index_btn:hover svg rect {
  stroke-dashoffset: 334px;
}
.index_btn span {
  color: #000;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.page_ttl {
  margin-top: 100px;
  position: relative;
  background: #fffaf0;
  border-bottom: 2px solid #000;
  overflow: hidden;
}
.page_ttl > figure {
  position: relative;
  margin: 0 !important;
}
.page_ttl > figure img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
  object-fit: cover;
  filter: opacity(0.7);
}
.page_ttl h1 {
  width: 100%;
  padding: 0 30px;
  position: absolute;
  top: 58%;
  left: 50%;
  font-size: 24px;
  color: #000;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1.4;
  z-index: 2;
}

.mcon {
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h2 {
  position: relative;
  margin: 25px 0;
  padding-left: 40px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #000;
}
.mcon h2::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 33px;
  background: linear-gradient(#b1b1b1 0%, #595959 100%);
  transform: translate(13px, -50%) skewX(-33deg);
}
.mcon h3 {
  font-size: 1.5em;
  line-height: 1.5;
  margin: 1.4em 0 1em;
}
.mcon h4 {
  font-size: 1.3em;
  line-height: 1.5;
  margin: 0.8em 0 0.5em;
}
.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,
.mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li,
.mcon ul li {
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.mcon ul li {
  list-style-type: disc;
}
.mcon p {
  margin-bottom: 1em;
}

.coming_soon {
  font-size: 20px;
  padding: 80px 0;
  font-weight: bold;
  text-align: center;
}

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** tabスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 760px) and (max-width: 1024px) {
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** index
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  .index_slider_bg figure img {
    height: 430px !important;
  }
  .index_main {
    padding-top: 60px;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** navigation
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  nav {
    width: 43% !important;
  }
}/*# sourceMappingURL=sp.css.map */