@charset "UTF-8";
/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////
///// base
////////////////////////////////////////////////////////
////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
/*----- フォント */
html {
  font-size: 16px; /* Yahoo!ショッピングの通常フォントは16px程度 */
}

/* 見出しや段落など主要要素を対象にした調整 */
body,
p,
ul,
ol,
dl,
dt,
dd,
table,
th,
td,
label,
input,
button,
select,
textarea {
  font-size: 1rem; /* 16px に基づいたサイズ */
  line-height: 1.6; /* 適度な読みやすさを確保 */
}
/* サイト内の主見出し (h1〜h6) を Yahoo!風に調整 */
h1 {
  font-size: 1.75rem; /* 約28px */
  line-height: 1.35;
}

h2 {
  font-size: 1.5rem; /* 約24px */
  line-height: 1.4;
}

h3 {
  font-size: 1.25rem; /* 約20px */
  line-height: 1.45;
}

h4 {
  font-size: 1rem; /* 約16px */
  line-height: 1.5;
}

h5 {
  font-size: 0.875rem; /* 約14px */
  line-height: 1.55;
}

h6 {
  font-size: 0.875rem; /* 約14px */
  line-height: 1.55;
}

/* リンクやボタン文字の明瞭性アップ */
a,
button {
  font-size: 1rem;
}

/* フォントファミリーも Yahoo! 風 */
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

/* レスポンシブ時の調整（必要に応じて） */
@media screen and (max-width: 600px) {
  html {
    font-size: 14px;
  }
}

/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////
///// general 
////////////////////////////////////////////////////////
////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
/* --------------------------------
//////////////////////////////
///// basic 
///////////////////////////
----------------------------------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  letter-spacing: 0.1em;
  color: #333333;
  font-feature-settings: "palt" 1;
  font-family: "Noto Serif JP", serif, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

a {
  color: #333333;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}
.tea_txt, .tea_url {
	display:none;
}
.wrapper {
  width: min(93.75vw, 1200px);
  margin: 0 auto;
}
@media print, screen and (max-width: 768px) {
  .wrapper {
    width: 91.1458333333vw;
  }
}

/* -------- UTILITY ----------- */
.sp {
  display: none;
}
@media print, screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}
@media print, screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

/* -------- 改行 ----------- */
.indent {
  display: block;
}

.sp__indent {
  display: inline;
}
@media print, screen and (max-width: 768px) {
  .sp__indent {
    display: block;
  }
}

/* -------- 太字 ----------- */
.bold {
  font-weight: 900;
}

/* --------------------------------
//////////////////////////////
///// 中央寄せ
///////////////////////////
----------------------------------- */
/* -------- 文字中央寄せ ----------- */
.txt__center {
  text-align: center;
}

/* -------- ブロック中央寄せ ----------- */
.mar__LRcenter {
  margin: 0 auto;
}

/* -------- 左右中央配置 ----------- */
.relative {
  position: relative;
}

