@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap');
/*************************
　　共通部分
*************************/

html {
  background: #fff;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700;
  font-feature-settings: 'palt';
  /* font-size: 62.5%; 1remを16pxに設定 */
  letter-spacing: 0.9px;
  color: #352c00;
  line-height: 1.5;
  scroll-behavior: smooth; /* スムージングスクロール */
}

h1 {
  color: #fff;
  background: #dec07f;
  width: 100%;
  font-weight: bold;
  font-size: 17px;
  padding: 10px 15px;
  border-radius: 5px 5px 0 0;
}

h2 {
  width: 100%;
  color: #fff;
  background: #dec07f;
  font-weight: bold;
  font-size: 17px;
  padding: 10px 15px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: bold;
  width: 100%;
}

/* ヘッダー直下要素のpadding調整 */
#wrapper {
  padding-top: 60px;
}

/* ページTOPに戻る */
.pagetop {
  display: none;
  position: fixed;
  right: 15px;
  bottom: 60px;
}
.pagetop a {
  display: block;
  font-size: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  background: #5f2f28;
  border-radius: 50%;
  line-height: 50px;
}
.pagetop a i {
  font-size: 20px;
  color: #fff;
  line-height: 50px;
}

/*-----------------------------*/
/*Header*/
/*-----------------------------*/
.header-top {
  box-sizing: border-box;
  width: 100%;
  position: fixed;
  z-index: 9999;
  background-color: #fff;
  top: 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  height: 60px;
  padding: 0 0.8em;
  margin: 0 auto;
  font-size: 1.2em;
}
.header-nav {
  display: flex;
  align-items: center;
}
.header-nav-item {
  display: flex;
  align-items: center;
  margin-left: 16px;
}
@media screen and (max-width: 768px) {
  .header-nav-item {
    display: block;
    align-items: center;
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
    margin-left: 16px;
  }
}

.logo img {
  width: 150px;
}
.logo h2 {
  font-size: 3.2rem;
}
.header-button {
  box-sizing: border-box;
  display: inline-block;
  padding: 0.5em 1.2em;
  font-size: 12px;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}
.header-login {
  background: #999; /*#00b5ad*/
  border: 1px #999 solid; /*#00b5ad*/
  border-radius: 3px;
  color: #fff;
}
.header-post {
  font-weight: bold;
  color: #fff;
  background: #b37b2e; /*#00b5ad*/
  border: 1px #999 solid; /*#00b5ad*/
  border-radius: 3px;
}

@media screen and (max-width: 768px) {
  /*-----------------------------*/
  /*Header*/
  /*-----------------------------*/
  .header-top {
    box-sizing: border-box;
    width: 100%;
    position: fixed;
    z-index: 9999;
    background-color: #fff;
    top: 0;
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    height: 60px;
    padding: 0 0.8em;
    margin: 0 auto;
    font-size: 1.2em;
  }
  .header-nav {
    display: flex;
    align-items: center;
  }
  .header-nav-item {
    display: flex;
    align-items: center;
    margin-left: 16px;
  }
  .logo img {
    /*width: 150px;*/
  }
  .logo h2 {
    font-size: 1.8rem;
  }
  .header-button {
    box-sizing: border-box;
    display: inline-block;
    padding: 0.5em 1.2em;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
  }
  .header-login {
    background: #999; /*#00b5ad*/
    border: 1px #999 solid; /*#00b5ad*/
    border-radius: 3px;
    color: #fff;
  }
  .header-post {
    font-weight: bold;
    color: #fff;
    background: #b37b2e; /*#00b5ad*/
    border: 1px #999 solid; /*#00b5ad*/
    border-radius: 3px;
  }
}

@media screen and (max-width: 768px) {
  .inner {
    padding: 0 10px;
  }
}

/* 共通・表示：非表示 */
.pc-content {
  display: block;
}

.sp-content {
  display: none;
}

@media screen and (max-width: 768px) {
  /* 共通・表示：非表示 */
  .pc-content {
    display: none;
  }
  .sp-content {
    display: block;
  }
}

