@charset "UTF-8";
/* ========== ========== ==========
変数定義
========== ========== ========== */
/* ========== ========== ==========
共通部ここから
========== ========== ========== */


.btn_right a,
.btn_left a {
  display: flex;
  align-items: center;
  font-size: 10px;
  color: #9B8C66;
  border: solid 2px #9B8C66;
  border-radius: 999px;
  flex-shrink: 0;
  text-decoration: none;
}

.btn_right a:hover,
.btn_left a:hover {
  cursor: pointer;
  opacity: 0.7;
  transition: all .3s;
}

.btn_right a {
  padding: 3px 10px 3px 34px;
}

.btn_left a {
  padding: 3px 34px 3px 10px;
}

.btn_right a::after,
.btn_left a::before {
  content: "";
  display: inline-block;
  margin-bottom: 2px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #9B8C66;
  border-right: 2px solid #9B8C66;
}

.btn_right a::after {
  margin-left: 20px;
  transform: rotate(45deg);
}

.btn_left a::before {
  margin-right: 20px;
  transform: rotate(-135deg);
}


/* リセットcssを打ち消す */
.single_post_main *,
.single_post_head * {
  all: revert;
}

/* 共通部ここまで
---------- ---------- */

.single_content {
  padding-top: 100px;
  /* background-color: #EFEFEF; */
  margin-bottom: clamp(20px, calc(60 / 1280 * 100vw), 60px);
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.single_pageTitle {
  font-size: clamp(24px, calc(30/1000*100vw), 30px);
  font-weight: bold;
  text-align: center;
  margin-bottom: clamp(30px, calc(80/1280*100vw), 80px);
  position: relative;
  display: inline-block;
}


.single_pageTitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  height: 1px;
  width: 100%;
  background-color: black;
}

.single_post {
  display: flex;
  justify-content: center;
  width: 100%;
}

.single_post_category {
  border: solid 1px black;
  margin-left: 10px;
  border-radius: 999px;
  padding: 2px 5px;
}


.single_post_head {
  width: 100%;
  margin-bottom: clamp(20px, calc(30/1000*100vw), 30px);
}

.single_post_main {
  margin-bottom: 30px;
  width: 100%;
}

.single_post .sectionWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width:1001px) {
  .single_post .sectionWrap {
    width: 60%;
  }
}

.single_post_btns {
  margin-bottom: clamp(30px, calc(100/1280*100vw), 100px);
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.single_post_btns .btn_right a,
.single_post_btns .btn_left a {
  font-size: 16px;
}

.single_post_btns .btn_right a {
  padding-right: 15px;
}

.single_post_btns .btn_left a {
  padding-left: 15px;
}

.concept {
  margin: clamp(40px, calc(70/1280*100vw), 70px) 0;
}

.single_post_title {
  margin-top: 0;
  text-align: left;
  /* font-size: clamp(20px, 4vw, 30px); */
  font-size: clamp(18px, calc(24/1000*100vw), 24px);
  /* font-weight: 700; */
  margin-bottom: 10px;
  /* line-height: 1.2; */
  /* color: #AA925D; */
}

.single_post_text1 {
  margin-top: 0;
  margin-bottom: clamp(30px, calc(40/1000*100vw), 40px);
  display: block;
  font-size: 18px;
  line-height: 1.5;
}

.single_post_thumnail img{
  max-width: 100%;
  width: 100%;
}