@charset "UTF-8";

/*-----------------------------------------------------------
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: #d4dcd6;
}

::selection {
  background: #d4dcd6;
}

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

body,
html {
  height: 100%;
}

body {
  background-color: #F2EFE7;
  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: #5F4B22;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.1em;
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "FOT-筑紫A丸ゴシック Std D", sans-serif;
  letter-spacing: 0.05em;
}

@media (max-width: 800px) {

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

th, dt {
  font-family: "FOT-筑紫A丸ゴシック Std D", sans-serif;
}

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

.container, .breadcrumb ul {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}

.container.wide, .breadcrumb ul.wide {
  max-width: 1300px;
}

.container.narrow, .breadcrumb ul.narrow {
  max-width: 800px;
}

@media (max-width: 800px) {
  body {
    font-size: 15px;
    line-height: 1.8;
  }

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

  .container, .breadcrumb ul {
    margin: 0 auto;
    max-width: 90%;
    width: 90%;
  }
}

/*------------
Header
--------------*/
.header {
  position: static;
  z-index: 9999;
  width: 100%;
  transition: 0.3s;
}

.header-inr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
  width: 100%;
  height: 100px;
}

@media (max-width: 1280px) {
  .header-inr {
    padding: 30px 20px 30px 30px;
  }
}

.header .h-logo {
  width: 30%;
  max-width: 258px;
}

.header .h-logo a {
  display: block;
}

.header .h-logo img {
  width: 100%;
}

@media (max-width: 800px) {
  .header {
    position: static;
  }

  .header-inr {
    height: auto;
    display: block;
    padding: 22px 25px;
  }

  .header .h-logo {
    width: 100%;
    max-width: 210px;
  }
}

/*------------
G-navi
--------------*/
.pc-navi-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.pc-navi .item {
  font-family: "FOT-筑紫A丸ゴシック Std D", sans-serif;
  line-height: 1.4;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.pc-navi .item .item-link {
  display: block;
  transition: 0.3s;
}

.pc-navi .item .item-link:hover {
  color: #D65543;
}

.pc-navi .item:not(:last-child) {
  margin-right: 35px;
}

@media (max-width: 1280px) {
  .pc-navi .item {
    font-size: 14px;
  }

  .pc-navi .item:not(:last-child) {
    margin-right: 20px;
  }
}

.pc-dropdown {
  position: relative;
}

.pc-dropdown .item-link {
  padding-right: 15px;
  position: relative;
}

.pc-dropdown .item-link::before {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  border-bottom: 1px solid #5F4B22;
  border-right: 1px solid #5F4B22;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
}

.pc-dropdown .pc-navi-child {
  background-color: #fff;
  border-radius: 8px;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  text-align: center;
  padding: 26px 28px 28px;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  width: -moz-fit-content;
  width: fit-content;
  transform: translate(-50%, -10px);
  transition: 0.4s ease-in-out;
}

.pc-dropdown .pc-navi-child li {
  font-family: "FOT-筑紫A丸ゴシック Std D", sans-serif;
  line-height: 2;
  width: 100%;
  white-space: nowrap;
}

.pc-dropdown .pc-navi-child li:hover {
  text-decoration: underline;
}

.pc-dropdown::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 30px;
}

.pc-dropdown:hover .item-link {
  color: #D65543;
}

.pc-dropdown:hover .pc-navi-child {
  pointer-events: auto;
  transform: translate(-50%, 0);
  opacity: 1;
}

.sp-navi {
  display: none;
}

@media (max-width: 800px) {
  .gnavi-drawer {
    display: none;
  }

  .pc-navi {
    display: none;
  }

  .pc-navi01, .pc-navi02, .pc-navi03 {
    display: none;
  }

  :root {
    --navi-background: #D65543;
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --menu-btn: #fff;
    --navi-font: "FOT-筑紫A丸ゴシック Std D", "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
    --sp-btn-color: #E67A7A;
  }

  .sp-navi {
    display: block;
    /* ボタン類 */
    /* コンテンツ */
  }

  .sp-navi .sp-navi-btns {
    display: flex;
    background: var(--navi-background);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    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: 10px;
    font-family: var(--navi-font);
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }

  .sp-navi .sp-navi-btns .item:last-child {
    border-right: none;
  }

  .sp-navi .sp-navi-btns .item:first-child a {
    justify-content: center;
  }

  .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;
  }

  .sp-navi .sp-navi-btns .item .img svg {
    -o-object-fit: cover;
    object-fit: cover;
    height: 20px;
    margin-bottom: 5px;
    stroke: var(--svg-stroke);
  }

  .sp-navi .sp-navi-btns .item .ttl {
    display: block;
  }

  .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: var(--navi-font);
    font-size: 10px;
    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: 12px;
    height: 1px;
    transform: translateX(-50%);
    transition: 0.4s;
  }

  .sp-navi .sp-menu-btn span:not(.ttl):nth-of-type(1) {
    top: 11px;
  }

  .sp-navi .sp-menu-btn span:not(.ttl):nth-of-type(2) {
    top: 16px;
  }

  .sp-navi .sp-menu-btn span:not(.ttl):nth-of-type(3) {
    top: 22px;
  }

  .sp-navi .sp-menu-btn.is-open span:nth-of-type(1) {
    transform: translate(-50%, 5.5px) rotate(-45deg);
  }

  .sp-navi .sp-menu-btn.is-open span:nth-of-type(2) {
    opacity: 0;
  }

  .sp-navi .sp-menu-btn.is-open span:nth-of-type(3) {
    transform: translate(-50%, -5.5px) rotate(45deg);
  }

  .sp-navi .sp-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background: #fff;
    font-family: var(--navi-font);
    padding: 50px 10% 100px;
    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 #d6d6d6;
    margin: 0 0 30px;
  }

  .sp-navi .sp-navi-list>li {
    border-bottom: 1px solid #d6d6d6;
  }

  .sp-navi .sp-navi-list>li>a, .sp-navi .sp-navi-list>li span {
    display: block;
    font-size: 14px;
    font-family: "FOT-筑紫A丸ゴシック Std D", sans-serif;
    line-height: 1;
    text-decoration: none;
    padding: 15px 0;
  }

  .sp-navi .sp-navi-list>li.sp-dropdown {
    position: relative;
  }

  .sp-navi .sp-navi-list>li.sp-dropdown::before, .sp-navi .sp-navi-list>li.sp-dropdown::after {
    content: "";
    background-color: #D65543;
    position: absolute;
    transition: 0.5s;
  }

  .sp-navi .sp-navi-list>li.sp-dropdown::before {
    width: 1px;
    height: 11px;
    top: 17px;
    right: 20px;
  }

  .sp-navi .sp-navi-list>li.sp-dropdown::after {
    width: 11px;
    height: 1px;
    top: 22px;
    right: 15px;
  }

  .sp-navi .sp-navi-list>li.sp-dropdown.is-on::before {
    transform: rotate(90deg);
  }

  .sp-navi .sp-navi-list>li.sp-dropdown>a {
    padding: 15px 0;
    width: 85%;
  }

  .sp-navi .sp-navi-list .child {
    padding: 0 0 15px;
  }

  .sp-navi .sp-navi-list .child>ul>li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
    font-family: "FOT-筑紫A丸ゴシック Std D", sans-serif;
  }

  .sp-navi .sp-navi-list .child>ul>li::before {
    content: "-";
    color: #D65543;
    position: absolute;
    left: 0;
    top: 0;
  }

  .sp-navi .sp-navi-list .child>ul>li>a {
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
  }

  .sp-navi .sp-btn {
    background: var(--sp-btn-color);
    border-radius: 5px;
    color: #fff;
    display: block;
    padding: 10px;
    text-align: center;
    transition: 0.5s;
  }
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  width: 100%;
  padding-bottom: 30px;
  position: relative;
}

.hero .splide {
  visibility: hidden;
}

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

.hero .splide__list {
  display: flex;
  margin: 0 !important;
  padding: 0 !important;
}

.hero .splide__slide {
  flex-shrink: 0;
  /* スライド幅固定 */
  list-style: none !important;
  box-sizing: border-box;
}

.hero .splide__slide img {
  width: 100%;
  height: 800px;
  border-radius: 15px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.hero-desc {
  position: absolute;
  top: -5px;
  right: 10%;
  height: 100%;
  width: 100%;
  background-color: #F2EFE7;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 100px 20px 50px;
  z-index: 2;
}

.hero-desc .en {
  position: absolute;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  -moz-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-size: 53px;
  color: #E5DFCF;
  right: 0;
  top: 43px;
}

@media (max-width: 1280px) {
  .hero-desc {
    max-width: 450px;
    padding: 20px 60px 20px 30px;
  }

  .hero-desc .en {
    font-size: 40px;
  }
}

.hero-ttl {
  font-family: "FOT-筑紫A丸ゴシック Std D", sans-serif;
  line-height: 1.4;
  margin-bottom: 45px;
  letter-spacing: 0.05em;
}

.hero-ttl .ttl {
  font-size: 43px;
  margin-bottom: 20px;
}

@media (max-width: 1280px) {
  .hero-ttl .ttl {
    font-size: 40px;
  }
}

.hero-ttl .sub-ttl {
  font-size: 18px;
  background-color: #D65543;
  border-radius: 18px;
  padding: 5px 20px;
  color: #fff;
  display: inline-block;
}

.hero .hero-tel {
  margin-bottom: 80px;
}

.hero .hero-tel .tel {
  font-size: 36px;
}

.hero .hero-tel .tel .small {
  font-size: 21px;
}

@media (max-width: 800px) {
  .hero {
    padding-bottom: 0;
  }

  .hero .splide__slide img {
    height: 293px;
    border-radius: 8px;
  }

  .hero-desc {
    position: static;
    max-width: initial;
    height: auto;
    padding: 31px 25px 50px;
    z-index: 2;
  }

  .hero-desc .en {
    display: none;
  }

  .hero-ttl {
    margin-bottom: 20px;
  }

  .hero-ttl .ttl {
    font-size: clamp(30px, 8vw, 32px);
    margin-bottom: 20px;
  }

  .hero-ttl .sub-ttl {
    font-size: 14px;
    padding: 5px 15px;
  }

  .hero .hero-tel {
    margin-bottom: 35px;
  }

  .hero .hero-tel .tel {
    font-size: 30px;
  }

  .hero .hero-tel .tel .small {
    font-size: 18px;
  }
}

/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
.t-ttl {
  margin-bottom: 90px;
}

.t-ttl .en {
  font-family: "Montserrat", sans-serif;
  font-size: 57px;
  font-weight: 600;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.t-ttl .jp {
  font-family: "FOT-筑紫A丸ゴシック Std D", sans-serif;
  font-size: 17px;
  padding-left: 18px;
  position: relative;
}

.t-ttl .jp::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #D65543;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

@media (max-width: 800px) {
  .t-ttl {
    margin-bottom: 30px;
  }

  .t-ttl .en {
    font-size: 35px;
    margin-bottom: 5px;
  }

  .t-ttl .jp {
    font-size: 18px;
  }

  .t-ttl .jp::before {
    top: 10px;
  }
}

/*------------
Block
--------------*/
.sec01 {
  padding: 100px 0 90px;
}

.sec01-box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: #fff;
  padding: 25px 40px;
  border-radius: 8px;
}

.sec01-ttl {
  margin-right: 85px;
}

.sec01 .t-ttl {
  margin-bottom: 0;
}

.sec01 .t-ttl .en {
  font-size: 25px;
  margin-bottom: 5px;
}

.sec01 .t-ttl .jp {
  font-size: 17px;
}

.sec01 .list-top-news02 {
  flex: 1;
  margin-right: 65px;
}

.sec01 .l-btn {
  width: 150px;
}

.sec01 .l-btn .btn-more {
  max-width: 150px;
}

.sec02 {
  padding-bottom: 130px;
}

.sec02-layout {
  display: flex;
  align-items: center;
}

.sec02-layout .l-img {
  width: 41%;
}

.sec02-layout .l-img img {
  border-radius: 15px;
  min-height: 619px;
  -o-object-fit: cover;
  object-fit: cover;
}

.sec02-layout .l-desc {
  flex: 1;
  margin-left: 8%;
}

.sec02-layout .l-desc .t-ttl {
  margin-bottom: 70px;
}

.sec02-layout .l-desc .l-txt {
  margin-bottom: 60px;
}

.sec02-layout .l-desc .l-txt p+p {
  margin-top: 1rem;
}

.sec03 {
  padding: 130px 0;
  background-color: #FCFAF5;
  border-radius: 60px;
}

.sec03-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 44px;
}

