@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 {
  -webkit-box-sizing: border-box;
  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 {
  font-family: "FOT-筑紫ゴシック Pr5N D", sans-serif, "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  color: #444;
  font-size: 17px;
  line-height: 2.2;
  letter-spacing: 0.05em;
  background-color: #f7f1ea;
}

html {
  scroll-behavior: smooth;
}

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

@media (max-width: 800px) {
  :target {
    scroll-margin-top: 60px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Serif JP", serif;
  line-height: 1.75;
}

@media (max-width: 800px) {

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

th,
dt {
  font-family: "FOT-筑紫ゴシック Pr5N R", serif;
}

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

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

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

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

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

.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 {
  width: 100%;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 801px) {
  .header {
    height: 100px;
  }
}

@media (max-width: 800px) {
  .header {
    height: 60px;
  }
}

.header.is-fixed {
  background-color: #FFF;
}

.header-inr {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
}

@media (min-width: 801px) {
  .header-inr {
    padding: 0 33px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 30px;
  }
}

@media (max-width: 800px) {
  .header-inr {
    padding: 0 16px;
  }
}

@media (min-width: 1201px) {
  .header .h-logo {
    width: 100%;
    max-width: 336px;
    max-height: 66px;
  }
}

@media (min-width: 801px) and (max-width: 1200px) {
  .header .h-logo {
    max-width: 180px;
  }
}

@media (max-width: 800px) {
  .header .h-logo {
    max-width: 207px;
    max-height: 42px;
  }
}

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

@media (min-width: 801px) {
  .header .h-logo img {
    width: 100%;
  }
}

@media (max-width: 800px) {
  .header .h-logo img {
    width: auto;
  }
}

@media (min-width: 801px) {
  .header .h-right {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
  }
}

@media (max-width: 800px) {
  .header .h-right {
    display: none;
  }
}

@media (min-width: 801px) {
  .header .h-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
  }
}

.header .h-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1px;
}

.header .h-info-title01 {
  height: 29px;
  border-radius: 5px;
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #dba18f;
}

@media (min-width: 1201px) {
  .header .h-info-title01 {
    padding: 0 8px;
    font-size: 16px;
  }
}

@media (min-width: 801px) and (max-width: 1200px) {
  .header .h-info-title01 {
    padding: 0 2px;
    font-size: 13px;
  }
}

.header .h-info-title02 {
  height: 29px;
  border-radius: 5px;
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #d9cd80;
}

@media (min-width: 1201px) {
  .header .h-info-title02 {
    padding: 0 8px;
    font-size: 16px;
  }
}

@media (min-width: 801px) and (max-width: 1200px) {
  .header .h-info-title02 {
    padding: 0 2px;
    font-size: 13px;
  }
}

.header .h-tel {
  padding: 6px 0;
  line-height: 1;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

@media (min-width: 1201px) {
  .header .h-tel {
    font-size: 28px;
  }
}

@media (min-width: 801px) and (max-width: 1200px) {
  .header .h-tel {
    font-size: 23px;
  }
}

.header .h-tel:before {
  width: 18px;
  height: 23px;
  content: "";
  display: block;
  background: url(../images/share/icon_phone_b.svg) 0 0/100% no-repeat;
}

/*------------
G-navi
--------------*/
.pc-navi {
  display: none;
}

@media (min-width: 801px) {
  .pc-navi.is-open {
    width: 700px;
    overflow: auto;
    padding: 89px 60px 71px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background-color: #efdcd6;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
  }
}

@media (max-width: 800px) {
  .pc-navi.is-open {
    display: none;
  }
}

.pc-navi .btn01 {
  min-width: 261px;
  height: 40px;
  padding-right: 25px;
  border-radius: 5px;
  color: #FFF;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 17px;
  background-color: #dba18f;
  position: relative;
}

@media (min-width: 1201px) {
  .pc-navi .btn01 {
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .pc-navi .btn01 {
    font-size: 13px;
  }
}

.pc-navi .btn01:after {
  width: 18px;
  height: 18px;
  content: "";
  display: block;
  background: url(../images/share/pc-navi-btn01.png) 0 0/100% no-repeat;
  position: absolute;
  top: 50%;
  right: 11px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.pc-navi .btn02 {
  width: 261px;
  height: 40px;
  padding-right: 25px;
  border-radius: 5px;
  color: #FFF;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 17px;
  background-color: #d9cd80;
  position: relative;
}

@media (min-width: 1201px) {
  .pc-navi .btn02 {
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .pc-navi .btn02 {
    font-size: 13px;
  }
}

.pc-navi .btn02:after {
  width: 18px;
  height: 18px;
  content: "";
  display: block;
  background: url(../images/share/pc-navi-btn02.png) 0 0/100% no-repeat;
  position: absolute;
  top: 50%;
  right: 11px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.pc-navi .ttl {
  border-bottom: 1px solid #B1B1B1;
  font-size: 17px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 16px;
}

.pc-navi .item {
  font-size: 17px;
  font-family: "FOT-筑紫ゴシック Pr5N D", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.pc-navi .item:before {
  width: 8px;
  height: 1px;
  content: "";
  display: block;
  background-color: #2c8e4d;
}

.pc-navi-nav {
  width: 41.015625%;
}

.pc-navi-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 50px 0px;
}

.pc-navi .item01 {
  font-size: 15px;
  font-family: "FOT-筑紫ゴシック Pr5N D", sans-serif;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pc-navi .item02 {
  font-size: 15px;
  font-family: "FOT-筑紫ゴシック Pr5N D", sans-serif;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.pc-navi .item02:before {
  width: 6px;
  height: 1px;
  content: "";
  display: block;
  background-color: #ED5876;
}

.pc-navi-copyright {
  width: 100%;
  padding: 53px 0 10px;
  color: #2c8e4d;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: center;
}

.pc-dropdown {
  position: relative;
}

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

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

.pc-dropdown .pc-navi-child {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 37px 40px;
  border-radius: 10px;
  background-color: #FFF;
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translate(-50%, -10px);
  transform: translate(-50%, -10px);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.pc-dropdown .pc-navi-child:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  border-bottom: 15px solid #FFF;
  border-top: 0;
  content: "";
  display: block;
  margin: 0 auto;
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
}

.pc-dropdown .pc-navi-child li {
  width: 100%;
  color: #424242;
  font-size: 15px;
  font-family: "FOT-筑紫ゴシック Pr5N R", serif;
  letter-spacing: 0.05em;
  white-space: nowrap;
  line-height: 2.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.pc-dropdown .pc-navi-child li::before {
  width: 6px;
  height: 1px;
  content: "";
  display: block;
  background-color: #424242;
}

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

.sp-navi {
  display: none;
}

.hamburger {
  width: 64px;
  height: 64px;
  border-radius: 100px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: #dba18f;
  position: relative;
  z-index: 1000;
}

.hamburger.is-open {
  background-color: transparent;
}

.hamburger-bar01 {
  height: 1px;
  background-color: #FFF;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 801px) {
  .hamburger-bar01 {
    width: 30px;
    top: 15px;
    left: 17px;
  }
}

@media (max-width: 800px) {
  .hamburger-bar01 {
    width: 20px;
    top: 17px;
    left: 15px;
  }
}

.hamburger-bar01.is-open {
  background-color: #444;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

@media (min-width: 801px) {
  .hamburger-bar01.is-open {
    top: 24px;
  }
}

@media (max-width: 800px) {
  .hamburger-bar01.is-open {
    top: 25px;
  }
}

.hamburger-bar02 {
  height: 1px;
  background-color: #FFF;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 801px) {
  .hamburger-bar02 {
    width: 30px;
    top: 24px;
    left: 17px;
  }
}

@media (max-width: 800px) {
  .hamburger-bar02 {
    width: 20px;
    top: 25px;
    left: 15px;
  }
}

.hamburger-bar02.is-open {
  opacity: 0;
}

.hamburger-bar03 {
  height: 1px;
  background-color: #FFF;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 801px) {
  .hamburger-bar03 {
    width: 30px;
    top: 33px;
    left: 17px;
  }
}

@media (max-width: 800px) {
  .hamburger-bar03 {
    width: 20px;
    top: 32px;
    left: 15px;
  }
}

.hamburger-bar03.is-open {
  background-color: #444;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

@media (min-width: 801px) {
  .hamburger-bar03.is-open {
    top: 24px;
  }
}

@media (max-width: 800px) {
  .hamburger-bar03.is-open {
    top: 25px;
  }
}

@media (min-width: 801px) {
  .hamburger-menu {
    color: #FFF;
    font-size: 11px;
    font-weight: bold;
    font-family: "Playfair Display", serif;
    letter-spacing: 0.05em;
    text-align: center;
    position: absolute;
    top: 38px;
    left: 0;
    right: 0;
  }
}

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

.hamburger-menu:before {
  content: "MENU";
}

.hamburger-menu.is-open {
  display: none;
}

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

  :root {
    --navi-background: #DBA18F;
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --menu-btn: #fff;
    --navi-font: '秀英角ゴシック銀 B', "游ゴシック 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 {
    width: 100%;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--navi-background);
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10000;
  }

  .sp-navi .sp-navi-btns>* {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
  }

  .sp-navi .sp-navi-btns .item {
    border-right: 1px solid #fff;
    line-height: 1.1;
    font-size: 10px;
    font-family: "FOT-筑紫ゴシック Pr5N D", sans-serif;
    letter-spacing: 0.05em;
    text-align: center;
    white-space: nowrap;
  }

  .sp-navi .sp-navi-btns .item:nth-child(2),
  .sp-navi .sp-navi-btns .item:nth-child(3) {
    line-height: 1.3333333333;
    font-size: 9px;
    letter-spacing: 0;
  }

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

  .sp-navi .sp-navi-btns .item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    height: 100%;
  }

  .sp-navi .sp-navi-btns .item .img {
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .sp-navi .sp-navi-btns .item .ttl {
    min-height: 23px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .sp-navi .sp-menu-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    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;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: 0.4s;
    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: 15px;
  }

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

  .sp-navi .sp-menu-btn.is-open span:nth-of-type(1) {
    -webkit-transform: translate(-50%, 4px) rotate(-45deg);
    transform: translate(-50%, 4px) 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) {
    -webkit-transform: translate(-50%, -4px) rotate(45deg);
    transform: translate(-50%, -4px) rotate(45deg);
  }

  .sp-navi {
    /* コンテンツ */
  }

  .sp-navi .sp-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background-color: #efdcd6;
    font-family: var(--navi-font);
    padding: 50px 10% 100px;
    position: fixed;
    top: 0px;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: 0.5s;
    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 {
    margin: 0 0 30px;
  }

  .sp-navi .sp-navi-list>li>a,
  .sp-navi .sp-navi-list>li span {
    display: block;
    font-size: 15px;
    font-family: "FOT-筑紫ゴシック Pr5N R", 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: #2c8e4d;
    position: absolute;
    -webkit-transition: 0.5s;
    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 {
    -webkit-transform: rotate(90deg);
    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 .column-2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }

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

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

  .sp-navi .sp-navi-list .child>ul>li.child-li {
    margin-left: 15px;
    color: #888888;
    padding-left: 0;
  }

  .sp-navi .sp-navi-list .child>ul>li.child-li::before {
    display: none;
  }

  .sp-navi .sp-navi-list .child>ul>li.child-li>a {
    font-size: 13px;
  }

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

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

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
}

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

.hero-layout {
  height: 100%;
  position: relative;
}

@media (min-width: 801px) {
  .hero-layout {
    aspect-ratio: 1800/788;
  }
}

@media (max-width: 800px) {
  .hero-layout {
    aspect-ratio: 400/434;
  }
}

.hero-img {
  width: 100%;
}

.hero-desc {
  position: absolute;
}

@media (min-width: 801px) {
  .hero-desc {
    top: 39.7208121827%;
    left: 6.3888888889%;
  }
}

@media (max-width: 800px) {
  .hero-desc {
    width: 92%;
    margin: 0 auto 10px;
    top: 45.3917050691%;
    left: 0;
    right: 0;
  }
}

.hero-ttl {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-shadow: 0 3px 10px #FFF, 0 3px 10px #FFF;
}

@media (min-width: 801px) {
  .hero-ttl {
    line-height: 1.6;
    font-size: clamp(30px, 2.674vw, 50px);
    margin-bottom: 22px;
  }
}

@media (max-width: 800px) {
  .hero-ttl {
    line-height: 1.4482758621;
    font-size: clamp(19px, 5.75vw, 23px);
  }
}

.hero-txt {
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  text-shadow: 0 3px 10px #FFF, 0 3px 10px #FFF;
}

@media (min-width: 801px) {
  .hero-txt {
    line-height: 1.6071428571;
    font-size: 28px;
  }
}

@media (max-width: 800px) {
  .hero-txt {
    line-height: 1.5833333333;
    font-size: 12px;
  }
}

/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
@media (min-width: 801px) {
  .t-ttl {
    padding-bottom: 22px;
    gap: 0px;
  }
}

@media (max-width: 800px) {
  .t-ttl {
    text-align: center;
  }
}

.t-ttl .en {
  color: #ede4db;
  line-height: 1;
  font-family: "Allura", cursive;
  letter-spacing: 0.05em;
}

@media (min-width: 801px) {
  .t-ttl .en {
    font-size: 180px;
  }
}

@media (max-width: 800px) {
  .t-ttl .en {
    font-size: 60px;
  }
}

.t-ttl .jp {
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
}

@media (min-width: 801px) {
  .t-ttl .jp {
    font-size: 35px;
  }
}

@media (max-width: 800px) {
  .t-ttl .jp {
    line-height: 1.7777777778;
    font-size: 20px;
  }
}

/*------------
Block
--------------*/
@media (min-width: 801px) {
  .sec01 {
    padding: 94px 0 57px;
  }
}

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

.sec01-layout {
  display: -ms-grid;
  display: grid;
  gap: 49px;
}

@media (min-width: 801px) {
  .sec01-layout {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 800px) {
  .sec01-layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.sec01 .box {
  position: relative;
}

.sec01 .t-ttl {
  padding-top: 15px;
  padding-bottom: 23px;
  border-bottom: 1px solid #dfdfdf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 15px;
  margin-bottom: 20px;
}

.sec01 .t-ttl .jp {
  line-height: 1;
  font-size: 25px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
}

.sec01 .t-ttl .en {
  color: #dba18f;
  line-height: 1;
  font-size: 16px;
  font-weight: bold;
  font-family: "Playfair Display", serif;
  margin-bottom: 1px;
}

.sec01 .btn-wrap {
  width: 118px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 20px;
}

.sec02 {
  position: relative;
}

@media (min-width: 1201px) {
  .sec02 {
    min-height: 680px;
    height: auto;
  }
}

@media (max-width: 1200px) {
  .sec02 {
    padding: 50px 0 25%;
  }
}

.sec02-deco01 {
  width: 22.2222222222%;
  height: auto;
  aspect-ratio: 400/450;
  border-radius: 30px;
  background: url(../images/sec02_deco01.jpg) 0 0/100% no-repeat;
  position: absolute;
  bottom: 41px;
  left: 3.6111111111%;
  z-index: -1;
}

.sec02-deco02 {
  width: 26.6666666667%;
  height: auto;
  aspect-ratio: 480/680;
  border-radius: 30px 0 0 30px;
  background: url(../images/sec02_deco02.jpg) 0 0/100% no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

@media (max-width: 1200px) {
  .sec02-deco02 {
    max-width: 100px;
  }
}

@media (min-width: 1201px) {
  .sec02-layout {
    width: 37.2222222222%;
    position: absolute;
    top: 0;
    left: 31.3888888889%;
  }
}

@media (max-width: 1200px) {
  .sec02-layout {
    width: 90%;
    margin: 0 auto;
  }
}

.sec02 .t-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 1201px) {
  .sec02 .t-ttl {
    gap: 25px;
    margin-bottom: 47px;
  }
}

@media (max-width: 1200px) {
  .sec02 .t-ttl {
    gap: 15px;
    margin-bottom: 20px;
  }
}

.sec02 .t-ttl .jp {
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
}

@media (min-width: 1201px) {
  .sec02 .t-ttl .jp {
    font-size: 35px;
  }
}

@media (max-width: 1200px) {
  .sec02 .t-ttl .jp {
    font-size: 22px;
  }
}

.sec02 .t-ttl .en {
  color: #dba18f;
  font-weight: bold;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.05em;
}

@media (min-width: 1201px) {
  .sec02 .t-ttl .en {
    font-size: 30px;
  }
}

@media (max-width: 1200px) {
  .sec02 .t-ttl .en {
    font-size: 15px;
  }
}

.sec02 .ttl {
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
}

@media (min-width: 1201px) {
  .sec02 .ttl {
    font-size: 25px;
    margin-bottom: 25px;
  }
}

@media (max-width: 1200px) {
  .sec02 .ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.sec02 .txt {
  line-height: 2;
  font-family: "FOT-筑紫ゴシック Pr5N D", sans-serif;
  letter-spacing: 0.05em;
}

@media (min-width: 1201px) {
  .sec02 .txt {
    font-size: 17px;
  }
}

@media (max-width: 1200px) {
  .sec02 .txt {
    font-size: 15px;
  }
}

.sec02 .btn-wrap {
  width: 189px;
}

@media (min-width: 1201px) {
  .sec02 .btn-wrap {
    margin: 55px 0 0;
  }
}

@media (max-width: 1200px) {
  .sec02 .btn-wrap {
    margin: 20px 20px 0 auto;
  }
}

.sec03 {
  position: relative;
}

@media (min-width: 1201px) {
  .sec03 {
    padding: 115px 0 78px;
  }
}

@media (max-width: 1200px) {
  .sec03 {
    padding: 50px 0;
    background-color: #f5e5df;
  }
}

@media (min-width: 1201px) {
  .sec03:before {
    width: 88.8888888889%;
    height: calc(100% - 115px);
    border-radius: 0 70px 60px 0;
    content: "";
    display: block;
    background-color: #f5e5df;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

@media (min-width: 1201px) {
  .sec03:after {
    width: 100%;
    height: 200px;
    content: "";
    display: block;
    background-color: #f8f6f0;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -2;
  }
}

.sec03-inr {
  position: relative;
  z-index: 2;
}

.sec03 .t-ttl {
  position: relative;
}

@media (min-width: 1201px) {
  .sec03 .t-ttl {
    height: 100px;
    padding-left: 100px;
    margin-bottom: 43px;
  }
}

@media (max-width: 1200px) {
  .sec03 .t-ttl {
    margin-bottom: 20px;
  }
}

.sec03 .t-ttl .jp {
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  position: absolute;
  bottom: 0;
}

@media (min-width: 1201px) {
  .sec03 .t-ttl .jp {
    font-size: 35px;
  }
}

@media (max-width: 1200px) {
  .sec03 .t-ttl .jp {
    font-size: 22px;
    margin: 0 auto;
    left: 0;
    right: 0;
  }
}

.sec03 .t-ttl .en {
  color: rgba(219, 161, 143, 0.3);
}

@media (min-width: 1201px) {
  .sec03 .t-ttl .en {
    position: absolute;
    top: -73px;
    right: 0;
  }
}

.sec03-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 1201px) {
  .sec03-layout {
    padding: 0 37px 0 65px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (max-width: 1200px) {
  .sec03-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
  }
}

@media (min-width: 1201px) {
  .sec03-layout .content {
    width: 42.5714285714%;
  }
}

@media (min-width: 1201px) {
  .sec03-layout .fig {
    width: 43.6428571429%;
  }
}

.sec03-layout .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 39px;
}

.sec03-layout .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 1201px) {
  .sec03-layout .item {
    gap: 40px;
  }
}

@media (max-width: 1200px) {
  .sec03-layout .item {
    gap: 20px;
  }
}

.sec03-layout .ttl {
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  margin-bottom: 19px;
}

@media (min-width: 1201px) {
  .sec03-layout .ttl {
    font-size: 23px;
  }
}

@media (max-width: 1200px) {
  .sec03-layout .ttl {
    font-size: 18px;
  }
}

.sec03-layout .txt {
  line-height: 1.7647058824;
  font-family: "FOT-筑紫ゴシック Pr5N D", sans-serif;
}

@media (min-width: 1201px) {
  .sec03-layout .txt {
    font-size: 17px;
  }
}

@media (max-width: 1200px) {
  .sec03-layout .txt {
    font-size: 15px;
  }
}

.sec03-layout .icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (min-width: 1201px) {
  .sec03-layout .icon {
    width: 102px;
  }
}

@media (max-width: 1200px) {
  .sec03-layout .icon {
    width: 80px;
  }
}

.sec03 .btn-wrap {
  width: 277px;
}

@media (min-width: 1201px) {
  .sec03 .btn-wrap {
    margin: 43px 0 0;
  }
}

@media (max-width: 1200px) {
  .sec03 .btn-wrap {
    margin: 30px auto 0;
  }
}

.sec04 {
  background-color: #f8f6f0;
}

@media (min-width: 1201px) {
  .sec04 {
    padding: 60px 0 112px;
  }
}

@media (max-width: 1200px) {
  .sec04 {
    padding: 50px 0;
  }
}

.sec04 .t-ttl {
  max-width: 90%;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 1201px) {
  .sec04 .t-ttl {
    height: 225px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (max-width: 1200px) {
  .sec04 .t-ttl {
    margin-bottom: 20px;
  }
}

.sec04 .t-ttl .jp {
  position: absolute;
}

@media (min-width: 1201px) {
  .sec04 .t-ttl .jp {
    bottom: 50px;
  }
}

@media (max-width: 1200px) {
  .sec04 .t-ttl .jp {
    font-size: 22px;
    margin: 0 auto;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

@media (min-width: 1201px) {
  .sec04 .t-ttl .en {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.sec04-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 53px;
}

@media (min-width: 1201px) {
  .sec04-layout {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}

@media (max-width: 1200px) {
  .sec04-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (min-width: 1201px) {
  .sec04-layout .content {
    width: 45.7142857143%;
    padding-right: 44px;
  }
}

@media (max-width: 1200px) {
  .sec04-layout .content {
    display: contents;
  }
}

.sec04-layout .btn-wrap {
  width: 225px;
}

@media (min-width: 1201px) {
  .sec04-layout .btn-wrap {
    margin: 27px 20px 0 auto;
  }
}

@media (max-width: 1200px) {
  .sec04-layout .btn-wrap {
    margin: 30px auto 0;
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}

.sec04-layout02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 1201px) {
  .sec04-layout02 {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (max-width: 1200px) {
  .sec04-layout02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (min-width: 1201px) {
  .sec04-layout02 .content {
    width: 45.7142857143%;
    padding-left: 44px;
  }
}

@media (max-width: 1200px) {
  .sec04-layout02 .content {
    display: contents;
  }
}

.sec04-layout02 .btn-wrap {
  width: 314px;
}

@media (min-width: 1201px) {
  .sec04-layout02 .btn-wrap {
    margin: 27px 20px 0 auto;
  }
}

@media (max-width: 1200px) {
  .sec04-layout02 .btn-wrap {
    margin: 30px auto 0;
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}

.sec04 .fig {
  height: auto;
  aspect-ratio: 700/766;
  position: relative;
}

@media (min-width: 1201px) {
  .sec04 .fig {
    width: 50%;
  }
}

@media (max-width: 1200px) {
  .sec04 .fig {
    margin-bottom: 30px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

.sec04 .ttl {
  line-height: 1.5666666667;
  font-family: "FOT-筑紫ゴシック Pr5N D", sans-serif;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}

@media (min-width: 1201px) {
  .sec04 .ttl {
    font-size: 30px;
  }
}

@media (max-width: 1200px) {
  .sec04 .ttl {
    font-size: 20px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

.sec04 .ttl span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, rgba(217, 205, 128, 0.5)));
  background: linear-gradient(transparent 60%, rgba(217, 205, 128, 0.5) 60%);
}

.sec04 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}

@media (max-width: 1200px) {
  .sec04 .list {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}

.sec04 .item {
  padding: 27px 40px 30px 30px;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

@media (min-width: 801px) {
  .sec04 .item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (max-width: 800px) {
  .sec04 .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 800px) {
  .sec04 .item-content {
    display: contents;
  }
}

.sec04 .ttl02 {
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
}

@media (min-width: 801px) {
  .sec04 .ttl02 {
    font-size: 23px;
    margin-bottom: 19px;
  }
}

@media (max-width: 800px) {
  .sec04 .ttl02 {
    font-size: 18px;
    text-align: center;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

.sec04 .txt {
  line-height: 1.7647058824;
  font-family: "FOT-筑紫ゴシック Pr5N D", sans-serif;
  letter-spacing: 0.05em;
}

@media (min-width: 801px) {
  .sec04 .txt {
    font-size: 17px;
  }
}

@media (max-width: 800px) {
  .sec04 .txt {
    font-size: 15px;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}

.sec04 .img {
  width: 102px;
  height: 113px;
}

@media (max-width: 800px) {
  .sec04 .img {
    margin: 0 auto;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

.sec04 .img01 {
  width: 85.7142857143%;
  border-radius: 30px;
  position: absolute;
  top: 0;
  right: 0;
}

.sec04 .img02 {
  width: 62%;
  border-radius: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.sec04 .img03 {
  width: 85.7142857143%;
  border-radius: 30px;
  position: absolute;
  top: 0;
  left: 0;
}

.sec04 .img04 {
  width: 62%;
  border-radius: 30px;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (min-width: 1201px) {
  .sec05 {
    padding: 40px 0 100px;
  }
}

@media (max-width: 1200px) {
  .sec05 {
    padding: 50px 0;
  }
}

.sec05 .t-ttl {
  position: relative;
}

@media (min-width: 1201px) {
  .sec05 .t-ttl {
    height: 225px;
  }
}

@media (max-width: 1200px) {
  .sec05 .t-ttl {
    margin-bottom: 20px;
  }
}

.sec05 .t-ttl .jp {
  position: absolute;
  left: 0;
}

@media (min-width: 1201px) {
  .sec05 .t-ttl .jp {
    bottom: 70px;
  }
}

@media (max-width: 1200px) {
  .sec05 .t-ttl .jp {
    bottom: 0;
    right: 0;
  }
}

.sec05 .t-ttl .en {
  color: rgba(219, 161, 143, 0.3);
}

@media (min-width: 1201px) {
  .sec05 .t-ttl .en {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.sec05 .box {
  position: relative;
}

@media (min-width: 1201px) {
  .sec05 .box {
    padding-bottom: 95px;
    margin-bottom: 60px;
  }
}

@media (max-width: 1200px) {
  .sec05 .box {
    padding-bottom: 20px;
    margin-bottom: 50px;
  }
}

.sec05 .box:before {
  width: 88.8888888889%;
  border-radius: 30px 0 0 30px;
  content: "";
  display: block;
  background-color: #efdcd6;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

@media (min-width: 1201px) {
  .sec05 .box:before {
    height: 421px;
  }
}

@media (max-width: 1200px) {
  .sec05 .box:before {
    height: 200px;
  }
}

.sec05 .box02 {
  position: relative;
}

@media (min-width: 1201px) {
  .sec05 .box02 {
    padding-bottom: 75px;
  }
}

@media (max-width: 1200px) {
  .sec05 .box02 {
    padding-bottom: 20px;
  }
}

.sec05 .box02:before {
  width: 88.8888888889%;
  border-radius: 0 30px 30px 0;
  content: "";
  display: block;
  background-color: #efdcd6;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

@media (min-width: 1201px) {
  .sec05 .box02:before {
    height: 411px;
  }
}

@media (max-width: 1200px) {
  .sec05 .box02:before {
    height: 200px;
  }
}

.sec05 .box-inr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 1201px) {
  .sec05 .box-inr {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (max-width: 1200px) {
  .sec05 .box-inr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.sec05 .box-inr .btn-wrap {
  width: 331px;
}

@media (min-width: 1201px) {
  .sec05 .box-inr .btn-wrap {
    margin: 59px 20px 0 auto;
  }
}

@media (max-width: 1200px) {
  .sec05 .box-inr .btn-wrap {
    margin: 30px auto 0;
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}

.sec05 .box-inr02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 1201px) {
  .sec05 .box-inr02 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (max-width: 1200px) {
  .sec05 .box-inr02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.sec05 .box-inr02 .btn-wrap {
  width: 314px;
}

@media (min-width: 1201px) {
  .sec05 .box-inr02 .btn-wrap {
    margin: 56px 20px 0 auto;
  }
}

@media (max-width: 1200px) {
  .sec05 .box-inr02 .btn-wrap {
    margin: 30px auto 0;
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}

@media (min-width: 1201px) {
  .sec05 .content {
    width: 42.8333333333%;
    padding: 57px 0 52px;
  }
}

@media (max-width: 1200px) {
  .sec05 .content {
    display: contents;
  }
}

@media (min-width: 1201px) {
  .sec05 .fig {
    width: 50.8333333333%;
  }
}

@media (max-width: 1200px) {
  .sec05 .fig {
    margin-bottom: 20px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

.sec05 .ttl {
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
}

@media (min-width: 1201px) {
  .sec05 .ttl {
    font-size: 30px;
    margin-bottom: 40px;
  }
}

@media (max-width: 1200px) {
  .sec05 .ttl {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

.sec05 .txt {
  line-height: 1.7647058824;
  font-family: "FOT-筑紫ゴシック Pr5N D", sans-serif;
  letter-spacing: 0.05em;
}

@media (min-width: 1201px) {
  .sec05 .txt {
    font-size: 17px;
  }
}

@media (max-width: 1200px) {
  .sec05 .txt {
    font-size: 15px;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}

.sec05 .img {
  width: 100%;
  border-radius: 30px;
}

.sec06 {
  background: url(../images/sec06_bg01.jpg) 50% 50%/cover no-repeat;
}

@media (min-width: 1001px) {
  .sec06 {
    width: 100%;
    height: auto;
    min-height: 531px;
    aspect-ratio: 1800/531;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 1000px) {
  .sec06 {
    padding: 50px 0;
  }
}

.sec06 .t-ttl {
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}

@media (min-width: 1001px) {
  .sec06 .t-ttl {
    font-size: 40px;
    margin-bottom: 48px;
  }
}

@media (max-width: 1000px) {
  .sec06 .t-ttl {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

.sec06 .txt {
  max-width: 90%;
  margin: 0 auto;
}

@media (min-width: 1001px) {
  .sec06 .txt {
    text-align: center;
  }
}

.sec06 .btn-wrap {
  width: 134px;
}

@media (min-width: 1001px) {
  .sec06 .btn-wrap {
    margin: 47px auto 0;
  }
}

@media (max-width: 1000px) {
  .sec06 .btn-wrap {
    margin: 30px auto 0;
  }
}

@media (min-width: 1001px) {
  .sec07 {
    padding: 130px 0 232px;
  }
}

@media (max-width: 1000px) {
  .sec07 {
    padding: 50px 0 150px;
  }
}

@media (min-width: 1001px) {
  .sec07-inr {
    position: relative;
  }
}

.sec07 .t-ttl {
  border-bottom: 1px solid #dfdfdf;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}

@media (min-width: 1001px) {
  .sec07 .t-ttl {
    font-size: 25px;
  }
}

@media (max-width: 1000px) {
  .sec07 .t-ttl {
    padding-bottom: 10px;
    font-size: 22px;
  }
}

.sec07 .list {
  display: -ms-grid;
  display: grid;
  gap: 21px;
}

@media (min-width: 1001px) {
  .sec07 .list {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1000px) {
  .sec07 .list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

.sec07 .list img {
  border-radius: 30px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 1001px) {
  .sec07 .list img {
    width: 240px;
    height: 240px;
  }
}

@media (max-width: 1000px) {
  .sec07 .list img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
}

.sec07 .btn-wrap {
  width: 232px;
}

@media (min-width: 1001px) {
  .sec07 .btn-wrap {
    position: absolute;
    top: 0;
    right: 20px;
  }
}

@media (max-width: 1000px) {
  .sec07 .btn-wrap {
    margin: 30px auto 0;
  }
}

.sec07 #sb_instagram #sbi_images {
  padding: 0;
}

.sec07 #sb_instagram img {
  border-radius: 30px;
}

/*------------
Post
--------------*/
.list-top-news02 .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}

@media (min-width: 801px) {
  .list-top-news02 .list-item {
    min-height: 66px;
  }
}

@media (max-width: 800px) {
  .list-top-news02 .list-item {
    padding: 10px 0;
  }
}

.list-top-news02 time {
  color: #888;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
}

@media (min-width: 801px) {
  .list-top-news02 time {
    font-size: 15px;
  }
}

@media (max-width: 800px) {
  .list-top-news02 time {
    font-size: 12px;
  }
}

.list-top-news02 .list-txt {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  letter-spacing: 0.05em;
}

@media (min-width: 801px) {
  .list-top-news02 .list-txt {
    font-size: 16px;
  }
}

@media (max-width: 800px) {
  .list-top-news02 .list-txt {
    font-size: 14px;
  }
}

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

/*ブログ*/
.list-top-blog01,
.list-top-blog02 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.list-top-blog01 .list-item a,
.list-top-blog02 .list-item a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 30px;
}

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

.list-top-blog01 .list-img,
.list-top-blog02 .list-img {
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

@media (min-width: 801px) {

  .list-top-blog01 .list-img,
  .list-top-blog02 .list-img {
    width: 147px;
  }
}

@media (max-width: 800px) {

  .list-top-blog01 .list-img,
  .list-top-blog02 .list-img {
    width: 147px;
  }
}

.list-top-blog01 .list-img img,
.list-top-blog02 .list-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 241/164;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.list-top-blog01 .list-desc,
.list-top-blog02 .list-desc {
  padding-top: 5px;
}

.list-top-blog01 .list-ttl,
.list-top-blog02 .list-ttl {
  width: 100%;
  display: inline-block;
  overflow: hidden;
  color: #333;
  font-weight: bold;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
}

@media (min-width: 801px) {

  .list-top-blog01 .list-ttl,
  .list-top-blog02 .list-ttl {
    font-size: 16px;
  }
}

@media (max-width: 800px) {

  .list-top-blog01 .list-ttl,
  .list-top-blog02 .list-ttl {
    font-size: 14px;
  }
}

.list-top-blog01 time,
.list-top-blog02 time {
  display: block;
  color: #888;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  line-height: 1;
}

@media (min-width: 801px) {

  .list-top-blog01 time,
  .list-top-blog02 time {
    font-size: 15px;
    margin-bottom: 5px;
  }
}

@media (max-width: 800px) {

  .list-top-blog01 time,
  .list-top-blog02 time {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

.list-top-blog01 .category,
.list-top-blog02 .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.list-top-blog01 .category span,
.list-top-blog02 .category span {
  padding: 0 10px;
  border-radius: 2px;
  color: #fff;
  font-family: "FOT-筑紫ゴシック Pr5N R", serif;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #e4798d;
}

@media (min-width: 801px) {

  .list-top-blog01 .category span,
  .list-top-blog02 .category span {
    height: 18px;
    font-size: 11px;
  }
}

@media (max-width: 800px) {

  .list-top-blog01 .category span,
  .list-top-blog02 .category span {
    height: 20px;
    font-size: 10px;
  }
}

/*------------
下層ページタイトル
--------------*/
.page-ttl {
  margin-top: 94px;
  width: 100%;
  background: #efdcd6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  padding: 50px 5%;
  height: 320px;
  min-height: 320px;
}

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

.page-ttl .title {
  font-weight: 600;
  font-size: 50px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.65;
}

@media (max-width: 800px) {
  .page-ttl .title {
    font-size: 25px;
  }
}

/*------------
下層ページ見出し
--------------*/
.u-h2,
.post-category-ttl,
.postdata h1 {
  font-size: 34px;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 600;
}

@media (max-width: 800px) {

  .u-h2,
  .post-category-ttl,
  .postdata h1 {
    font-size: 25px;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}

.u-h2::before,
.post-category-ttl::before,
.postdata h1::before {
  content: "";
  background: #dba18f;
  width: 40px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.u-h3,
.post-ttl,
.postdata h2 {
  font-size: 24px;
  margin-bottom: 30px;
  position: relative;
  padding-left: 35px;
  font-weight: 600;
}

@media (max-width: 800px) {

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

.u-h3::before,
.post-ttl::before,
.postdata h2::before {
  content: "";
  background: #dba18f;
  width: 20px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.u-h4,
.postdata h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #dba18f;
  font-weight: 600;
}

@media (max-width: 800px) {

  .u-h4,
  .postdata h3 {
    font-size: 18px;
  }
}

/*------------
パンクズリスト
--------------*/
.breadcrumb {
  position: relative;
  z-index: 1;
  padding: 10px 0;
  background: #fff;
}

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

/*------------
pタグ同士の余白
--------------*/
.u-contents {
  line-height: 1.7;
  background: #fff;
}

.u-contents p+p {
  margin-top: 1.5em;
}

.u-contents .sec03 {
  padding: 70px 0 78px;
}

.u-contents .sec03::before {
  height: 100%;
}

.u-contents .sec03::after {
  display: none;
}

.u-contents .sec03 .t-ttl {
  height: auto;
  padding-left: 0;
  margin-bottom: 0;
  position: absolute;
  top: -73px;
  right: 0;
}

.u-contents .sec03 .u-h3,
.u-contents .sec03 .post-ttl,
.u-contents .sec03 .postdata h2,
.postdata .u-contents .sec03 h2 {
  margin-left: 100px;
}

.u-contents .btn-more {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  min-height: 50px;
  padding: 10px 40px 10px 20px;
  line-height: 1.4;
}

.u-contents .btn-more.tel {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  min-height: 58px;
}

@media (max-width: 800px) {

  .u-contents p+p {
    margin-top: 1em;
  }

  .u-contents .sec03 {
    padding: 50px 0;
  }

  .u-contents .sec03 .t-ttl {
    top: -35px;
  }

  .u-contents .sec03 .u-h3,
  .u-contents .sec03 .post-ttl,
  .u-contents .sec03 .postdata h2,
  .postdata .u-contents .sec03 h2 {
    margin-left: 0;
  }

  .u-contents .btn-more {
    width: calc(100% - 20px);
  }

  .u-contents .btn-more.tel {
    width: calc(100% - 20px);
  }
}

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

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

.tall.bg01 {
  background: #d9cd80;
}

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

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

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

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

.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 #dba18f;
  font-size: 18px;
  padding: 0 0 5px;
  margin: 0 0 15px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

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

/*------------
下層パーツ
--------------*/
/*------------------------------------
見出し
-------------------------------------*/
.ttl-bg {
  font-weight: 600;
  background: #f7f1ea;
  font-size: 22px;
  padding: 5px 15px;
  margin-bottom: 25px;
  border-radius: 10px;
}

@media (max-width: 800px) {
  .ttl-bg {
    font-size: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
  }
}

.txt-underline {
  font-size: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: underline;
  /* 下線 */
  text-decoration-thickness: 0.5em;
  /* 線の太さ */
  text-decoration-color: rgba(217, 205, 128, 0.4);
  /* 線の色 */
  text-underline-offset: -0.2em;
  /* 線の位置。テキストに重なるようにやや上部にする */
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}

/*------------------------------------
リスト
-------------------------------------*/
.list-disc {
  display: -ms-grid;
  display: grid;
  grid-gap: 5px;
}

.list-disc li {
  line-height: 1.5;
  position: relative;
  padding-left: 15px;
}

.list-disc li:before {
  content: "・";
  color: #dba18f;
  display: block;
  position: absolute;
  left: 0;
}

.list-num {
  counter-reset: number;
  display: -ms-grid;
  display: grid;
  grid-gap: 5px;
}

.list-num>li {
  padding-left: 30px;
  position: relative;
}

.list-num>li:before {
  background: #dba18f;
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-size: 11px;
  position: absolute;
  top: 3px;
  left: 0;
  line-height: 17px;
  text-align: center;
  width: 20px;
  height: 20px;
  font-family: "Noto Serif JP", serif;
  padding: 1px 0 0 2px;
}

.dl-style01 {
  display: -ms-grid;
  display: grid;
  grid-gap: 15px;
}

.dl-style01 .item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 25% 0 75%;
  grid-template-columns: 25% 75%;
  grid-gap: 10px 0;
}

@media (max-width: 800px) {
  .dl-style01 .item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}

.dl-style01 dt {
  background: #dba18f;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  padding: 20px;
  border-radius: 10px 0 0 10px;
}

@media (max-width: 800px) {
  .dl-style01 dt {
    padding: 15px 20px;
    border-radius: 10px 10px 0 0;
  }
}

.dl-style01 dd {
  background: #f7f1ea;
  padding: 20px;
  border-radius: 0 10px 10px 0;
}

@media (max-width: 800px) {
  .dl-style01 dd {
    border-radius: 0 0 10px 10px;
  }
}

.dl-style03 {
  display: -ms-grid;
  display: grid;
  grid-gap: 10px;
}

.dl-style03 .item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100px 15px 1fr;
  grid-template-columns: 100px 1fr;
  gap: 10px 15px;
}

.dl-style03 dt {
  background: #dba18f;
  border-radius: 5px;
  color: #fff;
  font-size: 13px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-family: 500;
}

/*------------------------------------
リスト：カードデザイン
-------------------------------------*/
.card-style01>li {
  background: #f7f1ea;
}

.card-style02>li {
  border: 1px solid #efdcd6;
}

.card-style01,
.card-style02 {
  display: -ms-grid;
  display: grid;
}

.card-style01>li,
.card-style02>li {
  padding: 25px;
  border-radius: 30px;
}

.card-style01 .card-img,
.card-style02 .card-img {
  margin-bottom: 25px;
}

.card-style01 .card-img img,
.card-style02 .card-img img {
  border-radius: 30px;
}

.card-style01 .card-ttl,
.card-style02 .card-ttl {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 15px;
}

.card-style01.col2,
.card-style02.col2 {
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.card-style01.col2>li,
.card-style02.col2>li {
  padding: 30px;
  border-radius: 30px;
}

.card-style01.col2 .card-img img,
.card-style02.col2 .card-img img {
  border-radius: 30px;
}

.card-style01.col3,
.card-style02.col3 {
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card-style01.col3>li,
.card-style02.col3>li {
  border-radius: 10px;
}

.card-style01.col3 .card-img img,
.card-style02.col3 .card-img img {
  border-radius: 10px;
}

.card-style01.col3 .table-style03 th,
.card-style01.col3 .table-style03 td,
.card-style02.col3 .table-style03 th,
.card-style02.col3 .table-style03 td {
  padding: 10px 15px;
}

.card-style01.col3 .table-style03 th,
.card-style02.col3 .table-style03 th {
  background: #fff;
  font-size: 15px;
}

.card-style01.col4,
.card-style02.col4 {
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card-style01.col4>li,
.card-style02.col4>li {
  padding: 20px;
}

@media (max-width: 800px) {

  .card-style01>li,
  .card-style02>li {
    border-radius: 10px;
  }

  .card-style01 .card-img img,
  .card-style02 .card-img img {
    border-radius: 10px;
  }

  .card-style01.col2,
  .card-style02.col2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .card-style01.col2>li,
  .card-style02.col2>li {
    padding: 25px;
    border-radius: 10px;
  }

  .card-style01.col2 .card-img img,
  .card-style02.col2 .card-img img {
    border-radius: 10px;
  }

  .card-style01.col3,
  .card-style02.col3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .card-style01.col4,
  .card-style02.col4 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .card-style01.col4>li,
  .card-style02.col4>li {
    padding: 25px;
  }
}

.card-style03 {
  display: -ms-grid;
  display: grid;
}

.card-style03.no-num>li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.card-style03>li {
  background: #f7f1ea;
  border-radius: 30px;
  padding: 25px;
  text-align: center;
}

.card-style03 .card-num {
  color: #dba18f;
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.card-style03 .card-num span {
  font-size: 18px;
  margin-left: 5px;
}

.card-style03 .card-ttl {
  font-size: 20px;
  line-height: 1.5;
}

.card-style03.col2 {
  -ms-grid-columns: 1fr 25px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.card-style03.col2>li {
  border-radius: 30px;
}

.card-style03.col3 {
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card-style03.col3>li {
  border-radius: 10px;
}

.card-style03.col4 {
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card-style03.col4>li {
  padding: 20px;
  border-radius: 10px;
}

@media (max-width: 800px) {
  .card-style03>li {
    border-radius: 15px;
    padding: 15px;
  }

  .card-style03 .card-num {
    font-size: 10px;
  }

  .card-style03 .card-num span {
    font-size: 16px;
  }

  .card-style03 .card-ttl {
    font-size: 15px;
  }

  .card-style03.col2 {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .card-style03.col3 {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .card-style03.col4 {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .card-style03.col4>li {
    padding: 15px;
  }
}

.card-style04 {
  display: -ms-grid;
  display: grid;
}

.card-style04>li {
  border: 3px solid #dba18f;
  background-color: #fff;
  padding: 25px;
  border-radius: 30px;
  overflow: hidden;
}

.card-style04 .card-ttl {
  background-color: #dba18f;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  margin: -25px -25px 25px;
}

.card-style04 .card-img {
  margin-bottom: 30px;
}

.card-style04 .card-img img {
  border-radius: 30px;
}

.card-style04.col2 {
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.card-style04.col2>li {
  border-radius: 30px;
}

.card-style04.col2 .card-img img {
  border-radius: 30px;
}

.card-style04.col3 {
  -ms-grid-columns: 1fr 25px 1fr 25px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card-style04.col3>li {
  border-radius: 10px;
}

.card-style04.col3 .card-img img {
  border-radius: 10px;
}

.card-style04.col3 .table-style03 th,
.card-style04.col3 .table-style03 td {
  padding: 10px 15px;
}

.card-style04.col4 {
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card-style04.col4>li {
  padding: 20px;
  border-radius: 10px;
}

.card-style04.col4 .card-ttl {
  margin: -20px -20px 20px;
}

.card-style04.col4 .card-img img {
  border-radius: 10px;
}

@media (max-width: 800px) {
  .card-style04.col2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-style04.col3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-style04.col3>li {
    border-radius: 30px;
  }

  .card-style04.col4 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-style04.col4>li {
    border-radius: 30px;
    padding: 25px;
  }

  .card-style04.col4 .card-ttl {
    margin: -25px -25px 25px;
  }
}

/*------------------------------------
テーブル
-------------------------------------*/
.table-style01 th,
.table-style01 td {
  padding: 10px;
  border: 1px solid #dfdfdf;
  vertical-align: middle;
}

.table-style01 th {
  background: #dba18f;
  color: #fff;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}

.table-style01 th.bg01 {
  background: #f7f1ea;
  color: #444;
}

@media (max-width: 800px) {
  .table-style01.sp-block colgroup {
    display: none;
  }

  .table-style01.sp-block th,
  .table-style01.sp-block td {
    display: block;
  }

  .table-style01.sp-block th {
    border-bottom: none;
  }
}

.table-style03 th,
.table-style03 td {
  padding: 15px 30px;
  border: 1px solid #dfdfdf;
  border-width: 1px 0;
  vertical-align: middle;
}

.table-style03 th {
  background: #f7f1ea;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  text-align: left;
}

.table-style03.tac th {
  text-align: center;
}

@media (max-width: 800px) {
  .table-style03.sp-block {
    border-bottom: 1px solid #efdcd6;
  }

  .table-style03.sp-block colgroup {
    display: none;
  }

  .table-style03.sp-block th,
  .table-style03.sp-block td {
    display: block;
  }

  .table-style03.sp-block td {
    border: none;
  }
}

/*------------------------------------
リンク・ボタン
-------------------------------------*/
.list-anchor-link01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list-anchor-link01 li {
  position: relative;
}

.list-anchor-link01 li::after {
  content: "";
  display: inline-block;
  background: #dfdfdf;
  width: 2px;
  height: 15px;
  margin: 0 20px;
  vertical-align: -1px;
}

.list-anchor-link01 a {
  display: inline-block;
  position: relative;
  font-weight: bold;
  padding-right: 25px;
}

@media (max-width: 800px) {
  .list-anchor-link01 a {
    font-size: 15px;
  }
}

.list-anchor-link01 a::before {
  content: "";
  background: url(../images/share/icon_anchor_link.svg) no-repeat 0 0/contain;
  width: 22px;
  height: 22px;
  position: absolute;
  right: -3px;
  top: 3px;
  fill: #dba18f;
}

.list-anchor-link01 a:hover {
  text-decoration: underline;
}

/*------------------------------------
ボックス
-------------------------------------*/
.box-style01 {
  padding-top: 35px;
}

.box-style01.no-num {
  padding-top: 0;
}

.box-style01.no-num .box-inr {
  padding: 50px;
}

.box-style01 .box-inr {
  background: #f7f1ea;
  border-radius: 30px;
  padding: 70px 50px 50px;
  position: relative;
}

.box-style01 .box-ttl {
  font-size: 24px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dfdfdf;
  font-weight: 600;
}

.box-style01 .box-ttl-en {
  position: absolute;
  top: -42px;
  left: 30px;
  font-size: 90px;
  line-height: 1;
  color: rgba(219, 161, 143, 0.3);
  font-family: "Allura", cursive;
  font-weight: 400;
}

.box-style01 .box-catch {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

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

  .box-style01.no-num .box-inr {
    padding: 25px;
  }

  .box-style01 .box-inr {
    padding: 30px 20px 20px;
    border-radius: 10px;
  }

  .box-style01 .box-ttl {
    font-size: 20px;
  }

  .box-style01 .box-ttl-en {
    top: -20px;
    left: 15px;
    font-size: 45px;
  }

  .box-style01 .box-catch {
    font-size: 18px;
  }
}

.box-style02 {
  background: #f5e5df;
  border-radius: 30px;
  padding: 5%;
  position: relative;
}

.box-style02::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 172px 278px 0 0;
  border-color: #efdcd6 transparent transparent transparent;
  border-radius: 30px 0 0 0;
  z-index: 0;
}

.box-style02 .box-ttl-en {
  position: absolute;
  color: #dba18f;
  font-size: 30px;
  top: 18px;
  left: 20px;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}

.box-style02 .box-ttl {
  font-size: 26px;
  margin-bottom: 25px;
  font-weight: 600;
}

.box-style02 .l-imgL {
  position: relative;
  z-index: 1;
}

.box-style02 .l-imgL .l-img {
  margin-top: 35px;
}

@media (max-width: 800px) {
  .box-style02 {
    padding: 20px;
    border-radius: 10px;
  }

  .box-style02::before {
    border-width: 95px 145px 0 0;
    border-radius: 10px 0 0 0;
  }

  .box-style02 .box-ttl-en {
    font-size: 18px;
    top: 12px;
    left: 8px;
  }

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

.box-style03 {
  background: #f7f1ea;
  padding: 40px;
  border-radius: 30px;
}

.box-style03 .box-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.box-style03 .box-ttl img {
  width: 25px;
}

@media (max-width: 800px) {
  .box-style03 {
    padding: 30px;
    border-radius: 10px;
  }
}

/*------------------------------------
レイアウト
-------------------------------------*/
.l-imgR,
.l-imgL {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 5%;
}

.l-imgR .l-img,
.l-imgL .l-img {
  width: 40%;
}

.l-imgR .l-img.w30,
.l-imgL .l-img.w30 {
  width: 33%;
}

.l-imgR .l-img img,
.l-imgL .l-img img {
  border-radius: 30px;
}

.l-imgR .l-desc,
.l-imgL .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.l-imgR {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media (max-width: 800px) {

  .l-imgR,
  .l-imgL {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }

  .l-imgR .l-img,
  .l-imgL .l-img {
    text-align: center;
    width: 100%;
  }

  .l-imgR .l-img.w30,
  .l-imgL .l-img.w30 {
    width: 100%;
  }

  .l-imgR .l-img img,
  .l-imgL .l-img img {
    border-radius: 10px;
  }

  .l-imgR .l-desc,
  .l-imgL .l-desc {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
  }
}

.flow-style01 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
  padding-top: 15px;
}

.flow-style01>li {
  background: #f7f1ea;
  padding: 25px;
  position: relative;
  border-radius: 10px;
}

.flow-style01>li:not(:last-child)::after {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 12px;
  border-color: transparent transparent transparent #dba18f;
  position: absolute;
  top: 50%;
  right: -21px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flow-style01 .flow-num {
  font-size: 25px;
  line-height: 1;
  position: absolute;
  top: -15px;
  left: 25px;
  color: #dba18f;
  font-family: "Noto Serif JP", serif;
}

.flow-style01 .flow-img {
  margin-bottom: 15px;
}

.flow-style01 .flow-img img {
  border-radius: 10px;
}

.flow-style01 .flow-ttl {
  font-size: 17px;
  margin-bottom: 15px;
  font-weight: 600;
}

@media (max-width: 800px) {
  .flow-style01 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .flow-style01>li:not(:last-child)::after {
    top: auto;
    bottom: -28px;
    right: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
    transform: translateX(-50%) rotate(90deg);
  }
}

.flow-style05>li {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80px 50px 1fr;
  grid-template-columns: 80px 1fr;
  grid-gap: 50px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  padding-bottom: 50px;
}

.flow-style05>li:not(:last-child)::before {
  content: "";
  border-left: 2px dotted #dba18f;
  position: absolute;
  top: 115px;
  bottom: 15px;
  left: 40px;
}

.flow-style05 .flow-num {
  color: #dba18f;
  background-color: #dba18f;
  border-radius: 100px;
  text-align: center;
  display: -ms-grid;
  display: grid;
  place-items: center;
  line-height: 1;
  width: 80px;
  height: 80px;
  margin-top: 20px;
  position: relative;
}

.flow-style05 .flow-num::before {
  content: attr(data-en);
  font-size: 13px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0;
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.flow-style05 .flow-ttl {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

@media (max-width: 800px) {
  .flow-style05>li {
    grid-gap: 20px;
    padding-bottom: 30px;
  }

  .flow-style05 .flow-ttl {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.faq-style04 .item+.item {
  border-top: 1px dashed #dfdfdf;
  margin-top: 30px;
  padding-top: 30px;
}

.faq-style04 dt {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 20px;
  padding-left: 60px;
  margin-bottom: 15px;
  position: relative;
}

.faq-style04 dd {
  position: relative;
  padding-left: 60px;
}

.faq-style04 dd .faq-icon {
  background: #2c8e4d;
}

.faq-style04 .faq-icon {
  color: #fff;
  display: -ms-grid;
  display: grid;
  place-items: center;
  background-color: #dba18f;
  border-radius: 10px;
  width: 35px;
  height: 35px;
  font-size: 15px;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 800px) {
  .faq-style04 .item+.item {
    margin-top: 15px;
    padding-top: 15px;
  }

  .faq-style04 dt {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
}

.staff-layout01 .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 8%;
}

.staff-layout01 .wrapper.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.staff-layout01 .l-img {
  width: 32%;
}

.staff-layout01 .l-img figcaption {
  color: #dba18f;
  font-weight: bold;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  line-height: 1;
  font-family: "Noto Serif JP", serif;
}

.staff-layout01 .l-img img {
  border-radius: 30px;
}

.staff-layout01 .l-img .job {
  display: block;
  font-size: 14px;
}

.staff-layout01 .l-img .name {
  font-size: 20px;
}

.staff-layout01 .l-img .kana {
  font-size: 11px;
}

.staff-layout01 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.staff-layout01 .l-ttl {
  color: #dba18f;
  border-bottom: 2px solid #dba18f;
  font-weight: bold;
  font-size: 16px;
  padding-bottom: 5px;
  margin-bottom: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.staff-layout01 .l-message {
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 30px;
}

.staff-layout01 .card-profile {
  margin-top: 50px;
}

@media (max-width: 800px) {
  .staff-layout01 .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }

  .staff-layout01 .wrapper.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .staff-layout01 .l-img {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }

  .staff-layout01 .l-img figcaption {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .staff-layout01 .l-img img {
    border-radius: 10px;
  }

  .staff-layout01 .l-ttl {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .staff-layout01 .l-message {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .staff-layout01 .card-profile {
    margin-top: 30px;
  }
}

/*------------------------------------
お電話でのお問い合わせ
-------------------------------------*/
.tel-layout02 {
  background: #f7f1ea;
  max-width: 800px;
  padding: 5%;
  margin: 0 auto;
  border-radius: 30px;
}

.tel-layout02 .l-ttl {
  border-bottom: 1px solid #dfdfdf;
  margin-bottom: 30px;
  font-size: 18px;
  text-align: center;
  padding-bottom: 10px;
  margin: 0 auto 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
}

.tel-layout02 .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tel-layout02 .l-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 35px;
  line-height: 1;
}

.tel-layout02 .l-tel img {
  width: 20px;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.tel-layout02 .l-time {
  display: -ms-grid;
  display: grid;
  grid-gap: 10px;
  line-height: 1.5;
}

.tel-layout02 .l-time .item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 70px 10px 1fr;
  grid-template-columns: 70px 1fr;
  grid-gap: 10px;
}

.tel-layout02 .l-time dt {
  border: 1px solid #dba18f;
  color: #dba18f;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 3px;
}

@media (max-width: 800px) {
  .tel-layout02 {
    border-radius: 10px;
  }

  .tel-layout02 .l-ttl {
    font-size: 15px;
    margin: 0 auto 25px;
  }

  .tel-layout02 .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .tel-layout02 .l-tel {
    font-size: 30px;
  }
}

/*------------------------------------
スライドショー
-------------------------------------*/
.gallery-slider01 {
  overflow: hidden;
}

.gallery-slider01 .splide {
  margin: 0 auto;
}

.gallery-slider01 .splide__track {
  overflow: visible;
}

.gallery-slider01 .splide__slide {
  opacity: 0.2;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.gallery-slider01 .splide__slide.is-active {
  opacity: 1;
}

.gallery-slider01 .splide__arrow--prev {
  top: 190px;
  left: calc((100% - 872px) / 2);
}

.gallery-slider01 .splide__arrow--next {
  top: 190px;
  right: calc((100% - 872px) / 2);
}

.gallery-slider01 .item-desc {
  margin-top: 25px;
}

.gallery-slider01 .item-ttl {
  font-size: 1.1875rem;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 5px;
}

.gallery-slider01 .item-img img {
  border-radius: 30px;
}

@media (max-width: 800px) {
  .gallery-slider01 .item-desc {
    margin-top: 15px;
  }

  .gallery-slider01 .item-ttl {
    font-size: 1.125rem;
    line-height: 1.4;
  }

  .gallery-slider01 .item-img img {
    border-radius: 10px;
  }
}

/*------------------------------------
以下オリジナルパーツ、案件に不要な箇所は削除
-------------------------------------*/
.list-col2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5% 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5%;
}

@media (max-width: 800px) {
  .list-col2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
}

/* ===== 追加パーツ ===== */
.u-parts01 {
  width: 100%;
  position: relative;
}

.u-parts01-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 90%;
  height: 77%;
  background-color: #f5e5df;
  border-radius: 30px 0 0 30px;
  z-index: 0;
}

@media (max-width: 800px) {
  .u-parts01-bg {
    width: 100%;
    border-radius: 0;
  }
}

.u-parts01-inner {
  max-width: 1200px;
  width: 75%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 6.5%;
  position: relative;
  z-index: 1;
}

@media (max-width: 800px) {
  .u-parts01-inner {
    width: 90%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.u-parts01-desc {
  width: 42.67%;
  min-width: 0;
  margin-top: 55px;
  padding-bottom: 60px;
}

@media (max-width: 800px) {
  .u-parts01-desc {
    width: 100%;
    margin-top: 20px;
    padding-bottom: 50px;
  }
}

.u-parts01-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 55px;
}

@media (max-width: 800px) {
  .u-parts01-title {
    font-size: 25px;
    margin-bottom: 30px;
  }
}

.u-parts01_image {
  width: 50.83%;
}

.u-parts01_image img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 800px) {
  .u-parts01_image {
    width: 100%;
    margin: 0 auto;
  }

  .u-parts01_image img {
    border-radius: 10px;
  }
}

.u-parts02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 800px) {
  .u-parts02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.u-parts02_img {
  width: 40%;
  margin-right: 5%;
}

@media (max-width: 800px) {
  .u-parts02_img {
    width: 100%;
    margin: 0 auto 20px;
  }
}

.u-parts02_list {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 800px) {
  .u-parts02_list {
    gap: 15px;
  }
}

.u-parts02_list-btn {
  background: #dba18f;
  border-radius: 5px;
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
  padding: 18px 40px 24px 20px;
  max-width: 320px;
  height: 100px;
  min-height: 100px;
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.u-parts02_list-btn::before {
  position: absolute;
  content: "";
  background: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  right: 10px;
  bottom: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.u-parts02_list-btn::after {
  position: absolute;
  content: "";
  background: url(../images/under/u-parts02_btn.svg) center/contain no-repeat;
  width: 9px;
  height: 4px;
  right: 15px;
  bottom: 18px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.u-parts02_list-btn:hover {
  opacity: 0.8;
}

@media (max-width: 800px) {
  .u-parts02_list-btn {
    font-size: 16px;
    line-height: 1.6;
    padding: 10px 10px 30px 10px;
    max-width: 100%;
    height: 100%;
    min-height: none;
  }
}

.u-parts03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 800px) {
  .u-parts03 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.u-parts03_img {
  width: 41.52%;
  margin-right: 9%;
}

@media (max-width: 800px) {
  .u-parts03_img {
    width: 100%;
    margin: 0 auto 20px;
  }
}

.u-parts03_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

@media (max-width: 800px) {
  .u-parts03_list {
    gap: 15px;
  }
}

.u-parts03_list-btn {
  background: #d9cd80;
  border-radius: 5px;
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
  padding: 20px 50px 30px 20px;
  width: 570px;
  height: 76px;
  min-height: 76px;
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.u-parts03_list-btn::before {
  position: absolute;
  content: "";
  background: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  right: 10px;
  bottom: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.u-parts03_list-btn::after {
  position: absolute;
  content: "";
  background: url(../images/under/u-parts03_btn.svg) center/contain no-repeat;
  width: 9px;
  height: 4px;
  right: 15px;
  bottom: 18px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.u-parts03_list-btn:hover {
  opacity: 0.8;
}

@media (max-width: 800px) {
  .u-parts03_list-btn {
    font-size: 16px;
    line-height: 1.6;
    padding: 10px 10px 10px 10px;
    width: 100%;
    height: auto;
    min-height: none;
  }
}

.table-scroll-txt {
  display: none;
}

@media (max-width: 800px) {
  .table-scroll-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
  }

  .table-scroll-txt::before {
    content: "";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat center/contain;
    width: 30px;
    height: 24.5px;
    margin-right: 10px;
  }

  .table-scroll {
    overflow-x: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }

  .table-scroll::-webkit-scrollbar {
    height: 5px;
  }

  .table-scroll::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #fff;
  }

  .table-scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #dba18f;
  }

  .table-scroll table {
    margin-bottom: 10px !important;
    width: 200%;
  }

  .table-scroll .table-style01 {
    width: 280%;
  }
}

.u-img-min {
  max-width: 300px;
}

@media (max-width: 800px) {
  .u-img-min {
    max-width: none;
  }
}

/*------------
Footer
--------------*/
.footer {
  background-color: #efdcd6;
  position: relative;
}

@media (min-width: 801px) {
  .footer {
    width: 100%;
  }
}

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

.footer .cta {
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #FFF;
}

@media (min-width: 801px) {
  .footer .cta {
    width: 800px;
    max-width: 96%;
    padding: 40px 50px 50px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto;
    position: absolute;
    top: -105px;
    left: 0;
    right: 0;
  }
}

@media (max-width: 800px) {
  .footer .cta {
    width: 90%;
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto 30px;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
}

@media (min-width: 801px) {
  .footer .cta .content {
    width: 47.5714285714%;
  }
}

.footer .cta .btn {
  min-width: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 26px;
}

@media (min-width: 801px) {
  .footer .cta .btn {
    width: 37.1428571429%;
  }
}

.footer .cta-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 801px) {
  .footer .cta-ttl {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    gap: 25px;
    margin-bottom: 38px;
  }
}

@media (max-width: 800px) {
  .footer .cta-ttl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0px;
    margin-bottom: 20px;
  }
}

.footer .cta-ttl .jp {
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@media (min-width: 801px) {
  .footer .cta-ttl .jp {
    font-size: 30px;
  }
}

@media (max-width: 800px) {
  .footer .cta-ttl .jp {
    font-size: 22px;
  }
}

.footer .cta-ttl .en {
  color: #dba18f;
  font-weight: bold;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.05em;
}

@media (min-width: 801px) {
  .footer .cta-ttl .en {
    font-size: 30px;
  }
}

@media (max-width: 800px) {
  .footer .cta-ttl .en {
    font-size: 20px;
  }
}

.footer .cta .txt {
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
}

@media (min-width: 801px) {
  .footer .cta .txt {
    font-size: 18px;
  }
}

@media (max-width: 800px) {
  .footer .cta .txt {
    font-size: 15px;
    text-align: center;
    margin-bottom: 20px;
  }
}

.footer .cta .ttl01 {
  height: 29px;
  border-radius: 5px;
  color: #FFF;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 11px;
  background-color: #dba18f;
}

@media (min-width: 901px) {
  .footer .cta .ttl01 {
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .footer .cta .ttl01 {
    font-size: 15px;
  }
}

.footer .cta .ttl02 {
  height: 29px;
  border-radius: 5px;
  color: #FFF;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 11px;
  background-color: #d9cd80;
}

@media (min-width: 1201px) {
  .footer .cta .ttl02 {
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  .footer .cta .ttl02 {
    font-size: 15px;
  }
}

.footer .cta .tel {
  line-height: 1;
  font-size: 28px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.footer .cta .tel:before {
  width: 18px;
  height: 23px;
  content: "";
  display: block;
  background: url(../images/share/icon_phone_b.svg) 0 0/100% no-repeat;
}

@media (min-width: 801px) {
  .footer .f-inr {
    padding: 226px 0 78px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (max-width: 800px) {
  .footer .f-inr {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
}

@media (min-width: 801px) {
  .footer .f-info {
    width: 38.0859375%;
  }
}

@media (max-width: 800px) {
  .footer .f-info {
    margin-bottom: 30px;
  }
}

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

@media (min-width: 801px) {
  .footer .f-logo {
    max-width: 336px;
    margin-bottom: 27px;
  }
}

@media (max-width: 800px) {
  .footer .f-logo {
    max-width: 280px;
    margin-bottom: 20px;
  }
}

.footer .f-address {
  line-height: 1.7647058824;
  font-family: "FOT-筑紫ゴシック Pr5N D", sans-serif;
  letter-spacing: 0.05em;
}

@media (min-width: 801px) {
  .footer .f-address {
    font-size: 17px;
  }
}

@media (max-width: 800px) {
  .footer .f-address {
    font-size: 15px;
  }
}

@media (min-width: 801px) {
  .footer .f-navi {
    width: 52.1484375%;
  }
}

.footer .f-navi-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

@media (min-width: 801px) {
  .footer .f-navi-layout {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (max-width: 800px) {
  .footer .f-navi-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.footer .f-navi-ttl {
  padding-bottom: 9px;
  border-bottom: 1px solid #DEC6BF;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

@media (min-width: 801px) {
  .footer .f-navi-ttl {
    font-size: 17px;
  }
}

@media (max-width: 800px) {
  .footer .f-navi-ttl {
    font-size: 15px;
  }
}

@media (max-width: 800px) {
  .footer .f-navi-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}

.footer .f-navi-item {
  font-family: "FOT-筑紫ゴシック Pr5N D", sans-serif;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

@media (min-width: 801px) {
  .footer .f-navi-item {
    font-size: 17px;
  }
}

@media (max-width: 800px) {
  .footer .f-navi-item {
    font-size: 15px;
  }
}

.footer .f-navi-item:before {
  width: 8px;
  height: 1px;
  content: "";
  display: block;
  background-color: #2c8e4d;
}

.footer .f-footer {
  background-color: #dba18f;
}

.footer .copyright {
  height: 30px;
  color: #FFF;
  font-size: 12px;
  font-family: "FOT-筑紫ゴシック Pr5N D", sans-serif;
  letter-spacing: 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 801px) {
  .footer .pagetop {
    width: 50px;
    height: 50px;
    background: url(../images/share/pagetop.png) 0 0/100% no-repeat;
    position: absolute;
    right: 30px;
    bottom: 60px;
    z-index: 2;
  }
}

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

.footer .pagetop:hover {
  opacity: 0.8;
}

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

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

.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 {
  margin: 45px auto 0;
}

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

.post-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.post-layout .post-img {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  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 {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

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

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

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

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

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

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

.postdata .screen-reader-text {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.postdata .screen-reader-text:focus {
  background-color: #eee;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.postdata iframe {
  max-width: 100%;
}

.postdata p,
.postdata ul,
.postdata ol {
  margin-bottom: 15px;
}

.postdata a:not(.wp-block-button__link) {
  text-decoration: underline;
}

.postdata a:focus-visible {
  text-decoration: none;
}

.postdata strong {
  font-weight: bold;
}

.postdata em {
  font-style: italic;
}

.postdata ul li {
  list-style: inside disc;
}

.postdata ul li>ul {
  margin: 0 0 0 15px;
}

.postdata ol li {
  list-style: inside decimal;
}

.postdata ol li>ol {
  margin: 0 0 0 15px;
}

.postdata sub {
  font-size: 11px;
  position: relative;
  bottom: -0.1em;
}

.postdata sup {
  font-size: 11px;
  position: relative;
  top: -0.1em;
}

.postdata .screen-reader-text {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.postdata .screen-reader-text:focus {
  background-color: #eee;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.postdata iframe {
  max-width: 100%;
}

.postdata .wp-block-button__link {
  background-color: #2c8e4d;
  border: 1px solid #2c8e4d;
  border-radius: 2px;
  color: #fff;
  font-size: 15px;
  padding: 5px 35px;
  min-width: 200px;
  position: relative;
  text-decoration: none;
  -webkit-transition: background-color 0.3s;
  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;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.postdata .wp-block-button__link:hover {
  opacity: 1;
  background-color: #fff;
  color: #2c8e4d;
}

.post-data {
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.post-data time {
  color: #AAA;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  line-height: 1;
  font-size: 17px;
}

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

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

.post-category01 {
  line-height: 1;
  padding: 1px 10px 4px;
  display: inline-block;
  background: #E4798D;
  color: #fff;
  border-radius: 2px;
  font-family: "FOT-筑紫ゴシック Pr5N R", serif;
}

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

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

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

.select-area .select-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  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 #2c8e4d;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.select-area .select-category {
  -webkit-appearance: none;
  outline: none;
  text-indent: 0.01px;
  text-overflow: "";
  border-radius: 0;
  background: #efdcd6;
  font-family: "FOT-筑紫ゴシック Pr5N R", serif;
  color: #2c8e4d;
  font-size: 16px;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #d3d3d3;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 18px;
}

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

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

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

.post-number .current::after {
  content: "";
  border-bottom: 2px solid #2c8e4d;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
}

/*詳細用ページャー*/
.post-number-single {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #DFDFDF;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

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

.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 {
    margin: 30px auto 0;
  }

  .post-layout {
    display: block;
  }

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

  .post-layout .post-desc {
    width: 100%;
  }

  /*詳細ページ*/
  .post-single-img {
    margin-bottom: 30px;
  }

  .postdata h4 {
    font-size: 17px;
  }

  .postdata h5 {
    font-size: 16px;
  }

  .postdata h6 {
    font-size: 15px;
  }

  .post-data {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 10px;
  }

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

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

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

.before-after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.before-after:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent #E4798D;
}

.before-after .l-item {
  width: 45%;
}

.before-after .l-img {
  position: relative;
  margin-bottom: 10px;
  background-color: #d9cd80;
}

.before-after .l-img img {
  width: 100%;
  height: 300px;
  -o-object-fit: contain;
  object-fit: contain;
}

.before-after .l-txt {
  line-height: 1;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 18px;
  color: #2c8e4d;
}

@media (max-width: 800px) {
  .before-after {
    display: block;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
  }

  .before-after:after {
    border-width: 16px 0 16px 16px;
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .before-after .l-item {
    width: 100%;
  }

  .before-after .l-item+.l-item {
    margin-top: 40px;
  }

  .before-after .l-img {
    position: relative;
    margin-bottom: 10px;
    background-color: #d9cd80;
  }

  .before-after .l-img img {
    width: 100%;
    height: 200px;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5%;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.column2-cont {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: auto;
}

.column2-navi {
  width: 240px;
  min-width: 240px;
}

.column2-navi-inr {
  position: sticky;
  top: 150px;
}

.side-navi {
  border: 1px solid #dba18f;
}

.side-navi .ttl {
  font-size: 18px;
  font-family: "FOT-筑紫ゴシック Pr5N R", serif;
  background: #dba18f;
  color: #fff;
  text-align: center;
  line-height: 1.7;
  padding: 15px 20px;
  border-bottom: 1px solid #dba18f;
}

.side-navi ul {
  font-size: 15px;
  padding: 20px;
}

.side-navi ul li {
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.side-navi ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 15px;
  height: 15px;
  background: url(../images/share/icon_arrow_post_right.svg) center/contain no-repeat;
}

.side-navi ul li+li {
  margin-top: 7px;
}

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

@media (max-width: 800px) {
  .column2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
  }

  .column2-cont {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .column2-navi {
    width: 100%;
    min-width: 100%;
    margin-right: 0;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .column2-navi-inr {
    position: static;
  }
}

/*------------
sidebar-layout
--------------*/
.sidebar-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  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 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 50px 5vw;
    width: 100%;
  }

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

  .sidebar-layout.sp-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    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 {
  width: 100%;
  height: 50px;
  padding-left: 20px;
  border: 1px solid #2c8e4d;
  border-radius: 5px;
  font-size: 17px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-more:before {
  width: 40px;
  height: 40px;
  content: "";
  display: block;
  background: url(../images/share/arrow.png) 0 0/100% no-repeat;
  position: absolute;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

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

.btn-more.tel {
  width: 240px;
  height: 58px;
  font-size: 23px;
  font-weight: 500;
}

.btn-more.tel img {
  width: 15px;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: 5px;
}

.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.btn-wrap.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 0;
}

@media (max-width: 800px) {

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

  .btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    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 {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.fade:hover {
  opacity: 0.5;
}

.fs11 {
  font-size: 11px;
}

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

.bold,
strong {
  font-family: "FOT-筑紫ゴシック Pr5N D", sans-serif;
  font-weight: bold;
}

.underline {
  text-decoration: underline;
}

.marker span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #d9cd80));
  background: linear-gradient(transparent 60%, #d9cd80 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: 60px !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: #7d4b28;
  --event02: #b38000;
  --event03: #d2ae74;
}

.business-calendar-hidden {
  display: none;
}

.business-calendar-box-wrap {
  margin-bottom: 12px;
}

.business-calendar-box-wrap .business-calendar {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 0 !important;
}

.business-calendar-box-wrap .business-calendar caption {
  width: 100%;
  font-weight: normal;
  font-family: "FOT-筑紫ゴシック Pr5N R", serif;
  text-align: center;
  position: relative;
}

@media (min-width: 801px) {
  .business-calendar-box-wrap .business-calendar caption {
    height: 36px;
    padding-top: 10px;
    font-size: 16px;
    margin-bottom: 18px;
  }
}

@media (max-width: 800px) {
  .business-calendar-box-wrap .business-calendar caption {
    padding: 5px 0;
    font-size: 15px;
  }
}

.business-calendar-box-wrap .business-calendar-past a,
.business-calendar-box-wrap .business-calendar-future a {
  width: 25px;
  height: 100%;
  overflow: hidden;
  text-indent: -9999px;
  background: url(../images/share/icon_prev.svg) 50% 50% no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}

.business-calendar-box-wrap .business-calendar-future a {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  left: auto;
  right: 0;
}

.business-calendar-box-wrap .business-calendar th {
  border: 1px solid #dfdfdf;
  color: #fff;
  font-family: "FOT-筑紫ゴシック Pr5N R", serif;
  letter-spacing: 0.05em;
  text-align: center;
  vertical-align: middle;
  background-color: #927e6f;
}

@media (min-width: 801px) {
  .business-calendar-box-wrap .business-calendar th {
    height: 45px;
    font-size: 16px;
    margin-bottom: 18px;
  }
}

@media (max-width: 800px) {
  .business-calendar-box-wrap .business-calendar th {
    height: 30px;
    font-size: 11px;
  }
}

.business-calendar-box-wrap .business-calendar td {
  border: 1px solid #dfdfdf;
  font-family: "FOT-筑紫ゴシック Pr5N R", serif;
  letter-spacing: 0.05em;
  text-align: center;
  vertical-align: middle;
  background: #ffffff;
  position: relative;
  z-index: 0;
}

@media (min-width: 801px) {
  .business-calendar-box-wrap .business-calendar td {
    height: 40px;
    font-size: 13px;
  }
}

@media (max-width: 800px) {
  .business-calendar-box-wrap .business-calendar td {
    height: 40px;
    font-size: 11px;
  }
}

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

.business-calendar-box-wrap .business-calendar .attr0 {
  color: #fff;
}

.business-calendar-box-wrap .business-calendar .attr0:before {
  background-color: var(--event01);
}

.business-calendar-box-wrap .business-calendar .attr1 {
  color: #fff;
}

.business-calendar-box-wrap .business-calendar .attr1:before {
  background-color: var(--event02);
}

.business-calendar-box-wrap .business-calendar .attr2 {
  color: #fff;
}

.business-calendar-box-wrap .business-calendar .attr2:before {
  background-color: var(--event03);
}

.list-event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}

.list-event li {
  line-height: 1;
  font-size: 13px;
  font-family: "FOT-筑紫ゴシック Pr5N R", serif;
  margin-top: 12px;
}

.list-event .link {
  text-decoration: underline;
}

.list-event i {
  margin: 0 5px 0 0;
}

.list-event .event01 {
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
}

.list-event .event01:before {
  width: 12px;
  height: 12px;
  border-radius: 100px;
  content: "";
  display: block;
  background-color: var(--event01);
}

.list-event .event02 {
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
}

.list-event .event02:before {
  width: 12px;
  height: 12px;
  border-radius: 100px;
  content: "";
  display: block;
  background-color: var(--event02);
}

.list-event .event03 {
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
}

.list-event .event03:before {
  width: 12px;
  height: 12px;
  border-radius: 100px;
  content: "";
  display: block;
  background-color: var(--event03);
}

@media (max-width: 800px) {
  .business-calendar-box-wrap.col2 .business-calendar-box {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
}

/*診療時間*/
.time-table {
  overflow: hidden;
  font-family: "FOT-筑紫ゴシック Pr5N R", serif;
  text-align: center;
  margin-bottom: 10px;
}

.time-table-head {
  border: 1px solid #eee;
  color: #fff;
  font-family: "FOT-筑紫ゴシック Pr5N R", serif;
  background-color: #2c8e4d;
}

@media (min-width: 801px) {
  .time-table-head {
    font-size: 16px;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 800px) {
  .time-table-head {
    font-size: 12px;
  }
}

.time-table-head .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 801px) {
  .time-table-head .item {
    height: 45px;
  }
}

@media (max-width: 800px) {
  .time-table-head .item {
    padding: 5px 0;
  }
}

.time-table-body {
  border-bottom: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
  border-right: 1px solid #dfdfdf;
  background-color: #fff;
}

.time-table-body .item {
  line-height: 1.5;
  font-family: "FOT-筑紫ゴシック Pr5N R", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 801px) {
  .time-table-body .item {
    min-height: 55px;
    padding: 11px 0;
    font-size: 16px;
  }
}

@media (max-width: 800px) {
  .time-table-body .item {
    padding: 8px 0;
    font-size: 13px;
  }
}

.time-table-body .item:nth-child(1) {
  border-right: 1px solid #dfdfdf;
  background-color: #efdcd6;
}

.time-table-head,
.time-table-body {
  display: -ms-grid;
  display: grid;
}

@media (min-width: 801px) {

  .time-table-head,
  .time-table-body {
    -ms-grid-columns: 130px (1fr)[6] 58px;
    grid-template-columns: 130px repeat(6, 1fr) 58px;
  }
}

@media (max-width: 800px) {

  .time-table-head,
  .time-table-body {
    -ms-grid-columns: 70px (1fr)[7];
    grid-template-columns: 70px repeat(7, 1fr);
  }
}

.time-table-txt {
  line-height: 1.8666666667;
  font-family: "FOT-筑紫ゴシック Pr5N D", sans-serif;
  letter-spacing: 0.05em;
}

@media (min-width: 801px) {
  .time-table-txt {
    font-size: 15px;
  }
}

@media (max-width: 800px) {
  .time-table-txt {
    font-size: 12px;
  }
}

.color02 {
  color: #2c8e4d;
}

.border {
  padding: 0 8px;
  border: 1px solid #4b4747;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
}

/*------------
splide-core.min.css　※※※編集禁止※※※
-------------*/
@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-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 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

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

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

.splide__pagination {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  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 {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  -webkit-animation: splide-loading 1s linear infinite;
  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: #2c8e4d;
  /* 矢印 */
  --splide-focus-color: #2c8e4d;
  /* タブ移動によるフォーカス時のアウトライン */
  --splide-pagination-color: #2c8e4d;
  /* アクティブ時のページネーション */
  --splide-progress-color: #2c8e4d;
  /* プログレスバー */
  --splide-toggle-color: #2c8e4d;
  /* 再生ボタン */
  --splide-track-color: #2c8e4d;
  /* サムネイルの枠 */
}

.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 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

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

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

.splide__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: 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 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style: none !important;
  margin: 0;
  position: relative;
  -webkit-backface-visibility: hidden;
  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%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  -webkit-transition: 0.2s;
  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;
  -webkit-transform: translateY(-50%) scaleX(-1);
  transform: translateY(-50%) scaleX(-1);
}

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

.splide__pagination__page {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 5px;
  opacity: 1;
  width: 8px;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page.is-active {
  background: var(--splide-pagination-color);
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
  z-index: 1;
}

@keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(1turn);
    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 {
  -webkit-transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, transform 1s;
  transition: opacity 1.2s, transform 1s, -webkit-transform 1s;
  opacity: 0;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
}

.js-fadein.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
