@charset "UTF-8";

/*   初期化
------------------------------------*/
html {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, sans-serif;

  font-size: 62.5%;
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
  line-height: 1.7;
  color: #444;
  text-size-adjust: 100%;
  text-align: justify;
}
/* 半角英数字の長い文字列を画面からはみ出すのを防ぐ */
body, body * { word-break: break-all; }

/* バーガーメニュー表示時背景固定 */
.body_no_scroll {
  height: 100%;
  overflow: hidden;
}
em {
  font-style: normal;
}
img {
  width: 100%;
}


/* ブログ内で使用 */
.custom-html-container * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font: inherit;
  /* 必要なリセットルールを列挙 */
}


/* 文字関連
------------------------------------*/
/* ベースフォントサイズ */
body {
  background-color: #fff;
  font-size: 2.2rem;
  line-height: 1.5;
}
@media print, screen and (min-width: 1100px) {
  body {
  font-size: 1.75rem;
  }
}

/* フォントサイズ（スマホ基準：2rem） */
.font-xs { font-size: 1.5rem; }        /* 0.75倍 */
.font-s  { font-size: 1.7rem; }        /* 0.85倍 */
.font-m  { font-size: 2.3rem; }        /* 1.15倍 */
.font-l  { font-size: 2.5rem; }        /* 1.25倍 */

/* PC（基準：1.8rem） */
@media print, screen and (min-width: 1100px) {  
  .font-xs { font-size: 1.35rem; }      /* 0.75倍 */
  .font-s  { font-size: 1.53rem; }      /* 0.85倍 */
  .font-m  { font-size: 2.07rem; }      /* 1.15倍 */
  .font-l  { font-size: 2.25rem; }      /* 1.25倍 */
}


/* 行間を詰める */
.letter-tight-xs { letter-spacing: -0.01em; }
.letter-tight-s  { letter-spacing: -0.02em; }
.letter-tight-m  { letter-spacing: -0.03em; }
.letter-tight-l  { letter-spacing: -0.04em; }


/* マージンスペース （スマホ基準：2rem） */
.mrg-btm0  { margin-bottom: 0rem; }     /* 0倍 */
.mrg-btm1  { margin-bottom: 2rem; }     /* 1倍 */
.mrg-btm2  { margin-bottom: 4rem; }     /* 2倍 */
.mrg-btm3  { margin-bottom: 6rem; }     /* 3倍 */
.mrg-btm4  { margin-bottom: 8rem; }     /* 4倍 */
.mrg-btm5  { margin-bottom: 10rem; }    /* 5倍 */

/* PC（基準：1.8rem） */
@media print, screen and (min-width: 1100px) {  
/*  .mrg-btm1  { margin-bottom: 1.8rem; } /* 1倍 */
/*  .mrg-btm2  { margin-bottom: 3.6rem; } /* 2倍 */
/*  .mrg-btm3  { margin-bottom: 5.4rem; } /* 3倍 */
/*  .mrg-btm4  { margin-bottom: 7.2rem; } /* 4倍 */
/*  .mrg-btm5  { margin-bottom: 9rem; }   /* 5倍 */
}


