:root {  
  --primary_color: #00695b;
  --secondary_color: #009b86;
  --primary_background_color: #f9f7f3;
  --secondary_background_color: #ede8e2;
  --content_attention: #F22F47;
  --content_attention_bg: #FFEBE9;
  --content_attention_border: #FF6A66;
  --button_primary: #00695b;
}

/* --- カラー --- */
.txtcolor--gold{
  color: #9b8821;
}

.bgrcolor--default{
  background-color: var(--primary_background_color);
} 

.bgcolor--secondary{
  background-color: var(--secondary_background_color);
}

/* ワードプレス関連 */
.wp-content__wraaper p > a{
  color: #0000EE;
  text-decoration: underline;
}

.wp-content__wraaper p > a:visited {
  color: #0000EE;
}

.wp-content__wraaper p > a:hover {
  font-weight: 400;
}

.wp-content__wraaper p > a:active {
  color: #0000EE;
}

/* --- パスワード保護 --- */
.post-password-form p{
  margin-bottom: 20px;
}

.font--poiret-one-regular {
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

html{
  scroll-padding-top: 150px;
}

@media screen and (max-width: 980px) {
  html{
    scroll-padding-top: 100px;
  }
}

body{
  height: 100%;
  font-optical-sizing: auto;
  font-weight: 400;
  margin: 0;
  font-size: inherit;
  font-style: normal;
  line-height: 1.6;
  color: #333;
}

body{
  font-family: "Helvetica Neue",
  Arial,
  "Hiragino Kaku Gothic ProN",
  "Hiragino Sans",
  "Noto Sans JP",
  Meiryo,
  sans-serif;
}

@media screen and (max-width: 767.98px) {
  body{
    font-size: 14px;
  }
}

@media screen and (max-width: 980px) {
  .body--canNotScroll{
  /* 要確認 */
    overflow: hidden;
  }
}

.content__wraaper{
  width: 100%;
  padding-top: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

@media screen and (max-width: 979px) {
  .content__wraaper{
    padding-top: 70px;
  }
}

.content__body{
  flex: 1;
}

.content__inner{
  max-width: 980px;
  margin: 0 auto;
  padding: 30px 0 100px;
  box-sizing: border-box;
}

@media screen and (max-width: 980px) {
  .content__inner{
  margin: 0 auto;
  padding-left: 3%;
  padding-right: 3%;
  }
}

.lifenote-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0;
  max-width: 1200px;
}

.lifenote-list::before {
  content: "";
  display: block;
  width: 24.22%;
  order: 1;
}

.lifenote-list::after {
  content: "";
  display: block;
  width: 24.22%;
}


@media screen and (max-width: 767.98px) {
  .lifenote-list{
    width: 100%;
  }
}

.lifenote-list li{
  width: 24.22%;
  margin-bottom: 1%;
  position: relative;
  transition: 2s;
  background-color: #fff;
  background-size: 100%, 100%;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  border-radius: 10px;
  box-shadow: 0 4px 6px 0px rgba(0, 0, 0, .17);
}


@media screen and (max-width: 767.98px) {
  .lifenote-list li{
    width: 49%;
    margin-bottom: 2%;
  }
}

.lifenote-list li > a > span{
  display: block;
  padding: 38px 10px 0;
  width: 100%;
  height: 96px;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  box-sizing: border-box;
 }

 @media screen and (max-width: 767.98px) {
  .lifenote-list li > a > span{
    font-size: 14px;
    height: 19vw;
    padding-top: 14%;
  }
}

 .lifenote-list li > a::before{
  content: '';
  display: block;
  position: absolute;
  width: 13px;
  height: 13px;
  background: url("../image/icon_internalLink.png") right 0 no-repeat ;
  background-size: auto 100%;
  bottom: 50%;
  right: 10px;
  left: auto;
  transform: translateY(50%);
}