@charset "UTF-8";
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	変数設定

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
*/
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
/* color */
/* font */
/* trans */
/* margin */
/* box */
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	common
	common　header、nav、footer、main、parts
	一覧ページ【archive】
	記事ページ【single】
	404【404】


//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
html {
  font-size: 16px;
  line-height: 3;
  text-align: center;
  color: #363636;
  background: #fff;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

html * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
}

body {
  position: relative;
  margin: 0 auto;
  padding: 0;
  word-wrap: normal;
  width: 100%;
  overflow: hidden;
}

main,
section,
article {
  overflow: hidden;
}

sup {
  font-size: 0.7rem;
  vertical-align: top;
  position: relative;
  top: -0.1em;
}

a {
  text-decoration: none;
  color: #363636;
  transition: 0.35s cubic-bezier(0.2, 0.9, 0.7, 1);
}
a:visited {
  text-decoration: none;
  color: #363636;
}
a:hover {
  text-decoration: none;
  color: #76bbc9;
  cursor: pointer;
}

a[href^="tel:"] {
  pointer-events: none;
  color: #363636;
  cursor: default;
}

.overflow_hidden {
  overflow: hidden;
}

.clear {
  clear: both;
}

.spBr {
  display: none;
}

.spNoBr {
  display: block;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.column_l {
  float: left;
}

.column_r {
  float: right;
}

.caution_list {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #666;
}
.caution_list li {
  position: relative;
  padding-left: 1rem;
}
.caution_list li::before {
  position: absolute;
  content: "※";
  left: 0;
}

.decimal_list {
  list-style-type: decimal;
  padding-left: 1rem;
}

.dot_list li {
  position: relative;
  padding-left: 1.5rem;
}
.dot_list li::before {
  position: absolute;
  content: "";
  top: 0.7rem;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #6C6C6C;
  text-indent: -1.5rem;
}

.decimal {
  text-indent: -1rem;
  padding-left: 1rem;
}

.caution {
  font-size: 0.8rem;
  color: #666;
}

.container {
  width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.container_l {
  width: 1100px;
  margin: 0 auto;
}

.w100 {
  width: 100%;
}

/* img_box */
.img_box {
  overflow: hidden;
}
.img_box img {
  width: 100%;
  transition: 0.35s cubic-bezier(0.2, 0.9, 0.7, 1);
}

/*--------------------------------------------------------------
	header
--------------------------------------------------------------*/
header {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 180px;
  padding: 50px 80px;
  line-height: 1;
  z-index: 10000000;
  display: flex;
  justify-content: space-between;
}
header h1 {
  margin-top: 20px;
}
header #globalNavBlock #globalButList {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
header #globalNavBlock #globalButList li a {
  display: block;
  width: 160px;
  padding: 10px;
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  white-space: nowrap;
}
header #globalNavBlock #globalButList li:nth-child(1) a {
  background: #f0f1e7;
}
header #globalNavBlock #globalButList li:nth-child(2) a {
  background: #997f47;
  color: #fff;
}
header #globalNavBlock #globalButList li:nth-child(2) a:hover {
  background: #f0f1e7;
  color: #997f47;
}
header #globalNavBlock #globalNav ul {
  display: flex;
  gap: 30px 10px;
}
header #globalNavBlock #globalNav ul li a {
  display: block;
  padding: 20px 10px;
  font-weight: 500;
  white-space: nowrap;
}
header #spMenuBut {
  display: none;
}

header::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  opacity: 0.4;
  background-image: linear-gradient(#07a9ed, transparent);
  mix-blend-mode: multiply;
}

header {
  transition: 0.1s cubic-bezier(0.2, 0.9, 0.7, 1);
}

header.up {
  background-color: rgba(255, 255, 255, 0.9);
}