/* フォント指定 */
.ft-gothic {
  font-family:  "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
}
.ft-mincho {
  font-family: 'Noto Serif JP','游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}



/* テキスト装飾関連
------------------------------------*/
.tx-clr-red {
  color:#D64434;
}
.tx-clr-shu {
  color: #D64434;
}
.tx-clr-blue {
  color:#00f;
}
.tx-ul-blue {
  background-image: linear-gradient(transparent, transparent 70%, #e9f6fc 0%);  
}
.tx-ul-white {
  background-image: linear-gradient(transparent, transparent 70%, #fff 0%);  
}

.tx-ls-half {
  letter-spacing: -4px;
}
@media print, screen and (min-width: 1100px) {
  .tx-ls-half {
    letter-spacing: -8px;
  }
}

/* 見出し
------------------------------------*/
h2 {
  font-size: 2.6rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
h2 em {
  font-style: normal;
  font-size: 3rem;
  color: #046eb8;
}
@media print, screen and (min-width: 1100px) {
  h2 {
    font-size: 3rem;
    margin-bottom: 60px;
  }
  h2 em {
    font-size: 3.5rem;
  }
}

h3 {
  display: block;
  margin-top: 5px;
  margin-bottom: 20px;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: -0.03em;
  color: #0550BE;
}
h3::before {
    content: "";
    padding: 0 0 0 15px;
    border-left: solid 6px #0550BE;
}
@media print, screen and (min-width: 1100px) {
  h3 {
    font-size: 1.95rem;
  }
}


/* SP/PC表示切替
------------------------------------*/

/* スマホ時 */

.pc-br {
  display: none;
}
.sp-space {
  display: block;
  height: 1em;
}

.show-sp-bl {
  display: block;
}
.show-sp-il {
  display: inline;
}

.show-pc-bl,
.show-pc-il {
  display: none;
}

.pc-br {
  display: none;
}

/* PC表示時 */
@media print, screen and (min-width: 1100px) {

  .sp-br {
    display: none;
  }
  .pc-br {
    display: block;
  }
  .sp-space {
    display: none;
  }

  .show-sp-bl,
  .show-sp-il {
    display: none;
  }

  .show-sp {
    display: none;
  }
  .show-pc-bl {
    display: block;
  }
  .show-pc-il {
    display: inline;
  }

}


/* main
------------------------------------*/
.main {
  position: relative;
  margin-top: 70px;
}
@media print, screen and (min-width: 1100px) {
  .main {
    margin-top: 0;
  }
}


/* wrapper
------------------------------------*/
.wrapper-bg {
/*  max-width: 1600px; */
  margin-left: auto;
  margin-right: auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.wrapper {
  width: 90%;
  margin: auto;
  padding: 50px 0 60px 0;
}
.wrapper-top {
  padding-top: 15px;
}
.wrapper-btm {
  padding-bottom: 50px;
}
.wrapper-nav {
  width: 90%;
  margin: auto;
  padding: 0;
}
.bg-blue {
  background-color: #effaff;
}
@media print, screen and (min-width: 1100px) {
  .wrapper {
    width: 1040px;
    padding: 70px 0 90px 0;
  }
  .wrapper-top {
    padding-top: 10px;
  }
  .wrapper-btm {
    padding-bottom: 60px;
  }
  .wrapper-nav {
    width: 1100px;
  }
}


/* section
------------------------------------*/
section p {
  margin-bottom: 1.9rem;
}
p:last-child {
  margin-bottom:0;
}

@media print, screen and (min-width: 1100px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
  section p {
    margin-bottom: 1.7rem;
  }
}




/*  ヘッダー
----------------------------------*/
.header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  background: #fff;
}
.header_inner-top {
  width: 90%;
  height: 67px;
  margin: auto;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
}
.header_logo {
  width: 275px;
  margin-top: 5px;
}
.header_tel,
.header_contact {
  display: none;
}

@media print, screen and (min-width: 1100px) {  
  .header {
    position: static;
  }
  .header_inner-top {
    width: 1040px;
    height: 80px;
    padding: 12px 0 0 0;
  }
  .header_logo {
    display: block;
    float: left;
    width: 340px;
  }

  .header_inner-top-right {
    width: 600px;
    height: 52px;
    display: flex;
    justify-content: flex-end;
  }
  .header_tel {
    display: flex;
    padding-right: 25px;
    color: #4D3C2D;
    font-weight: normal;
    line-height: 2.3rem;
    margin-top: 4px;
    font-size: 3rem;
  }
  .header_tel-inner {
    display: flex;
    flex-direction: column;
  }
  .header_tel-num {
    letter-spacing: 0.05em;
  }
  .header_tel:before {
    content: '';
    width: 20px;
    height: 45px;
    margin-right: 8px;
    margin-top: 2px;
    background-size: 20px 45px;
    background-image: url(/img/icon-tel.svg);
  }
  .header_tel-time {
    padding-left: 0;
    font-size: 1.2rem;
  }
  
  /* 無料相談 */
  .header_contact {
    display: block;
    margin-top: 1px;
  }
  .header_contact a {
    width: 230px;
    padding: 9px 0 11px;
    float: right;
    display: flex;
    font-size: 1.8rem;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    font-weight: normal;
    color: #fff;
    background-color: #F88B1F;
  }
  /* アイコン指定 */
  .header_contact a:before {
    content: '';
    width: 25px;
    height: 25px;
    background-size: 25px 25px;
    margin: 2px 10px 0 0;
    background-image: url(/img/icon-mail-top-s.svg);
  }
  .header_contact a:hover {
    opacity: 0.7;
  }
}


/* ヘッダー > ハンバーガーボタン
------------------------------------*/
.header_btn {
  text-align: center;
  font-size: 10px;
  font-weight: bold;
  color: #311801;
}
#header_btn-wrap,
#header_btn-wrap span {
  display: inline-block;
  transition: all .4s;
}
#header_btn-wrap {
  position: relative;
  width: 40px;
  height: 27px;
  margin-bottom: 5px;
}
#header_btn-wrap span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #311801;
  border-radius: 3px;
}
#header_btn-wrap span:nth-of-type(1) {
  top: 0;
}
#header_btn-wrap span:nth-of-type(2) {
  top: 12px;
}
#header_btn-wrap span:nth-of-type(3) {
  bottom: 0;
}
/* ボタンが押下時 */
#header_btn-wrap.active span:nth-of-type(1) {
  transform: translateY(12px) rotate(-40deg);
}
#header_btn-wrap.active span:nth-of-type(2) {
  opacity: 0;
}
#header_btn-wrap.active span:nth-of-type(3) {
  transform: translateY(-12px) rotate(40deg);
}
@media print, screen and (min-width: 1100px) {
  .header_btn {
    display: none;
  }
}


