@charset "UTF-8";
:root {
  --color_primary: #344d79;
}

/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
html {
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1;
}

div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, img, ins, kbd, q, samp, sub, sup, var, b, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, mark, audio, video, a {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 100%;
  font: inherit;
}

span, small, em, time, i {
  font-style: normal;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

a {
  color: inherit;
  text-decoration: none;
  border: medium;
}

a:-webkit-any-link:focus-visible {
  outline-offset: 1px;
}

:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

legend {
  color: #000;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.7;
}

main, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input, select {
  vertical-align: middle;
}

abbr[title], dfn[title] {
  cursor: help;
}

del {
  text-decoration: line-through;
}

ins {
  font-style: oblique;
  text-decoration: none;
}

mark {
  background: transparent;
  font-style: normal;
}

img {
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th {
  font-weight: normal;
  text-align: left;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: inherit;
}

/*-----------------------------------------------------------
Bace
-----------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

::-moz-selection {
  background: #f6f3e7;
}

::selection {
  background: #f6f3e7;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

body,
html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans JP", sans-serif, "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  color: #5d4432;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 8%;
  background: #fdfbf1;
  font-weight: 300;
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 126px;
}

@media (max-width: 800px) {
  :target {
    scroll-margin-top: 0;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  letter-spacing: 11%;
  line-height: 1.5;
}

@media (max-width: 800px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.4;
  }
}
th {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
}

a[href^=tel] {
  cursor: default;
}

.container, .footer-inr, .breadcrumb ul {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}
.container.wide, .wide.footer-inr, .breadcrumb ul.wide {
  max-width: 1200px;
}
.container.narrow, .narrow.footer-inr, .breadcrumb ul.narrow {
  max-width: 800px;
}
.container, .footer-inr, .breadcrumb ul {
  /*------------
  pタグ同士の余白
  --------------*/
}
.container p + p, .footer-inr p + p, .breadcrumb ul p + p {
  margin-top: 2em;
}
@media (max-width: 800px) {
  .container p + p, .footer-inr p + p, .breadcrumb ul p + p {
    margin-top: 1em;
  }
}

@media (max-width: 800px) {
  body {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.4;
  }
  .container, .footer-inr, .breadcrumb ul {
    margin: 0 auto;
    max-width: 90%;
    width: 90%;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}

/*------------
Header
--------------*/
.header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  transition: 0.3s;
}
@media (max-width: 800px) {
  .header {
    position: static;
  }
}
.header .h-inr {
  display: flex;
  align-items: center;
  padding: 28px 30px;
  gap: 30px;
}
@media (max-width: 800px) {
  .header .h-inr {
    height: 0;
    display: block;
    padding: 0;
  }
}
.header .h-logo {
  max-width: 300px;
}
@media (max-width: 800px) {
  .header .h-logo {
    width: 180px;
    max-width: none;
    padding: 10px 15px;
  }
}
.header .h-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 800px) {
  .header .h-right {
    display: none;
  }
}
.header .h-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.header .h-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 346px;
  border-radius: 100px;
  background: rgba(143, 51, 86, 0.9);
  color: #fdfbf1;
  font-size: 18px;
  font-weight: 400;
  padding: 7px 10px 10px;
  min-height: 58px;
  transition: all 0.3s;
  position: relative;
}
.header .h-btn::before {
  position: absolute;
  content: "";
  background: url(../images/share/icon_out.svg);
  width: 15px;
  height: 13px;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.header .h-btn:hover {
  opacity: 0.7;
}
.header.is-fixed {
  background: rgba(93, 68, 50, 0.7);
}
.header.is-fixed .h-btn {
  background: #8f3356;
}

.hamburger {
  display: block;
  width: 70px;
  height: 70px;
  background: #fdfbf1;
  cursor: pointer;
  transition: 0.5s;
  position: relative;
  top: 0;
  right: 0;
  z-index: 9999;
}
@media (max-width: 800px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  background: #5d4432;
  position: absolute;
  width: 30px;
  height: 1px;
  transition: 0.4s;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 800px) {
  .hamburger span {
    width: 22px;
  }
}
.hamburger span:nth-of-type(1) {
  top: 20px;
}
.hamburger span:nth-of-type(2) {
  top: 30px;
}
.hamburger .txt {
  font-family: "Baskervville SC", serif;
  color: #5d4432;
  font-size: 12px;
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: 10px;
}
@media (max-width: 800px) {
  .hamburger .txt {
    font-size: 11px;
    bottom: 3px;
  }
}
.hamburger.is-open span:nth-of-type(1) {
  top: 35%;
  transform: translate(-50%, -50%) rotate(30deg);
}
.hamburger.is-open span:nth-of-type(2) {
  top: 35%;
  transform: translate(-50%, -50%) rotate(-30deg);
}

/*------------
G-navi
--------------*/
/*drawer*/
.gnavi-drawer {
  visibility: hidden;
  background: #fdfbf1;
  padding: 150px 120px;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  transition: 0.3s;
  opacity: 0;
  z-index: 999;
  width: 720px;
}
.gnavi-drawer.is-open {
  visibility: visible;
  overflow-y: auto;
  opacity: 1;
}
.gnavi-drawer-list__wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 90px;
}
.gnavi-drawer-list {
  display: grid;
  grid-gap: 10px;
  font-family: "Shippori Mincho", serif;
}
.gnavi-drawer-list .item {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  padding-left: 22px;
  position: relative;
  font-weight: 400;
}
.gnavi-drawer-list .item::before {
  position: absolute;
  content: "";
  background: #5d4432;
  width: 12px;
  height: 1px;
  top: 17px;
  left: 0;
}
.gnavi-drawer-list .item > a:hover {
  text-decoration: underline;
}
.gnavi-drawer-list .item > a[href="#"] {
  cursor: auto;
  pointer-events: none;
  text-decoration: underline;
}
.gnavi-drawer__logo {
  max-width: 296px;
  width: 100%;
  margin: 0 auto 20px;
  display: block;
}
.gnavi-drawer__address {
  text-align: center;
  margin-bottom: 20px;
  font-size: 16px;
}
.gnavi-drawer__tel {
  font-family: "Shippori Mincho", serif;
  font-size: 35px;
  letter-spacing: 5%;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.gnavi-drawer__tel img {
  margin: 5px 10px 0 0;
  width: 26px;
}
.gnavi-drawer-icon__list {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.gnavi-drawer-icon__list > li:last-child a {
  width: 120px;
}
.gnavi-drawer-icon__list > li:last-child a img {
  width: 120px;
}
.gnavi-drawer-icon__list a {
  display: block;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}
.gnavi-drawer-icon__list a img {
  width: auto;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.3s;
}
.gnavi-drawer-icon__list a + a {
  margin-left: 15px;
}
.gnavi-drawer-icon__list a:hover {
  opacity: 0.7;
}

.sp-navi {
  display: none;
}

@media (max-width: 800px) {
  .gnavi-drawer {
    display: none;
  }
  :root {
    --navi-background: #efe7d5;
    --navi-border-color: #d6c6a9;
    --navi-text-color: #5d4432;
    --svg-stroke: #5d4432;
    --menu-btn: #5d4432;
    --navi-font:
      $font03, "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "Yu Gothic",
      "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo,
      sans-serif;
    --sp-btn-color: #e69966;
  }
  .sp-navi {
    display: block;
    /* ボタン類 */
  }
  .sp-navi .sp-navi-btns {
    display: flex;
    background: var(--navi-background);
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 10000;
  }
  .sp-navi .sp-navi-btns > * {
    flex: 1;
    position: relative;
  }
  .sp-navi .sp-navi-btns .item {
    border-right: 1px solid var(--navi-border-color);
    font-size: 12px;
    font-family: var(--navi-font);
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }
  .sp-navi .sp-navi-btns .item a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: var(--navi-text-color);
    text-decoration: none;
    height: 100%;
    padding: 7px 0;
  }
  .sp-navi .sp-navi-btns .item .img {
    display: block;
    margin-bottom: 5px;
    max-height: 30px;
  }
  .sp-navi .sp-navi-btns .item .ttl {
    display: block;
    font-family: "Shippori Mincho", serif;
  }
  .sp-navi .sp-navi-btns .item:nth-child(1) img {
    width: 24px;
  }
  .sp-navi .sp-navi-btns .item:nth-child(2) img {
    width: 30px;
  }
  .sp-navi .sp-navi-btns .item:nth-child(3) img {
    width: 28px;
  }
  .sp-navi .sp-menu-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 7px;
  }
  .sp-navi .sp-menu-btn .ttl {
    display: block;
    color: var(--navi-text-color);
    font-family: "Shippori Mincho", serif;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
  }
  .sp-navi .sp-menu-btn span:not(.ttl) {
    background: var(--menu-btn);
    position: absolute;
    left: 50%;
    width: 30px;
    height: 1px;
    transform: translateX(-50%);
    transition: 0.4s;
  }
  .sp-navi .sp-menu-btn span:not(.ttl):nth-of-type(1) {
    top: 18px;
  }
  .sp-navi .sp-menu-btn span:not(.ttl):nth-of-type(2) {
    top: 28px;
  }
  .sp-navi .sp-menu-btn.is-open span:nth-of-type(1) {
    transform: translate(-50%, 5px) rotate(-30deg);
  }
  .sp-navi .sp-menu-btn.is-open span:nth-of-type(2) {
    transform: translate(-50%, -5px) rotate(30deg);
  }
  .sp-navi {
    /* コンテンツ */
  }
  .sp-navi .sp-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background: #fdfbf1;
    font-family: var(--navi-font);
    padding: 50px 10% 120px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.5s;
    opacity: 0;
    z-index: 9999;
  }
  .sp-navi .sp-navi-contents.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    opacity: 1;
  }
  .sp-navi .sp-navi-list {
    border-top: 1px solid #d6c6a9;
    margin: 0 0 40px;
  }
  .sp-navi .sp-navi-list > li {
    border-bottom: 1px solid #d6c6a9;
  }
  .sp-navi .sp-navi-list > li > a,
  .sp-navi .sp-navi-list > li span {
    display: block;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    padding: 20px 0;
  }
  .sp-navi .sp-navi-other .item + .item {
    margin: 15px 0 0;
  }
  .sp-navi .sp-navi-other .logo {
    display: block;
    margin-bottom: 20px;
  }
  .sp-navi .sp-navi-other .tel {
    text-align: center;
    display: block;
    font-size: 30px;
    text-decoration: none;
    line-height: 1;
    margin: 0 0 30px;
    font-family: "Shippori Mincho", serif;
  }
  .sp-navi .sp-navi-other .tel img {
    width: 25px;
    margin: 5px 5px 0 0;
  }
  .sp-navi .sp-navi-other .icon__list {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  .sp-navi .sp-navi-other .icon__list > li:last-child a {
    width: 120px;
  }
  .sp-navi .sp-navi-other .icon__list > li:last-child a img {
    width: 120px;
  }
  .sp-navi .sp-navi-other .icon__list a {
    display: block;
    width: 40px;
    height: 40px;
    transition: 0.3s;
  }
  .sp-navi .sp-navi-other .icon__list a img {
    width: auto;
    height: 40px;
    -o-object-fit: contain;
       object-fit: contain;
    transition: 0.3s;
  }
  .sp-navi .sp-navi-other .icon__list a + a {
    margin-left: 15px;
  }
  .sp-navi .sp-navi-other .icon__list a:hover {
    opacity: 0.7;
  }
  .sp-navi .sp-navi-other .txt {
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
  }
}
/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 850px;
  background: rgba(93, 68, 50, 0.35);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 800px) {
  .hero::before {
    height: calc(100vh - 100px);
  }
}
.hero-video {
  width: 100%;
  height: 850px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 800px) {
  .hero-video {
    height: calc(100vh - 100px);
  }
}
.hero-desc {
  position: absolute;
  bottom: 80px;
  left: 70px;
  color: #fdfbf1;
  z-index: 2;
}
@media (max-width: 800px) {
  .hero-desc {
    bottom: 40px;
    left: 15px;
  }
}
.hero-ttl {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.47;
  letter-spacing: 12%;
}
@media (max-width: 800px) {
  .hero-ttl {
    font-size: 20px;
  }
}
.hero-txt {
  font-size: 16px;
  line-height: 2;
  margin-top: 25px;
  letter-spacing: 10%;
}
@media (max-width: 800px) {
  .hero-txt {
    font-size: 12px;
    line-height: 1.6;
    margin-top: 15px;
  }
}

