@charset "UTF-8";
/* HEADER FOOTER CSS*/
/* -----------------------------------------------
 HEADER
-------------------------------------------------- */
/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  height: 82px;
  width: 100%;
  z-index: 200;
  font-size: 16px;
  background-color: white;
  transition: .3s;
  border-top: solid 10px #F9E2AC;
	box-shadow: 3px 3px 3px rgba(1,1,1,0.1)
}
/* ロゴ*/
#h_logo {
  position: fixed;
  width: auto;
  height: 45px;
  z-index: 100;
  left: 3%;
  top: 20px;
  align-items: top;	
}
#h_logo a {
  font-weight: bold;
  color: #F88E63;
  font-size: 20px;
	text-decoration: none
	
}
#h_logo img {
  height: 100%;
  width: auto;
  margin-right: 10px;
  vertical-align: -13px;
}
.service-icon {
  display: none
}
/*--- 1024以上pcのみ適応 --- */
@media screen and (min-width: 1024px) {
  /* メニュー */
  .global-nav {
    position: relative;
    top: 0px;
    right: 2%;
    width: 100%;
    z-index: 1
  }
  /* 親メニュー*/
  .global-nav .nav-list {
    position: relative;
    top: 20px;
    list-style: none;
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  .global-nav .nav-list li {
    padding: 0 1em;
  }
  .global-nav .nav-list li + li {
    position: relative;
  }
  .global-nav .nav-list li + li::before {
    content: "";
    display: block;
    height: 1em;
    border-left: 1px solid;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
  }
  .global-nav .nav-list li a {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: black;
    font-size: 15px;
    height: 40px;
    cursor: pointer;
    text-decoration: none
  }
  .global-nav .nav-list li a:hover {
    opacity: 1;
  }
  .global-nav .nav-list li a:after {
    background-color: #F98C64;
    left: -4px;
    bottom: -2px;
    content: "";
    height: 1px;
    position: absolute;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
    width: 110%; /* 要素の幅 */
  }
  /* リンクにホバーした際の下線の表示 */
  .global-nav .nav-list li a:hover::after {
    transform: scale(1, 1);
  }
  .global-nav-icon { /* spボタン */
    display: none;
  }
  .disp { /* PC以外で表示メニュー*/
    display: block
  }
}
/*Tablet以下*/
@media screen and (max-width: 1024px) {
body{
padding-top: 30px
	}
/* header */
header {
  border-top: solid 6px #F9E2AC;
  position: fixed;
  height: 60px;
}
/* ロゴ*/
#h_logo {
	top:0;
  height: 35px;
}
#h_logo a {
  font-size: 16px;
}
#h_logo img {
  height: 100%;
  width: auto;
  margin-right: 10px;
  vertical-align: -13px;
}
.service-icon {
  display: flex;
	flex-wrap: wrap;
	width: 80%;
	margin: 30px auto;
	padding: 20px;
	background-color: white;
	border-radius: 20px
}
.service-icon li {
	width: 25%;
	list-style: none;
	text-align: center
}
.service-icon li img {
	width: 100%;
	padding: 5px
}
  /* メニュー */
  .global-nav {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    text-align: left;
    align-items: center;
    font-size: 18px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /*慣性スクロールを追加*/
    padding-bottom: 2em;
    background-color: rgba(248,140,100,.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
  .global-nav .nav-list {
    position: relative;
    width: 70%;
    height: auto; /*必須*/
    display: block;
    margin: 0 auto;
    list-style: none;
    align-items: center;
    padding-right: 0;
    padding-top: 80px;
  }
  .global-nav .nav-list li a { /*表示されているメニュー*/
    position: relative;
    width: auto;
    display: block;
    vertical-align: middle;
    text-align: center;
    font-size: 20px;
    height: auto;
    padding: 1em;
    color: white;
	  text-decoration: none;
	  font-weight: bold;
  text-shadow: 2px 1px 1px rgba(0, 0, 0, 0.4);
  }
  /* open*/
  .open .global-nav {
    transform: translateX(0);
  }
  /* open*/
  .open {
    overflow: hidden;
  }
  .open .global-nav {
    visibility: visible;
    opacity: 1;
  }
  /*=============================
ハンバーガボタン
=============================*/
  .btn-trigger {
    position: fixed;
    top: 19px;
    right: 3%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 200;
    display: flex;
  }
  .btn-trigger span {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #2A2723;
  }
  .btn-trigger, .btn-trigger span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
  }
  .btn-trigger span:nth-of-type(1) {
    top: 3px;
  }
  .btn-trigger span:nth-of-type(2) {
    top: 10px;
  }
  .btn-trigger span:nth-of-type(3) {
    top: 18px;
  }
  /*=============================
#btn01
=============================*/
  #btn01.active span:nth-of-type(1) {
    -webkit-transform: translateY(5px) rotate(-45deg);
    transform: translateY(5px) rotate(-45deg);
    background-color: white;
  }
  #btn01.active span:nth-of-type(2) {
    opacity: 0;
  }
  #btn01.active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
    background-color: white;
  }
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 768px) {}
@media (max-width: 576px) {}
/* ----- /heaerここまで ------- */
/* FOOTER CSS*/
/* -----------------------------------------------
 FOOTER
-------------------------------------------------- */
/*リセット*/
footer {
  text-align: center;
  background: #FFF9EB;
  padding: 0;
  font-size: 12px;
  font-weight: bold;
  color: rgba(101, 51, 0, 1.00);
  text-shadow: none;
}
footer {
  width: 100%;
  margin-top: 3em;
  position: relative;
  clear: both;
  z-index: 2
}
footer .container-fluid {
  border-top: 1px solid #cccc
}
footer .container-fluid .container {
  padding-top: 2em;
  padding-bottom: 2em;
}
footer p {
  font-size: 1.5em;
  margin: 0;
  padding: 0
}
footer p.contact {
  font-size: 16px;
}
.mb30 {
  margin-bottom: 30px
}
.f-tel {
  font-size: 2.5em;
  font-family: "Inter", sans-serif;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 1px
}
.f-tel a {
  text-decoration: underline;
  color: rgba(101, 51, 0, 1.00)
}
.f-tel span {
  display: block;
  font-size: 14px;
  font-weight: 400;
}
/*横幅が751px以上で、電話番号リンクは無効になります。*/
@media (min-width: 751px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: rgba(101, 51, 0, 1.00)
  }
}
/*button_more*/
footer .button_more {
  text-align: center
}
footer .button_more a {
  display: inline-block;
  background: #F98C64;
  border-radius: 60px;
  color: white;
  padding: 20px 50px;
  text-align: center;
  margin-top: 0;
  font-size: 1.2em;
  text-decoration: none
}
footer .button_more a:hover {
  opacity: 50%
}
.f-name {
  margin-bottom: 1em;
}
/* ページTOPに戻る */
.pagetop {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10000
}
.pagetop a {
  display: block;
  font-size: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  background: var(--bk);
  border-radius: 50%;
  line-height: 50px;
}
.pagetop a i {
  font-size: 20px;
  color: #fff;
  line-height: 50px;
}
@media screen and (max-width: 1200px) {}
/*Tablet以下*/
@media screen and (max-width: 992px) {
  .f-tel {
    margin-bottom: .5em
  }
}
@media screen and (max-width: 768px) {}
/* -----------------------------------------------
smartPhone 576以下
-------------------------------------------------- */
@media (max-width: 576px) {}