.pos__LRcenter {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* -------- 上下中央配置 ----------- */
.pos__TBcenter {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* -------- 上下左右中央配置 ----------- */
.pos__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* --------------------------------
//////////////////////////////
///// flex
///////////////////////////
----------------------------------- */
.flex {
  display: flex;
}
.blog__list {
  justify-content: center;

}
.pc__flex {
  display: flex;
}
@media print, screen and (max-width: 768px) {
  .pc__flex {
    display: block;
  }
}

@media print, screen and (max-width: 768px) {
  .sp__flex {
    display: flex;
  }
}

.inline__flex {
  display: inline-flex;
}

.flex__reverse {
  flex-direction: row-reverse;
}

.flex__col {
  flex-direction: column;
}

@media print, screen and (max-width: 768px) {
  .sp__flex__col {
    flex-direction: column;
  }
}

@media print, screen and (max-width: 768px) {
  .sp__flex__col__reverse {
    flex-direction: column-reverse;
  }
}

/* -------- justify-content ----------- */
.jus__center {
  justify-content: center;
}

.jus__between {
  justify-content: space-between;
}

.jus__around {
  justify-content: space-around;
}

.jus__start {
  justify-content: flex-start;
}

.jus__end {
  justify-content: flex-end;
}

/* -------- align-items ----------- */
.ali__center {
  align-items: center;
}

.ali__end {
  align-items: flex-end;
}

@media print, screen and (max-width: 768px) {
  .sp__ali__center {
    align-items: center;
  }
}

@media print, screen and (max-width: 768px) {
  .sp__ali__start {
    align-items: flex-start;
  }
}

/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////
///// common
////////////////////////////////////////////////////////
////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
/* -------- セクションタイトル ----------- */
.sec-title {
	font-size: min(2.521875vw, 22px);
    line-height: 2.3636363636;
    letter-spacing: 0.14em;
    width: 9em;
}
@media print, screen and (max-width: 768px) {
  .sec-title {
    font-size: 3.6458333333vw;
    line-height: 1.9642857143;
  }
}

.sec-title-2 {
  font-size: min(1.875vw, 24px);
  line-height: 2;
  letter-spacing: 0.34em;
}
@media print, screen and (max-width: 768px) {
  .sec-title-2 {
    font-size: 3.90625vw;
    line-height: 2;
  }
}

/* --------------------------------
//////////////////////////////
///// アニメーション
///////////////////////////
----------------------------------- */
/* -------- 透明度 ----------- */
a {
  transition: opacity 0.5s;
}
a:hover {
  opacity: 0.6;
}

/* --------------------------------
//////////////////////////////
///// リンクボタン
///////////////////////////
----------------------------------- */
.link-btn {
  color: #fff;
  width: min(21.875vw, 280px);
  height: min(4.6875vw, 60px);
  gap: min(0.390625vw, 5px);
  border-radius: 5px;
}
@media print, screen and (max-width: 768px) {
  .link-btn {
    width: 70.3125vw;
    height: 11.71875vw;
    gap: 0.6510416667vw;
    font-size: 3.90625vw;
    line-height: 1.6666666667;
  }
}
.link-btn__icon {
  width: min(1.953125vw, 25px);
}
@media print, screen and (max-width: 768px) {
  .link-btn__icon {
    width: 5.2083333333vw;
  }
}

.link-btn-green {
  background-color: #588E45;
}

.link-btn-gray {
  background-color: #666666;
}

.link-btn-white {
  background-color: #FFF;
  color: #232323;
  border: solid 1px #232323;
}

/* -------- オンラインショップボタン ----------- */
.shop-btn {
  position: fixed;
  z-index: 98;
  bottom: min(7.03125vw, 90px);
  right: min(1.5625vw, 20px);
  background-color: #588E45;
  border-radius: 50%;
  width: min(5.859375vw, 75px);
  height: min(5.859375vw, 75px);
}
@media print, screen and (max-width: 768px) {
  .shop-btn {
    bottom: 11.71875vw;
    right: 3.90625vw;
    width: 9.765625vw;
    height: 9.765625vw;
  }
}
.shop-btn img {
  width: min(3.125vw, 40px);
}
@media print, screen and (max-width: 768px) {
  .shop-btn img {
    width: 5.2083333333vw;
  }
}

.header {
  position: relative;
}
.header__cont {
  height: min(7.8125vw, 100px);
}
@media print, screen and (max-width: 768px) {
  .header__cont {
    height: 14.3229166667vw;
  }
}
@media print, screen and (max-width: 768px) {
  .header__top {
    width: 100%;
  }
}
.header__logo {
  width: min(21.5625vw, 276px);
}
@media print, screen and (max-width: 768px) {
  .header__logo {
    width: 31.25vw;
  }
}
.header__menu {
  gap: min(5.3125vw, 68px);
}
.header__menu--img {
  width: min(3.125vw, 40px);
  margin-right: min(1.5625vw, 20px);
}
@media print, screen and (max-width: 768px) {
  .header__menu--img {
    width: 5.2083333333vw;
    margin-right: initial;
  }
}
@media print, screen and (max-width: 768px) {
  .header__menu {
    width: 100vw;
    height: 0;
    min-height: 0;
    justify-content: center;
    background-color: #fff;
    height: 14.3229166667vw;
    position: absolute;
    top: 0;
    right: -4.4270833333vw;
    opacity: 0;
    transition: all 0.5s;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 0 min(14.84375vw, 190px);
    align-items: flex-start;
    display:none;
  }
  .header__menu.-active {
    z-index: 50;
    height: auto;
    top: 14.3229166667vw;
    overflow-y: scroll;
    opacity: 1;
    display:block;
  }
}
@media print, screen and (max-width: 768px) {
  .header__btn {
    gap: 1.5rem;
    padding-bottom: 2rem;
  }
}

.menu__nav {
  gap: min(3.90625vw, 50px);
}
@media print, screen and (max-width: 768px) {
  .menu__nav {
    /* gap: 1.3020833333vw; */
    /* align-items: flex-start; */
    padding-top: 1.5em;
    padding-bottom:1.5em;
    gap: 1.5em;
    
  }
}
.menu__item {
  font-size: min(1.09375vw, 14px);
  line-height: 3.4285714286;
}
@media print, screen and (max-width: 768px) {
  .menu__item {
    text-align: left;
    font-size: 3.6458333333vw;
    line-height: 2.5;
  }
  .menu__item a {
    color: #fff;
  }
}

.nav__btn__wrap {
  display: none;
}
@media print, screen and (max-width: 768px) {
  .nav__btn__wrap {
    display: block;
  }
}
.nav__btn__wrap .nav__btn {
  position: relative;
  width: 6.1197916667vw;
  height: 6.1197916667vw;
  display: inline-block;
  z-index: 60;
  border-radius: 50%;
}
.nav__btn__wrap .nav__btn.-active span {
  top: 0;
  bottom: 0;
  margin: auto;
  transition: transform 0.5s ease;
}
.nav__btn__wrap .nav__btn.-active span:first-child {
  transform: rotate(45deg);
  bottom: 0;
}
.nav__btn__wrap .nav__btn.-active span:nth-child(2) {
  transform: rotate(-45deg);
  top: 0;
  bottom: 0;
  margin: auto;
}
.nav__btn__wrap .nav__btn.-active span:last-child {
  transform: rotate(45deg);
  top: -70px;
  bottom: inherit;
}
.nav__btn__wrap .nav__btn span {
  position: absolute;
  right: 0;
  background-color: #000;
  display: inline-block;
  box-sizing: border-box;
  transition: transform 0.5s ease;
}
@media print, screen and (max-width: 768px) {
  .nav__btn__wrap .nav__btn span {
    width: 6.25vw;
    height: 0.5208333333vw;
  }
}
@media print, screen and (max-width: 768px) {
  .nav__btn__wrap .nav__btn span:first-child {
    bottom: 4.6875vw;
  }
}
@media print, screen and (max-width: 768px) {
  .nav__btn__wrap .nav__btn span:nth-child(2) {
    bottom: 3.125vw;
  }
}
@media print, screen and (max-width: 768px) {
  .nav__btn__wrap .nav__btn span:last-child {
    bottom: 1.5625vw;
  }
}

.footer {
  background-color: #333333;
}
.footer .copy {
  font-size: min(0.9375vw, 12px);
  line-height: 3.3333333333;
  letter-spacing: 0.012em;
  text-align: center;
  color: #fff;
  padding: min(1.5625vw, 20px) 0;
}
@media print, screen and (max-width: 768px) {
  .footer .copy {
    font-size: 1.8229166667vw;
    line-height: 2.8571428571;
    padding: 2.6041666667vw 0;
  }
}

.mv {
  background-image: url(assetes/image/top/pc_main.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: min(64.84375vw, 830px);
}
@media print, screen and (max-width: 768px) {
  .mv {
    width: 100%;
    height: 84.6354166667vw;
    background-size: cover;
    background-position: center;
  }
}
.mv__txt {
  writing-mode: vertical-rl;
  color: #fff;
  width: 100%;
  height: 100%;
  letter-spacing: 0.3em;
    font-size: min( 1.85vw, 22px);
  line-height: 4.6153846154;
}
@media print, screen and (max-width: 768px) {
  .mv__txt {
	    font-size: min(2.7vw, 16px);
	    line-height: 2.2;
  }
}


.greeting__cont {
  margin: 0 auto;
  margin-top: min(4.6875vw, 60px);
  margin-bottom: min(7.03125vw, 90px);
  gap: 15px;
  width: min(85.4375vw, 940px);
}
.greeting__title {
    width: 15em;
    
}
@media print, screen and (max-width: 768px) {
  .greeting__cont {
    width: 100%;
    display: block;
    margin-top: 10.4166666667vw;
    margin-bottom: 18.2291666667vw;
  }
}
@media print, screen and (max-width: 768px) {
  .greeting__title {
    text-align: center;
    margin-bottom: 2.6041666667vw;
    margin-left: auto;
    margin-right: auto;
    font-size: 4.645833vw;
    width: 100%;
  }
}
.greeting__txt {
    font-size: 16px;
    line-height: 2.1;
}

@media print, screen and (max-width: 768px) {
	.greeting__txt {
		text-align: center;
		letter-spacing: 0.02em;
		width: 100%;
		font-size: 14px;
	}
}
.desc__title.sec-title {
	width: auto;
}
.committed {
  background-image: url(assetes/image/top/committed_back.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: min(7.03125vw, 90px);
  
}
@media print, screen and (max-width: 768px) {
  .committed {
    width: 100%;
    background-size: cover;
    background-position: center;
  }
}
.committed__cont {
  color: #fff;
  height: min(41.40625vw, 530px);
}
@media print, screen and (max-width: 768px) {
  .committed__cont {
    height: 58.59375vw;
  }
}
.committed__title {
	padding-top: min(2.34375vw, 30px);
	font-size: 18px;
	line-height: 2.3636363636;
	letter-spacing: 0.34em;
	width: 50%;
	text-align: center;
}
@media print, screen and (max-width: 768px) {
	.committed__title {
		width: 100%;
		text-align: center;
		margin-bottom: 2.6041666667vw;
		margin-left: auto;
		margin-right: auto;
		font-size: 16px;
	}
}
.committed__txt {
    width: 70%;
    padding-top: min(1.25vw, 80px);
    padding-left: min(4.765625vw, 125px);
	padding-right: 3vw;
   	font-size: 16px;
    line-height: 3.0;
}
@media print, screen and (max-width: 768px) {
  .committed__txt {
		width: 80%;
		padding-top: 2.2083333333vw;
		padding-left: 10vw;
		padding-right: 3vw;
		font-size: 16px;
		line-height: 2.5;
  }
}
@media print, screen and (max-width: 600px) {
    .committed__txt {
        width: 100%;
        padding-top: 0;
        padding-left: 1.9rem;
        padding-right: 1.9rem;
        font-size: min(3.5vw, 18px);
        line-height: 2.1;
        font-size: 14px;
    }
}
.desc__p {
   	font-size: min(3.1vw, 18px);
}
.news__title {
  margin-top: min(4.6875vw, 60px);
}
@media print, screen and (max-width: 768px) {
  .news__title {
    margin-top: 5.2083333333vw;
  }
}
.news__list {
  width: min(68.4375vw, 876px);
  margin: 0 auto;
  margin-top: min(1.953125vw, 25px);
  margin-bottom: min(7.8125vw, 100px);
}
@media print, screen and (max-width: 768px) {
  .news__list {
    width: 100%;
    margin-top: 2.6041666667vw;
    margin-bottom: 10.4166666667vw;
  }
}

.item {
  border-bottom: 1.2px solid #E5E5E5;
}
.item:first-child {
  border-top: 1.2px solid #E5E5E5;
}
.item a {
  opacity: 1;
  font-size: min(1.25vw, 16px);
  line-height: 1.75;
  padding-top: min(2.34375vw, 30px);
  padding-bottom: min(1.171875vw, 15px);
  padding-left: min(3.90625vw, 50px);
  padding-right: min(1.40625vw, 18px);
  gap: min(2.734375vw, 35px);
  letter-spacing: 0.07em;
}
@media print, screen and (max-width: 768px) {
  .item a {
    font-size: 2.0833333333vw;
    line-height: 1.75;
    padding-top: 2.6041666667vw;
    padding-bottom: 1.953125vw;
    gap: 0.6510416667vw;
    padding-right: initial;
    padding-left: initial;
  }
}
.item a:hover {
  opacity: 0.5;
}
.item__date {
  font-size: min(1.09375vw, 14px);
  line-height: 1.75;
  color: #757575;
}
@media print, screen and (max-width: 768px) {
  .item__date {
    font-size: 1.953125vw;
    line-height: 1.6666666667;
  }
}

.desc__cont {
  margin-bottom: min(11.71875vw, 150px);
}
@media print, screen and (max-width: 768px) {
  .desc__cont {
    margin-top: 15.625vw;
    margin-bottom: min(17.1875vw, 220px);
  }
}
.desc__item {
  gap: min(3.90625vw, 50px);
}
@media print, screen and (max-width: 768px) {
  .desc__item:first-child {
    height: 115vw;
  }
}
.desc__item:nth-of-type(even) {
  flex-direction: row-reverse;
  margin-top: min(4.84375vw, 62px);
}
@media print, screen and (max-width: 768px) {
  .desc__item:nth-of-type(even) {
    flex-direction: column;
    align-items: flex-end;
    margin-top: 7.8125vw;
  }
}
.desc__item:nth-of-type(even) .desc__txt {
  padding-left: min(8.4375vw, 108px);
}
@media print, screen and (max-width: 768px) {
  .desc__item:nth-of-type(even) .desc__txt {
    padding-left: initial;
  }
}
@media print, screen and (max-width: 768px) {
  .desc__item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.desc__img {
  width: min(54.6875vw, 700px);
}
@media print, screen and (max-width: 768px) {
  .desc__img {
    width: 84.6354166667vw;
  }
}
.desc__txt {
  width: min(41.40625vw, 530px);
  font-size: min(1.09375vw, 14px);
  line-height: 2.1428571429;
}
@media print, screen and (max-width: 768px) {
  .desc__txt {
    width: 84.6354166667vw;
    height: 26.0416666667vw;
    font-size: 2.0833333333vw;
    line-height: 1.875;
    position: relative;
  }
}
@media print, screen and (max-width: 768px) {
  .desc__txt-wrap {
    width: 85%;
    position: absolute;
    left: 55%;
    transform: translateX(-50%);
  }
}
.desc__title {
  padding-bottom: min(1.5625vw, 20px);
}
@media print, screen and (max-width: 768px) {
  .desc__title {
    padding-bottom: 1.953125vw;
  }
}

.series {
  position: relative;
}
.series__cont {
  background-color: #F0F2E9;
  margin-top: min(2.34375vw, 30px);
  height: min(99.0625vw, 1268px);
}
@media print, screen and (max-width: 768px) {
  .series__cont {
    position: relative;
    margin-top: 2.6041666667vw;
    height: 175.78125vw;
  }
}
.series__desc {
  position: absolute;
  left: 0;
  width: 100%;
  gap: min(1.5625vw, 20px);
  top: min(-2.734375vw, -35px);
}
@media print, screen and (max-width: 768px) {
  .series__desc {
    gap: 1.3020833333vw;
    top: -15.625vw;
    left: -7.1614583333vw;
  }
}
.series__img {
  width: min(50.390625vw, 645px);
}
@media print, screen and (max-width: 768px) {
  .series__img {
    width: 57.9427083333vw;
  }
}
.series__txt {
  width: min(37.890625vw, 485px);
  margin-top: min(5.46875vw, 70px);
}
@media print, screen and (max-width: 768px) {
  .series__txt {
    width: 65.1041666667vw;
    margin-top: 6.5104166667vw;
  }
}
.series__h3_title {
  font-size: min(2.34375vw, 30px);
  line-height: 1.75;
  letter-spacing: 0.08em;
}
@media print, screen and (max-width: 768px) {
  .series__h3_title {
    font-size: 4.1666666667vw;
    line-height: 1.65625;
  }
}
.series__dt {
  font-size: min(1.5625vw, 20px);
  line-height: 1.925;
  padding-top: min(1.953125vw, 25px);
  letter-spacing: 0.13em;
}
@media print, screen and (max-width: 768px) {
  .series__dt {
    font-size: 2.8645833333vw;
    line-height: 1.8181818182;
    padding-top: 2.6041666667vw;
  }
}
.series__dd {
	padding-top: min(1.40625vw, 18px);
	padding-bottom: min(1.40625vw, 18px);
	letter-spacing: 0.04em;
    font-size: 16px;
}

.teaLists {
  letter-spacing: 0.04em;

}
@media print, screen and (max-width: 768px) {
  .series__dd {
    width: 100vw;
    padding: 0 7.1614583333vw;
    position: absolute;
    left: 7.1614583333vw;
    top: 45.5729166667vw;
    padding-top: 8.4635416667vw;
    padding-bottom: 8.4635416667vw;
    font-size: 14px;
    line-height: 2.0588235294;
  }
  .teaLists {
    letter-spacing: 0.04em;
    width: 100vw;
    padding: 0 7.1614583333vw;
    padding-top: 8.4635416667vw;
    padding-bottom: 8.4635416667vw;
    font-size: 14px;
    line-height: 2.0588235294;
  }
}
.series__slider {
  width: min(79.6875vw, 1020px);
  margin: 0 auto;
}
@media print, screen and (max-width: 768px) {
  .series__slider {
    width: 65.1041666667vw;
    padding-top: 75.5208333333vw;
  }
}

.slide .slick-slide {
  margin-right: min(1.171875vw, 15px);
  margin-left: min(1.171875vw, 15px);
}
@media print, screen and (max-width: 768px) {
  .slide .slick-slide {
    margin-left: initial;
    margin-right: initial;
  }
}
.slide__items {
  position: relative;
}
.slide__item {
  cursor: pointer;
}
.slide__title {
/*  font-size: min(1.71875vw, 22px);*/
  font-size: 18px;
  line-height: 1.6;
  margin-top: min(3.125vw, 40px);
}
@media print, screen and (max-width: 768px) {
  .slide__title {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 3.90625vw;
  }
}
.slide__txt {
  font-size: min(1.09375vw, 14px);
  line-height: 2;
  margin-top: min(2.5vw, 32px);
  margin-bottom: min(3.125vw, 40px);s
}
@media print, screen and (max-width: 768px) {
  .slide__txt {
    font-size: 14px;
    line-height: 1.7647058824;
    margin-top: 3.90625vw;
  }
}

.slide-arrow {
  width: min(1.5625vw, 20px);
  position: absolute;
  top: 31%;
  transform: translateY(-50%);
  cursor: pointer;
}
@media print, screen and (max-width: 768px) {
  .slide-arrow {
    top: 38%;
    width: 3.90625vw;
  }
}

.prev-arrow {
  left: min(-4.6875vw, -60px);
}
@media print, screen and (max-width: 768px) {
  .prev-arrow {
    left: -10.4166666667vw;
  }
}

.next-arrow {
  right: min(-4.6875vw, -60px);
}
@media print, screen and (max-width: 768px) {
  .next-arrow {
    right: -10.4166666667vw;
  }
}

.main__visual {
  margin-bottom: min(20.703125vw, 265px);
}
@media print, screen and (max-width: 768px) {
  .main__visual {
    margin-bottom: 48.1770833333vw;
  }
}

.modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: max(100vh, 800px);
  max-height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow-y: scroll;
}
.modal__wrap {
  width: min(85.9375vw, 1100px);
  height: 100vh;
  margin: 0 auto;
  padding-top: min(7.8125vw, 100px);
}
@media print, screen and (max-width: 768px) {
  .modal__wrap {
    width: 91.1458333333vw;
    padding-top: 13.0208333333vw;
  }
}
.modal__close {
  width: min(3.125vw, 40px);
  margin-bottom: min(0.78125vw, 10px);
  margin-left: auto;
  cursor: pointer;
}
@media print, screen and (max-width: 768px) {
  .modal__close {
    width: 6.5104166667vw;
    margin-bottom: 1.0416666667vw;
  }
}
.modal__cont {
  background-color: #fff;
  padding: min(3.125vw, 40px);
  gap: min(3.515625vw, 45px);
}
@media print, screen and (max-width: 768px) {
  .modal__cont {
    flex-direction: column;
    padding: 3.90625vw;
    gap: 2.6041666667vw;
  }
}
.modal__img {
  width: min(44.53125vw, 570px);
}
@media print, screen and (max-width: 768px) {
  .modal__img {
    width: 80%;
    margin: 0 auto;
  }
}
.modal__desc {
  width: min(31.640625vw, 405px);
  padding-bottom: min(1.5625vw, 20px);
}
@media print, screen and (max-width: 768px) {
  .modal__desc {
    width: 100%;
    padding-bottom: 2.6041666667vw;
  }
}
.modal__title {
  font-size: min(2.34375vw, 30px);
  line-height: 1.75;
  letter-spacing: 0.08em;
  color: #588E45;
}
@media print, screen and (max-width: 768px) {
  .modal__title {
    font-size: 4.1666666667vw;
    line-height: 1.71875;
  }
}
.modal__txt {
  padding-top: min(3.125vw, 40px);
  padding-bottom: min(1.5625vw, 20px);
  letter-spacing: 0.01em;
}
@media print, screen and (max-width: 768px) {
  .modal__txt {
    padding-top: 2.6041666667vw;
    padding-bottom: 5.2083333333vw;
    font-size: 14px;
    line-height: 1.8823529412;
  }
}
.modal__btn {
  margin: 0 auto;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.blog-sec__title {
  margin-top: min(7.1875vw, 92px);
}
@media print, screen and (max-width: 768px) {
  .blog-sec__title {
    margin-top: 10.4166666667vw;
  }
}
.blog__list {
  margin-top: min(2.5vw, 32px);
  margin-bottom: min(7.8125vw, 100px);
  gap: min(2.34375vw, 30px);
}
@media print, screen and (max-width: 768px) {
  .blog__list {
    flex-direction: column;
    margin-top: 4.1666666667vw;
    margin-bottom: 13.0208333333vw;
    gap: 6.5104166667vw;
  }
}
.blog__title {
  font-size: min(1.25vw, 16px);
  line-height: 1.5;
  letter-spacing: 0.12em;
}
@media print, screen and (max-width: 768px) {
  .blog__title {
    padding-top: 1.3020833333vw;
    font-size: 14px;
    line-height: 1.4117647059;
  }
}
.blog__date {
  display: block;
  font-size: min(1.09375vw, 14px);
  line-height: 1.75;
  color: #757575;
}
@media print, screen and (max-width: 768px) {
  .blog__date {
    padding-top: 1.3020833333vw;
    font-size: 2.0833333333vw;
    line-height: 1.53125;
  }
}

.access {
  margin-bottom: min(5.078125vw, 65px);
}
@media print, screen and (max-width: 768px) {
  .access {
    margin-bottom: 8.4635416667vw;
  }
}
.access__map {
  width: 100%;
  height: min(31.25vw, 400px);
  margin-bottom: min(5.46875vw, 70px);
}
@media print, screen and (max-width: 768px) {
  .access__map {
    height: 65.1041666667vw;
    margin-bottom: 7.8125vw;
  }
}
.access__parking {
  width: min(58.59375vw, 750px);
  margin: 0 auto;
  gap: min(2.34375vw, 30px);
}
@media print, screen and (max-width: 768px) {
  .access__parking {
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    gap: 3.90625vw;
  }
}
.access__img {
  width: min(27.34375vw, 350px);
}
@media print, screen and (max-width: 768px) {
  .access__img {
    width: 100%;
  }
}
.access__desc {
  width: min(28.90625vw, 370px);
}
@media print, screen and (max-width: 768px) {
  .access__desc {
    width: 100%;
  }
}
.access__txt {
  font-size: min(1.25vw, 16px);
  line-height: 1.5384615385;
  letter-spacing: 0.09em;
}
@media print, screen and (max-width: 768px) {
  .access__txt {
    font-size: 14px;
    line-height: 1.7647058824;
  }
}

.access__info {
  margin-top: min(8.46875vw, 100px);
  margin-bottom: min(0.78125vw, 10px);
}
@media print, screen and (max-width: 768px) {
  .access__info {
    margin-top: 10.4166666667vw;
    margin-bottom: 1.3020833333vw;
  }
}
.access__info .logo {
  width: min(21.875vw, 280px);
}
@media print, screen and (max-width: 768px) {
  .access__info .logo {
    width: 52.0833333333vw;
  }
}
.access__info .ac-info {
  font-size: min(1.09375vw, 14px);
  line-height: 1.5714285714;
}
@media print, screen and (max-width: 768px) {
  .access__info .ac-info {
    font-size: 14px;
    line-height: 1.7647058824;
  }
}
.access__info .tel {
  font-size: min(3.28125vw, 42px);
  line-height: 1.8571428571;
  font-family: "Times New Roman", Times, serif;
  color: #588E45;
}
@media print, screen and (max-width: 768px) {
  .access__info .tel {
    font-size: 5.5989583333vw;
    line-height: 1.8139534884;
  }
}

.access__links {
  position: relative;
      height: 60px;
}
.access__links .access__btn {
  gap: min(2.34375vw, 30px);
}
@media print, screen and (max-width: 768px) {
  .access__links .access__btn {
    gap: 3.90625vw;
    flex-direction: column;
    align-items: center;
  }
}
.access__links .access__sns {
  position: absolute;
  gap: min(2.34375vw, 30px);
  right: min(6.25vw, 80px);
}
@media print, screen and (max-width: 768px) {
  .access__links .access__sns {
    gap: 3.90625vw;
    position: static;
    top: initial;
    right: initial;
    transform: none;
    justify-content: flex-end;
    margin-top: 2.6041666667vw;
    margin-right: 11.71875vw;
    
  }
}
.access__links .access__sns .sns-icon {
  width: min(2.578125vw, 33px);
}
@media print, screen and (max-width: 768px) {
  .access__links .access__sns .sns-icon {
    width: 5.2083333333vw;
  }
}
/*** 固定ページ用 ***/
.pageTmp h1 {
    padding: 2em;
    background: #eceee5;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.23);
    text-align: center;
	font-weight: 500;
    font-size: 25px;
}
.pageTmp .entry-header {
	margin: 20px auto 40px;
}

.pageTmp .entry-content p {
	width: 90%;
	max-width:850px;
	margin: 10px auto;
	padding-bottom: 1.2rem;
}

.pageTmp .entry-content h2 {
	width: 90%;
	max-width:850px;
	margin: 10px auto;
	font-size: 18px;
	font-weight: 500;
	padding-bottom: 1.5em;
}
@media print, screen and (max-width: 768px) {
	.pageTmp .entry-content h2 {
		font-size: 14px;
	}
	.pageTmp .entry-content p {
	    font-size: 12px;
	}
}

footer {
    background-color: #1a1a1a;
}

footer .copy{
	text-align: center;
	color: #FFF;
}
.top-btn {
    position: fixed;
    z-index: 98;
    bottom: min(7.03125vw, 90px);
    right: min(1.5625vw, 20px);
    border: 2px solid #588E45;
    background-color: #FFF;
    border-radius: 50%;
    width: min(5.859375vw, 75px);
    height: min(5.859375vw, 75px);
    margin-bottom: 80px;
}
.top-btn img {
    width: min(1.4583333333vw, 21px);
}
@media print, screen and (max-width: 768px){
	.top-btn {
	    bottom: 11.71875vw;
	    right: 3.90625vw;
	    width: 9.765625vw;
	    height: 9.765625vw;
	}
	.top-btn img {
	    width: 4vw;
	}
}
@media print, screen and (max-width: 600px){
	.top-btn {
	    bottom: 11.71875vw;
	    right: 3.90625vw;
	    width: 9.765625vw;
	    height: 9.765625vw;
	    margin-bottom: 50px;
	}
	.top-btn img {
	    width: 4vw;
	}
}

/******************************/
/** コンタクトフォームの装飾 **/
/******************************/
/*　フォーム全体　*/
#cf7-area {
width:100%;
margin: 0 auto;
        font-size: 1rem;
}

.cf7-item {
display: flex;
align-items: flex-start;
justify-content: flex-start;
margin: 0 0 1.75em;
}

.cf7-q {
width: 30%;
margin: 0 0 0 10px;
}

.cf7-a {
width: 60%;
}

/*　見出し　*/
.form-heading
{
width: 100%;
background-color: #588e45;
border-left: 1em solid #81c569;
border-radius: 2px;
color: #ffffff;
font-weight: bold;
padding: 1em .8em;
margin: 0 0 2em;
}

.form-heading p {
margin: 0;
}

/* 各項目共通 */
#cf7-area label{
font-weight:bold;
}

#cf7-area input[type="text"],#cf7-area input[type="email"],#cf7-area input[type="tel"],#cf7-area textarea {
background: #fff;
max-width:500px;
width: 100%;
margin-left:10px;
padding: 10px;
border: 1px solid #c8c8c8;
}

#cf7-area input[type="text"]:focus,#cf7-area input[type="email"]:focus,#cf7-area input[type="tel"]:focus,#cf7-area textarea:focus {
background: #fff;
border: 1px solid #FF1493;
outline: 0;
}

#cf7-area input[type="checkbox"], #cf7-area input[type="radio"]{
appearance: auto;
}