.sec03-list li .list-img {
  text-align: center;
  margin-bottom: 40px;
}

.sec03-list li .list-ttl {
  font-size: 21px;
  padding-bottom: 17px;
  margin-bottom: 25px;
  position: relative;
}

.sec03-list li .list-ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 3px solid #D65543;
  width: 10px;
  height: 3px;
}

.sec04 {
  padding: 125px 0 130px;
}

.sec04-layout {
  display: flex;
  justify-content: space-between;
}

.sec04-layout .t-ttl {
  margin-bottom: 0;
  -moz-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

.sec04-layout .t-ttl .en {
  margin-left: 10px;
}

.sec04-layout .t-ttl .jp {
  padding: 16px 0 0;
  display: block;
}

.sec04-layout .t-ttl .jp::before {
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.sec04-layout .l-ttl {
  font-size: 20px;
  padding-bottom: 9px;
  border-bottom: 1px solid #5E4B22;
  margin-bottom: 70px;
  display: inline-block;
}

.sec04-layout .item {
  max-width: 877px;
}

.sec04-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 877px;
}

.sec04-wrap .sec04-list li {
  position: absolute;
  z-index: 1;
  line-height: 1.4;
}

.sec04-wrap .sec04-list li a {
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #D65543;
  padding: 14px 20px;
  position: relative;
  display: inline-block;
  width: 167px;
  transition: 0.3s;
  font-family: "FOT-筑紫A丸ゴシック Std D", sans-serif;
  letter-spacing: 0.05em;
  font-size: 17px;
}

.sec04-wrap .sec04-list li a:hover {
  opacity: 0.5;
}

.sec04-wrap .sec04-list li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: url(../images/btn_arrow02.png) center/contain no-repeat;
  width: 24px;
  height: 24px;
}

.sec04-wrap .sec04-list.left li {
  left: 0;
}

.sec04-wrap .sec04-list.left li::after {
  content: "";
  position: absolute;
  border: 0.5px dashed #D65543;
  height: 1px;
  z-index: 3;
}

.sec04-wrap .sec04-list.left li:nth-of-type(1) {
  top: 0;
}

.sec04-wrap .sec04-list.left li:nth-of-type(1)::after {
  top: 55px;
  width: 250px;
  right: -250px;
  transform: rotate(13.5deg);
}

.sec04-wrap .sec04-list.left li:nth-of-type(2) {
  top: 25%;
}

.sec04-wrap .sec04-list.left li:nth-of-type(2)::after {
  top: 77px;
  width: 90px;
  right: -68px;
  transform: rotate(61deg);
}

.sec04-wrap .sec04-list.left li:nth-of-type(3) {
  top: 55%;
}

.sec04-wrap .sec04-list.left li:nth-of-type(3)::after {
  top: -31px;
  right: -217px;
  width: 230px;
  transform: rotate(-30deg);
}

.sec04-wrap .sec04-list.left li:nth-of-type(4) {
  top: 78%;
}

.sec04-wrap .sec04-list.left li:nth-of-type(4)::after {
  top: -10px;
  right: -219px;
  width: 225px;
  transform: rotate(-19deg);
}

.sec04-wrap .sec04-list.right li {
  right: 0;
}

.sec04-wrap .sec04-list.right li::after {
  content: "";
  position: absolute;
  border: 0.5px dashed #D65543;
  height: 1px;
  z-index: 3;
}

.sec04-wrap .sec04-list.right li:nth-of-type(1) {
  top: 0;
}

.sec04-wrap .sec04-list.right li:nth-of-type(1)::after {
  top: 66px;
  width: 210px;
  left: -203px;
  transform: rotate(-22deg);
}

.sec04-wrap .sec04-list.right li:nth-of-type(2) {
  top: 28%;
}

.sec04-wrap .sec04-list.right li:nth-of-type(2)::after {
  top: 35px;
  width: 95px;
  left: -95px;
}

.sec04-wrap .sec04-list.right li:nth-of-type(3) {
  top: 58%;
}

.sec04-wrap .sec04-list.right li:nth-of-type(3)::after {
  top: -10px;
  width: 220px;
  left: -211px;
  transform: rotate(25deg);
}

.sec04-wrap .sec04-list.right li:nth-of-type(4) {
  top: 80%;
}

.sec04-wrap .sec04-list.right li:nth-of-type(4)::after {
  top: 27px;
  width: 194px;
  left: -194px;
}

.sec04-wrap .l-img img {
  width: 100%;
}

.sec04-wrap .l-img-wrap {
  width: 58%;
  min-width: 508px;
  position: relative;
}

.sec04-wrap .l-img-wrap .mark {
  position: absolute;
}

.sec04-wrap .l-img-wrap .mark>span {
  position: relative;
  background-color: rgba(214, 85, 67, 0.4);
  border-radius: 50%;
  display: block;
  z-index: 5;
}

.sec04-wrap .l-img-wrap .mark>span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(214, 85, 67, 0.5);
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.3s, transform 0.3s;
}

.sec04-wrap .l-img-wrap .mark>span:hover:after {
  animation: blink 1.8s ease-in-out infinite;
}

.sec04-wrap .l-img-wrap .mark>span.is-active::after {
  animation: blink 1.8s ease-in-out infinite;
}

.sec04-wrap .l-img-wrap .mark.mark01 {
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
}

.sec04-wrap .l-img-wrap .mark.mark01>span {
  width: 44px;
  height: 44px;
}

.sec04-wrap .l-img-wrap .mark.mark02 {
  top: 309px;
  left: -7px;
  transform: rotate(-38deg);
}

.sec04-wrap .l-img-wrap .mark.mark02>span {
  width: 76px;
  height: 48px;
}

.sec04-wrap .l-img-wrap .mark.mark03 {
  top: 246px;
  left: 50%;
  transform: translateX(-50%);
}

.sec04-wrap .l-img-wrap .mark.mark03>span {
  width: 130px;
  height: 83px;
}

.sec04-wrap .l-img-wrap .mark.mark04 {
  bottom: 180px;
  left: 200px;
}

.sec04-wrap .l-img-wrap .mark.mark04>span {
  width: 44px;
  height: 44px;
}

.sec04-wrap .l-img-wrap .mark.mark05 {
  top: 100px;
  right: 177px;
}

.sec04-wrap .l-img-wrap .mark.mark05>span {
  width: 44px;
  height: 44px;
}

.sec04-wrap .l-img-wrap .mark.mark06 {
  top: 209px;
  right: 92px;
}

.sec04-wrap .l-img-wrap .mark.mark06>span {
  width: 44px;
  height: 44px;
}

.sec04-wrap .l-img-wrap .mark.mark07 {
  top: 329px;
  right: 188px;
}

.sec04-wrap .l-img-wrap .mark.mark07>span {
  width: 55px;
  height: 31px;
}

.sec04-wrap .l-img-wrap .mark.mark08 {
  right: 188px;
  bottom: 7px;
}

.sec04-wrap .l-img-wrap .mark.mark08>span {
  width: 66px;
  height: 164px;
}

.sec05 {
  padding: 130px 0;
  border-radius: 60px;
  background-color: #FCFAF5;
}

.sec05 .t-ttl {
  margin-bottom: 100px;
}

.sec05-layout {
  display: flex;
  position: relative;
  z-index: 1;
}

.sec05-layout+.sec05-layout {
  margin-top: 100px;
}

.sec05-layout .l-img {
  width: 40%;
  position: relative;
  margin-right: 6%;
}

.sec05-layout .l-img::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #F0EBDE;
  border-radius: 15px;
  width: 100%;
  height: 366px;
  z-index: -1;
}

.sec05-layout .l-img img {
  border-radius: 15px;
  min-height: 366px;
  -o-object-fit: cover;
  object-fit: cover;
}

.sec05-layout .l-desc {
  flex: 1;
}

.sec05-layout .l-desc .l-ttl {
  font-size: 28px;
  padding-bottom: 20px;
  margin-bottom: 35px;
  position: relative;
}

.sec05-layout .l-desc .l-ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 3px solid #D65543;
  width: 10px;
  height: 3px;
}

.sec05-layout .l-desc .l-txt p+p {
  margin-top: 1rem;
}

.sec05-layout .l-desc .l-txt+.btn-more {
  margin-top: 50px;
}

.sec05-layout.reverse {
  flex-direction: row-reverse;
}

.sec05-layout.reverse .l-img {
  margin-right: 0;
  margin-left: 6%;
}

.sec06 {
  padding: 160px 0 130px;
}

.sec06 .t-ttl {
  margin-bottom: 85px;
}

.sec06-layout {
  display: flex;
}

.sec06-layout>.item {
  flex: 1;
}

.sec06-layout>.item:first-child {
  margin-right: 7%;
}

.sec06-layout>.item .l-table {
  font-size: 17px;
  font-family: "FOT-筑紫A丸ゴシック Std D", sans-serif;
  margin-bottom: 35px;
}

.sec07 {
  padding: 130px 0;
  border-radius: 60px 60px 0 0;
  background-color: #FCFAF5;
}

.sec07-layout {
  display: flex;
}

.sec07-layout .t-ttl {
  margin-bottom: 0;
  margin-right: 10%;
  flex: 1.4;
}

.sec07-layout .l-ttl {
  font-size: 20px;
  color: #D65543;
  margin-bottom: 35px;
}

.sec07-layout .item {
  flex: 3;
}

.sec07-layout .contact {
  display: flex;
  align-items: center;
}

.sec07-layout .contact .tel {
  font-size: 40px;
  margin-right: 50px;
}

.sec07-layout .contact .tel .small {
  font-size: 23px;
}

.sec07-layout .contact .l-time {
  font-size: 13px;
}