/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
.t-ttl {
  text-align: center;
  margin-bottom: 50px;
  font-family: "Shippori Mincho", serif;
  font-size: 45px;
  line-height: 1.51;
  padding-top: 50px;
  position: relative;
  letter-spacing: 11%;
}
.t-ttl::before {
  position: absolute;
  content: "";
  background: url(../images/share/ttl_deco.svg) center/contain no-repeat;
  width: 50px;
  height: 45px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 800px) {
  .t-ttl {
    margin-bottom: 40px;
    font-size: 23px;
    line-height: 1.4;
    padding-top: 40px;
  }
  .t-ttl::before {
    width: 40px;
    height: 35px;
  }
}
/*------------
Block
--------------*/
.sec-curve {
  position: relative;
  margin-top: -7vw;
}

.curve-svg {
  display: block;
  width: 100%;
  position: relative;
  z-index: 0;
}

.sec01 {
  padding: 120px 0 130px;
}
.sec01-ttl {
  font-size: 40px;
  margin-bottom: 60px;
  text-align: center;
}
.sec01-ttl span {
  font-size: 50px;
  font-weight: 500;
}
.sec01_list {
  max-width: 896px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
}
.sec01_list__img {
  margin-bottom: 15px;
}
.sec01_list__txt {
  font-size: 16px;
  text-align: center;
  line-height: 26px;
  font-weight: 400;
}
.sec01_list__txt span {
  font-size: 20px;
}
@media (max-width: 800px) {
  .sec01 {
    padding: 50px 0;
  }
}

