@charset "utf-8";
/*------------------------------------------------
  ウェブフォント設定
------------------------------------------------*/

@font-face {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 400;
  src: local("NotoSansCJKjp-Regular"),
       local("NotoSansJP-Regular"),
       url("../../fonts/NotoSansCJKjp-Regular.woff2") format("woff2"),
       url("../../fonts/NotoSansCJKjp-Regular.woff") format("woff");
}

@font-face {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 700;
  src: local("NotoSansCJKjp-Bold"),
       local("NotoSansJP-Bold"),
       url("../../fonts/NotoSansCJKjp-Bold.woff2") format("woff2"),
       url("../../fonts/NotoSansCJKjp-Bold.woff") format("woff");
}

@font-face {
  font-family: "Noto Serif CJK JP";
  font-style: normal;
  font-weight: 500;
  src: local("NotoSerifCJKjp-Medium"),
       local("NotoSerifJP-Medium"),
       url("../../fonts/NotoSerifCJKjp-Medium.woff2") format("woff2"),
       url("../../fonts/NotoSerifCJKjp-Medium.woff") format("woff");
}

/*------------------------------------------------
  基本
------------------------------------------------*/

html {
  font-size: 62.5%;  /* フォントサイズを10pxに設定 */
}

body {
  color: #333;
  font-family: "Noto Serif CJK JP", serif;
  font-size: 1.3rem;  /* 13px */
  font-weight: 500;
  line-height: 1.5;
}

@media print, screen and (max-width: 768px) {
  body {
    scroll-padding-top: 80px;
  }
}

@media print, screen and (min-width: 769px) {
  html {
    min-width: 1024px;
  }

  body {
    font-size: 1.5rem;  /* 15px */
  }
}

/*----- コンテンツが少ない場合に、フッターを最下部に固定 -----*/

  html {
    height: 100vh;
  }

  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  main {
    flex-grow: 1;
  }

/*----- リンクホバー -----*/

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

a:hover {
  opacity: .7;
}

/*----- PCで電話番号リンク無効 -----*/

@media print, screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*----- イメージ下スペース削除 -----*/

img {
  vertical-align: middle;
}

/*----- テーブルスタイル削除 -----*/

table {
  border-collapse: collapse;
}

/*----- リストスタイル削除 -----*/

ul, ol {
  list-style: none;
}

/*----- 可変BRタグ -----*/

.brake-sp {
  display: inline-block;
}

@media print, screen and (min-width: 667px) {
  .brake-sp {
    display: none;
  }
}

.brake-tb {
  display: none;
}

@media print, screen and (min-width: 667px) {
  .brake-tb {
    display: inline-block;
  }
}

.brake-pc {
  display: none;
}

@media print, screen and (min-width: 769px) {
  .brake-pc {
    display: inline-block;
  }
}

/*------------------------------------------------
  ヘッダー
------------------------------------------------*/

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  font-family: "Noto Sans CJK JP", sans-serif;
  font-weight: normal;
  background-color: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 15px;
}

.header-logo {
  width: 125px;
}

.header-logo * {
  display: flex;
  width: 100%;
  height: 100%;
}

.header-logo2 {
  width: 375px;
}

.header-logo2 * {
  display: flex;
  width: 100%;
  height: 100%;
}
@media print, screen and (min-width: 769px) {
  .header {
    background-color: rgba(255, 255, 255, 0);
    transition: .3s;
  }

  .is-animation {
    background-color: rgba(255, 255, 255, .7);
    transition: .3s;
  }

  .header-inner {
    width: 1305px; /* デフォルトは1000px→1200→1350　*/
    margin: auto;
    padding: 0;
  }

  .header-logo {
    flex-shrink: 0;
    width: 150px;
    margin-left: 30px;
  }
}

/*========== ヘッダーナビゲーション ==========*/

.header-nav {
  display: none;
  position: fixed;
  z-index: 50; /* デフォルトは50*/
  top: 80px; /* デフォルトは80%*/
  left: 0;
  width: 100%;　/* デフォルトは100%*/
  height: calc(100% - 80px);
  background-color: rgba(0, 0, 0, .75);
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.nav-open .header-nav {
  display: block;
  animation-name: header-nav-fade-in;
  animation-duration: .3s;
}

@keyframes header-nav-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.header-nav-list {
  background-color: #fff;
}

.nav-open .header-nav-list {
  animation-name: header-nav-list-slide-in;
  animation-duration: .3s;
}

@keyframes header-nav-list-slide-in {
  0% {
    transform: translateY(-30px); /* デフォルトは-30%*/
  }

  100% {
    transform: translateY(0);
  }
}

.header-nav-item:nth-of-type(8) { /* デフォルトは(6)*/
  display: none;
}

.header-nav-item-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; /* デフォルトは100%*/
  height: 50px;
}

.header-nav-item-phone .header-nav-item-button,
.header-nav-item-mail .header-nav-item-button {
  color: #fff;
}