.sec07-layout .contact .l-time p {
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.sec07-layout .contact .l-time .l-dl {
  display: grid;
  grid-template-columns: 109px 1fr;
  grid-gap: 20px;
  align-items: center;
}

.sec07-layout .contact .l-time .l-dl dt {
  border-radius: 14px;
  background-color: #F2EFE7;
  font-size: 12px;
  text-align: center;
  padding: 2px 10px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}

.sec07-layout .contact .l-time .l-dl-wrap {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.sec07-layout .contact .l-time .l-dl-wrap .l-dl {
  grid-template-columns: 58px 1fr;
  grid-gap: 15px;
}

@media (max-width: 1280px) {
  .sec07-layout .t-ttl {
    flex: 1;
    margin-right: 10px;
  }

  .sec07-layout .t-ttl .en {
    font-size: 50px;
  }

  .sec07-layout .item {
    flex: 2;
  }

  .sec07-layout .item .tel {
    font-size: 30px;
    margin-right: 10px;
  }

  .sec07-layout .contact .l-time .l-dl {
    grid-gap: 10px;
  }

  .sec07-layout .contact .l-time .l-dl dt {
    font-size: 10px;
  }

  .sec07-layout .contact .l-time .l-dl-erap {
    grid-gap: 10px;
  }

  .sec07-layout .contact .l-time .l-dl-erap .l-dl {
    grid-gap: 5px;
  }
}

.map-layout02 {
  position: relative;
}

.map-layout02 iframe {
  vertical-align: bottom;
  height: 593px;
  width: 100%;
}

.map-layout02 .l-desc {
  background: #fff;
  border-radius: 15px;
  padding: 60px;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 86px;
}

.map-layout02 .l-logo {
  text-align: center;
  margin-bottom: 25px;
}

.map-layout02 .l-logo img {
  max-width: 259px;
}

.map-layout02 .inner {
  display: table;
  margin: 0 auto;
}

.map-layout02 .address {
  margin-bottom: 20px;
  font-size: 14px;
}

.map-layout02 .tel {
  font-size: 24px;
  margin-bottom: 25px;
}

.map-layout02 .tel .small {
  font-size: 15px;
}

@media (max-width: 1280px) {
  .map-layout02 .tel {
    font-size: 20px;
  }
}

.map-layout02 .l-time {
  font-size: 13px;
}

.map-layout02 .l-time p {
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.map-layout02 .l-time .l-dl {
  display: grid;
  grid-template-columns: 109px 1fr;
  grid-gap: 20px;
  align-items: center;
}

.map-layout02 .l-time .l-dl dt {
  border-radius: 14px;
  background-color: #F2EFE7;
  font-size: 12px;
  text-align: center;
  padding: 2px 10px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}

@media (max-width: 1280px) {
  .map-layout02 .l-time .l-dl {
    grid-gap: 10px;
  }

  .map-layout02 .l-time .l-dl dt {
    font-size: 10px;
    padding: 2px 5px;
  }
}

.map-layout02 .l-time .l-dl-wrap {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.map-layout02 .l-time .l-dl-wrap .l-dl {
  grid-template-columns: 58px 1fr;
  grid-gap: 15px;
}

@media (max-width: 1280px) {
  .map-layout02 .l-time .l-dl-wrap {
    grid-gap: 10px;
  }

  .map-layout02 .l-time .l-dl-wrap dt {
    grid-gap: 5px;
  }
}

.map-layout02 .txt {
  margin-bottom: 30px;
}

.sec08 {
  padding: 130px 0;
}

.sec08 .container, .sec08 .breadcrumb ul, .breadcrumb .sec08 ul {
  display: flex;
}

.sec08-ttl {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sec08 .list-top-blog02 {
  flex: 3;
}

.sec08 .btn-more {
  max-width: 170px;
}

@media (max-width: 800px) {
  .sec01 {
    padding: 20px 0 50px;
  }

  .sec01-box {
    display: block;
    padding: 30px 20px;
    border-radius: 8px;
  }

  .sec01-ttl {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .sec01 .t-ttl .en {
    font-size: 30px;
    margin-bottom: 5px;
  }

  .sec01 .t-ttl .jp {
    font-size: 18px;
  }

  .sec01 .list-top-news02 {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .sec01 .l-btn {
    width: 100%;
  }

  .sec01 .l-btn .btn-more {
    max-width: initial;
  }

  .sec02 {
    padding-bottom: 50px;
  }

  .sec02-layout {
    display: block;
  }

  .sec02-layout .l-img {
    width: 100%;
    margin-bottom: 30px;
  }

  .sec02-layout .l-img img {
    min-height: initial;
  }

  .sec02-layout .l-desc {
    margin-left: 0;
  }

  .sec02-layout .l-desc .t-ttl {
    margin-bottom: 30px;
  }

  .sec02-layout .l-desc .l-txt {
    margin-bottom: 30px;
  }

  .sec03 {
    padding: 50px 0;
    border-radius: 30px;
  }

  .sec03-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }

  .sec03-list li .list-img {
    margin-bottom: 30px;
  }

  .sec03-list li .list-ttl {
    font-size: 19px;
    padding-bottom: 15px;
  }

  .sec04 {
    padding: 50px 0;
  }

  .sec04-layout {
    display: block;
  }

  .sec04-layout .t-ttl {
    writing-mode: horizontal-tb;
    margin-bottom: 30px;
  }

  .sec04-layout .t-ttl .en {
    margin-left: 0;
  }

  .sec04-layout .t-ttl .jp {
    padding: 0 0 0 18px;
  }

  .sec04-layout .t-ttl .jp::before {
    top: 10px;
    left: 0;
  }

  .sec04-layout .l-ttl {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .sec04-layout .item {
    width: 100%;
    max-width: 100%;
  }

  .sec04-wrap {
    position: relative;
    display: block;
    width: 100%;
  }

  .sec04-wrap .sec04-list li {
    position: static;
    font-size: 16px;
  }

  .sec04-wrap .sec04-list li:not(:last-child) {
    margin-bottom: 10px;
  }

  .sec04-wrap .sec04-list li a {
    padding: 10px 20px;
    width: 100%;
  }

  .sec04-wrap .sec04-list.left li::after {
    display: none;
  }

  .sec04-wrap .sec04-list.right li::after {
    display: none;
  }

  .sec04-wrap .l-img {
    width: 100%;
    margin: 0 0 30px;
  }

  .sec04-wrap .l-img-wrap {
    width: 100%;
    min-width: auto;
    position: relative;
  }

  .sec04-wrap .l-img-wrap .mark {
    display: none;
  }

  .sec04-list-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }

  .sec05 {
    padding: 50px 0;
    border-radius: 30px;
  }

  .sec05 .t-ttl {
    margin-bottom: 30px;
  }

  .sec05-layout {
    display: block;
  }

  .sec05-layout+.sec05-layout {
    margin-top: 40px;
  }

  .sec05-layout .l-img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .sec05-layout .l-img::before {
    width: 100%;
    height: 100%;
  }

  .sec05-layout .l-img img {
    min-height: initial;
  }

  .sec05-layout .l-desc .l-ttl {
    font-size: 25px;
    padding-bottom: 15px;
    margin-bottom: 30px;
  }

  .sec05-layout .l-desc .l-txt+.btn-more {
    margin-top: 30px;
  }

  .sec05-layout.reverse .l-img {
    margin-left: 0;
  }

  .sec06 {
    padding: 50px 0;
  }

  .sec06 .t-ttl {
    margin-bottom: 30px;
  }

  .sec06-layout {
    display: block;
  }

  .sec06-layout>.item:first-child {
    margin-right: 0;
    margin-bottom: 40px;
  }

  .sec06-layout>.item .l-table {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .sec06-layout>.item .l-table tr {
    display: flex;
    align-items: first baseline;
  }

  .sec06-layout>.item .l-table th {
    width: 20%;
  }

  .sec07 {
    padding: 50px 0;
    border-radius: 30px 30px 0 0;
  }

  .sec07-layout {
    display: block;
  }

  .sec07-layout .t-ttl {
    margin-bottom: 30px;
    margin-right: 0;
  }

  .sec07-layout .l-ttl {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .sec07-layout .contact {
    display: block;
  }

  .sec07-layout .contact .tel {
    font-size: 30px;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .sec07-layout .contact .tel .small {
    font-size: 17px;
  }

  .map-layout02 iframe {
    vertical-align: bottom;
    height: 250px;
  }

  .map-layout02 .l-desc {
    padding: 40px 5vw;
    position: static;
    transform: translateY(0);
    border-radius: 0 0 15px 15px;
  }

  .map-layout02 .l-logo {
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 25px;
  }

  .map-layout02 .l-logo .logo {
    width: 250px;
  }

  .map-layout02 .inner {
    text-align: center;
    width: 100%;
    margin: 0;
  }

  .map-layout02 .address {
    margin-bottom: 10px;
  }

  .map-layout02 .tel {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .map-layout02 .l-time {
    margin-bottom: 20px;
  }

  .map-layout02 .l-dl {
    text-align: left;
  }

  .sec08 {
    padding: 50px 0;
  }

  .sec08 .container, .sec08 .breadcrumb ul, .breadcrumb .sec08 ul {
    display: block;
  }

  .sec08 .btn-more {
    max-width: initial;
  }
}

/*------------
Post
--------------*/
/*お知らせ*/
.list-top-news02 .list-item {
  display: flex;
}

.list-top-news02 .list-item:first-child {
  padding-bottom: 15px;
}

.list-top-news02 time {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #C3BAA8;
  margin-right: 45px;
}

.list-top-news02 .list-txt {
  width: 100%;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 17px;
  font-family: "FOT-筑紫A丸ゴシック Std D", sans-serif;
  letter-spacing: 0.05em;
}

.list-top-news02 a:hover {
  text-decoration: underline;
}

/*ブログ*/
.list-top-blog01,
.list-top-blog02 {
  display: flex;
}

.list-top-blog01 .list-item,
.list-top-blog02 .list-item {
  width: calc(33.3333333333% - 20px);
}

.list-top-blog01 .list-item a,
.list-top-blog02 .list-item a {
  display: block;
  width: 100%;
}

.list-top-blog01 .list-item a:hover .list-img img,
.list-top-blog02 .list-item a:hover .list-img img {
  transform: scale(1.1);
}

.list-top-blog01 .list-item:not(:last-child),
.list-top-blog02 .list-item:not(:last-child) {
  margin-right: 30px;
}

.list-top-blog01 .list-img,
.list-top-blog02 .list-img {
  overflow: hidden;
  margin-bottom: 25px;
  border-radius: 8px;
  border: 1px solid #C3BAA8;
}

.list-top-blog01 .list-img img,
.list-top-blog02 .list-img img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.5s;
}

.list-top-blog01 .list-ttl,
.list-top-blog02 .list-ttl {
  margin-bottom: 23px;
  font-size: 16px;
  width: 100%;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.list-top-blog01 time,
.list-top-blog02 time {
  display: block;
  color: #C3BAA8;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 15px;
}

.list-top-blog02 .no-post {
  white-space: nowrap;
}

@media (max-width: 800px) {

  /*お知らせ*/
  .list-top-news02 .list-item {
    display: block;
  }

  .list-top-news02 time {
    margin-right: 0;
  }

  .list-top-news02 .list-txt {
    width: 100%;
  }

  /*ブログ*/
  .list-top-blog01 {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .list-top-blog01 .list-item {
    width: calc(50% - 10px);
  }

  .list-top-blog01 .list-item:not(:last-child) {
    margin-right: 0;
  }

  .list-top-blog01 .list-item:not(:nth-child(2n)) {
    margin-right: 20px;
  }

  .list-top-blog01 .list-item:nth-child(n+3) {
    margin-top: 20px;
  }

  .list-top-blog01 .list-img img {
    height: 120px;
  }

  .list-top-blog01 time {
    font-size: 13px;
  }

  .list-top-blog02 {
    display: flex;
    grid-gap: 0;
    flex-wrap: nowrap;
    margin: 0 -5vw 30px 0;
    -webkit-overflow-scrolling: touch;
    width: calc(100% + 5vw);
    overflow-x: auto;
  }

  .list-top-blog02 li {
    flex: 0 0 240px;
    margin: 0 5% 0 0;
    max-width: 100%;
  }

  .list-top-blog02 .list-img img {
    height: 180px;
  }
}

/*------------
下層ページタイトル
--------------*/
.page-ttl {
  background: url(../images/under/u-top_bg.jpg) center/cover no-repeat;
  display: flex;
  flex-direction: column;
  text-align: left;
  min-height: 480px;
  margin: 0 auto;
  width: 90%;
  border-radius: 15px;
}

.page-ttl-main {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 57px;
  line-height: 1.2;
  color: #FFF;
  margin: 195px 0 0 150px;
}

.page-ttl-sub {
  display: block;
  font-size: 22px;
  font-family: "FOT-筑紫A丸ゴシック Std D", sans-serif;
  font-weight: 500;
  color: #FFF;
  margin: 0 0 0 150px;
}

@media (max-width: 800px) {
  .page-ttl {
    margin-top: 0;
    padding: 30px 5%;
    height: 180px;
    min-height: 180px;
    justify-content: center;
  }

  .page-ttl-main {
    font-size: 25px;
    margin: 0;
  }

  .page-ttl-sub {
    font-size: 15px;
    margin: 0;
  }
}

.num-ttl {
  border-bottom: 1px solid #8E7B54;
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.num-ttl .num {
  background: #D65543;
  display: inline-block;
  color: #fff;
  font-size: 13px;
  line-height: 25px;
  padding: 0 9px;
  margin-right: 20px;
  vertical-align: 3px;
  position: relative;
  font-family: "Montserrat", sans-serif;
}

.num-ttl .num::after {
  content: "";
  border-style: solid;
  border-width: 12.5px 0 12.5px 7px;
  border-color: transparent transparent transparent #D65543;
  position: absolute;
  top: 0;
  right: -7px;
}

.u-ttl-bg {
  font-size: 24px;
  background: #D65543;
  color: #fff;
  padding: 7px 20px;
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .num-ttl {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .num-ttl .num {
    display: table;
    font-size: 11px;
    padding: 0 10px;
    margin-bottom: 8px;
  }

  .num-ttl .num::after {
    display: none;
  }

  .u-ttl-bg {
    font-size: 18px;
    padding: 5px 10px;
  }
}

/*------------
下層ページ見出し
--------------*/
.u-h2, .post-category-ttl, .postdata h1 {
  font-size: 30px;
  position: relative;
  padding-left: 40px;
  margin-bottom: 50px;
}

.u-h2::before, .post-category-ttl::before, .postdata h1::before {
  content: "";
  background: #D65543;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 18px;
  left: 0;
  border-radius: 10px;
}

.u-h3, .post-ttl, .postdata h2 {
  font-size: 24px;
  margin-bottom: 25px;
  position: relative;
  background-color: #FCFAF5;
  padding: 7px 0 7px 40px;
  border-radius: 15px;
}

.u-h3::before, .post-ttl::before, .postdata h2::before {
  content: "";
  background: #D65543;
  width: 10px;
  height: 3px;
  position: absolute;
  left: 15px;
  top: 26px;
}

.u-h3.bg-red, .bg-red.post-ttl, .postdata h2.bg-red {
  margin-bottom: 10px;
  background-color: none;
  padding: 7px 0 7px 40px;
  border-radius: 15px;
  z-index: 3;
  color: #FFF;
  font-size: 18px;
}

.u-h3.bg-red::before, .bg-red.post-ttl::before, .postdata h2.bg-red::before {
  content: "";
  background: #D65543;
  width: 10px;
  height: 3px;
  position: absolute;
  left: 15px;
  top: 32px;
}

.u-h3.bg-red::after, .bg-red.post-ttl::after, .postdata h2.bg-red::after {
  content: "";
  background: #FCFAF5;
  width: 10px;
  height: 3px;
  position: absolute;
  left: 27px;
  top: 32px;
}

.u-h3.bg-red .bg-red-items, .bg-red.post-ttl .bg-red-items, .postdata h2.bg-red .bg-red-items {
  position: relative;
  display: block;
  height: 100%;
  padding: 7px;
}

.u-h3.bg-red .bg-red-items::after, .bg-red.post-ttl .bg-red-items::after, .postdata h2.bg-red .bg-red-items::after {
  content: "";
  background: #D65543;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  position: absolute;
  left: -15px;
  bottom: 0;
  z-index: -1;
}

.u-h4, .postdata h3 {
  font-size: 20px;
  margin-bottom: 15px;
  position: relative;
  color: #D65543;
}

@media (max-width: 800px) {
  .u-h2, .post-category-ttl, .postdata h1 {
    font-size: 25px;
    margin-bottom: 30px;
    padding-left: 30px;
  }

  .u-h2::before, .post-category-ttl::before, .postdata h1::before {
    top: 12px;
  }

  .u-h3, .post-ttl, .postdata h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .u-h3::before, .post-ttl::before, .postdata h2::before {
    left: 15px;
    top: 19px;
  }

  .u-h3.bg-red, .bg-red.post-ttl, .postdata h2.bg-red {
    margin-bottom: 10px;
    z-index: 3;
  }

  .u-h3.bg-red::before, .bg-red.post-ttl::before, .postdata h2.bg-red::before {
    width: 10px;
    height: 3px;
    left: 15px;
    top: 27px;
  }

  .u-h3.bg-red::after, .bg-red.post-ttl::after, .postdata h2.bg-red::after {
    content: "";
    background: #FCFAF5;
    width: 10px;
    height: 3px;
    position: absolute;
    left: 27px;
    top: 27px;
  }

  .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 #5F4B22;
  border-right: 1px solid #5F4B22;
  transform: rotate(45deg);
  margin: 0 12px 0 3px;
  vertical-align: 1px;
}

/*------------
pタグ同士の余白
--------------*/
.u-contents p+p {
  margin-top: 2em;
}

@media (max-width: 800px) {
  .u-contents p+p {
    margin-top: 1em;
  }
}

/*------------
下層ページレイアウト
--------------*/
.tall {
  padding: 50px 0;
}

.tall:last-child {
  padding: 70px 0 140px;
}

.tall.bg01 {
  background: #8E7B54;
}

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

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

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

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

.hidden {
  overflow: hidden;
}

@media (max-width: 800px) {
  .tall {
    padding: 40px 0;
  }

  .tall:last-child {
    padding: 40px 0 80px;
  }

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

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

/*------------
プライバシーポリシー
--------------*/
.dl-privacy dt {
  border-bottom: 1px solid #D65543;
  font-size: 18px;
  padding: 0 0 5px;
  margin: 0 0 15px;
  font-family: "FOT-筑紫A丸ゴシック Std D", sans-serif;
}

.dl-privacy dd+dt {
  margin-top: 30px;
}

.list-privacy li {
  position: relative;
  padding: 0 0 0 15px;
}

.list-privacy li::before {
  background: #D65543;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
}

.list-privacy li+li {
  margin-top: 3px;
}

/*------------
layout
--------------*/
.l-style01 {
  display: flex;
}

.l-style01 .l-img {
  flex: 1;
  margin-right: 15px;
}

.l-style01 .l-img img {
  border-radius: 15px;
}

.l-style01 .l-img.small {
  flex: 0.5;
}

.l-style01 .l-img.large {
  margin: 0 7.5% 0 -10%;
  position: relative;
}

.l-style01 .u-slider02 {
  width: 45%;
  padding: 0;
}

.l-style01 .l-desc {
  flex: 1;
  max-width: 550px;
}

.l-style02 {
  display: flex;
  flex-direction: row-reverse;
}

.l-style02 .l-img {
  flex: 1;
  margin-left: 20px;
}

.l-style02 .l-img img {
  border-radius: 15px;
}

.l-style02 .l-img.small {
  flex: 0.5;
}

.l-style02 .l-img.large {
  margin: 0 -10% 0 7.5%;
  position: relative;
}

.l-style02 .l-desc {
  flex: 1;
  max-width: 550px;
}

.l-style02 .l-desc .u-h3, .l-style02 .l-desc .post-ttl, .l-style02 .l-desc .postdata h2, .postdata .l-style02 .l-desc h2 {
  margin-bottom: 10px;
}

.l-style03 {
  display: flex;
}

.l-style03 .l-img {
  width: 40%;
}

.l-style03 .l-img img {
  border-radius: 15px;
}

.l-style03 .l-desc {
  padding: 55px 55px 55px 150px;
  margin: 50px 0 0 -100px;
  flex: 1;
  border-radius: 15px;
}

.l-style03 .l-ttl {
  font-size: 20px;
  margin-bottom: 20px;
}

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

.l-style03.reverse .l-desc {
  padding: 55px 150px 55px 55px;
  margin: 50px -100px 0 0;
}

@media (max-width: 800px) {
  .l-style01 {
    display: block;
  }

  .l-style01 .l-img {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .l-style01 .l-img.large {
    margin: 0 auto 20px;
    position: relative;
  }

  .l-style01 .l-desc {
    width: 100%;
    margin: auto;
  }

  .l-style02 {
    display: block;
  }

  .l-style02 .l-img {
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0;
  }

  .l-style02 .l-img.large {
    margin: 0 auto 20px;
    position: relative;
  }

  .l-style02 .l-desc {
    width: 100%;
    margin: auto;
  }

  .l-style03 {
    display: block;
  }

  .l-style03 .l-img {
    width: 100%;
  }

  .l-style03 .l-desc {
    padding: 20px 30px 30px;
    margin: -50px auto 0;
    position: relative;
    width: 90%;
  }

  .l-style03 .l-ttl {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .l-style03.reverse .l-desc {
    padding: 30px 0;
    margin: 0;
  }
}

.table-style01 {
  border: 1px solid #8E7B54;
}

.table-style01 tr:not(:last-child) {
  border-bottom: 1px solid #8E7B54;
}

.table-style01 th {
  background-color: #D65543;
  font-weight: bold;
  color: #FFF;
  padding: 15px;
  width: 30%;
}

.table-style01 td {
  padding: 10px 30px;
}

@media (max-width: 800px) {
  .table-style01 th {
    width: 100%;
    display: block;
    padding: 10px 15px;
    text-align: left;
  }

  .table-style01 td {
    width: 100%;
    display: block;
    padding: 10px 15px;
  }
}

.list-card01 .list-item {
  border: 1px solid #D65543;
  background: #fff;
  border-radius: 15px;
}

.list-card01 .list-img {
  text-align: center;
  margin-bottom: 15px;
}

.list-card01 .num {
  display: block;
  color: #E5DFCF;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 5px;
}

.list-card01 .list-ttl {
  border-bottom: 1px solid #D65543;
  font-family: "FOT-筑紫A丸ゴシック Std D", sans-serif;
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.list-card02.color01 .list-item {
  border: none;
  background: #E5DFCF;
}

.list-card02 .list-item {
  background: #FCFAF5;
  border: 2px solid #D65543;
  border-radius: 15px;
}

.list-card02 .list-item>a {
  margin: 0 auto;
}

.list-card02 .list-ttl {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.list-card02 .list-img {
  text-align: center;
  margin-bottom: 20px;
}

.list-card02 .list-img img {
  border-radius: 15px;
}

.list-card02.row2 .list-ttl {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list-card01,
.list-card02,
.list-card03 {
  display: flex;
  flex-wrap: wrap;
}

.list-card01.col1 .list-item,
.list-card02.col1 .list-item,
.list-card03.col1 .list-item {
  width: 100%;
  padding: 30px 25px;
}

.list-card01.col1 .list-item:nth-child(n+2),
.list-card02.col1 .list-item:nth-child(n+2),
.list-card03.col1 .list-item:nth-child(n+2) {
  margin-top: 30px;
}

.list-card01.col2 .list-item,
.list-card02.col2 .list-item,
.list-card03.col2 .list-item {
  width: 48.5%;
  padding: 30px 25px;
}

.list-card01.col2 .list-item:nth-child(odd),
.list-card02.col2 .list-item:nth-child(odd),
.list-card03.col2 .list-item:nth-child(odd) {
  margin-right: 3%;
}

.list-card01.col2 .list-item:nth-child(n+3),
.list-card02.col2 .list-item:nth-child(n+3),
.list-card03.col2 .list-item:nth-child(n+3) {
  margin-top: 30px;
}

.list-card01.col2 .list-item:last-child,
.list-card02.col2 .list-item:last-child,
.list-card03.col2 .list-item:last-child {
  margin-right: 0;
}

.list-card01.col3 .list-item,
.list-card02.col3 .list-item,
.list-card03.col3 .list-item {
  padding: 25px;
  width: 31.25%;
  border-radius: 8px;
}

.list-card01.col3 .list-item img,
.list-card02.col3 .list-item img,
.list-card03.col3 .list-item img {
  border-radius: 8px;
}

.list-card01.col3 .list-item:not(:nth-child(3n)),
.list-card02.col3 .list-item:not(:nth-child(3n)),
.list-card03.col3 .list-item:not(:nth-child(3n)) {
  margin-right: 3.125%;
}

.list-card01.col3 .list-item:nth-child(n+4),
.list-card02.col3 .list-item:nth-child(n+4),
.list-card03.col3 .list-item:nth-child(n+4) {
  margin-top: 30px;
}

.list-card01.col3 .list-item:last-child,
.list-card02.col3 .list-item:last-child,
.list-card03.col3 .list-item:last-child {
  margin-right: 0;
}

.list-card01.col4 .list-item,
.list-card02.col4 .list-item,
.list-card03.col4 .list-item {
  padding: 20px;
  width: 23.5%;
  border-radius: 8px;
}

.list-card01.col4 .list-item img,
.list-card02.col4 .list-item img,
.list-card03.col4 .list-item img {
  border-radius: 8px;
}

.list-card01.col4 .list-item:not(:nth-child(4n)),
.list-card02.col4 .list-item:not(:nth-child(4n)),
.list-card03.col4 .list-item:not(:nth-child(4n)) {
  margin-right: 2%;
}

.list-card01.col4 .list-item:nth-child(n+5),
.list-card02.col4 .list-item:nth-child(n+5),
.list-card03.col4 .list-item:nth-child(n+5) {
  margin-top: 20px;
}

.list-card01.col4 .list-item:last-child,
.list-card02.col4 .list-item:last-child,
.list-card03.col4 .list-item:last-child {
  margin-right: 0;
}

.list-card01.center,
.list-card02.center,
.list-card03.center {
  justify-content: center;
}

@media (max-width: 800px) {
  .list-card01 .list-ttl {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .list-card02 .list-ttl {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .list-card02 .list-img {
    margin-bottom: 15px;
  }

  .list-card02.row2 .list-ttl {
    height: auto;
  }

  .list-card03 .list-img {
    margin-bottom: 15px;
  }

  .list-card03 .list-ttl {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .list-card01,
  .list-card02,
  .list-card03 {
    display: block;
  }

  .list-card01.col2 .list-item,
  .list-card02.col2 .list-item,
  .list-card03.col2 .list-item {
    width: 100%;
    padding: 25px 20px;
  }

  .list-card01.col2 .list-item:nth-child(odd),
  .list-card02.col2 .list-item:nth-child(odd),
  .list-card03.col2 .list-item:nth-child(odd) {
    margin-right: 0;
  }

  .list-card01.col2 .list-item:nth-child(n+2),
  .list-card02.col2 .list-item:nth-child(n+2),
  .list-card03.col2 .list-item:nth-child(n+2) {
    margin-top: 20px;
  }

  .list-card01.col3 .list-item,
  .list-card02.col3 .list-item,
  .list-card03.col3 .list-item {
    width: 100%;
    padding: 25px 20px;
    border-radius: 15px;
  }

  .list-card01.col3 .list-item img,
  .list-card02.col3 .list-item img,
  .list-card03.col3 .list-item img {
    border-radius: 15px;
  }

  .list-card01.col3 .list-item:not(:nth-child(3n)),
  .list-card02.col3 .list-item:not(:nth-child(3n)),
  .list-card03.col3 .list-item:not(:nth-child(3n)) {
    margin-right: 0;
  }

  .list-card01.col3 .list-item:nth-child(n+2),
  .list-card02.col3 .list-item:nth-child(n+2),
  .list-card03.col3 .list-item:nth-child(n+2) {
    margin-top: 20px;
  }

  .list-card01.col4 .list-item,
  .list-card02.col4 .list-item,
  .list-card03.col4 .list-item {
    width: 100%;
    padding: 25px 20px;
    border-radius: 15px;
  }

  .list-card01.col4 .list-item img,
  .list-card02.col4 .list-item img,
  .list-card03.col4 .list-item img {
    border-radius: 15px;
  }

  .list-card01.col4 .list-item:not(:last-child),
  .list-card02.col4 .list-item:not(:last-child),
  .list-card03.col4 .list-item:not(:last-child) {
    margin-right: 0;
  }

  .list-card01.col4 .list-item:nth-child(n+2),
  .list-card02.col4 .list-item:nth-child(n+2),
  .list-card03.col4 .list-item:nth-child(n+2) {
    margin-top: 20px;
  }
}

.list-disc>li {
  position: relative;
  padding-left: 15px;
}

.list-disc>li:before {
  content: "";
  background: #D65543;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 14px;
  width: 5px;
  height: 5px;
}

.list-disc.u-list-none>li {
  padding-left: 0;
}

.list-disc.u-list-none>li::before {
  content: none;
}

@media (max-width: 800px) {
  .list-disc li:before {
    top: 11px;
  }

  .list-check li:before {
    top: 8px;
  }

  .list-num>li:before {
    top: 5px;
    padding-left: 1px;
  }

  .list-num>li+li {
    margin-top: 3px;
  }

  .list-check02 li:before {
    top: 6px;
  }
}

.list-disc.col2,
.list-check.col2,
.list-num.col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}

.list-disc.col3,
.list-check.col3,
.list-num.col3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}

.list-disc.col4,
.list-check.col4,
.list-num.col4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}

@media (max-width: 800px) {

  .list-disc.col2, .list-disc.col3, .list-disc.col4,
  .list-check.col2,
  .list-check.col3,
  .list-check.col4,
  .list-num.col2,
  .list-num.col3,
  .list-num.col4 {
    grid-template-columns: 1fr;
    grid-gap: 5px;
  }
}

.faq-type02 dt {
  display: flex;
  margin-bottom: 25px;
}

.faq-type02 dt .txt {
  font-size: 22px;
  line-height: 1.7;
  font-family: "FOT-筑紫A丸ゴシック Std D", sans-serif;
}

.faq-type02 dt .icon {
  background-color: #D65543;
  color: #fff;
  border-radius: 15%;
}

.faq-type02 dd .wrapper {
  display: flex;
  padding-bottom: 40px;
  border-bottom: 1px solid #D65543;
}

.faq-type02 dd .icon {
  background: #8E7B54;
  color: #fff;
  border-radius: 15%;
}

.faq-type02 .icon {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-align: center;
  width: 40px;
  height: 40px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-type02 .txt {
  flex: 1;
}

.faq-type02 dd:not(:last-child) {
  margin-bottom: 40px;
}

@media (max-width: 800px) {
  .faq-type02 dt .txt {
    font-size: 16px;
  }

  .faq-type02 dd:not(:last-child) {
    margin-bottom: 30px;
  }

  .faq-type02 .icon {
    font-size: 15px;
    width: 30px;
    height: 30px;
    line-height: 26px;
    margin: 0 10px 0 0;
  }
}

.staff-layout {
  display: flex;
  flex-direction: row-reverse;
}

.staff-layout .l-img {
  flex: 1;
}

.staff-layout .l-img img {
  border-radius: 15px;
}

.staff-layout .l-desc {
  flex: 1.5;
  margin-right: 50px;
}

.staff-layout .job {
  font-family: "FOT-筑紫A丸ゴシック Std D", sans-serif;
  font-size: 18px;
  margin-bottom: 5px;
  color: #D65543;
}

.staff-layout .name {
  border-bottom: 1px solid #D65543;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.staff-layout .jp {
  font-size: 30px;
  font-family: "FOT-筑紫A丸ゴシック Std D", sans-serif;
  color: #D65543;
  margin-right: 25px;
}

.staff-layout .en {
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  color: #D65543;
}

.staff-career {
  font-size: 14px;
}

.staff-career li {
  border-bottom: 1px dotted #D65543;
  padding: 10px 0;
  display: flex;
}

.staff-career .data {
  width: 20%;
}

.staff-career .txt {
  width: 85%;
}

@media (max-width: 800px) {
  .staff-layout {
    display: block;
  }

  .staff-layout .l-img {
    margin-bottom: 20px;
  }

  .staff-layout .l-desc {
    margin-right: 0;
  }

  .staff-layout .job {
    font-size: 16px;
  }

  .staff-layout .name {
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .staff-layout .jp {
    font-size: 24px;
    margin-right: 20px;
  }

  .staff-layout .en {
    font-size: 16px;
  }

  .staff-career li {
    display: block;
  }

  .staff-career .data {
    width: auto;
    display: block;
    font-weight: bold;
  }

  .staff-career .txt {
    width: 100%;
  }
}

/*------------------------------------
ボックス
-------------------------------------*/
.box-style01 {
  border: 2px solid #D65543;
  background: #FFF;
  padding: 5%;
  border-radius: 15px;
}

.box-style01 .box-ttl {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
}

@media (max-width: 800px) {
  .box-style01 {
    padding: 20px;
  }

  .box-style01 .box-ttl {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.u-map {
  position: relative;
  text-align: center;
}

.u-map iframe {
  vertical-align: bottom;
  height: 593px;
  width: 100%;
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .u-map iframe {
    vertical-align: bottom;
    height: 250px;
    margin-bottom: 15px;
  }
}

.list-anchor-link02 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
}

.list-anchor-link02 a {
  display: flex;
  align-items: center;
  background-color: #D65543;
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  padding: 0 35px 0 15px;
  min-height: 60px;
  transition: opacity 0.3s;
  border-radius: 30px;
}

.list-anchor-link02 a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  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;
  }
}

.list-anchor-link-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
}

.list-anchor-link-card>li {
  border-radius: 15px;
}

.list-anchor-link-card>li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "FOT-筑紫A丸ゴシック Std D", sans-serif;
  font-size: 18px;
  position: relative;
  padding: 15px 40px;
  transition: 0.3s;
  width: 100%;
  height: 100%;
}

.list-anchor-link-card>li a:hover {
  opacity: 0.5;
}

.list-anchor-link-card>li a::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: url(../../images/share/icon_arrow_bottom.svg) center/contain no-repeat;
}

.list-anchor-link-card>li p {
  display: block;
  text-align: center;
  font-family: "FOT-筑紫A丸ゴシック Std D", sans-serif;
  font-size: 18px;
  position: relative;
  padding: 20px 40px;
  transition: 0.3s;
}

@media (max-width: 800px) {
  .list-anchor-link-card {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }

  .list-anchor-link-card>li a {
    font-size: 16px;
    padding: 10px 35px;
  }

  .list-anchor-link-card>li a::after {
    width: 15px;
    height: 15px;
    right: 15px;
    transform: translateY(-50%);
  }

  .list-anchor-link-card>li p {
    font-size: 16px;
    padding: 10px 35px;
  }
}

.list-col3 {
  display: flex;
  flex-wrap: wrap;
}

.list-col3>.list-item {
  width: 31.25%;
}

.list-col3>.list-item:not(:nth-child(3n)) {
  margin-right: 3.125%;
}

.list-col3>.list-item:nth-child(n+4) {
  margin-top: 30px;
}

.list-col3>.list-item:last-child {
  margin-right: 0;
}

.list-col3 .list-img {
  margin-bottom: 20px;
}

.list-col3 .list-ttl {
  font-size: 22px;
  margin-bottom: 10px;
}

@media (max-width: 800px) {
  .list-col1>.list-item:not(:last-child) {
    margin-bottom: 60px;
  }

  .list-col1>.list-item--s:not(:last-child) {
    margin-bottom: 40px;
  }

  .list-col2 {
    display: block;
  }

  .list-col2>.list-item {
    width: 100%;
  }

  .list-col2>.list-item:nth-child(odd) {
    margin-right: 0;
  }

  .list-col2>.list-item:nth-child(n+2) {
    margin-top: 30px;
  }

  .list-col2 .list-img {
    margin-bottom: 15px;
  }

  .list-col3 {
    display: block;
  }

  .list-col3>.list-item {
    width: 100%;
  }

  .list-col3>.list-item:not(:nth-child(3n)) {
    margin-right: 0;
  }

  .list-col3>.list-item:nth-child(n+2) {
    margin-top: 30px;
  }

  .list-col3 .list-img {
    margin-bottom: 15px;
  }

  .list-col3 .list-ttl {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .list-col4 {
    display: block;
  }

  .list-col4>.list-item {
    width: 100%;
  }

  .list-col4>.list-item:not(:nth-child(4n)) {
    margin-right: 0;
  }

  .list-col4>.list-item:nth-child(n+2) {
    margin-top: 30px;
  }
}

.cutoff-slider {
  overflow: hidden;
  width: 80%;
  margin: 0 0 0 auto;
}

.cutoff-slider>.splide {
  padding: 0 60px 80px 0;
}

.cutoff-slider .splide__track {
  overflow: visible;
}

.cutoff-slider .splide__arrow {
  border: 1px solid var(--splide-main-color);
  width: 60px;
  height: 60px;
  top: auto;
  bottom: 0;
  transform: none;
}

.cutoff-slider .splide__arrow svg {
  width: 50%;
  height: 50%;
}

.cutoff-slider .splide__arrow--prev {
  left: auto;
  right: 120px;
  transform: scaleX(-1);
}

.cutoff-slider .splide__arrow--next {
  right: 50px;
}

.cutoff-slider .splide__progress__bar {
  transition: 0.5s;
}

.cutoff-slider .card-layout .card-img {
  text-align: center;
  margin-bottom: 20px;
}

.cutoff-slider .card-layout .card-img img {
  border-radius: 15px;
}

.cutoff-slider .card-layout .card-ttl {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  padding: 0 0 0 25px;
  position: relative;
}

.cutoff-slider .card-layout .card-ttl:before {
  content: "";
  display: block;
  background: #333;
  width: 10px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 15px;
}

@media (max-width: 800px) {
  .cutoff-slider {
    overflow: hidden;
    width: 90%;
    margin: 0 0 0 auto;
  }

  .cutoff-slider>.splide {
    padding: 0 5vw 50px 0;
  }

  .cutoff-slider .splide__arrow {
    width: 40px;
    height: 40px;
  }

  .cutoff-slider .splide__arrow svg {
    width: 50%;
    height: 50%;
  }

  .cutoff-slider .splide__arrow--prev {
    right: 70px;
  }

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

.price-style01 {
  display: grid;
  grid-gap: 20px;
}

.price-style01 .list-intro {
  border-bottom: 1px dotted #333;
  display: flex;
  align-items: flex-end;
  grid-gap: 10px;
  justify-content: space-between;
  font-weight: bold;
  font-size: 18px;
  padding: 0 0 5px;
}

.price-style01 .list-desc {
  color: #747474;
  font-size: 13px;
  margin-top: 8px;
}

@media (max-width: 800px) {
  .price-style01 {
    grid-gap: 15px;
  }

  .price-style01 .list-intro {
    font-size: 16px;
  }
}

.flow-type01 {
  border: 1px solid #D65543;
  padding: 50px;
  background-color: #FCFAF5;
  border-radius: 15px;
}

.flow-type01 .l-item {
  position: relative;
}

.flow-type01 .l-item:not(:last-child) {
  border-bottom: 1px solid #8E7B54;
  padding-bottom: 50px;
  margin-bottom: 50px;
}

.flow-type01 .l-item:not(:last-child)::before, .flow-type01 .l-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
}

.flow-type01 .l-item:not(:last-child)::before {
  width: 20px;
  height: 20px;
  border-bottom: 2px solid #8E7B54;
  border-right: 2px solid #8E7B54;
  bottom: -5px;
  transform: translateX(-50%) rotate(45deg);
  z-index: 2;
}

.flow-type01 .l-item:not(:last-child)::after {
  background: #FCFAF5;
  width: 70px;
  height: 20px;
  bottom: -18px;
  transform: translateX(-50%);
  z-index: 1;
}

@media (max-width: 800px) {
  .flow-type01 {
    padding: 25px 20px;
  }

  .flow-type01 .l-item:not(:last-child) {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}

.tel-box02 {
  background: #E5DFCF;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 15px;
}

.tel-box02 .l-ttl {
  border-bottom: 1px solid #D65543;
  font-size: 20px;
  text-align: center;
  padding-bottom: 10px;
  margin: 0 auto 25px;
  width: -moz-fit-content;
  width: fit-content;
}

.tel-box02 .l-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tel-box02 .l-time {
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-gap: 10px;
  line-height: 1.5;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 50px;
}

.tel-box02 .l-time dt {
  text-align: center;
  font-family: "FOT-筑紫A丸ゴシック Std D", sans-serif;
  font-size: 12px;
  border-radius: 5px;
  background: #D65543;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 800px) {
  .tel-box02 {
    max-width: 100%;
    margin: 0;
    padding: 25px 20px;
  }

  .tel-box02 .l-ttl {
    font-size: 16px;
    padding-bottom: 10px;
    margin: 0 auto 20px;
  }

  .tel-box02 .l-wrapper {
    flex-direction: column;
    justify-content: flex-start;
  }

  .tel-box02 .l-time {
    grid-template-columns: 65px 1fr;
    margin-left: 0;
    margin-top: 20px;
    font-size: 14px;
  }

  .tel-box02 .l-time dt {
    font-size: 11px;
  }
}

.table-style02 {
  background-color: #FCFAF5;
  border: 1px solid #5F4B22;
}

.table-style02 th,
.table-style02 td {
  border: 1px solid #5F4B22;
  line-height: 1.7;
  padding: 15px;
}

.table-style02 th {
  background-color: #D65543;
  font-weight: bold;
  color: #fff;
  vertical-align: middle;
}

.table-style02 th.bg01 {
  background-color: #E5DFCF;
  color: #D65543;
}

.table-style02 .table-img {
  text-align: center;
}

.table-style02 .u-th-ttl {
  width: 25%;
}

.table-style02 .u-th-txt {
  width: 75%;
}

/*------------
parts
--------------*/
.u-layout01 {
  background-color: #FCFAF5;
  border-radius: 15px;
  padding: 85px 62px;
}

.u-layout01 .u-h3, .u-layout01 .post-ttl, .u-layout01 .postdata h2, .postdata .u-layout01 h2 {
  margin-left: -13px;
}

.u-layout01 .tel {
  font-size: 40px;
  padding-top: 20px;
}

.u-layout01-num {
  padding-top: 37px;
}

.u-layout01-num .number {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 3;
  margin-left: 45px;
}

.u-layout01-num .number>p {
  position: absolute;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #FFF;
  line-height: 1.1;
  text-align: center;
  z-index: 3;
  top: -17px;
}

.u-layout01-num .number>p .num {
  font-size: 50px;
}

.u-layout01-num .number::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #D65543;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  top: -36px;
  left: -16px;
  z-index: 1;
}

@media (max-width: 800px) {
  .u-layout01 {
    padding: 20px 30px;
  }

  .u-layout01 .tel {
    font-size: 25px;
    padding-top: 20px;
  }

  .u-layout01-num {
    margin-top: 37px;
  }

  .u-layout01-num .number>p {
    font-size: 14px;
    top: -17px;
  }

  .u-layout01-num .number>p .num {
    font-size: 30px;
  }

  .u-layout01-num .number::after {
    content: "";
    width: 80px;
    height: 80px;
    top: -36px;
    left: -16px;
  }
}

.u-layout02 {
  background-color: #FCFAF5;
  padding: 85px 60px;
  border-radius: 15px;
}

.u-layout02 .u-h3, .u-layout02 .post-ttl, .u-layout02 .postdata h2, .postdata .u-layout02 h2 {
  margin-left: -13px;
}

@media (max-width: 800px) {
  .u-layout02 {
    padding: 20px 30px;
  }

  .u-layout02 .tel {
    font-size: 25px;
    padding-top: 20px;
  }
}

.u-layout03 .l-img {
  text-align: center;
  position: relative;
  z-index: 3;
}

.u-layout03 .l-img>img {
  width: 1024px;
  max-height: 518px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 15px;
}

.u-layout03 .l-disc {
  background-color: #FCFAF5;
  border-radius: 15px;
  margin: -50px 62px 0;
  text-align: center;
  position: relative;
  z-index: 5;
  padding: 64px;
}

.u-layout03 .l-disc>p {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .u-layout03 .l-img>img {
    width: 100%;
    max-height: 340px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 15px;
  }

  .u-layout03 .l-disc {
    padding: 30px 30px;
    width: 95%;
    text-align: left;
    margin: -30px 10px;
  }

  .u-layout03 .l-disc .tel {
    font-size: 25px;
    padding-top: 20px;
  }
}

.u-bg {
  background-color: #E5DFCF;
}

/*------------
Footer
--------------*/
.footer {
  position: relative;
  background-color: #FCFAF5;
  border-radius: 60px 60px 0 0;
  padding: 120px 0 110px;
}

.footer-inr {
  display: flex;
  justify-content: space-between;
}

.footer-inr .f-top {
  width: 40%;
}

.footer-inr .f-bottom {
  flex: 1;
  margin-left: 15%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer .f-logo {
  display: block;
  max-width: 292px;
  margin-bottom: 30px;
}

.footer .f-access {
  font-size: 14px;
  margin-bottom: 20px;
}

.footer .f-cta {
  margin-bottom: 40px;
}

.footer .f-navi {
  display: flex;
}

.footer .f-navi-item {
  flex: 1;
  font-family: "FOT-筑紫A丸ゴシック Std D", sans-serif;
  font-size: 16px;
}

.footer .f-navi-item:not(:last-child) {
  margin-right: 5%;
}

.footer .f-navi-item:not(:first-child) {
  flex: 1.5;
}

.footer .f-navi-ttl {
  margin-bottom: 10px;
  margin-bottom: 20px;
}

.footer .f-navi-list li {
  position: relative;
}

.footer .f-navi-list li:not(:last-child) {
  margin-bottom: 15px;
}

.footer .f-navi-list li a:hover {
  text-decoration: underline;
}

.footer .f-navi-list li.child {
  font-size: 15px;
  padding-left: 15px;
}

.footer .f-navi-list li.child:not(:last-child) {
  margin-bottom: 5px;
}

.footer .f-navi-list li.child::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  border-bottom: 1px solid #5E4B22;
  width: 6px;
  height: 1px;
}

.footer .copyright {
  font-size: 14px;
  line-height: 1;
  text-align: right;
  font-family: "FOT-筑紫A丸ゴシック Std D", sans-serif;
}

.footer .copyright-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-bottom: 17px;
}

.footer .copyright-links li+li::before {
  content: "|";
  margin: 0 15px;
}

.footer .copyright-links a {
  line-height: 1.5;
}

.footer .copyright-links a:hover {
  text-decoration: underline;
}

.footer .copyright small {
  font-size: 14px;
  color: #AD9667;
}

.footer .pagetop {
  display: block;
  background-color: #D65543;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  position: absolute;
  bottom: 34px;
  right: 35px;
  z-index: 2;
  transition: 0.3s;
}

.footer .pagetop:hover {
  transform: translateY(-10px);
}

.footer .pagetop:after {
  content: "";
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 800px) {
  .footer {
    border-radius: 30px 30px 0 0;
    padding: 50px 0;
  }

  .footer-inr {
    display: block;
  }

  .footer-inr .f-top {
    width: 100%;
    margin-bottom: 40px;
  }

  .footer-inr .f-bottom {
    margin-left: 0;
    display: block;
  }

  .footer .f-logo {
    max-width: 250px;
  }

  .footer .f-navi {
    display: block;
  }

  .footer .f-navi-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .footer .f-navi-list li:not(:last-child) {
    margin-bottom: 10px;
  }

  .footer .copyright {
    font-size: 12px;
    margin-top: 30px;
    padding-bottom: 30px;
  }

  .footer .copyright small {
    font-size: 12px;
  }

  .footer .pagetop {
    display: none;
  }
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
/*普通投稿*/
.list-post-type01 .list-item:not(:last-child) {
  margin-bottom: 80px;
}

.list-post-type01 .post-desc {
  word-break: break-all;
}

.list-post-type02 .list-item {
  padding: 50px;
  border: 1px solid #D65543;
}

.list-post-type02 .list-item:not(:last-child) {
  margin-bottom: 50px;
}

.list-post-type02 .list-cont+.list-cont {
  margin-top: 35px;
}

.list-post-type02 .btn-more {
  display: block;
  margin: 45px auto 0;
}

.list-post-type02.single .list-item {
  padding: 0;
  border: none;
}

.list-post-type03 {
  display: flex;
  flex-wrap: wrap;
}

.list-post-type03 .list-item {
  width: 31.25%;
  transition: 0.4s ease-in-out;
}

.list-post-type03 .list-item a:hover .list-img img {
  transform: scale(1.1);
}

.list-post-type03 .list-item:not(:nth-child(3n)) {
  margin-right: 3.125%;
}

.list-post-type03 .list-item:nth-child(n+4) {
  margin-top: 50px;
}

.list-post-type03 .list-img {
  overflow: hidden;
  margin-bottom: 20px;
}

.list-post-type03 .list-img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.5s;
}

.list-post-type03 .list-ttl {
  font-size: 18px;
  width: 100%;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  word-break: break-word;
}

.post-layout {
  display: flex;
}

.post-layout .post-img {
  flex: 1;
  margin-right: 50px;
}

.post-layout .post-img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}

.post-layout .post-desc {
  flex: 2;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  word-break: break-all;
}

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

.l-post-single .l-ttl {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  word-break: break-all;
  font-size: 25px;
  margin-bottom: 30px;
}

/*投稿本文用CSS*/
.postdata {
  overflow-wrap: break-word;
}

.postdata h4 {
  font-size: 18px;
  color: #E5DFCF;
}

.postdata h5 {
  font-size: 17px;
  padding-left: 10px;
  position: relative;
}

.postdata h5:after {
  content: "-";
  color: #E5DFCF;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}

.postdata h6 {
  font-size: 16px;
  color: #E5DFCF;
}

.postdata .screen-reader-text {
  border: 0;
  -webkit-clip-path: inset(50%);
  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;
  -webkit-clip-path: none;
  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;
  -webkit-clip-path: inset(50%);
  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;
  -webkit-clip-path: none;
  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: 15px;
}

.post-data time {
  font-size: 14px;
  color: #D65543;
  line-height: 1;
}

.post-data .post-category01, .post-data .post-category02 {
  margin-left: 15px;
}

.post-ttl {
  word-break: break-all;
}

.post-category01 {
  border: 1px solid #D65543;
  color: #D65543;
  line-height: 1;
  padding: 5px 10px;
  display: inline-block;
}

.post-category01 span {
  font-size: 12px;
}

.post-category01 span:not(:first-child):before {
  content: " / ";
}

.post-category02 {
  line-height: 1;
  margin-left: -2px;
}

.post-category02 span {
  display: inline-block;
  font-size: 13px;
  background-color: #D65543;
  font-family: "FOT-筑紫A丸ゴシック Std D", sans-serif;
  color: #fff;
  letter-spacing: 0.05em;
  padding: 5px 8px;
  margin: 2px;
}

/*セレクト式カテゴリー*/
.select-area {
  margin-bottom: 50px;
}

.select-area .select-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.select-area .select-box:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 0;
  height: 0;
  border-top: 8px solid #D65543;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  transform: translateY(-50%);
}

.select-area .select-category {
  -webkit-appearance: none;
  outline: none;
  text-indent: 0.01px;
  text-overflow: "";
  border-radius: 0;
  background: #F6F6F6;
  font-size: 16px;
  color: #D65543;
  vertical-align: middle;
  height: 50px;
  padding: 5px 15px;
  border: none;
  width: 100%;
  cursor: pointer;
}

.select-area .select-category::-ms-expand {
  display: none;
}

/*一覧用ページャー*/
.post-number {
  margin-top: 100px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  border-bottom: 1px solid #d3d3d3;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.post-number a {
  color: #a5a5a5;
  display: inline-block;
  padding: 0 10px 15px;
}

.post-number a:hover {
  color: #D65543;
}

.post-number .current {
  color: #D65543;
  display: inline-block;
  padding: 0 10px 15px;
  position: relative;
}

.post-number .current::after {
  content: "";
  border-bottom: 2px solid #D65543;
  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: "Montserrat", sans-serif;
  font-weight: 500;
}

.post-number-single a {
  display: inline-block;
  color: #D65543;
}

.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:not(:last-child) {
    margin-bottom: 60px;
  }

  .list-post-type02 .list-item {
    padding: 25px 20px;
  }

  .list-post-type02 .list-item:not(:last-child) {
    margin-bottom: 20px;
  }

  .list-post-type02 .list-cont+.list-cont {
    margin-top: 20px;
  }

  .list-post-type02 .btn-more {
    display: block;
    margin: 30px auto 0;
  }

  .list-post-type03 {
    display: block;
  }

  .list-post-type03 .list-item {
    width: 100%;
  }

  .list-post-type03 .list-item:not(:nth-child(3n)) {
    margin-right: 0;
  }

  .list-post-type03 .list-item:nth-child(n+2) {
    margin-top: 30px;
  }

  .list-post-type03 .list-img {
    margin-bottom: 15px;
  }

  .list-post-type03 .list-img img {
    height: 60vw;
  }

  .list-post-type03 .list-ttl {
    font-size: 16px;
  }

  .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 {
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .post-data time {
    line-height: 2;
  }

  .post-data .post-category01 {
    margin-left: 15px;
  }

  .post-data .post-category02 {
    margin-left: 15px;
  }

  /*詳細ページ*/
  /*セレクト式カテゴリー*/
  /*一覧用ページャー*/
  .post-number {
    margin-top: 60px;
  }
}

/*------------
sidebar-layout
--------------*/
.sidebar-layout {
  display: flex;
  justify-content: space-between;
  padding: 100px 0;
  margin: 0 auto;
  max-width: 1400px;
}

.main-contents {
  padding: 0 70px;
  width: calc(100% - 220px);
  max-width: 1200px;
  margin: 0 auto;
}

.side-contents {
  padding: 0 40px;
  width: 220px;
}

.side-contents-wrapper {
  position: sticky;
  top: 110px;
}

.side-contents-ttl {
  border-bottom: 1px solid #e8ecf0;
  font-size: 15px;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.side-area-item+.side-area-item {
  margin-top: 30px;
}

.side-area-item-ttl {
  font-size: 13px;
  margin-bottom: 7px;
}

.side-area-links li {
  padding-left: 20px;
  position: relative;
  font-size: 14px;
}

.side-area-links li::before {
  content: "";
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  top: 7px;
  left: 0;
}

.side-area-links li+li {
  margin-top: 5px;
}

.side-area-links a {
  display: inline-block;
}

.side-area-links a:hover {
  text-decoration: underline;
}

.side-area-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  text-overflow: "";
  background: #fff url(../images/share/icon_select_arrow.svg) no-repeat right 10px center/20px auto;
  border-radius: 0;
  border: none;
  border: 1px solid #e8ecf0;
  color: #333;
  vertical-align: middle;
  padding: 10px 20px 10px 15px;
  margin: 0;
  width: 100%;
  height: 50px;
}

@media (max-width: 800px) {
  .sidebar-layout {
    flex-direction: column-reverse;
    padding: 50px 5vw;
    width: 100%;
  }

  .sidebar-layout .tall+.tall {
    margin-top: 50px;
  }

  .sidebar-layout.sp-reverse {
    flex-direction: column;
  }

  .sidebar-layout.sp-reverse .side-contents {
    margin: 0 0 50px;
  }

  .main-contents {
    width: 100%;
    padding: 0;
  }

  .side-contents {
    width: 100%;
    padding: 0;
    margin-top: 50px;
  }

  .side-contents-wrapper {
    position: sticky;
    top: 20px;
  }

  .side-contents-ttl {
    font-size: 15px;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }

  .side-area-item+.side-area-item {
    margin-top: 30px;
  }
}

/*-----------------------------------------------------------
ボタン
-----------------------------------------------------------*/
.btn-more {
  display: block;
  width: 100%;
  max-width: 240px;
  padding: 13px 25px;
  font-size: 16px;
  font-family: "FOT-筑紫A丸ゴシック Std D", sans-serif;
  line-height: 1.5;
  color: #fff;
  background-color: #D65543;
  border-radius: 25px;
  transition: 0.3s;
  position: relative;
}

.btn-more:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: url(../images/btn_arrow.png) center/contain no-repeat;
}

.btn-more:hover {
  opacity: 0.5;
}

.btn-more.center {
  margin-left: auto;
  margin-right: auto;
}

.btn-more.wide {
  max-width: 320px;
}

.btn-icon {
  background: #D65543;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 50px;
  color: #fff;
}

.btn-icon img {
  width: 20px;
  margin-right: 10px;
}

.btn-line {
  background: #4CC764;
  color: #fff;
  padding: 10px 25px;
}

.btn-line img {
  line-height: 1;
  margin: 0 10px 0 -20px;
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -8px;
}

.btn-wrap a {
  margin: 8px;
}

.btn-wrap.center {
  justify-content: center;
  margin-left: 0;
}

@media (max-width: 800px) {
  .btn-more {
    width: 100%;
    min-width: auto;
    max-width: none;
  }

  .btn-icon,
  .btn-line {
    width: 100%;
  }

  .btn-wrap {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    text-align: center;
  }

  .btn-wrap a {
    margin: 0;
  }

  .btn-wrap a:not(:last-child) {
    margin-bottom: 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.5s;
}

.fade:hover {
  opacity: 0.5;
}

.fs11 {
  font-size: 11px;
}

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

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

.underline {
  text-decoration: underline;
}

.marker span {
  background: linear-gradient(transparent 60%, #8E7B54 60%);
  padding-bottom: 3px;
}

.marker .large {
  font-size: 30px;
}

.marker .small {
  font-size: 20px;
}

.link {
  text-decoration: underline;
  word-break: break-all;
  position: relative;
}

.link[target=_blank]::after {
  content: "";
  display: inline-block;
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  margin-left: 5px;
}

.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: 5px !important;
}

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

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

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

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

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

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

@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: 30px !important;
  }

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

/*診療カレンダー*/
:root {
  --event01: #5E4B22;
  --event02: #E07769;
  --event03: #E3CA5F;
  --event04: #699F71;
}

.business-calendar-box-wrap {
  margin-bottom: 12px;
  font-family: "FOT-筑紫A丸ゴシック Std D", sans-serif;
}

.business-calendar-box-wrap .business-calendar {
  text-align: center;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #5F4B22;
  border-radius: 10px;
  overflow: hidden;
}

.business-calendar-box-wrap .business-calendar caption {
  font-size: 17px;
  text-align: center;
  border: 0;
  margin: 0;
  padding-bottom: 15px;
  position: relative;
  border: none;
}

.business-calendar-box-wrap .business-calendar caption span {
  line-height: 1;
  font-size: 25px;
  vertical-align: -1px;
}

.business-calendar-box-wrap .business-calendar-past,
.business-calendar-box-wrap .business-calendar-future {
  position: absolute;
  top: 2px;
}

.business-calendar-box-wrap .business-calendar-past {
  left: 0;
}

.business-calendar-box-wrap .business-calendar-future {
  right: 0;
}

.business-calendar-box-wrap .business-calendar-past a,
.business-calendar-box-wrap .business-calendar-future a {
  display: inline-block;
  cursor: pointer;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 25px;
  height: 25px;
}

.business-calendar-box-wrap .business-calendar-past a::before,
.business-calendar-box-wrap .business-calendar-future a::before {
  display: inline-block;
  content: "";
  transform: translateY(-50%) rotate(230deg);
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: 2px solid #5F4B22;
  border-right: 2px solid #5F4B22;
  position: absolute;
  top: 15px;
  left: 10px;
}

.business-calendar-box-wrap .business-calendar-future a::before {
  transform: rotate(50deg);
  top: 10px;
}

.business-calendar-box-wrap .business-calendar th {
  border: 0;
  text-align: center;
  font-size: 16px;
  padding: 10px 0;
  width: 14%;
}

.business-calendar-box-wrap .business-calendar tbody tr:first-child td {
  padding-top: 15px;
}

.business-calendar-box-wrap .business-calendar tbody tr:last-child td {
  padding-bottom: 30px;
}

.business-calendar-box-wrap .business-calendar tbody tr:last-child td::before {
  top: 36%;
}

.business-calendar-box-wrap .business-calendar td {
  border: 0;
  position: relative;
  font-size: 15px;
  padding: 10px 0;
  z-index: 0;
}

.business-calendar-box-wrap .business-calendar td::before {
  content: "";
  border-radius: 50px;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
}

.business-calendar-box-wrap .business-calendar thead tr:first-child th:first-child {
  border-top-left-radius: 10px;
}

.business-calendar-box-wrap .business-calendar thead tr:first-child th:last-child {
  border-top-right-radius: 10px;
}

.business-calendar-box-wrap .business-calendar tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

.business-calendar-box-wrap .business-calendar tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

.business-calendar-box-wrap .business-calendar thead {
  border: 1px solid #5F4B22;
}

.business-calendar-box-wrap .business-calendar tr:first-child td {
  border-top: 1px solid #5F4B22;
}

.business-calendar-box-wrap.large .business-calendar th,
.business-calendar-box-wrap.large .business-calendar td {
  padding: 10px;
  font-size: 15px;
}

.business-calendar-box-wrap.col2 {
  grid-template-columns: 1fr;
}

.business-calendar-box-wrap.col2 .business-calendar-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3%;
}

.business-calendar-box-wrap .business-calendar .today {
  text-decoration: underline;
  opacity: 1;
}

.business-calendar-box-wrap .business-calendar .attr0,
.business-calendar-box-wrap .business-calendar .attr1,
.business-calendar-box-wrap .business-calendar .attr3 {
  color: #fff;
}

.business-calendar-box-wrap .business-calendar .attr0::before,
.business-calendar-box-wrap .business-calendar .attr1::before,
.business-calendar-box-wrap .business-calendar .attr3::before {
  opacity: 1;
}

.business-calendar-box-wrap .business-calendar .attr2 {
  color: #5F4B22;
}

.business-calendar-box-wrap .business-calendar .attr2::before {
  opacity: 1;
}

.business-calendar-box-wrap .business-calendar .attr0::before {
  background: var(--event01);
}

.business-calendar-box-wrap .business-calendar .attr1::before {
  background: var(--event02);
}

.business-calendar-box-wrap .business-calendar .attr2::before {
  background: var(--event03);
}

.business-calendar-box-wrap .business-calendar .attr3::before {
  background: var(--event04);
}

.list-event {
  display: flex;
}

.list-event li {
  font-size: 15px;
  line-height: 1;
  margin: 0 20px 0 0;
}

.list-event i {
  margin: 0 5px 0 0;
}

.list-event .event01 {
  color: var(--event01);
}

.list-event .event02 {
  color: var(--event02);
}

.list-event .event03 {
  color: var(--event03);
}

.list-event .event04 {
  color: var(--event04);
}

@media (max-width: 800px) {
  .business-calendar-box-wrap.col2 .business-calendar-box {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  .list-event {
    display: block;
  }

  .list-event li+li {
    margin-top: 5px;
  }
}

/*診療時間*/
.time-table {
  text-align: center;
  overflow: hidden;
  font-family: "FOT-筑紫A丸ゴシック Std D", sans-serif;
  letter-spacing: 0.05em;
}

.time-table-head {
  border-top: 1px solid #AC9D7F;
}

.time-table-head .item {
  padding: 15px 0;
}

.time-table-body {
  border-top: 1px solid #AC9D7F;
}

.time-table-body:last-child {
  border-bottom: 1px solid #AC9D7F;
}

.time-table-body .item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 0;
}

.time-table-body .item:not(:first-child) {
  color: #8E7B54;
}

.time-table-body .item:first-child {
  letter-spacing: 0;
}

.time-table-head, .time-table-body {
  display: grid;
  grid-template-columns: 120px repeat(6, 1fr) 60px;
}

.time-table.large .time-table-head, .time-table.large .time-table-body {
  grid-template-columns: 220px repeat(6, 1fr) 100px;
}

.time-table-txt {
  line-height: 1.5;
  margin-top: 15px;
  font-size: 13px;
}

@media (max-width: 800px) {
  .time-table-head {
    font-size: 12px;
  }

  .time-table-head .item {
    padding: 5px 0;
  }

  .time-table-body .item {
    padding: 5px 0;
    font-size: 13px;
  }

  .time-table-body .item:first-child {
    line-height: 1.3;
    font-size: 10px;
  }

  .time-table-head, .time-table-body {
    grid-template-columns: 70px repeat(6, 1fr) 50px !important;
  }

  .time-table-txt {
    font-size: 13px;
  }
}

.map {
  position: relative;
  width: 100%;
  height: 500px;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tel {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1;
  border-bottom: 1px solid #5F4B22;
  padding-bottom: 5px;
  transition: 0.3s;
}

.tel .small {
  font-size: 15px;
}

.tel:hover {
  opacity: 0.5;
}

@media (max-width: 800px) {
  .map {
    height: 300px;
  }

  .tel {
    font-size: 24px;
  }

  .tel:before {
    width: 20px;
    height: 25px;
  }
}

/*------------
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: #D65543;
  /* 矢印 */
  --splide-focus-color: #D65543;
  /* タブ移動によるフォーカス時のアウトライン */
  --splide-pagination-color: #D65543;
  /* アクティブ時のページネーション */
  --splide-progress-color: #D65543;
  /* プログレスバー */
  --splide-toggle-color: #D65543;
  /* 再生ボタン */
  --splide-track-color: #D65543;
  /* サムネイルの枠 */
}

.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 {
  width: 100%;
  height: 100%;
  fill: var(--splide-arrow-color);
}

.splide__arrow:hover:not(:disabled), .splide__arrow:disabled {
  opacity: 0.3;
}

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

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

.splide__pagination__page {
  background: #ddd;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 5px;
  opacity: 1;
  width: 8px;
  transition: transform 0.2s linear;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page.is-active {
  background: var(--splide-pagination-color);
  transform: scale(1.4);
  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;
  }
}

/*------------
アニメーション
--------------*/
.js-fadein {
  transition: opacity 1.2s, transform 1s;
  opacity: 0;
  transform: translateY(120px);
}

.js-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

/*------------
Loading
-------------*/
#loading {
  width: 100vw;
  height: 100vh;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}

#loading_barWrap {
  width: 30vw;
  height: calc(1rem + 5px);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

#loading_bar {
  width: 0;
  height: 5px;
  background: #fff;
  transition-duration: 1s;
}

.text {
  text-align: center;
  color: #fff;
}

.loadingNone {
  animation: loadingAnime 1s forwards;
}

@keyframes loadingAnime {
  0% {
    opacity: 1;
  }

  99% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    display: none;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

/*# sourceMappingURL=style.css.map */