.sec02 {
  z-index: 0;
  --curve-max: 140px;
  margin-top: 0;
  overflow: hidden;
}
.sec02 .curve-svg-wrap {
  position: relative;
}
.sec02 .curve-svg-wrap::before {
  position: absolute;
  content: "";
  background: url(../images/sec02_bg_gradation.svg) center/cover no-repeat;
  height: 10vw;
  width: 100%;
  bottom: -50%;
  left: 0;
  z-index: 3;
}
.sec02_img {
  margin-top: -1vw;
  position: relative;
  z-index: 2;
  width: 100vw;
}
.sec02_img img {
  width: 100vw;
  min-height: 1300px;
  max-height: 67vw;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec02_content {
  color: #fdfbf1;
  text-align: center;
  position: absolute;
  z-index: 3;
  width: 100%;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 5%;
}
.sec02-ttl {
  font-size: 45px;
  line-height: 1.66;
  margin-bottom: 100px;
}
.sec02 .txt {
  font-size: 22px;
  line-height: 2.22;
}
.sec02 .txt + .txt {
  margin-top: 60px;
}
.sec02 .btn-wrap {
  margin-top: 100px;
}

.sec03 {
  padding-bottom: 85px;
  z-index: 5;
}
.sec03::before {
  position: absolute;
  content: "";
  background: url(../images/sec03_deco01.svg) center/contain no-repeat;
  width: 361px;
  height: 349px;
  top: 90px;
  right: 0;
  opacity: 0.7;
  filter: brightness(1.2) contrast(1.3);
  z-index: 1;
}
.sec03::after {
  position: absolute;
  content: "";
  background: url(../images/sec03_deco02.svg) center/contain no-repeat;
  width: 351px;
  height: 275px;
  bottom: 90px;
  left: 15px;
  opacity: 0.7;
  filter: brightness(1.2) contrast(1.3);
  z-index: -1;
}
.sec03-layout01 {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.sec03-layout01__ttl {
  font-size: 35px;
  margin-bottom: 50px;
  line-height: 1.85;
}
.sec03-layout01__img {
  width: 45%;
  margin-right: 7.58%;
}
.sec03-layout01__desc {
  flex: 1;
}
.sec03-layout01__txt + .sec03-layout01__txt {
  margin-top: 50px;
}
.sec03-layout02 {
  max-width: 1195px;
  width: 90%;
  margin: 65px 2% 0 auto;
  display: flex;
}
.sec03-layout02__img {
  width: 51%;
  height: 612px;
  margin-left: 5.1%;
  position: relative;
}
.sec03-layout02__img::before {
  position: absolute;
  content: "";
  background: url(../images/sec03_deco03.svg) center/contain no-repeat;
  width: 240px;
  height: 203px;
  bottom: -46px;
  left: 162px;
  opacity: 0.7;
  filter: brightness(1.2) contrast(1.3);
  z-index: -1;
}
.sec03-layout02__img .img_large {
  position: absolute;
  width: 500px;
  height: 466px;
  top: 0;
  left: 0;
}
.sec03-layout02__img .img_small {
  position: absolute;
  width: 265px;
  height: 195px;
  bottom: 0;
  right: 0;
}
.sec03-layout02__desc {
  width: 43.68%;
  margin-top: 80px;
}
.sec03-layout02__txt + .sec03-layout02__txt {
  margin-top: 50px;
}
.sec03-layout02 .btn-more {
  margin-top: 80px;
}

.sec04 {
  margin-top: 0;
}
.sec04-bg {
  position: relative;
  background: #f2ebcc;
  margin-top: -1vw;
  padding: 0 0 200px;
}
.sec04-bg::before, .sec04-bg::after {
  content: "";
  position: absolute;
  top: calc(var(--curve-offset, 200px) - 8.5vw);
  bottom: 0;
  width: 147px;
  background: url(../images/sec04_deco02.svg) center top/contain repeat-y;
  z-index: 0;
}
.sec04-bg::before {
  left: 0;
}
.sec04-bg::after {
  right: 0;
  transform: scaleX(-1);
}
.sec04-inr {
  position: relative;
  z-index: 1;
}
.sec04-ttl {
  text-align: center;
  margin-bottom: 80px;
}
.sec04 .t-ttl {
  margin-bottom: 20px;
}
.sec04 .sub-ttl {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 23px;
  display: inline-block;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
}
.sec04 .sub-ttl::before {
  position: absolute;
  content: "";
  background: url(../images/sec04_deco01.svg) center/contain no-repeat;
  width: 80px;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateX(-50%);
  z-index: 1;
}
.sec04 .sub-ttl::after {
  position: absolute;
  content: "";
  background: url(../images/sec04_deco01.svg) center/contain no-repeat;
  width: 80px;
  height: 1px;
  top: 50%;
  right: -60px;
  transform: translateX(-50%) rotate(180deg);
  z-index: 1;
}
.sec04-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 1065px;
  width: 90%;
  margin: 0 auto 80px;
  position: relative;
  z-index: 1;
}
.sec04-list > li {
  width: 45%;
}
.sec04-list > li:nth-child(2) {
  margin: 110px 0 0 8.92%;
}
.sec04-list > li:nth-child(3) {
  margin: -20px 0 0;
}
.sec04-list > li:nth-child(4) {
  margin: 110px 0 0 8.92%;
}
.sec04-list__img {
  margin-bottom: 30px;
}
.sec04-list__desc {
  margin-left: 10px;
}
.sec04-list__ttl {
  font-size: 30px;
  margin-bottom: 15px;
}

.sec05 {
  padding-bottom: 120px;
}
.sec05::before {
  position: absolute;
  content: "";
  background: url(../images/sec05_deco01.svg) center/contain no-repeat;
  width: 258px;
  height: 551px;
  left: 0;
  bottom: -100px;
  z-index: -1;
}
.sec05::after {
  position: absolute;
  content: "";
  background: url(../images/sec05_deco02.svg) center/contain no-repeat;
  width: 313px;
  height: 555px;
  right: 0;
  bottom: -100px;
  z-index: -1;
}
.sec05 .container, .sec05 .footer-inr, .sec05 .breadcrumb ul, .breadcrumb .sec05 ul {
  max-width: 77.08vw;
  width: 90%;
  margin: 0 auto 0 10.81%;
  padding-top: 50px;
}
.sec05 .t-ttl {
  padding: 0 0 0 60px;
  text-align: left;
}
.sec05 .t-ttl::before {
  top: 12px;
  left: 0;
  transform: unset;
}
.sec05-read {
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}
.sec05-read p {
  margin-right: 3%;
}
.sec05-layout {
  display: flex;
  align-items: center;
}
.sec05-layout__img {
  width: 47.12%;
  margin-right: 10.09%;
}
.sec05-layout__list {
  font-family: "Shippori Mincho", serif;
  font-size: 26px;
  letter-spacing: 11%;
}
.sec05-layout__list > li {
  border-top: 1px solid #efe7d5;
}
.sec05-layout__list > li:last-child {
  border-bottom: 1px solid #efe7d5;
}
.sec05-layout__list a {
  padding: 22px 15px;
  display: block;
  position: relative;
  width: 477px;
  transition: 0.3s;
}
.sec05-layout__list a::before {
  position: absolute;
  content: "";
  background: url(../images/share/arrow_02.svg) center/contain no-repeat;
  width: 37px;
  height: 38px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.3s;
}
.sec05-layout__list a:hover::before {
  right: -10px;
}
.sec05 .btn-more.pc-only {
  display: flex;
}

.sec06 {
  margin-top: 0;
}
.sec06-bg {
  position: relative;
  background-image: url(../images/sec06_bg-btm.png);
  background-repeat: repeat-y;
  background-position: center top;
  margin-top: -1vw;
  padding: 0 0 250px;
  z-index: 1;
}
.sec06-inr {
  max-width: 915px;
  width: 90%;
  margin: 0 auto;
  color: #fdfbf1;
}
.sec06 .sub-ttl {
  font-family: "Shippori Mincho", serif;
  text-align: center;
  font-size: 26px;
  border-top: 1px solid #f6c6a7;
  border-bottom: 1px solid #f6c6a7;
  padding: 20px 0;
  margin-bottom: 30px;
}
.sec06 .btn-more {
  margin-top: 60px;
}

.sec07 {
  z-index: 2;
}
.sec07-bg {
  position: relative;
  background: #fdfbf1;
  margin-top: -1vw;
  padding-bottom: 90px;
}
.sec07-bg::before, .sec07-bg::after {
  content: "";
  position: absolute;
  z-index: 0;
}
.sec07-bg::before {
  background: url(../images/sec07_deco01.svg) center top/contain no-repeat;
  width: 259px;
  height: 273px;
  right: 34px;
  top: calc(var(--curve-offset, 200px) - 8vw);
  mix-blend-mode: hard-light;
  color: #5d4432;
}
.sec07-bg::after {
  left: 0;
  background: url(../images/sec07_deco02.svg) center top/contain no-repeat;
  width: 395px;
  height: 581px;
  bottom: -7vw;
}
.sec07 .container, .sec07 .footer-inr, .sec07 .breadcrumb ul, .breadcrumb .sec07 ul {
  position: relative;
  z-index: 2;
}
.sec07-txt {
  text-align: center;
  margin-bottom: 100px;
}
.sec07-accordion .accordion-btn {
  cursor: pointer;
  position: relative;
}
.sec07-accordion .accordion-ttl {
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  letter-spacing: 0;
  padding: 30px 40px;
  border-bottom: 1px solid #efe7d5;
}
.sec07-accordion .accordion-ttl::before {
  position: absolute;
  content: "Q.";
  color: #5d4432;
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  left: 0;
}
.sec07-accordion .accordion-desc {
  display: none;
  padding: 20px 40px 40px;
  position: relative;
}
.sec07-accordion .accordion-desc::before {
  position: absolute;
  content: "A.";
  color: #a838b7;
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  left: 0;
}
.sec07-accordion .accordion-desc p + p {
  margin-top: 2rem;
}
.sec07-accordion .accordion-open-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 15px;
  top: 50%;
  transition: 0.3s;
  transform: translateY(-50%);
}
.sec07-accordion .accordion-open-icon::before, .sec07-accordion .accordion-open-icon::after {
  content: "";
  display: block;
  background: #5d4432;
  position: absolute;
  width: 22.5px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transition: 0.3s;
}
.sec07-accordion .accordion-open-icon::before {
  transform: translateX(-50%);
}
.sec07-accordion .accordion-open-icon::after {
  transform: rotate(90deg) translateX(-50%);
  transform-origin: left;
  transition: transform 0.5s;
}
.sec07-accordion .is-open .accordion-open-icon {
  transform: translateY(-50%) rotate(180deg);
}
.sec07-accordion .is-open .accordion-open-icon::after {
  opacity: 0;
}
.sec07 .btn-more {
  margin-top: 70px;
}

