@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  color: #333;
  font-family: "Montserrat", "Hiragino Kaku Gothic ProN", "小塚ゴシック体", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: left;
  background-color: #F5F5F5;
  padding-bottom: 70px;
}

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

a {
  text-decoration: none;
  font-family: "Montserrat";
  color: #333;
}

a:hover {
  opacity: 0.5;
}

a:visited {
  text-decoration: none;
  color: #333;
}

.none {
  display: none;
}

button {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*文字を範囲内に入れる*/
.inner {
  max-width: 88%;
  margin: 0 auto;
}


@media(min-width:960px) {

  /*PC時のヘッダーに合わせてパディングを設定*/
  body {
    padding-top: 100px;
    padding-bottom: 0px;

  }

  /*文字を範囲内に入れる*/
  .inner {
    max-width: 1280px;
    margin: 0 auto;
  }

}


/*-------------------------------
              header
---------------------------------*/

.header {
  margin: 0 auto;
}

@media(max-width: 600px) {

  /*スマホ時のヘッダー表示*/
  .header-area {
    margin: 30px auto;
    max-width: 85%;
  }

  .header-area a {
    font-size: 2.0rem;
    font-weight: 500;
  }

  /*ボトムメニュー*/
  .bottom-menu {
    background-color: #F4DB22;
    opacity: 0.9;
    position: fixed;
    bottom: 0px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 70px;
    padding: 10px 30px 5px;
    z-index: 999;
  }

  /*ハンバーガーボタン*/
  .openbtn {
    cursor: pointer;
    width: 40px;
    height: 30px;
    position: relative;
  }

  /*ボタン内側*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0px;
    height: 1px;
    border-radius: 5px;
    background: #333;
    width: 100%;
  }


  .openbtn span:nth-of-type(1) {
    top: 0px;
  }

  .openbtn span:nth-of-type(2) {
    top: 16px;
  }

  .openbtn span:nth-of-type(3) {
    top: 32px;
  }

  .openbtn span:nth-of-type(3)::after {
    content: "Menu";
    /*3つ目の要素のafterにMenu表示を指定*/
    position: absolute;
    top: 5px;
    left: 0px;
    color: #333;
    font-size: 1.4rem;
    font-family: 'Montserrat';
  }

  /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

  .openbtn.active span:nth-of-type(1) {
    top: 12px;
    left: 0px;
    transform: translateY(6px) rotate(-45deg);
    width: 105%;
  }

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

  .openbtn.active span:nth-of-type(3) {
    top: 24px;
    left: 0px;
    transform: translateY(-6px) rotate(45deg);
    width: 105%;
  }

  .openbtn.active span:nth-of-type(3)::after {
    content: "Close";
    /*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
    top: 12px;
    left: 23px;
  }

  /*コンタクトリンクボタン*/
  .contactbtn {
    width: 75px;
    text-align: center;
    font-size: 1.4rem;
    margin-left: 15px;
  }

  .contactbtn img {
    height: 30px;
    width: auto;
    margin-bottom: 5px;
  }

  /*インスタグラムリンクボタン*/
  .instagrambtn {
    width: 70px;
    text-align: center;
    font-size: 1.4rem;
  }

  .instagrambtn img {
    height: 30px;
    width: auto;
    margin-bottom: 5px;
  }

  .contactbtn a,
  .instagrambtn a {
    color: #333;
  }

  /*ナビゲーションメニュー*/
  #header-navigation {
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: -120%;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    /*ナビの高さ*/
    background: #333333;
    opacity: 0.9;
    padding-top: 40px;
    padding-bottom: 40px;
    margin: 0 auto;
    /*動き*/
    transition: all 0.6s;
  }

  #header-navigation.active {
    top: 0;
  }

  .header-navigation li a {
    color: #ffffff;
    text-decoration: none;
  }

  .title {
    font-size: 2.0rem;
    font-weight: 100;
    margin: 0 0 30px 40px;
    display: block;
  }

  .title a {
    color: #fff;
  }

  .title a:visited {
    color: #fff;
  }


  .header-navigation ul {
    margin-left: 40px;
  }

  .header-navigation ul li {
    font-size: 3.0rem;
    font-weight: 100;
    line-height: 1.2;
    margin: 25px auto;
    letter-spacing: 2px;
  }

  .header-navigation ul li:last-child {
    margin-bottom: 0px;

  }

  .header-navigation .submenu li {
    margin: 0px 0;
  }

  .submenu li a {
    font-size: 1.6rem;
    line-height: 1rem;
  }

  /*外側のインスタグラムリンクボタン*/
  .insta-icon {
    display: none;
  }

}