/* ハンバーガーメニュー */
/* @media screen and (max-width: 768px) {
  .header-nav-item {
    display: block;
    align-items: center;
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
    margin-left: 16px;
  }
}

.menu-trigger {
  display: none;
  transition: all 0.4s;
  box-sizing: border-box;
  position: relative;
  width: 40px;
  height: 32px;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .menu-trigger {
    display: inline-block;
  }
}
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #333;
  border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 14px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(12px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-15px) rotate(45deg);
} */

/* ハンバーガーメニューテスト */
*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
ol,
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
/* .cp_cont {
  height: 65vh;
} */
.cp_offcm01 {
  position: absolute;
  top: -10px;
  right: 5px;
  display: inline-block;
}
/* menu */
.cp_offcm01 .cp_menu {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 250px;
  height: 100%;
  cursor: pointer;
  -webkit-transition: 0.53s transform;
  transition: 0.53s transform;
  -webkit-transition-timing-function: cubic-bezier(0.38, 0.52, 0.23, 0.99);
  transition-timing-function: cubic-bezier(0.38, 0.52, 0.23, 0.99);
  background-color: #dec07f;
  z-index: 1;
  /* opacity: 0.8; */
}
.cp_offcm01 .cp_menu ul {
  margin: 0;
  padding: 0;
}
.cp_offcm01 .cp_menu li {
  list-style: none;
}
.cp_offcm01 .cp_menu li a {
  display: block;
  padding: 20px;
  text-decoration: none;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}

.cp_offcm01 #cp_toggle01 {
  position: absolute;
  display: none;
  opacity: 0;
}
.cp_offcm01 #cp_toggle01:checked ~ .cp_menu {
  -webkit-transform: translateX(-100vw);
  transform: translateX(-100vw);
}
/* menu toggle */
.cp_offcm01 #cp_toggle01 ~ label {
  display: block;
  padding: 0.5em;
  cursor: pointer;
  -webkit-transition: 0.5s transform;
  transition: 0.5s transform;
  -webkit-transition-timing-function: cubic-bezier(0.61, -0.38, 0.37, 1.27);
  transition-timing-function: cubic-bezier(0.61, -0.38, 0.37, 1.27);
  text-align: center;
  color: #333333;
}
.cp_offcm01 #cp_toggle01:checked ~ label {
  -webkit-transform: translateX(-250px);
  transform: translateX(-250px);
}
.cp_offcm01 #cp_toggle01 ~ label::before {
  font-family: 'Font Awesome 5 Free';
  content: '\f0c9';
  font-size: 2em;
  font-weight: 900;
}
.cp_offcm01 #cp_toggle01:checked ~ label::before {
  content: '\f00d';
}
/* contents */
.cp_contents {
  color: #333333;
  text-align: center;
}

.cp_menu label {
  padding: 10px;
  color: #333;
  display: block;
  cursor: pointer;
  font-size: 15px;
  background: #fff;
  border-radius: 3px 3px 0 0;
  border-left: #b37b2e 5px solid;
}

li.member_login {
  background: #fff;
  font-size: 15px;
  padding: 0 10px;
}

li.member_login p {
  font-size: 12px;
}

@media screen and (max-width: 768px) {
}

/* 20210209追記 */
.btn_container {
  display: block;
  height: 60px;
  width: 200px;
  position: absolute;
  right: 65px;
}
/* ヒーロバナー部ボタン */
.hero-btn-container {
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.hero-post {
  font-weight: bold;
  color: #fff;
  background: #5f2f28; /*#00b5ad*/
  /* border: 1px #999 solid; #00b5ad */
  border-radius: 10px;
}
.hero-button {
  box-sizing: border-box;
  display: inline-block;
  padding: 1em 2.2em;
  font-size: 12px;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 5px #30130f;
}
.hero-button:hover {
  -ms-transform: translateY(5px);
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  border-bottom: none;
  box-shadow: none;
  transition: 0.5s;
}

@media screen and (max-width: 768px) {
  .header-inner {
    padding-left: 0!important;
  }
  .btn_container {
    width: 105px;
    right: 65px;
  }
  .hero-post {
    border-radius: 5px;
  }
  .hero-button {
    padding: 1em 0.55em;
    font-size: 8px;
  }
}