@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333333; /* RGB */
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  font-size: 1.6em;
  text-align: center;
  background-color: #FFF;
  word-break: break-all;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.1rem;
}
@media (min-width: 768px) {
  body {
    letter-spacing: 0.2rem;
  }
}
/* 全ての要素 */
*, *::before, *::after {
  box-sizing: border-box;
}
img {
  width: 100%;
  object-fit: cover;
}
/* -------------------- header -------------------- */
.header {
  width: 100%;
  height: 60px;
  padding: 0 24px;
  position: fixed;
  z-index: 999;
  top: 0;
  background-color: #FFF;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.header_wrapper {
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.header_wrapper_logo {
  width: 135px;
  text-decoration: none;
  color: #F4A72C;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  top: 3px;
}
.header_wrapper_contact {
  width: 60px;
  height: 100%;
  background-color: #F4A72C;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  right: 43px;
}
.header_wrapper_contact span {
  display: none;
}
.header_wrapper_contact img {
  width: 25px;
}
.header-navigation_pc {
  display: none;
}
#g-nav{
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position:fixed;
  z-index: 900;
  /*ナビのスタート位置と形状*/
  transform:translateY(-120%) ;
  width: 90%;
  left: 5%;
  background: #F4A72C;
  /*動き*/
  transition: all 0.6s;
  -webkit-transition: 0.6s ease-in-out;
  -moz-transition   : 0.6s ease-in-out;
  border-radius: 0 0 10px 10px;
}
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
  transform:translateY(0%) ;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 900; 
  width: 100%;
  height: 100vh;/*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  z-index: 900;
}

/*リストのレイアウト設定*/
#g-nav li{
  display: block;
  list-style: none;
  text-align: left; 
  width: 100%;
  border-bottom: 1.5px solid #FFF;
}
#g-nav li:last-child {
  border-bottom: none;
}
#g-nav li a{
  font-weight:500;
  color: #FFF;
  text-decoration: none;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.header-werapper_navigation_items img {
  width: 6px;
  position: absolute;
  right: 30px;

}
/*========= ボタンのためのCSS ===============*/
.openbtn1{
  position:fixed;
  z-index: 9999;/*ボタンを最前面に*/
  top: 5px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height:50px;
}

/*×に変化*/  
.openbtn1 span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #F4A72C;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
top:15px; 
}

.openbtn1 span:nth-of-type(2) {
top:23px;
}

.openbtn1 span:nth-of-type(3) {
top:31px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
@media(max-width: 300px) {
  .header_wrapper_logo {
    width: 120px;
  }
}
@media(min-width: 768px) {
  .header {
    padding: 0 24px;
    height: 80px;
  }
  .header_wrapper_logo {
    width: 186px;
  }
  .header_wrapper_contact {
    width: 80px;
    height: 100%;
    right: 45px;
  }
  .openbtn1{
    position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
    top: 15px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height:50px;
  }
}
@media (min-width: 1000px) {
  .header {
    padding: 0 0 0 24px;
    height: 80px;
  }
  .header_wrapper {
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .header-navigation_wrapper {
      display: flex;
  }
   .header-navigation_pc {
      display: inline-block;
   }
   .header-navigation_pc li {
      margin-right: 50px;
   }
   .header-navigation_pc > .header-werapper_navigation_items {
      height: 100%;
      display: flex;
      align-items: center;
   }
   .header-navigation_pc >.header-werapper_navigation_items li a {
    text-decoration: none;
    color: #333;
   }
   .header-navigation_pc >.header-werapper_navigation_items li a:hover {
    color: #F4A72C;
   }
   .header_wrapper_contact {
    text-decoration: none;
    padding: 0 25px;
    width: auto;
    right: 0px;
  }
  .header_wrapper_contact:hover {
    opacity: 0.8;
  }
  .header_wrapper_contact span {
    display: inline-block;
    font-weight: 700;
    font-size: 1.8rem;
    color: #FFF;
    margin-left: 10px;
  }
   #g-nav, 
   .openbtn1 {
    display: none;
   }
}
/* -------------------- footer -------------------- */
.footer {
  background-color: #FFF3D9;
  padding: 20px 24px 20px;
  text-align: left;
}
.footer_top {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 0;
  justify-content:space-between;

  margin-bottom: 20px;
}
.footer_top h1 {
  position: relative;
  top: 15px;
}
.footer_top h1 a > img {
  width: 194px;
}
.footer_button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: 60px;
  height: 60px;
  border-radius: 60px;
  background-color: #FFF;

  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  color: #F4A72C;
  letter-spacing: normal;

  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2) !important;
  transition: .3s;
}
.footer_button a:hover {
  box-shadow: none;
}
.footer_button > img {
  width: 15px;
}
.footer_info {
  margin-bottom: 40px;
  font-size: 1.4rem;
}
.footer_info p {
  margin-bottom: 5px;
}
.footer_info address {
  margin-bottom: 5px;
  font-style: normal;
}
.footer small {
  text-align: center;
  display: block;
  font-size: 1.2rem;
  letter-spacing: normal;
}
@media (min-width: 768px) {
  .footer {
    padding: 40px 24px 20px;
  }
  .footer_weapper {
    max-width: 1024px;
    margin: 0 auto;
  }
  .footer_top {
    margin-bottom: 20px;
  }
  .footer_top h1 {
    position: relative;
    top: 15px;
  }
  .footer_top h1 a > img {
    width: 350px;
  }
  .footer_button {
    width: 90px;
    height: 90px;

    font-size: 1.6rem;
  }
  .footer_button > img {
    width: 24px;
    margin-bottom: 2px;
  }
  .footer_info {
    font-size: 1.6rem;
  }
  .footer_info p {
    margin-bottom: 10px;
  }
  .footer_info address {
    margin-bottom: 10px;
  }
}