/*--------------------------------------------------------------
	footer
--------------------------------------------------------------*/
footer {
  width: 100vw;
  padding: 160px 0 60px;
  margin-top: 180px;
  background: url(../img/common/footer_bg.png) no-repeat top center;
  background-size: cover;
  line-height: 1;
}
footer .container {
  display: flex;
  justify-content: space-between;
}
footer .container #footerNavBlock {
  text-align: center;
}
footer .container #footerNavBlock #footerButList {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-bottom: 50px;
}
footer .container #footerNavBlock #footerButList li a {
  display: block;
  width: 160px;
  padding: 10px;
  background: #76bbc9;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  white-space: nowrap;
}
footer .container #footerNavBlock #footerButList li a:hover {
  background: #fff;
  color: #76bbc9;
}
footer .container #footerNavBlock #footerMainlNav ul,
footer .container #footerNavBlock #footerlSubNav ul {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
footer .container #footerNavBlock #footerMainlNav ul li a,
footer .container #footerNavBlock #footerlSubNav ul li a {
  display: block;
  padding: 10px;
  font-weight: 500;
}
footer #copyright {
  font-size: 10px;
  margin-top: 60px;
}

/*--------------------------------------------------------------
	main
--------------------------------------------------------------*/
#mainBlock {
  text-align: left;
}

/*--------------------------------------------------------------
	parts
--------------------------------------------------------------*/
/*-------------------- title --------------------*/
#pageTitleBlock {
  position: relative;
  padding-top: 350px;
  text-align: left;
  line-height: 1;
  margin-bottom: 120px;
  background-repeat: no-repeat;
  background-position: top 100px left calc(50% - 350px);
}
#pageTitleBlock .page_title_box {
  position: relative;
}
#pageTitleBlock .page_title_box section {
  position: relative;
  padding-bottom: 250px;
  z-index: 11;
}
#pageTitleBlock .page_title_box section h2 {
  font-size: 4.375rem;
  font-weight: 300;
  font-family: "Jost", sans-serif;
  margin-bottom: 10px;
}
#pageTitleBlock .page_title_box section h3 {
  font-size: 1.125rem;
}
#pageTitleBlock .page_title_box figure {
  position: absolute;
  top: 20px;
  left: 360px;
  z-index: 10;
}
#pageTitleBlock #title_02 {
  position: absolute;
  top: 240px;
  right: 0px;
  z-index: -1;
}

.headline {
  font-size: 1.875rem;
  font-family: "Noto Serif JP", serif;
}

/*-------------------- breadcrumb --------------------*/
/*-------------------- anchor_nav --------------------*/
/*-------------------- leadBlock --------------------*/
#pageLeadageBg {
  position: absolute;
  top: 600px;
  left: calc(50% + 100px);
  z-index: -1;
}

#leadBlock {
  display: flex;
  gap: 2%;
  justify-content: space-between;
  margin-bottom: 120px;
}
#leadBlock h3 {
  width: 49%;
}
#leadBlock p {
  width: 49%;
}