@media (max-width: 960px) and (min-width: 600px) {

  /*スマホ時のヘッダー表示*/
  .header-area {
    margin: 30px auto;
    text-align: left;
    padding-left: 30px;
    padding-bottom: 30px;
    border-bottom: solid 1px #707070;
  }

  .header-area a {
    font-size: 2.4rem;
    font-weight: 500;
  }

  /*ボトムメニュー*/
  .bottom-menu {
    background-color: #F4DB22;
    opacity: 0.9;
    position: fixed;
    bottom: 0px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 80px;
    padding: 15px 20px 5px;
    z-index: 999;
  }

  /*ハンバーガーボタン*/
  .openbtn {
    cursor: pointer;
    width: 40px;
    height: 30px;
    position: relative;
  }

  /*ボタン内側*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0px;
    height: 1px;
    border-radius: 5px;
    background: #333;
    width: 100%;
  }


  .openbtn span:nth-of-type(1) {
    top: 0px;
  }

  .openbtn span:nth-of-type(2) {
    top: 16px;
  }

  .openbtn span:nth-of-type(3) {
    top: 32px;
  }

  .openbtn span:nth-of-type(3)::after {
    content: "Menu";
    /*3つ目の要素のafterにMenu表示を指定*/
    position: absolute;
    top: 5px;
    left: 0px;
    color: #333;
    font-size: 1.4rem;
    font-family: 'Montserrat';
  }

  /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

  .openbtn.active span:nth-of-type(1) {
    top: 12px;
    left: 0px;
    transform: translateY(6px) rotate(-45deg);
    width: 105%;
  }

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

  .openbtn.active span:nth-of-type(3) {
    top: 24px;
    left: 0px;
    transform: translateY(-6px) rotate(45deg);
    width: 105%;
  }

  .openbtn.active span:nth-of-type(3)::after {
    content: "Close";
    /*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
    top: 12px;
    left: 23px;
  }

  /*コンタクトリンクボタン*/
  .contactbtn {
    width: 75px;
    text-align: center;
    font-size: 1.4rem;
    margin-left: 15px;
  }

  .contactbtn img {
    height: 30px;
    width: auto;
    margin-bottom: 5px;
  }

  /*インスタグラムリンクボタン*/
  .instagrambtn {
    width: 70px;
    text-align: center;
    font-size: 1.4rem;
  }

  .instagrambtn img {
    height: 30px;
    width: auto;
    margin-bottom: 5px;
  }

  .contactbtn a,
  .instagrambtn a {
    color: #333;
  }

  /*ナビゲーションメニュー*/
  #header-navigation {
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: -120%;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    /*ナビの高さ*/
    background: #333333;
    opacity: 0.9;
    padding-top: 40px;
    padding-bottom: 40px;
    margin: 0 auto;
    /*動き*/
    transition: all 0.6s;
  }

  #header-navigation.active {
    top: 0;
  }

  .header-navigation li a {
    color: #ffffff;
  }

  .title {
    font-size: 2.2rem;
    font-weight: 100;
    margin: 0 0 30px 40px;
    display: block;
  }

  .title a {
    color: #fff;
  }

  .title a:visited {
    color: #fff;
  }


  .header-navigation ul {
    margin-left: 40px;
  }

  .header-navigation ul li {
    font-size: 3.5rem;
    font-weight: 100;
    line-height: 1.2;
    margin: 40px auto;
    letter-spacing: 2px;
  }

  .header-navigation ul li:last-child {
    margin-bottom: 0px;

  }

  .header-navigation .submenu li {
    margin: 0px 0;
  }

  .submenu li a {
    font-size: 1.6rem;
    line-height: 1rem;
  }

  /*外側のインスタグラムリンクボタン*/

  .insta-icon {
    display: none;
  }

}

