@charset "utf-8";

/* -------------------------------------------------------
デフォルトのスタイルを打ち消す
------------------------------------------------------- */
*,::after,::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  /* 計算しやすいよう、文字サイズをデフォルトの16pxの62.5%=10pxに設定 */
  font-size: 62.5%;
  /* 「scroll-behavior: smooth」でリンク先への移動がスムーズに */
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: #2a2a2a;
}

ul {
  list-style: none;
}


/* -------------------------------------------------------
共通
------------------------------------------------------- */
body {
  color: #2a2a2a;
  font-family: Helvetica Neue, Arial, Hiragino Sans, Hiragino Kaku Gothic ProN, Meiryo, sans-serif;
  background-color: #fff;
  line-height: 1.7;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.wrapper {
  max-width: 1000px;
  padding: 90px 16px 170px 16px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.45rem;
}

h2 {
  color: #fff;
  font-size: 7.2rem;
  text-align: center;
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  filter: drop-shadow(1px 1px 10px #c0c0c0);
}

h3 {
  font-size: 4rem;
  display: inline-block;
  margin: 0 auto 70px auto;
}

h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: #fa8801;
}


/* ------------------------------
パララックス
------------------------------ */
body,html {
  height: 100%;
}

.parallax-bg {
  /* 「background-attachment: fixed」でスクロールしても背景画像が動かないように指定 */
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 300px;
  /* h2を中央に配置するための「position: relative」 */
  position: relative;
}


/* -------------------------------------------------------
main-visual
------------------------------------------------------- */
#main-visual {
  background-image: url(../img/mainvisual.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
  position: relative;
  padding: 20px 40px;
}

.site-menu {
  display: flex;
  justify-content: flex-end;
}

.site-menu li {
  margin-right: 30px;
}

.site-menu li:last-of-type {
  margin-right: 0;
}

.site-menu a {
  color: #fff;
  font-size: 1.45rem;
  font-weight: bold;
  filter: drop-shadow(1px 1px 2px #121212);
  transition: all 0.3s ease;
}

.site-menu a:hover {
  color: #fa8801;
}

.logo {
  position: absolute;
  top: 35%;
  left: 0;
  right: 0;
  text-align: center;
  filter: drop-shadow(1px 1px 10px #c0c0c0);
  padding: 0 16px;
}


/* -------------------------------------------------------
menu
------------------------------------------------------- */
#menu {
  padding-top: 20px;
}

#menu-img {
  background-image: url(../img/menu.jpg);
}

#menu-scroll {
  display: flex;
}

#menu-scroll .item {
  width: 50%;
  padding: 0 45px;
}

#menu-scroll .item:first-of-type {
  border-right: solid 1px #000;
}

#menu-scroll dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

#menu-scroll dt {
  width: 87%;
  text-align: left;
  border-bottom: dotted 1px #000;
  margin-bottom: 25px;
}

#menu-scroll dd {
  width: 13%;
  text-align: right;
  padding-top: 8px;
}

#menu-scroll .item:last-of-type dl:first-of-type {
  margin-bottom: 55px;
}


/* -------------------------------------------------------
about
------------------------------------------------------- */
#about-img {
  background-image: url(../img/about.jpeg);
}

#about-scroll .flexbox {
  display: flex;
  padding: 20px 0 60px 0;
}

.flexbox .item {
  width: 50%;
  padding: 0 2%;
  text-align: left;
  line-height: 2;
}

.flexbox .item p:first-of-type {
  margin-bottom: 40px;
}


/* ------------------------------
ボタン
------------------------------ */
.button {
  display: inline-block;
  position: relative;
}

.button span {
  display: inline-block;
  padding: 13px 45px;
  position: relative;
}

.button::after,.button span::after {
  content: "";
  display: block;
  width: 20%;
  height: 2px;
  background-color: #fa8801;
  position: absolute;
  transition: all 0.3s ease;
}

.button::before,.button span::before {
  content: "";
  display: block;
  width: 2px;
  height: 50%;
  background-color: #fa8801;
  position: absolute;
  transition: all 0.3s ease;
}

.button::after,.button::before {
  bottom: 0;
  right: 0;
}

.button span::after,.button span::before {
  top: 0;
  left: 0;
}

.button:hover::after,.button span:hover::after {
  width: 100%;
}

.button:hover::before,.button span:hover::before {
  height: 100%;
}


/* -------------------------------------------------------
location
------------------------------------------------------- */
#location-img {
  background-image: url(../img/location.jpeg);
}

#location-scroll p {
  text-align: left;
  margin-top: 10px;
}

#location-scroll p:first-of-type {
  margin-top: 20px;
}


/* -------------------------------------------------------
footer
------------------------------------------------------- */
#footer {
  padding: 0 16px 10px 16px;
}

.copyright {
  font-size: 1rem;
}


/* -------------------------------------------------------
mobile用
------------------------------------------------------- */
@media screen and (max-width: 767px) {
  /* ------------------------------
  共通
  ------------------------------ */
  .wrapper {
    padding: 30px 16px 80px 16px;
  }

  h2 {
    font-size: 3.2rem;
    top: 26%;
  }

  h3 {
    font-size: 2rem;
    margin: 0 auto 25px auto;
  }


  /* ------------------------------
  パララックス
  ------------------------------ */
  .parallax-bg {
    background-attachment: scroll;
    height: 94px;
  }


  /* ------------------------------
  main-visual
  ------------------------------ */
  .logo {
    top: 40%;
  }

  .logo img {
    width: 70%;
  }


  /* ------------------------------
  menu
  ------------------------------ */
  #menu {
    padding-top: 10px;
  }

  #menu-scroll {
    flex-direction: column;
  }

  #menu-scroll .item {
    width: 100%;
    padding: 0;
  }

  #menu-scroll .item:first-of-type {
    border-right: none;
  }

  #menu-scroll dl {
    margin-bottom: 10px;
  }

  #menu-scroll .item:last-of-type dl:first-of-type {
    margin-bottom: 10px;
}


  /* ------------------------------
  about
  ------------------------------ */
  #about-scroll .flexbox {
    flex-direction: column;
    padding: 10px 0 30px 0;
  }

  .flexbox .item {
    width: 100%;
    padding-bottom: 15px;
  }

  .flexbox .item p:first-of-type {
    margin-bottom: 20px;
  }
}