#cf7-area .wpcf7-list-item {
display: block;
}

#cf7-area textarea{
height:200px;
padding: 0.625em 0.4375em;
}

.cf7-accept-check{
text-align: center;
margin: 50px auto;
}

.cf7-submit {
width: 40%;
margin: 0 auto;
text-align: center;
}

#cf7-area input[type="submit"]
{
width: 100%;
background-color: #305921;
color: #ffffff;
border-radius: 5px;
font-size: 1.2em;
padding: 1em 10px;
}

#cf7-area input[type="submit"]:hover
{
background-color:#ffffff;
border: 2px solid #305921;
color:#305921;
}

.cf7-btn{
width: 40%;
margin: 0 auto;
text-align: center;
}

/*　必須ラベル　*/
.cf7-req{
font-size:.8em;
padding: 4px 6px;
background: #eb2a2a;
color: #ffffff;
margin-left: 10px;
display:inline-block;
}

@media screen and (max-width:768px){
.cf7-item {
display: block;
}

#cf7-area label{
display: block;
margin-bottom: 10px;
}

.cf7-q {
width: 100%;
margin: 0;
}

.cf7-a {
width: 100%;
}

#cf7-area input[type="text"], #cf7-area input[type="email"], #cf7-area input[type="tel"], #cf7-area textarea{
margin-left: 0;
}