@media(min-width: 960px) {

  /*PC時ヘッダー固定*/
  .header {
    /*max-width: 100vw;*/
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f5f5f5;
    z-index: 999;
    width: 100%;
  }

  /*スマホ時ヘッダーを非表示*/
  .header-area {
    display: none;
  }

  .header-container {
    max-width: 1280px;
    background-color: #f5f5f5;
    margin: 0 auto;
  }

  .header-container::after {
    content: "";
    width: 1280px;
    height: 1px;
    background-color: #707070;
    display: block;
    position: absolute;
    bottom: 20px;
  }

  .insta-icon {
    position: fixed;
    display: inline-block;
    right: 3%;
    top: 110px;
  }

  .insta-icon img {
    width: 80%;
  }

  /*ナビゲーションメニュー*/
  .header-navigation {
    display: flex;
    justify-content: space-between;
    background-color: #f5f5f5;
    padding-top: 24px;
    padding-bottom: 40px;
    margin: 0 auto;

  }

  .header-navigation li a {
    color: #333;
    text-decoration: none;
  }

  .title {
    font-size: 2.4rem;
    font-weight: 100;
    margin: 0;
  }

  .header-navigation ul li {
    display: inline-block;
    font-size: 2.0rem;
    font-weight: 100;
    line-height: 1.2;
    margin-right: 40px;
    letter-spacing: 2px;

  }

  .header-navigation ul li:first-child {
    display: none;

  }

  .header-navigation ul li:last-child {
    margin-right: 0px;

  }

  .submenu {
    display: none;
  }

  .openbtn,
  .contactbtn,
  .instagrambtn {
    display: none;
  }

}

@media(max-width: 1280px) {
  .header-navigation {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media(max-width: 1440px) {

  .insta-icon {
    right: 10px;

  }

}



/*-------------------------------
             footer
---------------------------------*/

.footer {
  background-color: #E6E6E6;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}

.footer-menu {
  max-width: 280px;
  margin: 0 auto 40px;
}

.footer-menu li {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 4.8;
}

.footer-menu li a {
  color: #333;
}

.footer-menu li::after {
  content: "";
  width: 1px;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  opacity: .5;
  margin: 0 1em;
  transform: translateY(-10%) rotate(30deg);
  background-color: currentColor;
}

.footer-menu li:last-child:after {
  display: none;
}

.footer-instagram {
  margin-bottom: 20px;
}

.footer-instagram img {
  width: 10%;
}

/*ページトップへ戻るボタン*/

/*リンクの形状*/
#page-top a {
  color: #333;
  text-align: center;
  writing-mode: vertical-lr;
  text-decoration: none;
  font-size: 1.6rem;
  transition: all 0.3s;
}

#page-top a:hover {
  color: #333;
}


#page-top a:hover::after {
  top: -90px;
  transition: all .3s;
}

#page-top a:hover::before {
  top: -90px;
  transition: all .3s;
}

#page-top a::after {
  content: "";
  position: absolute;
  top: -80px;
  right: 50%;
  width: 1px;
  height: 60px;
  background: #666;
}

#page-top a::before {
  content: "";
  position: absolute;
  top: -80px;
  right: 25%;
  width: 1px;
  height: 20px;
  background: #666;
  transform: skewX(31deg);
}


/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 30%;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*上に上がる動き*/

#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*下に下がる動き*/

#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

small {
  font-size: 1.2rem;
  margin-top: 20px;
}



@media(max-width: 960px) and (min-width: 600px) {
  .footer {
    padding-bottom: 20px;
  }

  .footer-inner {
    max-width: 1440px;
    margin: 0 auto;
  }

  .footer-container {
    max-width: 1280px;
    margin: 0 auto 70px;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
  }

  .footer-menu {
    margin: 0;
    max-width: 600px;
  }

  .footer-menu li {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1.2;
  }

  .footer-menu li:last-child:after {
    display: inline-block;
  }

  .footer-instagram img {
    width: 45%;
  }

  #page-top {
    position: fixed;
    right: calc(50% - 675px);

  }
}

@media(min-width: 960px) {
  .footer {
    padding-bottom: 20px;
  }

  .footer-inner {
    max-width: 1440px;
    margin: 0 auto;
  }

  .footer-container {
    max-width: 1280px;
    margin: 0 auto 70px;
    display: flex;
    justify-content: space-between;
  }

  .footer-menu {
    margin: 0;
    max-width: 600px;
  }

  .footer-menu li {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1.2;
  }

  .footer-menu li:last-child:after {
    display: inline-block;
  }

  .footer-instagram img {
    width: 45%;
  }

  #page-top {
    position: fixed;
    right: calc(50% - 675px);

  }
}

@media(max-width: 1440px) {

  #page-top {
    position: fixed;
    right: 2%;

  }

}

.scroll-up {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}