@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
img {
 max-width: 100%;
 height: auto;
}
.main {
  background-color: #fffcf3;
}
.instagram-media{
  min-width: inherit !important;
}
/* navigation */

/* https://sys-guard.com/post-18818/ */

/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 15px;
  top   : 18px;
  width : 60px;
  height: 60px;
  cursor: pointer;
  text-align: center;
  background: #f4f4f4;
  border-radius: 100%;
  opacity: 0.6;
  box-shadow: 0 0 2px rgb(105 105 105 / 60%);
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 15px;
  background : #3d3d3d;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 20px;
}
.hamburger span:nth-child(2) {
  top: 30px;
}
.hamburger span:nth-child(3) {
  top: 40px;
}

/* ハンバーガーメニュー色変更 */
.hamburger .change-color {
  color: #FFF;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 30px;
  left: 15px;
  background :#787878;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 30px;
  background :#787878;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #dadbdb;
  background: rgba(117,144,174,0.85);
  text-align: left;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 70px 0 0 60px;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration :none;
}

nav.globalMenuSp ul li a img {
  width: 40px;
}
nav.sns {
  display: flex;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;

}


body {
  color: #3d3d3d; /* RGB */
  font-family: YuMincho, "Yu Mincho", "serif" ;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: left;
}
section h2 {
  font-size: 2.0rem;
  font-weight: 600;
}
a hover {
  opacity: 0.5;
}
.none {
  display: none;
}

/* スクロールボタン */

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  cursor: pointer;
}
.scroll-top a {
  text-decoration: none;
}


.footer {
  padding: 30px 0;
  background-color: #d3c3b4;
  text-align: center;
}
.footer h3 {
  font-size: 1.8rem;
  font-weight: 600;
  padding-bottom: 10px;
}
.footer img {
  width: 55px;
}
.footer p {
  padding: 10px 0;
  font-size: 1.4rem;
  text-decoration: none;
}
.footer-text a {
  color: #9E8772;
 }
small {
  font-size: 1.2rem;
}
@media (min-width: 1025px) {
   .footer {
    margin: 0 auto;
    height: 250px;
    background-color: #d3c3b4;
    text-align: center;
   }
   .footer-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 60px 0 0;
    max-width: 750px
   }
   .footer h3 {
    font-size: 2.0rem;
    padding: 20px 0;
   }
   .footer img {
    width: 65px;
   }
   .footer-logo {
    flex: 1;
   }
   .footer-text {
    border-left: 1px solid #3d3d3d;
    flex: 1;
   }
   .footer p {
    padding: 0 0 20px 0;
    font-size: 1.6rem;
   }
   .footer-text a {
    color: #9E8772;
	}
   small {
    font-size: 1.4rem;
   }
 }