.cf7-submit{
width: 90%;
}
}
.blog__title {
    font-size:16px;
    line-height: 1.5;
    letter-spacing: 0.12em;
}
@media print, screen and (max-width: 768px) {
    .blog__title {
        padding-top: 1.3020833333vw;
        font-size: 12px;
        line-height: 1.4117647059;
    }
}
/**********************************
****** お問合せフォーム
***********************************/
.smf-form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
@media screen and (max-width: 768px) {
  .smf-form {
    margin-top: 40px;
  }
}
.wp-block-snow-monkey-forms-item {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .wp-block-snow-monkey-forms-item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
  }
}
.wp-block-snow-monkey-forms-item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}
.smf-item__label__text {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .smf-item__label__text {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
.pageTmp .entry-content p.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 768px) {
  .pageTmp .entry-content p.Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.smf-item__description {
  border-radius: 4px;
  margin-right: 4px;
  padding-top: 4px;
  padding-bottom: 4px;
  width: 40px;
  display: inline-block;
  text-align: center;
  background: #588E45;
  color: #fff;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .smf-item__description {
    border-radius: 2px;
    padding-top: 2px;
    padding-bottom: 2px;
    width: 32px;
    font-size: 8px;
  }
}
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 0px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
.Form-Item-Input2 {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 28%;
  max-width: 80px;
  background: #eaedf2;
  font-size: 18px;
}
.Form-Item-Input2:nth-child(n+2) {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 5px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 28%;
  max-width: 80px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .Form-Item-Input2 {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}

.mwform-checkbox-field label, .mwform-radio-field label {
    margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .mwform-checkbox-field label, .mwform-radio-field label {
    margin-left: 0;
  }
}
.mwform-radio-field-text {
  cursor: pointer;
  padding-left: 30px;
  position: relative;
}

.mwform-radio-field-text::before,
.mwform-radio-field-text::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

.mwform-radio-field-text::before {
  background-color: #fff;
  border: 1px solid #008000;
  height: 20px;
  width: 20px;
  left: 5px;
}

.mwform-radio-field-text::after {
  background-color: #008000;
  opacity: 0;
  height: 16px;
  width: 16px;
  left: 8px;
}
input.Form-Item-Inputradio{
	display: none;
}
input.Form-Item-Inputradio:checked + .mwform-radio-field-text::after {
  opacity: 1;
}




@media screen and (max-width: 768px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 0px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 0px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #5bc8ac;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}
.smf-form--simple-table .smf-item__col--label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
@media screen and (max-width: 768px) {
	.smf-item__col.smf-item__col--controls {
		width:100%;
	}
	.smf-form--simple-table .smf-item__col--label {
	    padding-bottom: 10px;
	}
	.smf-radio-button-control__label {
	    font-size: 0.75rem;
	}
}
.mv__txt {
    font-size: 16px;
    line-height: 3.6;
}
.sec-title {
    font-size: 19px;
}
.desc__p {
    font-size: 16px;
}
.series__h3_title {
    font-size: 19px;
}
.teaTitle {
    font-size: 16px;
}
.teaLists a {
    font-size: 16px;
}
li.blog__item {
	width:31%;
}
li.blog__item .blog__img{
	margin: 0 auto;
}
li.blog__item img {
	aspect-ratio: 4 / 3;
    object-fit: cover;
}
.modal__txt p{
    font-size: 16px;
}
.slide__txt {
    font-size: 15px;
    margin-top:25px;
}
.modal__title {
    font-size: 19px;
}

@media print, screen and (max-width: 768px) {
    .mv__txt {
        font-size: 10px;
        line-height: 2.2;
    }
	.desc__p {
	    font-size: 14px;
	}
	.modal__txt p{
	    font-size: 14px;
	}
	.slide__txt {
	    font-size: 14px;
	}
	.sec-title {
	    font-size: 16px;
	}
	.desc__p {
	    font-size: 14px;
	}
	.series__h3_title {
	    font-size: 16px;
	}
	.modal__title {
	    font-size: 16px;
	}
	.slide__txt {
	    font-size: 14px;
	    margin-top:20px;
	}


}


/* ▽ ページ全体の調整 ▽ */

body.single-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
  line-height: 1.75;
  color: #333;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

/* ▽ タイトル見出し ▽ */

.single-post .entry-header h1 {
  font-size: 2rem;
  margin-bottom: 0.75em;
  line-height: 1.3;
  color: #222;
}

/* ▽ 公開日時やカテゴリの装飾 ▽ */

.single-post .entry-meta {
  font-size: 0.9rem;
  color: #777;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* ▽ 本文内の段落・見出し ▽ */

.single-post .entry-content p {
  margin-bottom: 1.5em;
  font-size: 1rem;
}

.single-post .entry-content h2,
.single-post .entry-content h3 {
  color: #111;
  margin-top: 2em;
  margin-bottom: 0.75em;
  font-weight: bold;
}

.single-post .entry-content h2 {
  border-left: 4px solid #b35f30;
  padding-left: 10px;
  font-size: 1.5rem;
}

.single-post .entry-content h3 {
  font-size: 1.25rem;
}

/* ▽ リストスタイル ▽ */

.single-post .entry-content ul,
.single-post .entry-content ol {
  margin: 1em 0 1.5em 1.5em;
  font-size: 1rem;
  color: #444;
}

/* ▽ 画像サイズの最大幅制限と余白 ▽ */

.single-post .entry-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 4px;
}

/* ▽ テーブル調整 ▽ */

.single-post .entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.single-post .entry-content th,
.single-post .entry-content td {
  border: 1px solid #ddd;
  padding: 8px;
}

.single-post .entry-content th {
  background-color: #f9f9f9;
  text-align: left;
}

/* ▽ リンク・ボタンのスタイル ▽ */

.single-post .entry-content a {
  color: #b35f30;
  text-decoration: underline;
}

.single-post .entry-content a:hover {
  color: #8a471d;
}

/* ▽ 引用ブロック ▽ */

.single-post .entry-content blockquote {
  border-left: 4px solid #ccc;
  margin: 1.5em 0;
  padding-left: 1em;
  color: #555;
  font-style: italic;
  background-color: #f7f7f7;
}

/* ▽ コードブロック ▽ */

.single-post .entry-content pre,
.single-post .entry-content code {
  font-family: "Courier New", Courier, monospace;
  background-color: #f4f4f4;
  padding: 4px 6px;
  border-radius: 3px;
}

/* ▽ モバイル対応 ▽ */

@media screen and (max-width: 600px) {
  body.single-post {
    padding: 15px;
  }

  .single-post .entry-header h1 {
    font-size: 1.75rem;
  }

  .single-post .entry-content h2 {
    font-size: 1.25rem;
  }
}
.cp_card04 {
	overflow: hidden;
	border-radius: 3px;
	margin-top: 0;
	margin-bottom: 2rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	background-color: #fff;
	-webkit-box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
	        box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
					transition: all 0.25s ease-in;
				  border-bottom: 5px solid transparent;
}
.cp_card04 .photo {
	overflow: hidden;
	aspect-ratio: 4/3;
	width: 100%;
}
.cp_card04:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  border: none;
  border-bottom: 5px solid #588E45;
}
.cp_card04 .details {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 1em 1em 0 1em;
	font-size: 0.8em;
}
.cp_card04 .date {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	text-align: right;
}
.cp_card04 .category {
	-webkit-box-flex: 2;
	    -ms-flex: 2;
	        flex: 2;
}
.cp_card04 .category p {
	font-size: 0.8em;
	padding: 3px 8px;
	cursor: pointer;
	width: 8em;
	margin: 0;
	border-radius: 10px;
	background: #588E45;
	text-align: center;
	color: #ffffff;
}
.cp_card04 .description {
	padding: 0 1em;
}
.cp_card04 .description h1 {
	font-size: 1.4em;
	margin: 0;
	margin-bottom: 0.5em;
}
.cp_card04 .description h3 {
	font-size: 16px;
	margin: 0;
	margin-bottom: 0.7em;
}

.cp_card04 .description .text p {
	margin: 0;
}
.cp_card04 .description a {
	float: right;
	margin-bottom: 10px;
	text-decoration: none;
	color: #588E45;
}
.cp_card04 .description a:after {
	font-family: FontAwesome;
	margin-left: -10px;
	content: '\f061';
	-webkit-transition: all 0.3s ease;
	        transition: all 0.3s ease;
	vertical-align: middle;
	opacity: 0;
}
.cp_card04 .description a:hover:after {
	margin-left: 5px;
	opacity: 1;
}
@media print, screen and (max-width: 768px) {
	li.blog__item {
    	width: 100%;
	}
}
.pageTmp h2.pagetitle {
    padding: 1.8em;
    background: #eceee5;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.23);
    text-align: center;
    font-weight: 500;
    font-size: 25px;
}
@media print, screen and (max-width: 768px) {
	.pageTmp h2.pagetitle {
	    padding: 1.2em;
	    background: #eceee5;
	    box-shadow: 0 0 4px rgba(0, 0, 0, 0.23);
	    text-align: left;
	    font-weight: 500;
	    font-size: 20px;
	}
}
.c-date {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8em;
    font-family: 'Arial';
    font-size: 16px;
    color: #999999;
    line-height: 1;
    padding-top: 1.0em;
}
.c-date-item {
    display: grid;
    align-items: center;
    grid-template-columns: auto auto;
    gap: 0.3em;
}
.next-prev {
    border-top: 1px solid var(--vk-color-border-hr);
    border-bottom: 1px solid var(--vk-color-border-hr);
}

.next-prev .media {
    border-radius: 0;
    transition: all .5s ease;
}
.next-prev .media:hover {
    background-color: var(--vk-color-bg-accent);
}

.next-prev .vk_post_imgOuter_singleTermLabel {
    /* 「前の記事」「次の記事」を非表示 */
    display: none;
}

.next-prev .vk_post.media {
    display: flex;
    flex-direction: row;
    border-bottom: none;
    align-items: center;
}
.next-prev .vk_post.media.next-prev-next {
    flex-direction: row-reverse;
}

.next-prev .vk_post .media-img {
    border: none;
    aspect-ratio: 1/1;
    width: min(25%,100px);
    border-radius: 50%;
    transition: transform .5s ease;
    padding: 0;
    margin-right: 1.4rem;
    position: relative;
    border: 1px solid #bebebe;
}
.next-prev-next .media-img {
    margin-left: 1rem;
    margin-right: 0;
}
@media (min-width: 576px) {
  .next-prev-next .media-img {
    margin-left: 1.4rem;
    margin-right: 0 !important;
  }
}
.next-prev .vk_post .media-body {
    display: flex;
    width: 80%;
}
.next-prev .next-prev-next.vk_post .media-body {
    justify-content: flex-end;
}
.next-prev .vk_post:hover .media-img {
    transform: scale(1.05);
}

/* Font Awesome アイコン */
.next-prev .vk_post .media-img::after {
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    position: absolute;
    font-size: 2.5rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255,255,255,0.65);
    transition: all .5s ease;
}
.next-prev-prev.vk_post .media-img::after {
    content: "\f104";
}
.next-prev-next.vk_post .media-img::after {
    content: "\f105";
}
@media print, screen and (max-width: 578px) {

	.next-prev .vk_post .media-img {
	    width: 35px;
        margin-right: 3px;
        margin-left: 3px;
	}
	.next-prev .vk_post .media-img::after {
	    font-size: 1.2rem;
	}
}

/* 黒透過のオーバーレイ */
.next-prev .media .vk_post_imgOuter:before {
    padding-top: 100%;
    background-color: rgba(0,0,0,0.15);
}

/* リンクエリアを拡げる */
.next-prev .media {
    position: relative;
}
.next-prev .media.vk_post .media-body .vk_post_title a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.vk_posts {
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    flex-wrap: wrap;
    clear: both;
}
.next-prev {
    content-visibility: auto;
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    flex-wrap: nowrap;
    clear: both;
    border-top: 1px solid var(--vk-color-border-hr);
    border-bottom: 1px solid var(--vk-color-border-hr);
}

.next-prev .vk_post.media {
    display: flex;
    flex-direction: row;
    border-bottom: none;
    align-items: center;
        max-width: 50%;
}
.vk_post.media {
    display: flex;
    padding: 1em 0;
    margin: 0 15px;
    border-bottom: 1px solid var(--vk-color-border-hr, #e5e5e5);
}
.vk_posts .vk_post-col-xs-12 {
    width: calc(100% - 30px);
}
.next-prev .media {
    position: relative;
    border-radius: 0;
    transition: all .5s ease;
}
@media (min-width: 576px) {
    .entry-body>.vk_posts>.media.vk_post-col-sm-12, .main-section>.vk_posts>.media.vk_post-col-sm-12 {
        padding: 1.5rem 0;
    }
}
@media (min-width: 576px) {
    .entry-body>.vk_posts>.media.vk_post-col-sm-12:first-child, .main-section>.vk_posts>.media.vk_post-col-sm-12:first-child {
        border-top: 1px solid var(--vk-color-border-hr);
    }
}
@media (min-width: 768px) {
    .vk_posts .vk_post-col-md-6 {
        width: calc(50% - 30px);
    }
}
@media (min-width: 576px) {
    .vk_posts .vk_post-col-sm-12 {
        width: calc(100% - 30px);
    }
}
.next-prev .media .vk_post_imgOuter:before {
    padding-top: 100%;
    background-color: rgba(0, 0, 0, 0.15);
}
@media (min-width: 576px) {
    .entry-body>.vk_posts>.media.vk_post-col-sm-12 .media-img, .main-section>.vk_posts>.media.vk_post-col-sm-12 .media-img {
        margin-right: 1.4rem;
    }
}
.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
    border-radius: calc(.25rem - 1px);
}
.next-prev-prev .vk_post_imgOuter_singleTermLabel {
    left: 0;
    right: auto;
}
.vk_post_imgOuter_img {
    position: absolute;
    left: -9999px;
}
.vk_post_imgOuter>a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0);
    transition-duration: .3s;
}
.next-prev .vk_post .media-body {
    display: flex;
    width: 80%;
}
.vk_post .vk_post_title {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 0;
}
@media (min-width: 576px) {
    .entry-body>.vk_posts>.vk_post-col-sm-12 .vk_post_title, .main-section>.vk_posts>.vk_post-col-sm-12 .vk_post_title
 {
        font-size: 16px;
    }
}
.next-prev .vk_post.media.next-prev-next {
    flex-direction: row-reverse;
}
.next-prev .next-prev-next.vk_post .media-body {
    justify-content: flex-end;
}

