/*ブラウザがCSSの文字コードを判別するための記述*/
@charset "utf-8";
/*グーグルフォントを使うための記述*/
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
body {
  font-family: 'Noto Serif JP', serif;
  width: 100%;
  background-color: #ddd9d5;
  }

h1,h2,h3,h4,h5,h6,p{
  color: #553B36;
}

@media (min-width: 961px)/*--PC用フォントサイズ--*/
{
  h1{
    font-size: 32px;
  }
  h2{
    font-size: 28px;
  }
  h3{
    font-size: 24px;
  }
  h4{
    font-size: 20px;
  }
  h5{
    font-size: 18px;
  }
  h6{
    font-weight: bold;
    font-size: 16px;
  }
  p{
    font-size: 16px;
  }
}

@media (max-width: 960px)/*--タブレット・モバイル用フォントサイズ--*/
{
  h1{
    font-size: 28px;
  }
  h2{
    font-size: 22px;
  }
  h3{
    font-size: 20px;
  }
  h4{
    font-size: 16px;
  }
  h5{
    font-size: 16px;
  }
  h6{
    font-weight: bold;
    font-size: 16px;
  }
  p{
    font-size: 16px;
  }
}

/*--------------------●付きタイトル--------------------*/
.title:before {
  content: url();
  display: inline-block;
  width: 24px;/*画像の幅*/
  height: 24px;/*画像の高さ*/
  background-image: url(../img/title_accent.png);
  background-size: contain;
  vertical-align: middle;
  margin: 5px;
  background-repeat:no-repeat
}
.title2:before {
  content: url();
  display: inline-block;
  width: 18px;/*画像の幅*/
  height: 18px;/*画像の高さ*/
  background-image: url(../img/title_accent.png);
  background-size: contain;
  vertical-align: middle;
  margin: 5px;
  padding-bottom: 2px;
  background-repeat:no-repeat
}
/*--------------------●付きタイトル--------------------*/



/*--------------------ヘッダー--------------------*/
.header {
  background-color: white;
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
}
.header__inner {
  padding: 40px 40px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}
.header__title img{
  height: 36px;
}
@media screen and (max-width: 960px) {/*--タブレット・モバイル用--*/
  .header {
    background-color: white;
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
  
  }
  .header__inner {
    padding: 20px 20px;
    padding-left: 5vw;
    padding-right: 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: inherit;
    position: relative;
  }
  .header__title img{
    height: 24px;
  }
}

/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #f0eeec;
  transition: ease .4s;
  opacity: 1;
}

@media screen and (min-width: 960px) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: end;
    width: 40%;
  }
  .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: initial;
    justify-content: space-between;
  }
}
.nav-items {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  
}

@media screen and (min-width: 960px) {
  .nav-items {
    position: inherit;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }
}
/* ナビのリンク */

.nav-items__item a {
  color: #553B36;
  width: 100%;
  display: block;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-items__item:last-child a {
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
.nav__items a {
  border-bottom: 1px solid #553B36;
  padding: 20px;
  transition: color .4s, background-color .4s, transform .7s;
}
.nav-items__item a:hover {
  transform: scale(1.1);/*--◀◀マウスオーバー画像サイズ指定--*/
  background-color: #be9379;
  color: white;
}
}
@media screen and (min-width: 960px) {
  .nav-items__item a {
    margin-bottom: 0;
    transition: transform .3s;/*--◀◀マウスオーバー秒数指定--*/
  }
  .nav__items li+ li {
    border-left: 1px solid #553B36;
    padding-left: 35px;
  }
  .nav-items__item a:hover {
    transform: scale(1.1);/*--◀◀マウスオーバー画像サイズ指定--*/
  }
}
/* ハンバーガーメニュー */
.header__hamburger {
  width: 40px;
  height: 100%;
}
.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}
@media screen and (min-width: 960px) {
  .hamburger {
    display: none;
  }
}
/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 2px;
  background-color: #553B36;
  position: relative;
  transition: ease .4s;
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 8px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}
/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}

/*--------------------ヘッダーEND--------------------*/

/*--------------------フッター-----------------------*/
.footer-copyright{
  width: 100%;
  height: 60px;
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-copyright p{
  padding: 0;
}
.footer-sns-icon{
  display: flex;
  align-items: center;
  padding-right: 20px;
}
.footer-sns-icon img{
  height: 25px;
  margin-right: 6px;
}
@media (max-width: 960px){
  .footer-copyright{
    width: 100%;
    height: 45px;
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-sns-icon img{
    height: 15px;
    margin-left: 0px;
    margin-right: 6px;
  }
  .footer-sns-icon{
    display: flex;
    align-items: center;
    padding-right: 20px;
  }
}
/*--------------------フッターEND--------------------*/

/*--------------------トップビジュアル--------------------*/
.layout-topvisual{
}
.top-visual-text{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top-visual-text h2{
  text-align: center;
  font-weight:bold;
  text-shadow: 0 0 6px white;
}
.top-visual-text h3{
  text-align: center;
  font-weight:bold;
  text-shadow: 0 0 6px white;
  margin-top: 1vw;
}
.top-visual-img{
  margin-top: 80px;
  width: 100%;
  min-height: 260px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.top-visual-img img{
  width:100%;
  object-fit: cover;
}
@media (max-width: 960px)/*--タブレット・モバイル用--*/
{
  .top-visual-img{
    margin-top: 60px;
    width: 100%;

    min-height: 200px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
  }
}
/*--------------------トップビジュアル--------------------*/



/*--アニメーションを入れる場合
#opv-wrap {
  display: none;
}

#opv-wrap video{
  margin-top: 80px;
  width: 100%;
  min-height: 260px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  object-fit: cover;
}
video#opv {
  margin-top: 80px;
  width: 100%;
  min-height: 260px;
  height: 686px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  object-fit:contain;
}

.layout-topvisual-2{
  display: none;
}



/*--準備中の画面--*/
.layout-preparation{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 95vh;
  width: 100vw;
  text-align: center;
  font-size: 18px;
}