@charset "UTF-8";
/*サイト全体の共通設定を記載するCSSファイルです*/
/* CSS変数の宣言 */
:root{
  --font-size-tl:42px;/*ページタイトル用フォントサイズ*/
  --font-size-stl:32px;/*ページタイトル用フォントサイズ*/
  --font-size:20px;/*基本のフォントサイズ*/
  --font-size-l:36px;/*大きいフォントサイズ*/
  --font-size-s:16px;/*小さいフォントサイズ*/
  --font-color:#000000;/*白背景のフォントカラー*/
  --font-color-w:#ffffff;/*白背景以外のフォントカラー*/
  --bg-color:#000000;/*紺背景色*/
  --bg-color-w:#ffffff;/*白背景色*/
  --bg-color-ftr:#111820;/*フッター用背景色*/
  --hover-color:#cccccc;/*マウスオーバー時のカラー*/
  --margin-btm:40px;/*基本下マージン*/
}
/* CSS変数の宣言 */

body{
  font-size: var(--font-size);
  font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif ;
  position: relative;
}

body.lock { overflow: hidden;}

h2{font-size: var(--font-size-tl);text-align: center;}
h3{font-size: var(--font-size-stl);}
p{line-height: 1.8em;}
img{vertical-align: bottom;}
dt {font-weight: 100;}
a{text-decoration: none;transition: .25s;}

/*header*/
header{
  color: var(--font-color-w);
  text-align: center;
  width: 100%;
  /*fixedで上部固定*/
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-color);
  border-bottom: 1px solid #2a3542;
  position: fixed;
  z-index: 999;/*最前面へ*/
}

header h1{
  font-size: 24px;
  text-align: center;
  width: 100%;
  padding: 1em 0;
}

#header.UpMove{
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}

#header.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header .information_btn{
  font-size: var(--font-size-s);
  position: absolute;
  top: 50%;
  right: 9em;
  transform: translate( 0 , -50% );
}

header .information_btn a{
  display: block;
  padding: 0.5em 1.5em 0.375em;
  border: 1px solid #ffffff;
}

header .menu_btn{
  cursor: pointer;
  width: 50px;
  height:50px;
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: translate(0px, -50%);
}

/*ボタン内側*/
header .menu_btn span{
  width: 66%;
  height: 2px;
  display: inline-block;
  background: #fff;
  position: absolute;
  left: 8px;
  border-radius: 5px;
  transition: all .4s;/*アニメーションの設定*/
}

header .menu_btn span:nth-of-type(1) {
  top:13px; 
}

header .menu_btn span:nth-of-type(2) {
  top:25px;
  width: 25%;
}

header .menu_btn span:nth-of-type(3) {
  top:19px;
}

header .menu_btn span:nth-of-type(3)::after {
  content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
  font-size: 0.6rem;
  color: #fff;
  text-transform: uppercase;
  position: absolute;
  top: 14px;
  left:2px;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
header .menu_btn.active span:nth-of-type(1) {
  top: 13px;
  left: 10px;
  transform: translateY(6px) rotate(-25deg);
  width: 68%;
}

header .menu_btn.active span:nth-of-type(2) {
  top: 25px;
  left: 10px;
  transform: translateY(-6px) rotate(-155deg);
  width: 68%;
}

header .menu_btn.active span:nth-of-type(3){
  background: unset;
}

header .menu_btn.active span:nth-of-type(3)::after {
  content:"Close";/*3つ目の要素のafterにClose表示を指定*/
  top: 14px;
  left: 2px;
}

/*slideナビ内*/
#g_nav{
  color: var(--font-color-w);
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  position: fixed;
  top: -100vh;
  left: 0px;
  transition: .5s;
  z-index: 99;
  box-sizing: border-box;
}

#g_nav.active{
  top: 75px;
}

#g_nav .link_area{
  width: 100%;
}

#g_nav .link_area:first-child{
  padding: 50px 0;
  border-bottom: 1px solid #2a3542;
}

#g_nav .link_area:first-child ul li{
  margin-bottom: var(--margin-btm);
}

#g_nav .link_area:first-child ul li dd{
  font-size: var(--font-size-s);
  margin-top: 1em;
  padding-left: 1em;
}

#g_nav .link_area:first-child ul:last-child{
  margin-right: 0;
}

#g_nav .link_area:nth-child(2){
  font-size: var(--font-size-s);
  padding: 20px 0;
  align-items: center;
}

#g_nav .link_area:nth-child(2) ul:last-child li{
  margin-right: 24px;
}

#g_nav .link_area ul:nth-child(2) a{
  display: block;
}

#g_nav .link_area ul:nth-child(2) svg{
  width: auto;
  height: 24px;
  vertical-align: bottom;
}