/* Display Posts ショートコードの全体を囲むコンテナ */
.display-posts-listing {
    display: grid; /* グリッドレイアウトを適用 */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* レスポンシブな2列または3列表示 */
    gap: 30px; /* グリッドアイテム間の間隔 */
    padding: 20px 0;
}

/* 各投稿アイテム */
.display-posts-listing .listing-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px; /* 角を丸くする */
    overflow: hidden; /* 画像がはみ出さないように */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* 影をつけて立体感を出す */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* ホバー時のアニメーション */
    position: relative; /* no-imageクラスの擬似要素の基準に */
}

.display-posts-listing .listing-item:hover {
    transform: translateY(-5px); /* 少し上に移動 */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); /* 影を濃くする */
}

/* アイキャッチ画像 */
.display-posts-listing .listing-item .wp-post-image {
    width: 100%;
    /* ここを修正：高さを幅と同じにするために padding-top を利用 */
    /*height: 0;  height を 0 にして padding-top で高さを制御 */
    /*padding-top: 100%;  幅に対する100%の高さで正方形にする */
    object-fit: cover; /* 画像がはみ出さないようにトリミング */
    border-bottom: 1px solid #eee;
    aspect-ratio: 1 / 1;
    height: auto;
}

/* 画像がない場合のスタイル */
.display-posts-listing .listing-item.no-image .wp-post-image {
    display: none; /* または opacity: 0; */
}

