@charset "UTF-8";
html {
  font-size: 100%;
}
body {
  color: #121212;
  font-family: "roboto", "Noto Sans JP", sans-serif;
  font-weight: 400;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
li {
  list-style: none;
}
a {
  color: #121212;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

.wrapper {
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
}

.wrapper-full {
  max-width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
/*fixedで全面に固定*/
/* #splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #eee;
  text-align: center;
  color: #fff;
} */

/* Loading画像中央配置　*/
/* #splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */

/* Loading アイコンの大きさ設定　*/
/* #splash_logo svg {
  width: 300px;
} */

/*=============== SVGアニメーション内の指定 =================*/

/*アニメーション前の指定*/
/*最初は透過0で見えない状態*/
/*カラーがつく際のアニメーション0.5秒で変化*/
/*塗りがない状態*/
/*線の色*/
/* #mask path {
  fill-opacity: 0; 
  transition: fill-opacity 0.5s; 
  fill: none; 
  stroke: #333; 
} */

/*アニメーション後に.doneというクラス名がで付与された時の指定*/
/*塗りの色*/
/*透過1で見える状態*/
/*線の色なし*/
/* .done #path01 {
  fill: #000000; 
  fill-opacity: 1; 
  stroke: none; 
} */

/* .done #path01 {
  fill: #f4ca44; 
  fill-opacity: 1; 
  stroke: none; 
} */

#header {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between; /*header内の要素を両端に配置*/
  background-color: transparent;
  padding: 0 20px; /*両端に余白を設定*/
}
#header .logo {
  width: 100%;
  max-width: 150px;
}
#header .logo a {
  display: block;
}
#header .navi .menu {
  display: flex;
  align-items: center;
}
#header .navi .menu li {
  font-size: 14px;
  margin-left: 40px;
}
#header .navi .menu li a {
  position: relative;
}

#header .navi .menu li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 100%;
  height: 2px;
  background: #f4ca44;
  /*アニメーションの指定*/
  transition: all 0.3s;
  transform: scale(0, 1); /*X方向0、Y方向1*/
  transform-origin: left top; /*左上基点*/
}
#header .navi .menu li a:hover::after {
  transform: scale(1, 1); /*X方向にスケール拡大*/
}

.footer-top {
  width: 100%;
}

#footer {
  padding: 30px;
  background-color: #1f1f1f;
  margin: -5px 0 0;
}
#footer .inner {
  display: flex;
  justify-content: space-between;
  padding: 2%;
  margin: 0 auto;
}
#footer .info-area {
  width: 50%;
  color: #fff;
}
#footer .info-area .address {
  margin-bottom: 5px;
}
#footer .info-area .tel {
  margin-bottom: 30px;
}
#footer .menu-area {
  width: 50%;
  color: #fff;
}

#footer .menu-area .menu {
  display: flex;
  flex-wrap: wrap;
}
#footer .menu-area li {
  width: 45%;
  border-bottom: dashed 1px #fff;
  position: relative;
  margin-right: 5%;
}
#footer .menu-area li::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 20px;
  right: 10px;
}
#footer .menu li a {
  display: block;
  color: #fff;
  padding: 12px 5px;
}
#footer .logo {
  font-family: "Passion One";
  font-size: 30px;
  font-weight: 600;
  padding: 2px 5px;
  margin-bottom: 5px;
}
#footer .logo a {
  color: #fff;
}
#footer .copyright {
  text-align: center;
  color: #fff;
  font-size: 12px;
  margin-bottom: 30px;
}

.page-header {
  background-color: #ffda6e;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  margin-bottom: 100px;
  padding: 60px 0 100px;
  text-align: center;
}
.page-header .page-title .ja {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
}
.page-header .page-title .en {
  display: block;
  font-family: "Passion One";
  font-size: 40px;
  font-weight: 700;
}

.section-title {
  text-align: center;
}
.section-title .en {
  /* ボックスモデル（レイアウト関連） */
  display: block;

  /*サイズ関連*/
  margin: 0;

  /*テキスト関連*/
  font-family: "Passion One";
  font-size: 40px;
  font-weight: 700;
}
.section-title .ja {
  /* ボックスモデル（レイアウト関連） */
  display: block;

  /*サイズ関連*/
  margin: 0 0 50px;

  /*テキスト関連*/
  font-size: 14px;
  font-weight: 400;
}

/*レスポンシブ*/
@media screen and (max-width: 767px) {
  main {
    padding-top: 60px; /*headerの高さ(60px)に合わせてmainコンテンツを下げている*/
  }
  .wrapper {
    width: 90%;
    max-width: 960px;
  }
  #header {
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }
  #header .hamburger {
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: fixed;
    top: 5px;
    right: 5px;
    z-index: 30;
  }
  #header .hamburger span {
    width: 30px;
    height: 3px;
    background-color: #000;
    display: inline-block;
    position: absolute;
    left: 10px;
    transition: all 0.4s;
  }
  #header .hamburger span:nth-last-of-type(1) {
    top: 16px;
  }
  #header .hamburger span:nth-last-of-type(2) {
    top: 25px;
  }
  #header .hamburger span:nth-last-of-type(3) {
    top: 34px;
  }
  #header .navi {
    width: 80%;
    height: 100vh;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: -80%;
    z-index: 20;
    transition: all 0.6s;
  }
  #header .navi .menu {
    width: 100%;
    height: 100vh;
    flex-direction: column;
    padding: 60px 0;
    overflow: auto;
  }
  #header .navi .menu li {
    padding: 10px 0;
    margin-left: 0;
  }
  #header .navi.active {
    right: 0;
  }
  #header .hamburger.active span:nth-last-of-type(1) {
    top: 24px;
    transform: rotate(-45deg);
  }
  #header .hamburger.active span:nth-last-of-type(2) {
    opacity: 0;
  }
  #header .hamburger.active span:nth-last-of-type(3) {
    top: 24px;
    transform: rotate(45deg);
  }

  #footer .inner {
    flex-direction: column;
    padding: 40px 20px;
    margin: 0 auto;
  }
  #footer .inner .info-area {
    width: 100%;
  }
  #footer .inner .menu-area {
    width: 100%;
  }
  #footer .inner .info-area .info .tel {
    color: #fff;
  }
  .page-header {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    padding: 80px 0 50px;
  }
  .page-header .page-title .en {
    font-size: 30px;
  }
}