/*footer*/
footer{
  color: var(--font-color-w);
  background: var(--bg-color-ftr);
  padding: 60px 20px 80px;
}

footer .btm_link_area{
  max-width: 1200px;
  box-sizing: border-box;
  margin: 0 auto;
}

footer .btm_link_area:first-child ul:nth-child(3){
  line-height: 1.5em;
}

footer .btm_link_area:first-child ul li{
  margin-bottom: var(--margin-btm);
}

footer .btm_link_area:first-child ul li:last-child{
  margin-bottom: 0;
}

footer .btm_link_area:first-child ul li dd{
  font-size: var(--font-size-s);
  padding: var(--font-size-s) 0 0 var(--font-size-s) ;
}

footer .btm_link_area:first-child ul li dd::before{
  content: "└";
}

footer .btm_link_area:last-child {
  margin-top: 60px;
  padding-top: 14px;
  border-top: 1px solid #2a3542;
}

footer .btm_link_area:last-child ul{
  display: flex;
}

footer .btm_link_area:last-child ul svg{
  width: auto;
  height: 24px;
  vertical-align: bottom;
}

footer .btm_contact_btn{
  font-size: 18px;
  line-height: 1.25em;
  text-align: center;
  width: 100%;
  display: block;
  padding: 1em 0;
  border: 1px solid #ffffff;
}

#page-top{
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9;
}

#page-top a{
  font-size: 0.75em;
  text-align: center;
  color: #ffffff;
  width: 80px;
  height: 80px;
  display: block;
  padding: 40px 0;
  background: #000000;
  box-sizing: border-box;
}

#page-top a::after{
  content: "";
  width: 1em;
  height: 1em;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  transform: translate(-50% , 0) rotate(45deg);
  position: absolute;
  top: 1.5em;
  left: 50%;
}

/*content*/
.content_wrap{
  color: var(--font-color-w);
  background: var(--bg-color);
}

.content_wrap.white{
  color: var(--font-color);
  background: var(--bg-color-w);
}

.content_wrap section{ width: 100%; padding: 0 20px;box-sizing: border-box;}

.content_wrap section .content_box{width: 100%; margin: 0 auto; padding: 105px 0;}
.content_wrap section .content_box_s{ max-width: 800px;}/*小サイズのボックス*/
.content_wrap section .content_box_r{ max-width: 1000px;}/*中サイズのボックス*/
.content_wrap section .content_box_l{ max-width: 1200px;}/*大サイズのボックス*/

.bg_decorations01{
  background-image: url(/common/images/bg_decorations01.png);
  background-position: 0 220px ;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

/*パンくず*/
#breadcrumb{
  width: 100%;
  padding: 0 20px;
  border-top: 1px solid #2a3542;
}

#breadcrumb ul{
  font-size: var(--font-size-s);
  white-space: nowrap;
  color: var(--font-color-w);
  width: 100%;
  max-width: 1200px;
  display: flex;
  margin: 0 auto;
  padding: 2em 0;
  overflow: auto;
}

.white #breadcrumb ul{
  color: var(--font-color);
}

#breadcrumb ul li{
  margin-right: 5px;
}

#breadcrumb ul li::after{
  content: ">";
  display: inline-block;
  margin-left: 5px;
}

#breadcrumb ul li:last-child::after{
  content: none;
}

#breadcrumb ul li a{
  text-decoration: underline;
}

@media screen and (min-width : 769px){
  /*PC用*/

  a:hover{color: var(--hover-color);}
  a svg path{transition: .25s;}
  a:hover svg path{fill: var(--hover-color) !important;}

  header .information_btn a:hover{border-color: var(--hover-color);}

  /*slideナビ内*/
  #g_nav {
    padding: 0 20px;
  }

  #g_nav .link_area{
    max-width: 1200px;
    display: flex;
    margin: 0 auto;
  }
  
  #g_nav .link_area:first-child ul{
    margin-right: 135px;
  }

  #g_nav .link_area:first-child ul li dd::before{
    content: "└";
  }

  #g_nav .link_area:nth-child(2) ul{
    line-height: 24px;
    display: flex;
    margin-right: 65px;
  }

  #g_nav .link_area:nth-child(2) ul:first-child li{
    margin-right: 70px;
  }

  #g_nav .link_area:nth-child(2) ul:last-child{
    margin-right: 0;
  }

  /*footer*/
  footer .btm_link_area{
    display: flex;
  }

  footer .btm_link_area:first-child{
    justify-content: space-between;
  }

  footer .btm_link_area:first-child ul{
    width: 380px;
  }

  footer .btm_link_area:last-child{
    align-items: center;
  }

  footer .btm_link_area:last-child ul:first-child{
    font-size: var(--font-size-s);
    margin-right: 80px;
  }

  footer .btm_link_area:last-child ul:first-child li {
    margin-right: 50px;
  }

  footer .btm_link_area:last-child ul:nth-child(2) li {
    margin-right: 24px;
  }

  footer .official_title{
    font-size: 24px;
  }

  footer .btm_contact_btn{
    max-width: 360px;
  }
  footer .btm_contact_btn:hover{
    border-color: var(--hover-color);
  }

  footer .copy {
    font-size: 11px;
    margin-left: auto;
  }


  /*content*/
  .content_wrap {
    padding-top: 77px;
  }

  .pcHide {
    display: none !important;
  }

}/*min-width : 769px*/