.sec08 {
  --curve-max: 150px;
  position: relative;
  z-index: 3;
  margin-top: 0;
}
.sec08-bg {
  position: relative;
  background-image: url(../images/sec08_bg-btm.png);
  background-repeat: repeat-y;
  background-position: center top;
  margin-top: -1vw;
  padding: 50px 0 130px;
  z-index: 1;
}
.sec08-ttl {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.sec08 .t-ttl {
  padding: 0 0 0 60px;
  font-size: 40px;
  text-align: left;
  margin-bottom: 0;
}
.sec08 .t-ttl::before {
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.sec08-item + .sec08-item {
  margin-top: 100px;
}
.sec08 .sns-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.sec08 .sns-list a {
  display: block;
  transition: transform 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}
.sec08 .sns-list a img {
  width: auto;
  height: 225px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.sec08 .sns-list a:hover img {
  transform: scale(1.1);
}
.sec08 .list-top-news .list-item {
  display: flex;
  padding: 30px 0;
  border-bottom: 1px solid #d6c6a9;
}
.sec08 .list-top-news time {
  font-family: "Shippori Mincho", serif;
  color: rgba(93, 68, 50, 0.6);
  margin-right: 40px;
  padding-right: 40px;
  border-right: 1px solid #c09850;
  letter-spacing: 0;
}
.sec08 .list-top-news .list-txt {
  width: 100%;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.sec08 .list-top-news a:hover {
  text-decoration: underline;
}
.sec08 .btn-more {
  display: flex;
  align-items: center;
}

.sec09 .t-ttl {
  padding: 0 0 0 40px;
  text-align: left;
  font-size: 30px;
  margin-bottom: 0;
}
.sec09 .t-ttl::before {
  width: 32px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.sec09 .map-layout {
  position: relative;
}
.sec09 .map-layout iframe {
  vertical-align: bottom;
}
.sec09 .map-layout .l-desc {
  background: rgba(246, 243, 231, 0.9);
  padding: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  max-width: 500px;
}
.sec09 .map-layout .inner {
  display: table;
  margin: 0 auto;
}
.sec09 .map-layout .address {
  margin-bottom: 25px;
  font-size: 16px;
}
.sec09 .map-layout .l-dl {
  display: grid;
  grid-template-columns: 90px 1fr;
  grid-gap: 10px;
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 30px;
}
.sec09 .map-layout .l-dl dt {
  background: #fff;
  display: inline-block;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  padding: 6px 0;
  max-height: 28px;
}

@media screen and (max-width: 550px) {
  .sec02 .curve-svg-wrap::before {
    height: 80px;
  }
}
@media (max-width: 800px) {
  .sec-curve {
    margin-top: 5vw;
  }
  .sec01 {
    padding: 60px 0 80px;
  }
  .sec01-ttl {
    font-size: 23px;
    margin-bottom: 30px;
  }
  .sec01-ttl span {
    font-size: 32px;
  }
  .sec01_list {
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
  .sec01_list__img {
    margin-bottom: 10px;
  }
  .sec01_list__txt {
    font-size: 14px;
    line-height: 24px;
  }
  .sec01_list__txt span {
    font-size: 16px;
  }
  .sec02 {
    min-height: 820px;
    --curve-max: 26;
    margin-top: 0;
  }
  .sec02 .curve-svg-wrap::before {
    height: 9vh;
    bottom: -130%;
  }
  .sec02_img {
    min-height: 950px;
  }
  .sec02_img img {
    min-height: 950px;
  }
  .sec02_content {
    top: 80px;
    width: 90%;
    padding: 0 3%;
  }
  .sec02-ttl {
    font-size: 23px;
    line-height: 1.6;
    margin-bottom: 50px;
  }
  .sec02 .txt {
    font-size: 16px;
    line-height: 1.6;
  }
  .sec02 .txt + .txt {
    margin-top: 20px;
  }
  .sec02 .btn-wrap {
    margin-top: 60px;
  }
  .sec03 {
    padding: 20px 0 80px;
    margin-top: 0;
    overflow: hidden;
  }
  .sec03 .curve-svg {
    top: -50px;
  }
  .sec03::before {
    width: 131px;
    height: 119px;
    top: -5px;
  }
  .sec03::after {
    width: 181px;
    height: 105px;
    bottom: 10px;
    left: -20px;
  }
  .sec03-layout01 {
    max-width: 100%;
    flex-direction: column-reverse;
  }
  .sec03-layout01__ttl {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  .sec03-layout01__img {
    width: 100%;
    margin: 0 auto 20px;
  }
  .sec03-layout01__txt + .sec03-layout01__txt {
    margin-top: 20px;
  }
  .sec03-layout02 {
    max-width: 100%;
    margin: 30px auto 0;
    flex-direction: column-reverse;
  }
  .sec03-layout02__img {
    width: 100%;
    height: 280px;
    margin: 0 auto 30px;
  }
  .sec03-layout02__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .sec03-layout02__img::before {
    width: 140px;
    height: 103px;
    bottom: 160px;
    left: unset;
    right: -30px;
    transform: rotate(260deg);
  }
  .sec03-layout02__img .img_large {
    width: 80%;
    height: auto;
  }
  .sec03-layout02__img .img_small {
    width: 50%;
    height: auto;
  }
  .sec03-layout02__desc {
    margin-top: 0;
    width: 100%;
  }
  .sec03-layout02__txt + .sec03-layout02__txt {
    margin-top: 20px;
  }
  .sec03-layout02 .btn-more {
    margin-top: 40px;
  }
  .sec04 {
    margin-top: 0;
  }
  .sec04-bg {
    padding: 30px 0 100px;
  }
  .sec04-bg::before, .sec04-bg::after {
    top: calc(var(--curve-offset, 200px) - 35px);
    width: 50px;
  }
  .sec04-inr {
    width: 90%;
    margin: 0 auto;
  }
  .sec04-ttl {
    margin-bottom: 40px;
  }
  .sec04 .sub-ttl {
    font-size: 18px;
    padding: 0;
    line-height: 1.6;
  }
  .sec04 .sub-ttl::before, .sec04 .sub-ttl::after {
    background: unset;
  }
  .sec04-list {
    display: block;
    flex-wrap: wrap;
    max-width: 100%;
    width: 100%;
    margin: 0 auto 40px;
  }
  .sec04-list > li {
    width: 100%;
  }
  .sec04-list > li:nth-child(2) {
    margin: 60px 0 0;
  }
  .sec04-list > li:nth-child(3) {
    margin: 60px 0 0;
  }
  .sec04-list > li:nth-child(4) {
    margin: 60px 0 0;
  }
  .sec04-list__img {
    margin-bottom: 20px;
  }
  .sec04-list__desc {
    margin-left: 0;
  }
  .sec04-list__ttl {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .sec05 {
    padding: 0 0 60px;
    margin-top: -5vw;
  }
  .sec05::before {
    width: 108px;
    height: 401px;
    bottom: -100px;
  }
  .sec05::after {
    width: 163px;
    height: 405px;
    bottom: -80px;
  }
  .sec05 .container, .sec05 .footer-inr, .sec05 .breadcrumb ul, .breadcrumb .sec05 ul {
    max-width: 100%;
    margin: 0 auto;
    padding-top: 30px;
  }
  .sec05 .t-ttl {
    padding: 0 0 0 50px;
  }
  .sec05-read {
    display: block;
    margin-bottom: 30px;
  }
  .sec05-read p {
    margin-right: 0;
  }
  .sec05-layout {
    display: block;
  }
  .sec05-layout__img {
    width: 100%;
    margin: 0 auto 30px;
  }
  .sec05-layout__img img {
    width: 100%;
    height: 220px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .sec05-layout__list {
    font-size: 18px;
  }
  .sec05-layout__list a {
    padding: 15px 15px;
    width: 100%;
    text-align: left;
  }
  .sec05-layout__list a::before {
    width: 25px;
    height: 25px;
  }
  .sec05 .btn-more {
    margin-top: 40px;
  }
  .sec05 .btn-more.sp-only {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sec06-bg {
    padding: 30px 0 100px;
  }
  .sec06-inr {
    max-width: 100%;
  }
  .sec06 .sub-ttl {
    font-size: 20px;
    padding: 15px 0;
  }
  .sec06 .btn-more {
    margin-top: 40px;
  }
  .sec07 {
    margin-top: -5vw !important;
  }
  .sec07-bg {
    padding: 30px 0 60px;
  }
  .sec07-bg::before {
    width: 119px;
    height: 137px;
    top: calc(var(--curve-offset, 150px) - 35px);
    right: 0;
  }
  .sec07-bg::after {
    width: 195px;
    height: 381px;
    bottom: -15%;
  }
  .sec07-txt {
    margin-bottom: 30px;
    text-align: left;
  }
  .sec07-accordion .accordion-ttl {
    font-size: 18px;
    padding: 20px 40px 20px 25px;
  }
  .sec07-accordion .accordion-ttl::before {
    font-size: 18px;
  }
  .sec07-accordion .accordion-desc {
    padding: 20px 0 30px 30px;
  }
  .sec07-accordion .accordion-desc::before {
    font-size: 16px;
  }
}
@media (max-width: 800px) and (max-width: 800px) {
  .sec07-accordion .accordion-desc p + p {
    margin-top: 1em;
  }
}
@media (max-width: 800px) {
  .sec07-accordion .accordion-open-icon {
    width: 20px;
    height: 20px;
    right: 0;
    top: 50%;
    transition: 0.3s;
    transform: translateY(-50%);
  }
  .sec07-accordion .accordion-open-icon::before, .sec07-accordion .accordion-open-icon::after {
    width: 20px;
    height: 1px;
  }
  .sec07 .btn-more {
    margin-top: 40px;
  }
  .sec08 {
    --curve-max: 150px;
  }
  .sec08-bg {
    padding: 30px 0 80px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .sec08-ttl {
    margin-bottom: 30px;
  }
  .sec08 .t-ttl {
    padding: 0 0 0 50px;
    text-align: center;
    display: inline-block;
    margin-bottom: 0;
    font-size: 23px;
  }
  .sec08-item + .sec08-item {
    margin-top: 80px;
  }
  .sec08 .sns-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .sec08 .sns-list a img {
    width: auto;
    height: 160px;
  }
  .sec08 .list-top-news .list-item {
    padding: 15px 0;
  }
  .sec08 .list-top-news time {
    margin-right: 15px;
    padding-right: 15px;
  }
  .sec08 .btn-more {
    margin-top: 40px;
  }
  .sec08 .btn-more.sp-only {
    display: flex;
    align-items: center;
  }
  .sec08 #sb_instagram.sbi_width_resp {
    padding-bottom: 0 !important;
  }
  .sec08 #sb_instagram #sbi_images {
    padding: 0 !important;
  }
  .sec09 .t-ttl {
    padding: 0 0 0 50px;
    font-size: 23px;
    margin-bottom: 30px;
  }
  .sec09 .t-ttl::before {
    width: 40px;
  }
  .sec09 .map-layout iframe {
    height: 250px;
  }
  .sec09 .map-layout .l-desc {
    padding: 50px 5vw;
    position: static;
    transform: translateY(0);
  }
  .sec09 .map-layout .inner {
    width: 100%;
    margin: 0;
  }
  .sec09 .map-layout .address {
    margin-bottom: 20px;
  }
  .sec09 .map-layout .l-dl {
    margin-bottom: 40px;
  }
}
/*------------
下層ページタイトル
--------------*/
.page-ttl {
  width: 100%;
  background: url(../images/under/u-top_bg.jpg) center/cover no-repeat;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 50px 5%;
  height: 440px;
  min-height: 440px;
}
@media (max-width: 800px) {
  .page-ttl {
    padding: 30px 5%;
    height: 220px;
    min-height: 220px;
  }
}
.page-ttl .title {
  font-family: "Shippori Mincho", serif;
  color: #fdfbf1;
  font-size: 40px;
  line-height: 1.5;
}
@media (max-width: 800px) {
  .page-ttl .title {
    font-size: 25px;
  }
}

/*------------
下層ページ見出し
--------------*/
.u-h2, .post-category-ttl, .postdata h1 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  line-height: 1.7;
  padding-top: 40px;
  position: relative;
}
.u-h2::before, .post-category-ttl::before, .postdata h1::before {
  position: absolute;
  content: "";
  background: url(../images/share/ttl_deco.svg) center/contain no-repeat;
  width: 40px;
  height: 36px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 800px) {
  .u-h2, .post-category-ttl, .postdata h1 {
    margin-bottom: 40px;
    font-size: 25px;
    line-height: 1.4;
    padding-top: 35px;
  }
  .u-h2::before, .post-category-ttl::before, .postdata h1::before {
    width: 35px;
    height: 30px;
  }
}

.u-h3, .postdata h2 {
  border-bottom: 1px solid #d6c6a9;
  font-size: 28px;
  padding-bottom: 8px;
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 800px) {
  .u-h3, .postdata h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

.u-h4, .postdata h3 {
  font-size: 20px;
  margin-bottom: 15px;
  position: relative;
  color: #a838b7;
}
@media (max-width: 800px) {
  .u-h4, .postdata h3 {
    font-size: 18px;
  }
}

/*------------
パンクズリスト
--------------*/
.breadcrumb {
  position: relative;
  z-index: 1;
  padding: 10px 0;
}
.breadcrumb ul {
  font-size: 14px;
}
.breadcrumb ul li {
  display: inline;
  word-break: break-all;
}
.breadcrumb ul li + li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #d6c6a9;
  border-right: 1px solid #d6c6a9;
  transform: rotate(45deg);
  margin: 0 12px 0 3px;
  vertical-align: 1px;
}

/*------------
下層ページレイアウト
--------------*/
.tall {
  padding: 100px 0;
}
.tall:last-child {
  padding: 100px 0 120px;
}
.tall.bg01 {
  background: #efe7d5;
}
.tall.bg01 .accordion-style01 .accordion-ttl {
  border-bottom: 1px solid #fdfbf1;
}

.short + .short {
  margin-top: 90px;
}
.short + .x-short {
  margin-top: 60px;
}

.x-short + .x-short {
  margin-top: 30px;
}
.x-short + .short {
  margin-top: 50px;
}

.hidden {
  overflow: hidden;
}

@media (max-width: 800px) {
  .tall {
    padding: 60px 0;
  }
  .tall:last-child {
    padding: 60px 0 100px;
  }
  .short + .short {
    margin-top: 60px;
  }
  .x-short + .short {
    margin-top: 20px;
  }
}
/*------------
下層パーツ
--------------*/
/*------------------------------------
見出しその2
-------------------------------------*/
.clip-path {
  background: #e69966;
  color: #fff;
  text-align: center;
  padding: 15px 70px;
  clip-path: polygon(100% 0%, 95% 50%, 100% 100%, 0 100%, 5% 50%, 0 0);
  position: relative;
}

/*------------------------------------
リスト
-------------------------------------*/
.list-disc {
  display: grid;
  grid-gap: 5px;
}
.list-disc li {
  line-height: 1.5;
  position: relative;
  padding-left: 15px;
}
.list-disc li:before {
  content: "・";
  color: #a838b7;
  display: block;
  position: absolute;
  left: 0;
}

.list-check {
  display: grid;
  grid-gap: 5px;
}
.list-check > li {
  padding-left: 34px;
  position: relative;
}
.list-check > li:before {
  content: "";
  background: url(../images/share/icon_check.svg) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 10px;
  width: 25px;
  height: 20px;
}
@media (max-width: 800px) {
  .list-check > li:before {
    top: 5px;
  }
}

.dl-style03 {
  display: grid;
  grid-gap: 5px;
}
.dl-style03 .item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 15px;
}
@media (max-width: 800px) {
  .dl-style03 .item {
    grid-template-columns: 140px 1fr;
  }
}
.dl-style03 dt {
  background: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

/*------------------------------------
リスト：カードデザイン
-------------------------------------*/
.card-style01 > li {
  background: #efe7d5;
  padding: 50px 40px 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-style01 .card-ttl {
  font-size: 20px;
  margin-bottom: 15px;
}
.card-style01 .name {
  margin-top: auto;
  padding-top: 20px;
  color: #b49e8e;
  text-align: right;
}

.card-style02 .card-ttl {
  font-size: 24px;
  margin-bottom: 10px;
}

.card-style01,
.card-style02 {
  display: grid;
}
.card-style01 .card-img,
.card-style02 .card-img {
  margin-bottom: 30px;
}
.card-style01.col2,
.card-style02.col2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.card-style01.col3,
.card-style02.col3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}
.card-style01.col4,
.card-style02.col4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
}
.card-style01.col4 > li,
.card-style02.col4 > li {
  padding: 20px;
}

@media (max-width: 800px) {
  .card-style01 > li {
    padding: 30px 20px;
  }
  .card-style01 .name {
    padding-top: 15px;
  }
  .card-style02 .card-ttl {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .card-style01 .card-img,
  .card-style02 .card-img {
    margin-bottom: 20px;
  }
  .card-style01.col2,
  .card-style02.col2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .card-style01.col3,
  .card-style02.col3 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .card-style01.col4,
  .card-style02.col4 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .card-style01.col4 > li,
  .card-style02.col4 > li {
    padding: 25px;
  }
}
/*------------------------------------
テーブル
-------------------------------------*/
.table-style01 th,
.table-style01 td {
  padding: 10px;
  border: 1px solid #d6c6a9;
  vertical-align: middle;
}
.table-style01 th {
  background: #e69966;
  color: #fff;
  padding: 10px;
}
.table-style01 td {
  background: #fff;
}

@media (max-width: 800px) {
  .table-style01.sp-block colgroup {
    display: none;
  }
  .table-style01.sp-block th,
  .table-style01.sp-block td {
    display: block;
  }
  .table-style01.sp-block th {
    border-bottom: none;
  }
}
/*------------------------------------
リンク・ボタン
-------------------------------------*/
.list-anchor-link02 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 32px;
}
.list-anchor-link02 > li {
  border-bottom: 1px solid #5d4432;
}
.list-anchor-link02 a {
  display: flex;
  align-items: center;
  border-radius: 3px;
  font-family: "Shippori Mincho", serif;
  line-height: 1.4;
  position: relative;
  padding: 0 90px 5px 10px;
  min-height: 60px;
  transition: opacity 0.3s;
}
.list-anchor-link02 a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid #5d4432;
  border-bottom: 1px solid #5d4432;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
}
.list-anchor-link02 a:hover {
  opacity: 0.7;
}

@media (max-width: 800px) {
  .list-anchor-link02 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  .list-anchor-link02 a {
    font-size: 13px;
    justify-content: center;
    text-align: center;
    padding: 8px 8px 20px;
    min-height: 0;
    height: 100%;
  }
  .list-anchor-link02 a::after {
    top: auto;
    bottom: 10px;
    right: 50%;
    transform: translateX(50%) rotate(45deg);
  }
  .list-anchor-link02 a:hover {
    opacity: 0.7;
  }
}
/*------------------------------------
ボックス
-------------------------------------*/
.box-style01 {
  border: 2px solid #f2ebcc;
  background: #f2ebcc;
  padding: 6% 7%;
  position: relative;
}
.box-style01::before {
  position: absolute;
  content: "";
  background: url(../images/under/box-style01_deco.svg) center/contain no-repeat;
  width: 258px;
  height: 250px;
  top: 0;
  right: 0;
  z-index: 0;
}
.box-style01__inr {
  position: relative;
  z-index: 1;
}
.box-style01 .box-ttl {
  font-size: 34px;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .box-style01 {
    padding: 30px 20px;
  }
  .box-style01 .box-ttl {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.box-style02 {
  background: #e69966;
  color: #fff;
  padding: 6% 7%;
}
.box-style02 .box-ttl {
  font-size: 28px;
  margin-bottom: 20px;
  display: flex;
  gap: 15px;
}

@media (max-width: 800px) {
  .box-style02 {
    padding: 30px 20px;
  }
  .box-style02 .box-ttl {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
.box-style03 {
  background: #f2ebcc;
  padding: 7% 7% 6%;
  text-align: center;
  position: relative;
}
.box-style03::before, .box-style03::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 147px;
  background: url(../images/sec04_deco02.svg) center top/cover repeat-y;
  z-index: 0;
}
.box-style03::before {
  left: 0;
}
.box-style03::after {
  right: 0;
  transform: scaleX(-1);
}
.box-style03__inr {
  position: relative;
  z-index: 2;
}
.box-style03 .box-ttl {
  font-size: 34px;
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .box-style03 {
    padding: 30px 20px;
    text-align: left;
  }
  .box-style03::before, .box-style03::after {
    width: 40px;
  }
  .box-style03 .box-ttl {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
/*------------------------------------
レイアウト
-------------------------------------*/
.l-imgR,
.l-imgL {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6.84%;
}
.l-imgR .l-img,
.l-imgL .l-img {
  width: 42.97%;
}
.l-imgR .l-img.w30,
.l-imgL .l-img.w30 {
  width: 30%;
}
.l-imgR .l-desc,
.l-imgL .l-desc {
  flex: 1;
}

.l-imgR {
  flex-direction: row-reverse;
}

@media (max-width: 800px) {
  .l-imgR,
  .l-imgL {
    display: block;
  }
  .l-imgR .l-img,
  .l-imgL .l-img {
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
  }
  .l-imgR .l-img.w30,
  .l-imgL .l-img.w30 {
    width: 100%;
  }
}
.layout-large {
  display: flex;
  gap: 5.3%;
  margin: 0 8.33% 0 0;
}
.layout-large .l-img {
  width: 53.03%;
  height: 500px;
  overflow: hidden;
}
.layout-large .l-img img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.layout-large .l-desc {
  flex: 1;
}
.layout-large.reverse {
  flex-direction: row-reverse;
  margin: 0 0 0 8.33%;
}

@media (max-width: 800px) {
  .layout-large {
    flex-direction: column;
    gap: 35px;
    margin: 0;
  }
  .layout-large .l-img {
    width: 100%;
    height: auto;
  }
  .layout-large .l-img img {
    height: auto;
  }
  .layout-large.reverse {
    flex-direction: column;
    margin: 0;
  }
  .layout-large .l-desc {
    padding: 0 5vw;
  }
  .layout-large .l-num {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .layout-large .l-ttl {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .layout-large .l-sub-ttl {
    gap: 20px;
    font-size: 18px;
    margin-bottom: 25px;
  }
}
.flow-style05 > li {
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-gap: 30px;
  position: relative;
}
.flow-style05 > li + li {
  margin-top: 50px;
}
.flow-style05 > li:not(:last-child)::before {
  content: "";
  border-left: 1px solid #d6c6a9;
  position: absolute;
  top: 100px;
  height: 100%;
  left: 50px;
  z-index: -1;
}
.flow-style05 .flow-num {
  color: #e69966;
  background-color: #efe7d5;
  border: 1px solid #d6c6a9;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 100px;
  height: 100px;
}
.flow-style05 .flow-desc {
  margin-top: 30px;
}
.flow-style05 .flow-ttl {
  font-size: 24px;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .flow-style05 > li {
    grid-template-columns: 80px 1fr;
    grid-gap: 20px;
  }
  .flow-style05 > li + li {
    margin-top: 30px;
  }
  .flow-style05 > li:not(:last-child)::before {
    top: 80px;
    left: 40px;
  }
  .flow-style05 .flow-num {
    width: 80px;
    height: 80px;
  }
  .flow-style05 .flow-desc {
    margin-top: 20px;
  }
  .flow-style05 .flow-ttl {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.staff-layout01 .wrapper {
  display: flex;
  align-items: center;
  gap: 5.83%;
}
.staff-layout01 .l-img {
  width: 45.83%;
  position: relative;
  padding-bottom: 120px;
}
.staff-layout01 .l-img::before {
  position: absolute;
  content: "";
  background: url(../images/under/staff-layout_deco.svg) center/contain no-repeat;
  width: 351px;
  height: 275px;
  left: -126px;
  bottom: 0;
  z-index: -1;
}
.staff-layout01 .l-desc {
  flex: 1;
}
.staff-layout01 .l-ttl {
  font-size: 28px;
  margin-bottom: 30px;
  line-height: 2;
}
.staff-layout01 .staff-name {
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 15px;
  line-height: 1;
}
.staff-layout01 .job {
  font-size: 14px;
  display: block;
}
.staff-layout01 .name {
  font-size: 20px;
  display: block;
}
.staff-layout01 .card-profile {
  margin-top: 60px;
}

@media (max-width: 800px) {
  .staff-layout01 .wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .staff-layout01 .l-img {
    width: auto;
    max-width: 300px;
    margin: 0 auto;
    padding-bottom: 30px;
  }
  .staff-layout01 .l-img::before {
    width: 201px;
    height: 125px;
    left: -70px;
    bottom: 0;
    z-index: -1;
  }
  .staff-layout01 .l-ttl {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  .staff-layout01 .name {
    font-size: 18px;
  }
}
.card-profile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5%;
}
.card-profile .item {
  background: #f2ebcc;
  padding: 7%;
}
.card-profile .card-ttl {
  color: #a838b7;
  border-bottom: 1px dashed #d6c6a9;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 20px;
}

@media (max-width: 800px) {
  .card-profile {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
  .card-profile .item {
    padding: 20px;
  }
}
.dl-career {
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-gap: 12px 0;
  line-height: 1.5;
}

/*------------------------------------
アコーディオン
-------------------------------------*/
.accordion-style01 .accordion-btn {
  cursor: pointer;
  position: relative;
}
.accordion-style01 .accordion-ttl {
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  letter-spacing: 0;
  padding: 30px 40px;
  border-bottom: 1px solid #efe7d5;
}
.accordion-style01 .accordion-ttl::before {
  position: absolute;
  content: "Q.";
  color: #5d4432;
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  left: 0;
}
.accordion-style01 .accordion-desc {
  display: none;
  padding: 20px 40px 40px;
  position: relative;
}
.accordion-style01 .accordion-desc::before {
  position: absolute;
  content: "A.";
  color: #a838b7;
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  left: 0;
}
.accordion-style01 .accordion-open-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 15px;
  top: 50%;
  transition: 0.3s;
  transform: translateY(-50%);
}
.accordion-style01 .accordion-open-icon::before, .accordion-style01 .accordion-open-icon::after {
  content: "";
  display: block;
  background: #5d4432;
  position: absolute;
  width: 22.5px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transition: 0.3s;
}
.accordion-style01 .accordion-open-icon::before {
  transform: translateX(-50%);
}
.accordion-style01 .accordion-open-icon::after {
  transform: rotate(90deg) translateX(-50%);
  transform-origin: left;
  transition: transform 0.5s;
}
.accordion-style01 .is-open .accordion-open-icon {
  transform: translateY(-50%) rotate(180deg);
}
.accordion-style01 .is-open .accordion-open-icon::after {
  opacity: 0;
}

@media (max-width: 800px) {
  .accordion-style01 {
    line-height: 1.5;
  }
  .accordion-style01 .accordion-btn {
    padding: 0;
  }
  .accordion-style01 .accordion-ttl {
    font-size: 18px;
    padding: 20px 40px 20px 30px;
  }
  .accordion-style01 .accordion-ttl::before {
    top: 16px;
  }
  .accordion-style01 .accordion-desc {
    padding: 20px 0 30px 30px;
  }
  .accordion-style01 .accordion-open-icon {
    right: 0;
  }
  .accordion-style01 .accordion-open-icon::before, .accordion-style01 .accordion-open-icon:after {
    width: 18px;
  }
}
/*------------------------------------
スライドショー
-------------------------------------*/
.gallery-slider01 {
  overflow: hidden;
}
.gallery-slider01 .splide {
  margin: 0 auto;
}
.gallery-slider01 .splide__track {
  overflow: visible;
  max-height: 500px;
}
.gallery-slider01 .splide__slide {
  opacity: 0.6;
  transition: opacity 0.5s ease-in-out;
}
.gallery-slider01 .splide__slide.is-active {
  opacity: 1;
}
.gallery-slider01 .splide__arrow--prev {
  top: 47%;
  left: calc((100% - 900px) / 2);
}
.gallery-slider01 .splide__arrow--next {
  top: 47%;
  right: calc((100% - 900px) / 2);
}
.gallery-slider01 .item-img {
  margin: 0;
}
.gallery-slider01 .item-img img {
  display: block;
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 800px) {
  .gallery-slider01 {
    max-height: auto;
  }
  .gallery-slider01 .item-img img {
    height: auto;
  }
}
/*------------------------------------
以下オリジナルパーツ、案件に不要な箇所は削除
-------------------------------------*/
.map_img {
  width: 690px;
  border: 1px solid #d6c6a9;
}
@media (max-width: 800px) {
  .map_img {
    width: 100%;
  }
}

/*------------
Footer
--------------*/
.footer {
  position: relative;
  color: #fdfbf1;
}
.footer-inr {
  display: flex;
}
.footer-top {
  background: url(../images/cta_bg.jpg) center/cover no-repeat;
  padding: 110px 0 90px;
}
.footer-top .f-left {
  flex: 1;
  margin-right: 110px;
}
.footer-top .f-left__ttl {
  font-size: 40px;
  letter-spacing: 11%;
  margin-bottom: 40px;
}
.footer-top .f-left__txt {
  font-size: 20px;
  line-height: 1.9;
}
.footer-top .f-right {
  width: 320px;
}
.footer .f-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fdfbf1;
}
.footer .f-cta a {
  display: flex;
  align-items: center;
  width: 320px;
  min-height: 68px;
  padding: 5px 60px 5px 30px;
  font-size: 18px;
  line-height: 1.4;
  color: #fdfbf1;
  border: 1px solid #fdfbf1;
  border-radius: 80px;
  transition: 0.3s;
  position: relative;
  font-weight: 400;
}
.footer .f-cta a img {
  width: 40px;
  margin-right: 10px;
}
.footer .f-cta a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 26px;
  height: 7px;
  background: url(../images/share/arrow_w.svg) center/contain no-repeat;
  transition: 0.3s;
}
.footer .f-cta a:hover {
  background: rgba(93, 68, 50, 0.2);
}
.footer .f-cta a:hover::before {
  right: 10px;
}
.footer .f-cta a + a {
  margin-top: 20px;
}
.footer .f-cta a.web {
  background: #8f3356;
  position: relative;
}
.footer .f-cta a.web::before {
  position: absolute;
  content: "";
  background: url(../images/share/icon_out.svg);
  width: 15px;
  height: 13px;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.footer .f-cta a.web:hover {
  opacity: 0.8;
}
.footer-bottom {
  background: url(../images/footer_bg.jpg) center/cover no-repeat;
  padding: 110px 0 0;
}
.footer-bottom .footer-inr {
  padding-bottom: 60px;
}
.footer-bottom .f-left {
  flex: 1;
  margin-right: 10%;
}
.footer-bottom .f-right {
  flex: 1;
}
.footer .f-logo {
  display: block;
  max-width: 296px;
  margin-bottom: 20px;
}
.footer .f-access {
  margin-bottom: 10px;
}
.footer .f-tel {
  font-family: "Shippori Mincho", serif;
  font-size: 35px;
  letter-spacing: 5%;
  line-height: 1;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.footer .f-tel img {
  margin: 5px 10px 0 0;
  width: 26px;
}
.footer .f-icon__list {
  display: flex;
  gap: 20px;
}
.footer .f-icon__list > li:last-child a {
  width: 120px;
}
.footer .f-icon__list > li:last-child a img {
  width: 120px;
}
.footer .f-icon__list a {
  display: block;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}
.footer .f-icon__list a img {
  width: auto;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.3s;
}
.footer .f-icon__list a + a {
  margin-left: 15px;
}
.footer .f-icon__list a:hover {
  opacity: 0.7;
}
.footer .f-navi {
  display: flex;
}
.footer .f-navi-item {
  flex: 1;
}
.footer .f-navi-item:not(:last-child) {
  margin-right: 8%;
}
.footer .f-navi-list li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  padding-left: 22px;
  position: relative;
}
.footer .f-navi-list li::before {
  position: absolute;
  content: "";
  top: 16px;
  left: 0;
  width: 12px;
  height: 1px;
  background: #fdfbf1;
}
.footer .f-navi-list li + li {
  margin-top: 15px;
}
.footer .f-navi-list a:hover {
  text-decoration: underline;
}
.footer .copyright {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1;
  color: rgba(253, 251, 241, 0.8);
  text-align: center;
  padding: 30px;
  border-top: 1px solid rgba(253, 251, 241, 0.3);
}
.footer .pagetop {
  display: block;
  position: absolute;
  top: 56%;
  right: -40px;
  z-index: 2;
  transition: 0.3s;
  transform: translateY(-50%) rotate(90deg);
  font-family: "Baskervville SC", serif;
  padding-left: 30px;
}
.footer .pagetop::before {
  position: absolute;
  content: "";
  background: url(../images/share/arrow_w.svg) center/contain no-repeat;
  width: 26px;
  height: 7px;
  top: 48%;
  left: -5px;
  transform: translateY(-50%) rotate(-180deg) scaleY(-1);
  transition: 0.3s;
}
.footer .pagetop:hover::before {
  left: -10px;
}

@media (max-width: 800px) {
  .footer-inr {
    display: block;
  }
  .footer-top {
    padding: 80px 0;
  }
  .footer-top .footer-inr {
    display: block;
  }
  .footer-top .f-left {
    margin: 0 auto 40px;
    text-align: center;
  }
  .footer-top .f-left__ttl {
    font-size: 23px;
    margin-bottom: 40px;
  }
  .footer-top .f-left__txt {
    font-size: 16px;
    line-height: 1.6;
  }
  .footer-top .f-right {
    width: 100%;
  }
  .footer .f-cta a {
    width: 100%;
  }
  .footer-bottom {
    padding: 80px 0 0;
  }
  .footer-bottom .footer-inr {
    padding-bottom: 60px;
  }
  .footer-bottom .f-left {
    margin: 0 auto 60px;
  }
  .footer .f-logo {
    margin: 0 auto 20px;
  }
  .footer .f-access {
    text-align: center;
    margin-bottom: 15px;
  }
  .footer .f-tel {
    font-size: 30px;
    justify-content: center;
    margin-bottom: 30px;
  }
  .footer .f-tel img {
    margin: 5px 5px 0 0;
    width: 25px;
  }
  .footer .f-icon__list {
    justify-content: center;
  }
  .footer .f-navi {
    flex-direction: column;
  }
  .footer .f-navi-item {
    width: 100%;
  }
  .footer .f-navi-item:not(:last-child) {
    margin: 0 0 15px;
  }
  .footer .copyright {
    font-size: 11px;
    padding: 15px 15px 85px;
  }
  .footer .pagetop {
    display: none;
  }
}
/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
.list-post-type01 .list-item {
  border-bottom: 1px solid #d6c6a9;
}
.list-post-type01 .list-item:first-child {
  border-top: 1px solid #d6c6a9;
}
.list-post-type01 .list-item:last-child {
  margin-bottom: 0;
}
.list-post-type01 .list-item a {
  padding: 40px 0;
  display: block;
  transition: 0.3s;
}
.list-post-type01 .list-item a:hover {
  opacity: 0.6;
}

.post-layout {
  display: flex;
}
.post-layout .post-img {
  flex: 1;
  margin-right: 40px;
}
.post-layout .post-img img {
  width: 100%;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-layout .post-desc {
  flex: 2;
}

/*詳細ページ*/
.post-single-img {
  text-align: center;
  margin-bottom: 40px;
}

/*投稿本文用CSS*/
.postdata {
  overflow-wrap: break-word;
}
.postdata h4 {
  font-size: 18px;
  color: #fdfbf1;
}
.postdata h5 {
  font-size: 17px;
  padding-left: 10px;
  position: relative;
}
.postdata h5:after {
  content: "-";
  color: #fdfbf1;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}
.postdata h6 {
  font-size: 16px;
  color: #fdfbf1;
}
.postdata .screen-reader-text {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.postdata .screen-reader-text:focus {
  background-color: #eee;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
.postdata iframe {
  max-width: 100%;
}
.postdata p,
.postdata ul,
.postdata ol {
  margin-bottom: 15px;
}
.postdata a:not(.wp-block-button__link) {
  text-decoration: underline;
}
.postdata a:focus-visible {
  text-decoration: none;
}
.postdata strong {
  font-weight: bold;
}
.postdata em {
  font-style: italic;
}
.postdata ul li {
  list-style: inside disc;
}
.postdata ul li > ul {
  margin: 0 0 0 15px;
}
.postdata ol li {
  list-style: inside decimal;
}
.postdata ol li > ol {
  margin: 0 0 0 15px;
}
.postdata sub {
  font-size: 11px;
  position: relative;
  bottom: -0.1em;
}
.postdata sup {
  font-size: 11px;
  position: relative;
  top: -0.1em;
}
.postdata .screen-reader-text {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.postdata .screen-reader-text:focus {
  background-color: #eee;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
.postdata iframe {
  max-width: 100%;
}
.postdata .wp-block-button__link {
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  border-radius: 2px;
  color: #fff;
  font-size: 15px;
  padding: 5px 35px;
  min-width: 200px;
  position: relative;
  text-decoration: none;
  transition: background-color 0.3s;
}
.postdata .wp-block-button__link::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  transition: border-color 0.3s;
}
.postdata .wp-block-button__link:hover {
  opacity: 1;
  background-color: #fff;
  color: var(--color_primary);
}

.post-data {
  line-height: 1;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.post-data time {
  font-size: 16px;
  color: rgba(93, 68, 50, 0.6);
  line-height: 1;
  font-family: "Shippori Mincho", serif;
}
.post-data .post-category01 {
  margin-left: 15px;
}

.post-category01 {
  line-height: 1;
  margin-left: -2px;
}
.post-category01 span {
  display: inline-block;
  font-size: 12px;
  border: 1px solid #e69966;
  color: #e69966;
  padding: 5px 10px;
  margin: 2px;
}

.post-ttl {
  font-size: 28px;
  margin-bottom: 25px;
  word-break: break-all;
}

/*一覧用ページャー*/
.post-number {
  margin-top: 100px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  border-bottom: 1px solid #d3d3d3;
  font-family: "Baskervville SC", serif;
  font-weight: 500;
}
.post-number a {
  color: #a5a5a5;
  display: inline-block;
  padding: 0 10px 15px;
}
.post-number a:hover {
  color: #e69966;
}
.post-number .current {
  color: #e69966;
  display: inline-block;
  padding: 0 10px 15px;
  position: relative;
}
.post-number .current::after {
  content: "";
  border-bottom: 2px solid #e69966;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
}

/*詳細用ページャー*/
.post-number-single {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #d3d3d3;
  font-family: "Baskervville SC", serif;
  font-weight: 500;
}
.post-number-single a {
  display: inline-block;
  line-height: 1.7;
}
.post-number-single a.next {
  margin-top: 0;
}
.post-number-single a.next::before {
  content: "";
  background: url(../images/share/icon_arrow_post_left.svg) no-repeat center/contain;
  display: inline-block;
  margin-right: 15px;
  width: 30px;
  height: 30px;
}
.post-number-single a.prev {
  margin-top: 0;
}
.post-number-single a.prev::after {
  content: "";
  background: url(../images/share/icon_arrow_post_right.svg) no-repeat center/contain;
  display: inline-block;
  margin-left: 15px;
  width: 30px;
  height: 30px;
}
.post-number-single a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 800px) and (min-width: 0px) {
  .list-post-type01 .list-item a {
    padding: 20px 0;
  }
  .post-layout {
    display: block;
  }
  .post-layout .post-img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .post-layout .post-desc {
    width: 100%;
  }
  .post-single-img {
    margin-bottom: 30px;
  }
  .postdata h4 {
    font-size: 17px;
  }
  .postdata h5 {
    font-size: 16px;
  }
  .postdata h6 {
    font-size: 15px;
  }
  .post-data {
    font-size: 14px;
  }
  .post-data .post-category01 {
    margin-left: 15px;
  }
  /*詳細ページ*/
  /*セレクト式カテゴリー*/
  /*一覧用ページャー*/
  .post-number {
    margin-top: 60px;
  }
  .post-ttl {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
/*-----------------------------------------------------------
ボタン
-----------------------------------------------------------*/
.btn-more {
  display: flex;
  align-items: center;
  width: 320px;
  height: 68px;
  padding: 5px 80px 5px 30px;
  font-size: 18px;
  line-height: 1.4;
  color: #5d4432;
  border: 1px solid #5d4432;
  border-radius: 80px;
  transition: 0.3s;
  position: relative;
  font-weight: 400;
}
@media (max-width: 800px) {
  .btn-more {
    width: 100%;
    padding: 5px 40px 5px 30px;
  }
}
.btn-more:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 26px;
  height: 7px;
  background: url(../images/share/arrow.svg) center/contain no-repeat;
  transition: 0.3s;
}
.btn-more:hover {
  background: rgba(93, 68, 50, 0.1);
}
.btn-more:hover:before {
  right: 15px;
}
.btn-more.center {
  margin-left: auto;
  margin-right: auto;
}
.btn-more.wide {
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 800px) {
  .btn-more.wide {
    width: 100%;
  }
}
.btn-more.white {
  color: #fdfbf1;
  border: 1px solid #fdfbf1;
}
.btn-more.white::before {
  background: url(../images/share/arrow_w.svg) center/contain no-repeat;
}
.btn-more.web {
  background: #8f3356;
  position: relative;
  color: #fff;
  padding: 5px 60px 5px 30px;
  border: 1px solid #8f3356;
}
.btn-more.web::before {
  position: absolute;
  content: "";
  background: url(../images/share/icon_out.svg);
  width: 15px;
  height: 13px;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.btn-more.web:hover {
  opacity: 0.8;
}

.btn-icon {
  display: flex;
  align-items: center;
  width: 320px;
  height: 68px;
  padding: 5px 80px 5px 30px;
  font-size: 18px;
  line-height: 1.4;
  color: #5d4432;
  border: 1px solid #5d4432;
  border-radius: 80px;
  transition: 0.3s;
  position: relative;
  font-weight: 400;
}
.btn-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 26px;
  height: 7px;
  background: url(../images/share/arrow.svg) center/contain no-repeat;
  transition: 0.3s;
}
.btn-icon img {
  width: 40px;
  margin-right: 10px;
}
.btn-icon:hover {
  background: rgba(93, 68, 50, 0.1);
}
.btn-icon:hover:before {
  right: 15px;
}
.btn-icon.center {
  margin-left: auto;
  margin-right: auto;
}
.btn-icon.wide {
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 800px) {
  .btn-icon.wide {
    width: 100%;
  }
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.btn-wrap.center {
  justify-content: center;
}

@media (max-width: 800px) {
  .btn-icon,
  .btn-line {
    width: 100%;
    padding: 5px 40px 5px 30px;
  }
  .btn-wrap {
    flex-direction: column;
    gap: 15px;
  }
}
/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
.clearfix:after {
  clear: both;
  content: "";
  display: block;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

hr {
  max-width: 1024px;
  margin: 50px auto;
}

.fade {
  transition: opacity 0.3s;
}
.fade:hover {
  opacity: 0.7;
}

.fs11 {
  font-size: 11px;
}

.txt-large {
  font-size: 20px;
}

.bold,
strong {
  font-weight: bold;
}

.underline {
  text-decoration: underline;
}

.link {
  text-decoration: underline;
  word-break: break-all;
  position: relative;
}
.link:is(:hover, :focus) {
  text-decoration: none;
}

.no-link {
  pointer-events: none;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.notice {
  font-size: 0.8rem;
  text-indent: -1.6em;
  padding-left: 1.6em;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mbXS {
  margin-bottom: 10px !important;
}

.mbS {
  margin-bottom: 20px !important;
}

.mbM {
  margin-bottom: 40px !important;
}

.mbL {
  margin-bottom: 80px !important;
}

.mbXL {
  margin-bottom: 100px !important;
}

.mt0 {
  margin-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.txt-color01 {
  color: #a838b7;
}

@media (max-width: 800px) {
  .txt-large {
    font-size: 18px;
  }
  .marker .large {
    font-size: 24px;
  }
  .marker .small {
    font-size: 18px;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .sp-tac {
    text-align: center !important;
  }
  .sp-tar {
    text-align: right !important;
  }
  .sp-tal {
    text-align: left !important;
  }
  .mbL {
    margin-bottom: 50px !important;
  }
  .mbXL {
    margin-bottom: 60px !important;
  }
}
.c-map {
  position: relative;
  width: 100%;
  height: 500px;
}
@media (max-width: 800px) {
  .c-map {
    height: 300px;
  }
}
.c-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-tel {
  display: inline-block;
  font-size: 28px;
  font-family: "Baskervville SC", serif;
  color: #e69966;
  line-height: 1;
  padding-left: 25px;
  position: relative;
}
@media (max-width: 800px) {
  .c-tel {
    font-size: 24px;
    padding-left: 25px;
  }
}
.c-tel:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../images/share/icon_tel.svg) center/contain no-repeat;
  width: 20px;
  height: 25px;
}
@media (max-width: 800px) {
  .c-tel:before {
    width: 18px;
    height: 23px;
  }
}

/*------------
splide-core.min.css　※※※編集禁止※※※
-------------*/
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

/*-----------------------------------------------------------
  splide
-----------------------------------------------------------*/
/* 各種色設定 */
:root {
  --splide-arrow-color: #5d4432; /* 矢印 */
  --splide-focus-color: #5d4432; /* タブ移動によるフォーカス時のアウトライン */
  --splide-pagination-color: #5d4432; /* アクティブ時のページネーション */
  --splide-progress-color: #5d4432; /* プログレスバー */
  --splide-toggle-color: #5d4432; /* 再生ボタン */
  --splide-track-color: #5d4432; /* サムネイルの枠 */
}

.splide {
  position: relative;
  visibility: hidden;
}
.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}
.splide.is-focus-in .splide__arrow:focus,
.splide.is-focus-in .splide__pagination__page:focus,
.splide.is-focus-in .splide__slide:focus,
.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  backface-visibility: hidden;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}
.splide__pagination li {
  display: inline-block;
  list-style: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress {
  background: #ddd;
  margin-top: 10px;
}
.splide__progress__bar {
  width: 0;
  background: var(--splide-progress-color);
  height: 3px;
}

.splide__slide {
  box-sizing: border-box;
  flex-shrink: 0;
  list-style: none !important;
  margin: 0;
  position: relative;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.splide__slide:focus {
  outline: 0;
}

.splide__arrow {
  background: none;
  border: none;
  cursor: pointer;
  width: 35px;
  height: 35px;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.2s;
}
.splide__arrow svg {
  fill: none;
  width: 100%;
  height: 100%;
}
.splide__arrow:hover:not(:disabled), .splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow--prev {
  left: 20px;
  transform: translateY(-50%);
}
.splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrow--next {
  right: 20px;
}

.splide__pagination__page {
  border-radius: 50%;
  display: inline-block;
  height: 6px;
  margin: 4px;
  opacity: 1;
  width: 6px;
  transition: transform 0.2s linear;
  border: 2px solid rgba(93, 68, 50, 0.2);
}
.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}
.splide__pagination__page.is-active {
  background: var(--splide-pagination-color);
  z-index: 1;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
@media (max-width: 800px) {
  .splide__arrow {
    width: 25px;
    height: 25px;
  }
  .splide__arrow--prev {
    left: 10px;
  }
  .splide__arrow--next {
    right: 10px;
  }
}/*# sourceMappingURL=style.css.map */