/* ヘッダー下段 > グローバルナビ
------------------------------------*/
/*==ナビゲーション全体の設定*/
.header_gnavi {
  display: none;
  padding: 0 0 30px 0;
  z-index: 101;
  width: 100%;
  height: calc(100vh - 67px);
  top: 67px;
  overflow: auto;
  background-color: #fff;
  font-size: 2.3rem;
}

/*ナビゲーションを横並びに*/
.header_gnavi ul {
  list-style: none;
  display: block;
  justify-content: center;
}


/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
.header_gnavi ul li {
  position: relative;
  text-align: center;
  font-weight: bold;
  border-bottom:1px solid #ccc;
}

/*ナビゲーションのリンク設定*/
.header_gnavi ul li a {
  display: block;
  text-decoration: none;
  padding: 23px 0;
  transition:all .3s;
}


/*2階層目のメニュー設定 */
.header_gnavi ul li.has-child::before {
  content:'';
  position: absolute;
  top:29px;
  right:30px;
  width:6px;
  height:6px;
  border-top: 2px solid #999;
  border-right:2px solid #999;
  transform: rotate(135deg);
}

.header_gnavi li.has-child ul {
  position: relative;
  left:0;
  top:0;
  width:100%;
  background: #f8f7f1;
  visibility:visible;
  opacity:1;
  display: none;
  transition:none;
}
.header_gnavi li.has-child ul li {
  border-bottom:1px solid #ddd;
}
.header_gnavi li.has-child ul li:last-child {
  border-bottom:none;
}
.header_gnavi ul ul li.has-child::before{
  transform: rotate(135deg);
  left:20px;
}
.header_gnavi ul li.has-child.active::before{
  transform: rotate(-45deg);
}


