@charset "utf-8";

/*  =============================================================

　　基本設定

============================================================= */

/*  全体　基本設定
---------------------------------------------*/

html,
body {
  width: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  font-family:  "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  background: #f6f4f4;
  font-style: normal;
  font-weight: 400;
  font-size:1.8rem;
  color: #121212;
  line-height:1;
  letter-spacing: normal;
  font-feature-settings:normal;
  text-align: center;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
}

input[type="text"],
input[type="button"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="submit"],
textarea {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}


img {
  max-width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  line-height: 0;
}

figure {
  line-height: 0;
}

@media screen and (max-width: 640px){
  body {
    font-size: 1.4rem;
  }
}

@media(min-width: 820px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}

/*  ボックス 基本設定
-------------------------- */
.displayPC {
  display: block;
}

.displaySP {
  display: none;
}

.disnon-pc {
  display: none;
}

.disnon-sp {
  display: block;
}

@media screen and (max-width: 820px){
  .displayPC {
    display: none;
  }

  .displaySP {
    display: block;
  }

  .disnon-pc {
    display: block;
  }

  .disnon-sp {
    display: none;
  }
}



/*  テキスト 共通設定
-------------------------- */
em {
  font-weight: bold;
}


/*  リンク 基本設定
-------------------------- */

a {
  display: inline-block;
  outline: none;
  color: #333;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

a:hover {
  color: #333;
}


/* 　コンテナー　設定
---------------------------------------------*/
#container {
  max-width: 750px;
  margin: 0 auto;
  padding: 80px 0 0;
  background: #5fe3ff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 750px){
  #container {
    box-shadow:none
  }
}

.content.-form {
  margin-top: -20px;
}

.mainInner {

}



/*  ヘッダー レイアウト
---------------------------------------------*/
.header {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  padding: 12px 0 0;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  line-height: 0;
  overflow: hidden;
}

.header__logo {
  position: relative;
  z-index: 5;
  width: 120px;
}

.header__logo::before {
  position: absolute;
  z-index: -1;
  content: "";
  top: -85px;
  left: -40px;
  right: 0;
  width: 100px;
  height: 220px;
  background-image: url(../img/logo-icon.svg);
  background-size: 100% 100%;
}


/*  フッター レイアウト
---------------------------------------------*/
.footer {
  position: relative;
  z-index: 100;
  padding: 40px 0 160px;
}

.footer__copyright {
  font-size: 1.6rem;
}


/*  フッター ボタン
---------------------------------------------*/
.footer__bttom {
  display: flex;
  position: fixed;
  z-index: 99;
  bottom: 0;
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}

.footer__bttom__tel {
  width: 50%;
  padding: 10px 0;
  background: #FF8900;
}

.footer__bttom__tel a {
  display: block;
  width: 100%;
  height: 100%;
}

.footer__bttom__tel span {
  display: block;
  margin: 0 0 5px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.5;
}

.footer__bttom__tel p {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
}


.footer__bttom__form {
  width: 50%;
  padding: 10px 0;
  background: #105f7c;
}

.footer__bttom__form a {
  display: block;
  width: 100%;
  height: 100%;
}

.footer__bttom__form .icon {
  display: block;
  margin: 0 auto 10px;
  width: 120px;
}

.footer__bttom__form .txt {
  display: block;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
}