.header-nav-item-phone .header-nav-item-button {
  background-color: #0599d9;
}

.header-nav-item-mail .header-nav-item-button {
  background-color: #1a54a5;
}

.header-nav-item-phone .header-nav-item-button::before,
.header-nav-item-mail .header-nav-item-button::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  background-position: center;
  background-size: cover;
}

.header-nav-item-phone .header-nav-item-button::before {
  background-image: url(../../images/common/icon_phone.png);
}

.header-nav-item-mail .header-nav-item-button::before {
  background-image: url(../../images/common/icon_mail.png);
}

@media print, screen and (min-width: 769px) {
  .header-nav {
    display: block;
    position: static;
    height: auto;
    background-color: transparent;
    overflow-y: hidden;
  }

  .header-nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: transparent;
  }

  .header-nav-item:nth-of-type(8) { /* デフォルトは(6)*/
    display: none;
  }

  .header-nav-item:nth-of-type(7) {
    display: block;
  }

  .header-nav-item-button {
    height: 40px;
    padding: 0 30px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    text-shadow: rgba(0, 0, 0, .5) 1px 1px 5px;
    transition: .3s;
  }

  .is-animation .header-nav-item-button {
    color: inherit;
    text-shadow: none;
    transition: .3s;
  }

  .header-nav-item-phone,
  .header-nav-item-mail {
    display: none;
  }
}

/*========== ナビゲーショントリガー ==========*/

.nav-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
}

@media print, screen and (min-width: 769px) {
  .nav-trigger {
    display: none;
  }
}

/*========== ハンバーガーボタン ==========*/

.humberger-button {
  color: #1a54a5;
}

/*========== ハンバーガーアイコン ==========*/

.humberger-icon {
  margin: 7.5px auto 10px;
  transition: background-color .3s;
}

.humberger-icon,
.humberger-icon::before,
.humberger-icon::after {
  display: block;
  position: relative;
  height: 2px;
  width: 20px;
  background-color: #0599d9;
}

.humberger-icon::before,
.humberger-icon::after {
  content: "";
  position: absolute;
  transition: transform .3s;
}

.humberger-icon::before {
  transform: translateY(-6px);
}

.humberger-icon::after {
  transform: translateY(6px);
}

.nav-open .humberger-icon {
  background-color: rgba(255, 255, 255, 0);
}

.nav-open .humberger-icon::before {
  transform: rotate(-45deg);
}

.nav-open .humberger-icon::after {
  transform: rotate(45deg);
}

/*========== グローバルナビゲーションオープン時のスクロールロック ==========*/

.no-scroll {
  position: fixed;
  width: 100%;
  height: 100%;
}

/*------------------------------------------------
  フッター
------------------------------------------------*/

.footer {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-weight: normal;
  background-color: #efefef;
}

.footer-inner {
  padding: 15px;
}

@media print, screen and (min-width: 769px) {
  .footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 1000px;
    margin: auto;
    padding: 30px;
  }
}

/*========== フッターナビゲーション ==========*/

.footer-nav {
  display: none;
}

@media print, screen and (min-width: 769px) {
  .footer-nav {
    display: block;
    width: 610px;
  }
  
  .footer-nav-title {
    padding-bottom: 7.5px;
    font-size: inherit;
    line-height: 1;
    border-bottom: 1px solid #ccc;
  }
  
  .footer-nav-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0 30px;
  }
  
  .footer-nav-item {
    width: 33.3333%;
  }
  
  .footer-nav-item:nth-of-type(1) {
    width: 100%;
    margin-left: -30px;
  }
  
  .footer-nav-item-button {
    font-size: 1.2rem;
    line-height: 3;
  }
  
  .footer-nav-item-button::before {
    content: "〉〉";
    margin-right: 5px;
    letter-spacing: -.6em;
  }
  
  .footer-nav-item:nth-of-type(1) .footer-nav-item-button::before {
    content: "〉";
  }
}

/*========== フッターコンタクト ==========*/

.footer-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 5px;
}

.footer-contact-button-phone {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 350px;
  height: 50px;
  margin-bottom: 10px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
}

.footer-contact-button-phone::before {
  content: "";
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 50%;
  background-color: #333;
  background-image: url(../../images/common/icon_phone.png);
  background-position: center;
  background-size: 50%;
}

.footer-contact-button-phone::after {
  content: "受付時間　平日10時〜18時";
  margin-top: 5px;
  font-size: 1.2rem;
}

.footer-contact-button-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 350px;
  height: 50px;
  margin-bottom: 10px;
  padding: 10px;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  background-color: #333;
}

.footer-contact-button-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 350px;
  height: 50px;
  margin-bottom: 10px;
  padding: 10px;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  background-color: #333;
}

.footer-contact-button-mail::before,
.footer-contact-button-instagram::before {
  content: "";
  margin-right: 10px;
  background-position: center;
  background-size: cover;
}

.footer-contact-button-mail::before {
  width: 20px;
  height: 20px;
  background-image: url(../../images/common/icon_mail.png);
}

