@charset "utf-8";
/* CSS Document */

/* FV用背景&CTAボタンの固定配置 -- ここから -- */

/* ハンバーガーメニュー */
#header {
    margin-top: 0px; /* 必要であればheader上部の余白を調整 */
    background-image: url(img/header_bg_pc.webp);
  }

  .header-content {
    height: 100px;
    position: relative;
    width: 66%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-logo {
    width: 250px;
  }

  .hamburger-menu, .hamburger-menu__bar {
    display: none;
  }
  
  .navigation {
    display: block;
  }

  .navigation__list {
    display: flex;
  }
  .navigation__list-item {
    margin-right: 20px;
    margin-top: 25px;
  }

  .navigation__link {
    display: block;
    color: #222e35;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight:600;
  }

  .contact {
    background:linear-gradient(90deg, #fc7411, #f99c1e);
    border-radius: 30px;
    padding: 10px 20px;
    color:#fff;
    margin-top: -10px;
  }

  .contact:hover {
    background: #fff;
    border: 1px solid #fc7411;
    color: #fc7411;
    transition: .5s;
  }

  @media screen and (max-width:1150px) {
  .header-content {
    width: 70%;
  }

  .header-logo {
    width: 40%;
    margin-left: 0px;
  }
  .hamburger-menu {
    display: block;
    width: 60px;
    height: 60px;
    position: relative;
    border: none;
    background: transparent;
    appearance: none;
    padding: 0;
    cursor: pointer;
    margin-right: 20px;
  }
  .hamburger-menu__bar {
    display: inline-block;
    width: 50%;
    height: 3px;
    background: #242424;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
  }
  .hamburger-menu__bar:first-child {
    top: 16px;
  }
  .hamburger-menu__bar:nth-child(2) {
    top: 24px;
  }
  .hamburger-menu__bar:last-child {
    top: 32px;
  }
  .hamburger-menu--open .hamburger-menu__bar {
    top: 50%;
  }
  .hamburger-menu--open .hamburger-menu__bar:first-child {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }
  .hamburger-menu--open .hamburger-menu__bar:last-child {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }
  .hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
    display: none;
  }

  .navigation {
    display: none;
    background: #fff;
    position: absolute;
    top: 100px;
    width: 100%;
    z-index: 9999;
  }
  .navigation__list {
    display: inline-block;
    width: 100%;
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .navigation__list-item {
    border-bottom: solid 1px #474747;
    margin: 0px;
    height: 80px;
  }
  .navigation__list-item:first-child {
    border-top: solid 1px #474747;
  }
  .navigation__link {
    color: #474747;
    font-weight: 700;
    text-decoration: none;
    display: block;
    padding: 24px 0;
    transition: .5s;
  }

  .navigation__link:hover {
    background: #15a7db;
    color: #fff;
  }

  .contact {
    width: 80%;
    margin: 30px auto;
    padding: 15px;
    color: #fff;
  }

  .contact:hover {
    background: #fff;
    border: 1px solid #fc7411;
    color: #fc7411;
    transition: .5s;
  }
 } 

 @media screen and (max-width:768px) {
  .header-content {
    width: 100%;
  }

  .header-logo {
    width: 50%;
    margin-left: 20px;
  }
}
  /* ハンバーガーメニュ  ーここまでー */

#cta-btn {
    position: absolute;
    background-image: url("img/pc/cta-pc-bg.webp");
    bottom: 2%;
    left: 0%;
    right: 0%;
    cursor: pointer;
    width: 90%;
    margin: 0 auto;
    transition: 0.5s;
}

#cta-btn:hover {
    opacity: 0.7;
    transform: scale(0.8, 0.8);
}

*{
	box-sizing: border-box;
	font-size: 16px;
}

/* FV用背景&CTAボタンの固定配置 */
.fv .cta-bg {
  position: relative;
  margin-top: -30%;
  margin-bottom: 1%;
}

.section03 .cta-bg,
.section05 .cta-bg,
.section07 .cta-bg,
.section08 .cta-bg,
.section09 .cta-bg {
  position: relative;
  margin-top: -35%;
  margin-bottom: 2%;
}

.tel {
  position: absolute;
  top: 27%;
  left: 27%;
  width: 45%;
}

.cta1 {
  position: absolute;
  bottom:15%;
  left: 19%;
  width: 31%;
}

.cta2 {
  position: absolute;
  bottom:15%;
  right: 19%;
  width: 31%;
}




/* FV用背景&CTAボタンの固定配置 -- ここまで -- */

/*大きさの計算*/
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/*iOSフォーム要素の初期化*/
input, button, textarea, select {
	-webkit-appearance: none;
	appearance: none;
}

body {
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%; /*スマホ横向き時のフォントサイズ*/
	text-size-adjust: 100%; /*スマホ横向き時のフォントサイズ*/
	-webkit-font-feature-settings: 'palt';/*文字詰め*/
	font-feature-settings: 'palt';/*文字詰め*/
}

body *{
  box-sizing: inherit; /* box-sizingの値は継承されないので明示的に設定 */
}

/*画像の調整*/
img {
    max-width: 100%;
    height: auto;
	vertical-align: bottom;
	width: 100%;
}

.section15 {
  width: 70%;
  height: auto;
  margin: 0 auto;
  padding-right: 10px;
}

a:hover {
    opacity: 0.8;
}

/*****LPコーディングここから*****/
.lp-content{
	width: 100%;  /* PC版を画面サイズいっぱいにする場合 */
	margin: 0 auto;
	background: white;
}

/***背景を設定したいとき***/
/*背景に色を付ける*/

/* .content01 {
    background: gray;
} */


/*背景を固定したいとき　例
.content01 {
    background-image: url("img/bg-content02.jpg");
	background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode: lighten;
	background-size: contain;
}*/


/***メールフォーム こちらにメールフォームのコーディングを記述ください***/



/***フッター***/
.footer-section {
    background: #fff; /*好きな色を設定してください*/
    padding: 2rem;
}

ul.footer-menu {
    display: flex;
    justify-content: center;
}

ul.footer-menu li {
    list-style: none;
}

ul.footer-menu li a {
    color: black;
    margin-right: 10px;
    font-size: 1rem;
}

.logo {
    width: 30%;  /*ロゴにあわせて調整してください*/
    margin: 0 auto;
}


@media screen and (max-width:768px) {
  .fv .cta-bg {
    position: relative;
    margin-top: -100%;
    margin-bottom: 10%;
  }

  .section03 .cta-bg,
  .section05 .cta-bg,
  .section07 .cta-bg,
  .section08 .cta-bg,
  .section09 .cta-bg {
    position: relative;
    margin-top: -97%;
    margin-bottom: 7%;
  }

  .section15 {
    width: 100%;
    height: auto;
    margin: 0 auto -15px;
    padding-right: 0px;
    z-index: 999;
  }
  
  .tel {
    position: absolute;
    top: 18%;
    left: 5%;
    width: 90%;
  }
  
  .cta1 {
    position: absolute;
    bottom:32%;
    left: 4%;
    width: 92%;
  }
  
  .cta2 {
    position: absolute;
    bottom:6%;
    right: 0%;
    left: 4%;
    width: 92%;
  }

	ul.footer-menu {
    display: block;
    text-align: center;
}
	
	.logo {
    width: 60%;  /*ロゴにあわせて調整してください*/
}
	
	.footer-section {
    padding: 1rem;
}
}	