@media screen and (max-width : 768px){
  /*スマホ用*/

  /* CSS変数の更新 */
  :root{
    --font-size-tl:28px;/*ページタイトル用フォントサイズ*/
    --font-size-stl:24px;/*ページタイトル用フォントサイズ*/
    --font-size:18px;
    --font-size-s:0.875rem;
    --font-size-l:24px;/*大きいフォントサイズ*/
    --margin-btm:25px;
  }
  /* CSS変数の更新 */

  .content_wrap section{padding: 0 35px;}

  .content_wrap section .content_box{padding: 50px 0;}

  /*header*/
  header h1{
    font-size: 16px;
    padding: 1.125em 0;
  }

  .information_btn{
    display: none;
  }

  .menu_btn{
    width: 40px;
    height: 40px;
  }

  /*ボタン内側*/
  .menu_btn span{
    width: 66%;
    height: 2px;
    left: 7px;
  }

  .menu_btn span:nth-of-type(1) {
    top:8px; 
  }

  .menu_btn span:nth-of-type(2) {
    width: 25%;
    top:18px;
  }

  .menu_btn span:nth-of-type(3) {
    top:13px;
  }

  .menu_btn span:nth-of-type(3)::after {
    left: -2px;
  }

  .menu_btn.active span:nth-of-type(1) {
    top:6px; 
    left: 7px;
  }

  .menu_btn.active span:nth-of-type(2) {
    top:18px;
    left: 7px;
  }

  .menu_btn.active span:nth-of-type(3)::after {
    top: 14px;
    left: -2px;
  }

  /*slideナビ内*/
  #g_nav{
    text-align: center;
    height: calc(100vh - 55px);
    height: calc(var(--vh, 1vh) * 100 - 55px);
    top: -130vh;
    overflow: auto;
  }

  #g_nav.active{
    top: 55px;
  }

  #g_nav .link_area:first-child{
    padding: 30px 0;
  }

  #g_nav .link_area:nth-child(2) ul{
    text-align: center;
  }
  
  #g_nav .link_area:nth-child(2) ul:first-child li{
    margin-bottom: 1em;
  }

  #g_nav .link_area:nth-child(2) ul:first-child li:last-child{
    margin-bottom: 0;
  }

  #g_nav .link_area:nth-child(2) ul:last-child{
    display: flex;
    padding: 40px 0;
    justify-content: center;
  }

  #g_nav .link_area:nth-child(2) ul:last-child li:last-child{
    margin-left: 0;
  }

  /*footer*/
  footer{
    padding: 50px 0 36px;
  }

  footer .btm_link_area:first-child ul{
    margin-bottom: var(--margin-btm);
    padding: 0 35px;
  }

  footer .btm_link_area:first-child ul:last-child{
    margin-top: 50px;
    padding: 50px 35px 0;
    border-top: 1px solid #2a3542;
  }

  footer .btm_link_area:last-child{
    margin-top: 50px;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
  }

  footer .btm_link_area:last-child ul{
    width: 100%;
    padding: 0 35px;
    box-sizing: border-box;
  }

  footer .btm_link_area:last-child ul li{
    margin-right: 20px;
  }

  footer .btm_link_area:last-child ul:first-child{
    order: 0;
  }

  footer .btm_link_area:last-child ul:nth-child(2){
    order: 2;
  }

  footer .btm_contact_btn{
    font-size: 16px;
  }

  footer .copy {
    font-size: 13px;
    margin: 40px 0 25px;
    padding: 0 35px;
    order: 1;
  }

  #page-top a{
    font-size: 0.5em;
    width: 40px;
    height: 40px;
    padding: 20px 0;
  }
  
  #page-top a::after{
    width: 0.75em;
    height: 0.75em;
    top: 1em;
    left: 50%;
  }

  /*content*/
  .content_wrap {
    padding-top: 56px;
  }

  .spHide {
    display: none !important;
  }

  /*パンくず*/

  #breadcrumb{
    padding: 0 35px;
  }

  #breadcrumb ul{
    font-size: 12px;
  }

}/*max-width : 768px*/