@charset "UTF-8";
/*
Theme Name: bridge
Author: K_SHISHI
Description: Bridgeオリジナルテーマ
Version: 1.0.0
*/
/* CSS Document */
/*テーマカラー*/
/*
#fff8f1  *delta magnolia white
#181B39　*Katsu-iro
#cc351b
*/
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box; }

body {
  color: #333;
  /* RGB */
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center; }

section h2 {
  font-size: 2.4rem; }

a:hover {
  opacity: 0.5; }

/*ローディング*/
.logo_fadein {
  background: #FFF8F1;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99999; }
  .logo_fadein p {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 99999;
    width: 100%; }
    .logo_fadein p img {
      width: 300px;
      height: auto;
      　transform: scale(1.2); }

/*header*/
.header {
  padding: 50px 15px 50px;
  transition: all .5s;
  position: fixed;
  width: 100%;
  z-index: 9999; }
  .header.change-color {
    background-color: #fff8f1; }

@media (min-width: 640px) {
  .header {
    padding: 50px 30px 50px; } }
.header-content-wrapper {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between; }

.header-title {
  display: none; }

/*トップロゴ*/
/*
.home_logo {
	position: fixed;
	top: 45px;
	left: 45px;
}
*/
.home_logo a img {
  width: 15%;
  display: flex; }

@media (min-width: 640px) {
  .home_logo a img {
    width: 10%; } }
/* ハンバーガーメニュー */
/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: -120%;
  left: 0;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background-color: #FFF8F1;
  /*	グラデーションや二色にしたい時*/
  /*  background:linear-gradient(180deg, #fff 0%, #fff 85%, #fe6f79 15%, #fe6f79 100%);*/
  /*動き*/
  transition: all 1s; }
  #g-nav.panelactive {
    top: 0; }
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: relative;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-wrap: nowrap; }

@media (min-width: 640px) {
  #g-nav ul {
    top: 55%; } }
/*アクティブクラスがついたら位置を0に*/
/*ナビゲーションの縦スクロール*/
/*#g-nav.panelactive #g-nav-list{*/
/*ナビの数が増えた場合縦スクロール*/
/*
	position: fixed;
    z-index: 999; 
    width: 100%;
*/
/*    height: 100vh;表示する高さ*/
/*
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
*/
/*ナビゲーション*/
.navi01 {
  width: 100%;
  display: block; }

.navi01-description {
  display: block;
  padding-bottom: 60px; }

.navi06 {
  padding-bottom: 10px; }

@media (min-width: 640px) {
  .navi02, .navi03, .navi04, .navi05, .navi06 {
    display: inline-block; } }
.mail-icon {
  position: absolute;
  margin-top: 25px;
  width: 100%; }

.navi07 {
  display: block;
  /*		background-color: #fe6f79;*/
  padding-top: 50px;
  padding-bottom: 50px; }

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center; }

.menu-logo img {
  width: 50%;
  margin-bottom: 35px;
  max-width: 330px;
  height: auto; }

@media (min-width: 640px) {
  .menu-logo img {
    margin-bottom: 40px; } }
#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px 10px 0;
  display: block;
  text-transform: uppercase;
  /*  letter-spacing: 0.1em;*/
  font-size: 2rem; }

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn {
  position: fixed;
  z-index: 9999;
  cursor: pointer;
  /*  top:45px;*/
  right: 20px;
  /*  background:#666;*/
  width: 50px;
  height: 50px; }
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    /*アニメーションの設定*/
    position: absolute; }
    .openbtn span:nth-of-type(1), .openbtn span:nth-of-type(2), .openbtn span:nth-of-type(3) {
      height: 4px;
      border-radius: 4px;
      background: #333;
      width: 80%;
      left: 10px; }
    .openbtn span:nth-of-type(1) {
      top: 10px; }
    .openbtn span:nth-of-type(2) {
      top: 25px; }
    .openbtn span:nth-of-type(3) {
      top: 40px; }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 12px;
    transform: translateY(6px) rotate(-45deg);
    width: 90%; }
  .openbtn.active span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
    animation: 10s forwards; }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 12px;
    transform: translateY(-6px) rotate(45deg);
    width: 90%; }

@media (min-width: 640px) {
  .openbtn {
    right: 50px; } }
/*ボタン内側*/
/*activeクラスが付与されると線が回転して×になり、Menu表記をしている2つ目の要素が透過して消える*/
/*footer*/
.breadcrumbs {
  font-size: 1.5rem;
  color: #181B39;
  padding: 5px 24px; }

.breadcrumbs a {
  color: inherit;
  text-decoration: none; }

.home.current-item {
  display: none; }

.footer-city img {
  width: 100vw; }

.footer-content-wrapper {
  /*  min-height: 228px;*/
  background-color: #181B39;
  padding-top: 46px;
  padding-bottom: 20px;
  /*  font-weight: 600;*/ }

#follow-us {
  font-size: 1.5rem;
  color: #fff;
  padding-bottom: 5px; }

.footer__sns_links {
  padding-bottom: 20px; }
  .footer__sns_links li {
    display: inline-block;
    width: 20px;
    margin: 0 10px; }
    .footer__sns_links li img {
      width: 100%; }

@media (min-width: 640px) {
  .footer__sns_links li {
    width: 23px;
    margin: 10px 5px 0; } }
.site-map__links {
  padding-bottom: 20px; }
  .site-map__links a {
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem; }
  .site-map__links p {
    display: none; }

@media (min-width: 640px) {
  .site-map__links {
    display: flex;
    justify-content: center;
    align-content: center; }
    .site-map__links p {
      display: inline;
      padding: 0 10px; } }
/*トップへ戻るボタン*/
#page_top {
  padding-bottom: 30px; }

@media (min-width: 640px) {
  #page_top {
    display: none; } }
.footer small {
  color: #FFF;
  font-size: 1.5rem; }

/*ボタン*/
.btn {
  padding: 1rem 0;
  width: 150px;
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
  font-size: 1.6rem;
  border-radius: 35px;
  margin: auto; }
  .btn:hover {
    opacity: 1; }

/*お問い合わせボタン*/
.btn-inquiry, .btn-detail {
  background-color: #181B39;
  border: 2px solid #181B39;
  color: #fff;
  box-sizing: border-box;
  transition: all .5s; }
  .btn-inquiry:hover, .btn-detail:hover {
    background-color: transparent;
    border: 2px solid #181B39;
    color: #181B39; }

/*詳しく見るボタン*/