.footer-contact-button-instagram::before {
  width: 25px;
  height: 25px;
  background-image: url(../../images/common/icon_instagram.png);
}

@media print, screen and (min-width: 769px) {
  .footer-contact {
    justify-content: space-between;
    width: 300px;
    margin: 0;
  }

  .footer-contact-button-phone {
    margin-bottom: 12.5px;
  }

  .footer-contact-button-mail,
  .footer-contact-button-instagram {
    font-size: 1.2rem;
  }

  .footer-contact-button-instagram {
    margin: 0;
  }
}

/*========== フッターロゴ ==========*/

.footer-logo {
  display: block;
  width: 160px;
  margin: 0 auto 15px;
}

.footer-logo * {
  display: flex;
  width: 100%;
  height: 100%;
}

@media print, screen and (min-width: 769px) {
  .footer-logo {
    margin: 30px auto;
  }
}

/*========== コピーライト ==========*/

.copyright {
  width: 100%;
  padding-top: 15px;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  border-top: 1px solid #ccc;
}

@media print, screen and (min-width: 769px) {
  .copyright {
    padding-top: 30px;
    font-size: 1.2rem;
  }
}

/*------------------------------------------------
  ページヘッダー
------------------------------------------------*/

.page-header {
  padding: 80px 0 30px;
}

.page-header-visual {
  height: 20vh;
  min-height: 150px;
  background-position: center;
  background-size: cover;
}

.page-header-title {
  margin-top: 30px;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: .5em;
  text-align: center;
  text-indent: 15px;
}

.page-header-title-label {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
  letter-spacing: 0;
  text-indent: 2.5px;
}

.page-header-title-extra {
  display: block;
  margin-top: 10px;
  font-size: 2.5rem;
  letter-spacing: 0;
  text-indent: 2.5px;
}

/*----- ライフプランニング -----*/

.page-header-life-planning .page-header-visual {
  background-image: url(../../images/life-planning/background_page-header.jpg);
}

/*----- LifeGateの家 -----*/

.page-header-features .page-header-visual {
  background-image: url(../../images/features/background_page-header.jpg);
}

/*----- 施工事例 -----*/

.page-header-works .page-header-visual {
  background-image: url(../../images/works/background_page-header.jpg);
}

/*----- お客様の声 -----*/

.page-header-voices .page-header-visual {
  background-image: url(../../images/voices/background_page-header.jpg);
}

/*----- ビジョン -----*/

.page-header-vision .page-header-visual {
  background-image: url(../../images/vision/background_page-header.jpg);
}

/*----- プライバシーポリシー -----*/

.page-header-privacy-policy .page-header-visual {
  background-image: url(../../images/privacy-policy/background_page-header.jpg);
}

/*----- お問合せ -----*/

.page-header-contact .page-header-visual {
  background-image: url(../../images/contact/background_page-header.jpg);
}

@media print, screen and (min-width: 769px) {
  .page-header {
    padding: 0 0 100px;
  }
  
  .page-header-visual {
    height: 350px;
  }

  .page-header-title {
    margin-top: 100px;
    font-size: 3.6rem;
    text-indent: 15px;
  }

  .page-header-title-label {
    font-size: 1.4rem;
    text-indent: -5px;
  }

  .page-header-title-extra {
    font-size: 3rem;
    text-indent: -5px;
  }
}

/*------------------------------------------------
  セクションタイトル
------------------------------------------------*/

/*========== プライマリ ==========*/

.section-title-primary {
  margin-bottom: 30px;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: .5em;
  text-align: center;
  text-indent: 15px;
}

.section-title-primary-alt {
  margin-bottom: 30px;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: .25em;
  text-align: center;
  text-indent: 7.5px;
}

.section-title-primary .section-title-primary-label,
.section-title-primary-alt .section-title-primary-label {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.section-title-primary .section-title-primary-label {
  text-indent: 2.5px;
}

.section-title-primary-alt .section-title-primary-label {
  text-indent: 1.25px;
}

@media print, screen and (min-width: 769px) {
  .section-title-primary {
    margin-bottom: 50px;
    font-size: 3.6rem;
  }

  .section-title-primary-alt {
    margin-bottom: 50px;
    font-size: 3.6rem;
  }

  .section-title-primary- .section-title-primary-label,
  .section-title-primary-alt .section-title-primary-label {
    margin-top: 10px;
    font-size: 1.4rem;
  }

  .section-title-primary .section-title-primary-label {
    text-indent: -2.5px;
  }
  
  .section-title-primary-alt .section-title-primary-label {
    text-indent: -1.25px;
  }
}

/*========== セカンダリ ==========*/

.section-title-secondery {
  margin-bottom: 30px;
  font-size: 2.4rem;
  line-height: 1.25;
  text-align: center;
}

@media print, screen and (min-width: 769px) {
  .section-title-secondery {
    margin-bottom: 50px;
    font-size: 3.6rem;
  }
}