.catchcopy span {
  font-size: 1.56rem;
  line-height: 2;
  font-family: "Noto Serif JP", serif;
  letter-spacing: -0.05rem;
  display: inline;
  padding: 0 4px 4px 4px;
  background: linear-gradient(transparent 70%, #f3dcc5 0%);
}

/*-------------------- button --------------------*/
.but_more a {
  display: block;
  font-size: 1.56rem;
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
  width: 240px;
  border: 2px solid #363636;
}
.but_more a:hover {
  color: #76bbc9;
  border-color: #76bbc9;
}

/*-------------------- box --------------------*/
.but_back {
  text-align: center;
}
.but_back a {
  color: #fff;
  background: #76bbc9;
  border: 1px solid #76bbc9;
  padding: 10px 30px;
  line-height: 1;
}
.but_back a:hover {
  color: #76bbc9;
  background: #fff;
}

/*-------------------- table --------------------*/
/*-------------------- list --------------------*/
/* archive_list */
.archive_list {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
.archive_list li a {
  position: relative;
  display: block;
  text-align: left;
}

.archive_list.blog {
  gap: 0px;
}
.archive_list.blog li {
  border-bottom: 1px solid #c9c9c9;
  margin: 0;
  padding-bottom: 10px;
  width: 100%;
}
.archive_list.blog li a {
  display: flex;
}
.archive_list.blog li a time {
  width: 160px;
  font-weight: 600;
}
.archive_list.blog li a h3 {
  width: calc(100% - 160px);
}
.archive_list.blog li:not(:first-child) {
  margin-top: 40px;
}

.blog_list > li a {
  display: flex;
  gap: 100px;
}
.blog_list > li a figure {
  width: 340px;
}
.blog_list > li a .data_box {
  width: 560px;
}
.blog_list > li a .data_box .cat_list,
.blog_list > li a .data_box h3,
.blog_list > li a .data_box time {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 2;
}
.blog_list > li a .data_box .cat_list {
  display: flex;
}
.blog_list > li a .data_box h3 {
  border-bottom: 1px solid #c9c9c9;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.blog_list > li a .data_box p {
  margin-top: -10px;
}
.blog_list > li:not(:last-child) {
  margin-bottom: 60px;
}

.gallery_list {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
.gallery_list li {
  width: calc((100% - 100px) / 3);
}

.review_list {
  display: flex;
  gap: 70px;
  flex-wrap: wrap;
  padding-bottom: 20px;
}
.review_list li {
  position: relative;
  width: calc((100% - 70px) / 2);
  padding: 50px;
  background: #fff;
  border: 1px solid #f0cece;
  border-radius: 10px 60px 10px 10px;
}
.review_list li .data_box {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 40px;
}
.review_list li .data_box figure {
  width: 148px;
}
.review_list li .data_box section * {
  font-weight: 600;
  line-height: 1;
}
.review_list li .data_box section h3 {
  margin-bottom: 20px;
}
.review_list li .data_box section .evaluation {
  vertical-align: baseline;
}
.review_list li .data_box section .evaluation span {
  margin-left: 10px;
}
.review_list li .data_box section .evaluation span img {
  width: 18px;
  margin-right: 3px;
}
.review_list li .review_text {
  line-height: 1.6;
}
.review_list li:before {
  position: absolute;
  content: "";
  top: 45px;
  right: -20px;
  width: 75%;
  height: calc(100% - 25px);
  background: #faf5ed;
  border-radius: 10px;
  z-index: -1;
}

/*-------------------- text --------------------*/
/*-------------------- Gutenberg --------------------*/
/* iframe */
.post_text_block {
  margin-bottom: 120px;
}

.post_text_block .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.post_text_block .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*-------------------- transform --------------------*/
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	一覧ページ 【archive】

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*--------------------------------------------------------------
	pagination
--------------------------------------------------------------*/
/* <  > */
.pagination_prev_next_arrow {
  display: flex;
  gap: 50px;
  justify-content: center;
  justify-items: center;
}
.pagination_prev_next_arrow * {
  color: #997f47 !important;
}
.pagination_prev_next_arrow a:hover {
  color: #76bbc9 !important;
}
.pagination_prev_next_arrow a.prev { /*padding:10px 0 0 30px; opacity:0.5;*/ }
.pagination_prev_next_arrow a.archive { /*display:inline-block; padding:10px; border-bottom:1px solid $key_color; margin:0 auto;*/ }

/* 1234 */
.pagination {
  display: flex;
  justify-content: center;
  justify-items: center;
  margin-top: 120px;
}
.pagination * {
  line-height: 40px;
  font-family: "Jost", sans-serif;
  text-align: center;
  color: #997f47;
}
.pagination ul {
  display: flex;
  gap: 30px;
  justify-content: center;
  justify-items: center;
  margin: 0 40px;
}
.pagination ul li {
  width: 40px;
}
.pagination ul li a {
  display: block;
  color: #997f47;
}
.pagination ul li a.prev,
.pagination ul li a.next {
  color: #997f47;
}
.pagination ul li a:hover {
  color: #76bbc9;
}
.pagination ul li:last-child {
  margin-right: 0;
}
.pagination ul li.active {
  color: #fff;
  background: #997f47;
  border-radius: 100%;
}
.pagination #prevNo,
.pagination #nextNo { /*width:calc(5rem + 30px); height:1px;*/ }
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	 404 【404】

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
#notfoundBlock {
  margin: 240px auto 0;
}
#notfoundBlock h2,
#notfoundBlock p {
  text-align: center;
  font-weight: 800;
  color: #666;
}
#notfoundBlock h2 {
  font-size: 5rem;
  line-height: 1;
}
#notfoundBlock p {
  margin-bottom: 60px;
}

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

  	common　

  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
  html {
    font-size: 14px;
    line-height: 1.6;
  }
  a[href^="tel:"] {
    pointer-events: auto;
  }
  .spBr {
    display: block;
  }
  .spNoBr {
    display: none;
  }
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .column_l {
    float: none;
  }
  .column_r {
    float: none;
  }
  .container,
  .container_1 {
    width: 90%;
    margin: 0 auto;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  /*--------------------------------------------------------------
  	header
  --------------------------------------------------------------*/
  header {
    height: 60px;
    padding: 0px;
    display: block;
  }
  header h1 {
    margin: 16px 10px;
    text-align: left;
  }
  header h1 img {
    width: 80px !important;
  }
  header #globalNavBlock {
    position: fixed;
    top: 60px;
    left: 0;
    padding: 30px 5% 100px;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: -1;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transition: 0.35s cubic-bezier(0.2, 0.9, 0.7, 1);
  }
  header #globalNavBlock #globalButList {
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  header #globalNavBlock #globalButList li {
    width: calc((100% - 20px) / 2);
    text-align: center;
  }
  header #globalNavBlock #globalButList li a {
    display: block;
  }
  header #globalNavBlock #globalNav ul {
    display: block;
  }
  header #globalNavBlock #footerlSubNav ul li a {
    display: block;
    padding: 20px 10px;
    font-weight: 500;
  }
  header {
    /* 三 */
  }
  header #spMenuBut {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 10000003;
    background: #76bbc9;
  }
  header #spMenuBut span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 25px;
    height: 2px;
    background: #fff;
    transition: 0.35s cubic-bezier(0.2, 0.9, 0.7, 1);
  }
  header #spMenuBut span:nth-child(1) {
    top: 24px;
  }
  header #spMenuBut span:nth-child(2) {
    top: 30px;
  }
  header #spMenuBut span:nth-child(3) {
    top: 36px;
  }
  header::before {
    height: 10px;
  }
  .openNav header {
    background: #fff !important;
  }
  .openNav #spMenuBut span:nth-child(1) {
    top: 30px;
    transform: rotate(-45deg);
  }
  .openNav #spMenuBut span:nth-child(2),
  .openNav #spMenuBut span:nth-child(3) {
    top: 30px;
    transform: rotate(45deg);
  }
  .openNav #globalNavBlock {
    visibility: visible;
    opacity: 1;
  }
  /*--------------------------------------------------------------
  	footer
  --------------------------------------------------------------*/
  footer {
    padding: 80px 0 30px;
    margin-top: 90px;
  }
  footer .container {
    display: block;
    width: 100%;
  }
  footer .container h1 {
    text-align: center;
  }
  footer .container h1 img {
    width: 80px;
  }
  footer .container #footerNavBlock {
    display: none;
  }
  footer #copyright {
    margin-top: 30px;
  }
  /*--------------------------------------------------------------
      parts
  --------------------------------------------------------------*/
  /*-------------------- title --------------------*/
  #pageTitleBlock {
    width: 100%;
    padding-top: 100px;
    margin-bottom: 30px;
    background-size: 60%;
    background-position: top 20px left -15%;
  }
  #pageTitleBlock .page_title_box {
    width: 100%;
  }
  #pageTitleBlock .page_title_box section {
    padding: 0 0 100px 5%;
  }
  #pageTitleBlock .page_title_box section h2 {
    font-size: 2rem;
  }
  #pageTitleBlock .page_title_box section h3 {
    font-size: 1rem;
  }
  #pageTitleBlock .page_title_box figure {
    top: 20px;
    left: 50%;
    width: 40%;
  }
  #pageTitleBlock .page_title_box figure img {
    width: 100%;
  }
  #pageTitleBlock #title_02 {
    top: 80px;
    right: -10%;
    width: 50%;
  }
  #pageTitleBlock #title_02 img {
    width: 100%;
  }
  .headline {
    font-size: 1.5rem;
  }
  /*-------------------- breadcrumb --------------------*/
  /*-------------------- anchor_nav --------------------*/
  /*-------------------- leadBlock --------------------*/
  #pageLeadageBg {
    top: 200px;
    left: auto;
    right: -150px;
  }
  #pageLeadageBg img {
    width: 400px;
    opacity: 0.6;
  }
  #leadBlock {
    display: block;
    margin-bottom: 30px;
  }
  #leadBlock h3 {
    width: 100%;
  }
  #leadBlock p {
    width: 100%;
  }
  #leadBlock h3 + p {
    margin-top: 20px;
  }
  .catchcopy span {
    font-size: 1.25rem;
  }
  /*-------------------- button --------------------*/
  .but_more a {
    font-size: 1.25rem;
    width: 180px;
  }
  /*-------------------- box --------------------*/
  /*-------------------- table --------------------*/
  /*-------------------- list --------------------*/
  /* archive_list */
  .archive_list {
    display: block;
  }
  .archive_list.blog li a time {
    width: 100px;
  }
  .archive_list.blog li a h3 {
    width: calc(100% - 100px);
  }
  .archive_list.blog li:not(:first-child) {
    margin-top: 20px;
  }
  .blog_list > li a {
    display: block;
  }
  .blog_list > li a figure {
    width: 100%;
    margin-bottom: 10px;
  }
  .blog_list > li a .data_box {
    width: 100%;
  }
  .blog_list > li:not(:last-child) {
    margin-bottom: 30px;
  }
  .gallery_list {
    display: block;
  }
  .gallery_list li {
    width: 80%;
    margin: 0 auto;
  }
  .gallery_list li:not(:last-child) {
    margin-bottom: 20px;
  }
  .review_list {
    display: block;
    padding-bottom: 20px;
  }
  .review_list li {
    width: 100%;
    padding: 20px;
  }
  .review_list li .data_box {
    gap: 20px;
    margin-bottom: 20px;
  }
  .review_list li .data_box figure {
    width: 100px;
  }
  .review_list li .data_box section .evaluation span img {
    width: 14px;
  }
  .review_list li:not(:last-child) {
    margin-bottom: 40px;
  }
  .review_list li:before {
    right: -3%;
  }
  /*-------------------- Gutenberg --------------------*/
  /* iframe */
  /*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

      一覧ページ 【archive】

  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
  /*--------------------------------------------------------------
  	pagination
  --------------------------------------------------------------*/
  /* <  > */
  .pagination_prev_next_arrow {
    gap: 20px;
  }
  /* 1234 */
  .pagination {
    margin-top: 60px;
  }
  .pagination * {
    line-height: 30px;
  }
  .pagination ul {
    gap: 0px;
    margin: 0 10px;
  }
  .pagination ul li {
    width: 30px;
  }
  /*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

        404 【404】

  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
  #notfoundBlock {
    margin: 120px auto 0;
  }
  #notfoundBlock h2 {
    font-size: 2.5rem;
  }
}/*# sourceMappingURL=style.css.map */