/* メニュー下部の無料相談と電話 */
.header_gnavi .gnavi__contact,
.header_gnavi .gnavi__tel-num {
  display: block;
  margin: auto;
  width: 76%;
}
.header_gnavi .gnavi__contact div,
.header_gnavi .gnavi__tel-num div {
  width: 100%;
  display: flex;
  font-size: 2.5rem;
  align-items: center;
  justify-content: center;
  margin: 40px auto 20px auto;
  padding: 18px 0 22px 0;
  text-align: center;
  color: #fff;
  border-radius: 40px;
}
.header_gnavi .gnavi__contact div {
  background-color: #F77B00;
}
.header_gnavi .gnavi__tel-num div {
  background-color: #0550be;
  margin-bottom: 10px;
}
/* アイコン指定 */
.header_gnavi .gnavi__contact div:before,
.header_gnavi .gnavi__tel-num div:before {
  content: "";
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  vertical-align: middle;
}
.header_gnavi .gnavi__contact div:before {
  margin-top: 0.2em;
  background-image: url(/img/icon-mail-top-s.svg);
}
.header_gnavi .gnavi__tel-num div:before {
  width: 0.6em;
  margin-top: 0.15em;
  margin-right: 0.3em;
  background-image: url('/img/icon-tel-top-s.svg');
}
/* 電話のみ */
.header_gnavi .gnavi__tel-num-info {
  text-align: center;
  font-size: 1.9rem;
  font-weight: bold;
  line-height:1.3;
  color: #0550be;
  padding-bottom: 30px;
  margin-bottom: 30px;
}


@media print, screen and (min-width: 1100px) {
  .header {
    position: relative;
    z-index: 100;
  }
  .header_inner-btm {
    width: 1100px;
    margin: auto;
  }
  .header_gnavi {
    display: block;
    height: auto;
    overflow: visible;
    padding: 0;
  }
  .header_gnavi ul{
    display: flex;
  }
  .header_gnavi ul li {
    flex: 1;
    text-align: center;
    border-bottom:none;
    font-size: 1.6rem;;
  }

  .header_gnavi ul li.has-child > a {
    cursor: default;
  }
  
  /* 下の階層を持っているulの指定 */
  .header_gnavi li.has-child ul {
    position: absolute;
    left:0;
    top:62px;
    z-index: 4;
    width:180px;
    visibility: hidden;
    opacity: 0;
  }
  .header_gnavi ul li.has-child ul a {
    padding: 15px 0px;
  }
  .header_gnavi ul li.has-child::before{
    display: none;
    top:0;
    right:0;
  }
  .header_gnavi li.has-child:hover > ul,
  .header_gnavi li.has-child:active > ul {
    visibility: visible;
    opacity: 1;
    display: block;
  }
  .header_gnavi .gnavi__contact,
  .header_gnavi .gnavi__tel-num,
  .header_gnavi .gnavi__tel-num-info {
    display: none;
  }
}


/* フッター > ページトップリンクアイコン
------------------------------------*/
/* リンクの形状 */
#page-top a{
  display: flex;
  justify-content:center;
  align-items:center;
  background:#4D3C2D;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  text-transform: uppercase; 
  text-decoration: none;
  font-size:1.1rem;
  transition:all 0.3s;
}

#page-top a:hover{
  background: #777;
}

/* リンクを右下に固定 */
#page-top {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 2;
  /* はじめは非表示 */
  opacity: 0;
  transform: translateY(100px);
}

/* 上に上がる動き */
#page-top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 下に下がる動き */
#page-top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(100px);
  }
}





/*   ページ下部の問い合わせ表示
------------------------------------*/
.contact-info {
  width: 90%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  margin: 0 auto 40px auto;
  background-color: #F0F7FF;
  border-radius: 10px;
}
.contact-info_mess {
  width: 100%;
  padding-bottom: 30px;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
}
.contact-info_mess span {
  font-size: 2rem;
}
.contact-info_tel a,
.contact-info_mail a {
  height: 110px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  font-weight: bold;
  align-items: center;
  flex-direction: column;
  font-size: 1.9rem;
  border-radius: 7px;
  color: #fff;
  background-color: #0057B7;
}
.contact-info_tel div:nth-child(2) {
  display: flex;
  align-items: center;
  font-size: 2.8rem;
  margin-left: -13px;
  margin-bottom: 3px;
  line-height: 1.3;
}
.contact-info_tel div:nth-child(3) {
  font-size: 1.1rem;
  font-weight: normal;
  padding-bottom: 5px;
}
.contact-info_mail a {
  flex-direction: row;
  background-color: #F88B1F;
}
.contact-info_tel div:nth-child(2):before,
.contact-info_mail a:before {
  content: '';
  width: 26px;
  height: 26px;
  background-size: 26px 26px;
  margin-top: 4px;
  background-image: url(/img/icon-tel-top-s.svg);
}
.contact-info_mail a:before {
  margin: 5px 10px 2px 0;
  background-image: url(/img/icon-mail-top-s.svg);
}