.display-posts-listing .listing-item.no-image {
    min-height: 250px; /* 画像の高さを考慮した最低高 */
    display: flex; /* タイトルなどを中央に寄せるため */
    flex-direction: column;
    justify-content: space-between;
}

.display-posts-listing .listing-item.no-image::before {
    content: ''; /* 擬似要素にはcontentが必要 */
    display: block;
    width: 100%;
    /* ここを修正：高さを幅と同じにするために padding-top を利用 */
    height: auto; /* height を 0 にして padding-top で高さを制御 */
    background-image: url('https://kubotaen.jp/wp/wp-content/themes/goos_tp/assetes/image/top/noimage.jpg'); /* 代替画像のパス */
    background-size: cover; /* 画像をカバー表示 */
    background-position: center; /* 中央に配置 */
    background-repeat: no-repeat;
    border-bottom: 1px solid #eee;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

/* 投稿タイトル */
.display-posts-listing .listing-item a.image {
    display: block;
}

.display-posts-listing .listing-item .title {
    font-size: 1.25em;
    font-weight: bold;
    margin: 15px 15px 10px;
    line-height: 1.4;
    display: block;
}

.display-posts-listing .listing-item .title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.display-posts-listing .listing-item .title a:hover {
    color: #0073aa; /* ホバー時の色 */
}

/* ページネーションのスタイル */
.display-posts-pagination {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 20px;
}

.display-posts-pagination a,
.display-posts-pagination span.current {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: #0073aa;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.display-posts-pagination a:hover {
    background-color: #e6f7ff;
    border-color: #0073aa;
}

.display-posts-pagination span.current {
    background-color: #0073aa;
    color: #fff;
    border-color: #0073aa;
    font-weight: bold;
}

.textlink a {
	position: relative;
	color: #333;
	text-decoration: none;
}
.textlink a:hover {
	color: #588E45;
}
.textlink07 a {
	padding-right: 50px;
}

.textlink07 a::before {
	content: '';
	position: absolute;
	top: calc(50% - 4px);
	right: 0;
	transform: rotate(30deg);
	width: 12px;
	height: 1px;
	background-color: #333;
}

.textlink07 a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 40px;
	height: 1px;
	background-color: #333;
}

.textlink07 a:hover::before {
	background-color: #588E45;
}

.textlink07 a:hover::after {
	background-color: #588E45;
}
.blog__list {
	margin-bottom: 0px;
}
.textlink {
    text-align: right;
    margin-bottom: min(7.8125vw, 100px);
}

#template-single a {
    color: #588e45;
    text-decoration: underline;
}
/*# sourceMappingURL=style.css.map */