@media print, screen and (min-width: 1100px) {
  .contact-info {
    width: 1000px;
    margin: 20px auto 70px auto;
    padding: 40px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .contact-info_mess {
    padding-bottom: 40px;
    font-size: 2.5rem;
    font-weight: bold;
  }
  .contact-info_tel {
    margin-right: 3%;
  }
  .contact-info_tel,
  .contact-info_mail {
    width: 48.5%;
    font-size: 2.8rem;
  }
  .contact-info_tel a,
  .contact-info_mail a {
    height: 140px;
    font-size: 2.3rem;
    font-weight: normal;
  }
  .contact-info_tel div:nth-child(2):before,
  .contact-info_mail a:before {
    width: 30px;
    height: 30px;
    background-size: 30px 30px;
  }
  .contact-info_tel div:nth-child(2) {
    font-size: 3.3rem;
    margin-left: -1px;
    margin-bottom: 4px;
  }
  .contact-info_tel div:nth-child(2):before {
    margin-top: 4px;
  }
  .contact-info_tel div:nth-child(3) {
    font-size: 1.6rem;
  }
  .contact-info_mail a:hover {
    opacity: .7;
    transition: .4s;
  }
}


/*   フッター
------------------------------------*/
.footer-mess span {
  display: none;
}
.footer_btm {
  color: #4D3C2D;
  background-color: #f2f0ee;
  font-size: 1.5rem;
  line-height: 1.4;
}
.footer-prof {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.footer-prof_logo {
  width: 300px; 
  margin: 20px auto 16px auto;
}
.footer-prof_add {
  max-width: 300px; 
  margin: auto;
  margin-bottom: 20px;
  text-align: left;
  font-size: 1.4rem;
}
.footer-mess {
  padding-bottom: 12px;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.4;
}

@media print, screen and (min-width: 1100px) {
  .footer-inner {
    margin: auto;
    padding: 34px 0 2px 0;
    display: flex;
    flex-direction: column;
  }
  .footer-prof {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-self: center;
    margin: 0 0 20px 0;
    font-size: 1.35rem;
  }
  .footer-prof_logo {
    max-width: 310px;
    margin: 0 20px 0 0;
  }
  .footer-prof_add {
    max-width: 500px;
    margin: -4px 0 0 0;
    font-size: 1.3rem;
    line-height: 1.6;
  }

  .footer-prof_add br:first-child,
  .footer-mess br {
    display: none;
  }
  .footer-mess {
    font-size: 1.4rem;
    padding-bottom: 15px;
  }
  .footer-mess span {
    display: inline;
  }
}


/* ページタイトルヘッダ
------------------------------------*/
.page-title {
/*  max-width: 1600px; */
  margin: auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.page-title_text {
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-title_text h1 {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 2px;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 7px #000;
}
.page-title_pan {
  font-weight: normal;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: #444;
  font-weight: bold;
  text-shadow: 0 0 2px #fff,
                0 0 2px #fff,
                0 0 2px #fff,
                0 0 2px #fff,
                0 0 2px #fff,
                0 0 2px #fff,
                0 0 2px #fff;
  font-size: 1.1rem;
}
.page-title_pan li:not(:last-child):after {
  content: ">";
}
.page-title_bar {
  width: 95%;
  margin: auto;
  height: 20px;
  border-radius: 10px 10px 0 0;
  background: #fff;
}
@media print, screen and (min-width: 1100px) {
  .page-title_text {
    height: 200px;
  }
  .page-title_text h1 {
    font-size: 3.3rem;
  }
  .page-title_pan {
    font-size: 1.2rem;
  }
  .page-title_bar {
    width: 1100px;
    height: 38px;
  }
}
