@charset "UTF-8";

:root {
  --color_body_bg: #F8F6F2;
  --color_text: #333;
  --color_link: #E66413;
  --color_border: #CECECE;
  --color_primary: #FA863E;
  --color_secondary: #00AFCC;
  --color_tertiary: #EFEADF;
  --font_base: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --font_jp: "FOT-筑紫明朝 Pr6N D", serif;
  --font_en: "Libre Baskerville", serif;
}

/*-----------------------------------------------------------
1-1. Reset
-----------------------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
}

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;
  outline: 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 {
  border: medium;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

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

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

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

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

legend {
  color: #000;
}

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

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,
button,
textarea,
select {
  font: 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;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}

table {
  border-color: inherit;
  border-collapse: collapse;
  border-spacing: 0;
  border-color: inherit;
  text-indent: 0;
  width: 100%;
}

iframe {
  border-style: none;
}

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

::selection {
  background: #d4dcd6;
}

:root {
  --leading-trim: calc((1em - 1lh) / 2);
}

:lang(en) {
  --leading-trim: calc((1cap - 1lh) / 2);
}

@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px;
  }

  :lang(en) {
    --leading-trim: 0px;
  }
}

/*-----------------------------------------------------------
body
-----------------------------------------------------------*/
body,
html {
  width: 100%;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  background-color: var(--color_body_bg);
  color: var(--color_text);
  font-size: 1.6rem;
  font-family: var(--font_base);
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

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

.link {
  color: var(--color_link);
  text-decoration: underline;
}

.link:is(:hover, :focus) {
  text-decoration: none;
}

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

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

@media (max-width: 800px) {

  /*-----------------------------------------------------------
  body SP
  -----------------------------------------------------------*/
  body {
    font-size: 1.4rem;
    line-height: 1.8;
  }

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

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

/*-----------------------------------------------------------
header
-----------------------------------------------------------*/
.header {
  background: #fff;
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.h-container {
  padding: 0 80px 0 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
}

.h-logo {
  margin: 0 auto 0 0;
}

.h-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
  margin-right: 30px;
}


.h-btn {
  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;
  gap: 0 10px;
  background: var(--color_primary);
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.5rem;
  text-align: center;
  padding: 0 25px;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.h-btn:before {
  content: "";
  display: inline-block;
  background: url(../images/share/icon_mail.svg) no-repeat center/contain;
  width: 20px;
  height: 16px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

@media (hover: hover) {
  .h-btn:is(:hover, :focus) {
    background-color: oklch(from var(--color_primary) 0.65 c h);
  }
}

@media (max-width: 800px) {

  /*-----------------------------------------------------------
  header SP
  -----------------------------------------------------------*/
  .header {
    position: static;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .h-container {
    padding: 0 15px;
    height: 80px;
  }

  .h-logo {
    margin: 0 auto 0 0;
    max-width: 209px;
  }

  .h-sns {
    display: none;
  }

  .h-btn {
    display: none;
  }
}

/*-----------------------------------------------------------
g-navi
-----------------------------------------------------------*/
/* ボタン */
.navi-menu-btn {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #E66413;
  border: 1px solid #E66413;
  cursor: pointer;
  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;
  position: fixed;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 999;
}

.navi-menu-btn .ttl {
  display: none;
}

.navi-menu-btn .hamburger-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 43px;
  height: 1px;
  background: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navi-menu-btn .hamburger-line::before,
.navi-menu-btn .hamburger-line::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navi-menu-btn .hamburger-line::before {
  top: -5px;
}

.navi-menu-btn .hamburger-line::after {
  top: 5px;
}

.navi-menu-btn[aria-expanded=true] .hamburger-line {
  background-color: transparent;
}

.navi-menu-btn[aria-expanded=true] .hamburger-line::before,
.navi-menu-btn[aria-expanded=true] .hamburger-line::after {
  top: 0;
  background: #fff;
}

.navi-menu-btn[aria-expanded=true] .hamburger-line::before {
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.navi-menu-btn[aria-expanded=true] .hamburger-line::after {
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

.navi-menu-btn .u-visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

.sp-navi-btns {
  display: none;
}

/* 中身 */
.g-navi-contents {
  pointer-events: none;
  visibility: hidden;
  background: var(--color_primary);
  color: #fff;
  padding: 150px 0 150px 50%;
  position: fixed;
  inset: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  z-index: 997;
}

.g-navi-contents:before {
  content: "";
  display: block;
  background: url(../images/share/navi_bg.jpg) no-repeat center/cover;
  width: 46.1%;
  clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 5;
}

.g-navi-contents.is-open {
  pointer-events: auto;
  visibility: visible;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  opacity: 1;
}

/* レイアウト等 */
.g-navi-layout {
  margin-inline: auto;
  max-width: 1500px;
  width: 90%;
}

.g-navi-layout>.item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.g-navi-layout>.item+.item {
  margin-top: 60px;
}

.g-navi-list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(100px, 5.55vw);
}

.g-navi-list-wrap .g-navi-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.g-navi-list-wrap .g-navi-item .item-ttl {
  font-family: var(--font_jp);
  font-size: 1.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.27);
  padding: 0 0 15px;
  margin: 0 0 30px;
}

.g-navi-list-wrap .g-navi-item .item-ttl a {
  background: -webkit-gradient(linear, left top, left bottom, from(currentColor)) no-repeat bottom right/0 1px;
  background: linear-gradient(currentColor) no-repeat bottom right/0 1px;
  -webkit-transition: background-size 0.3s ease-out;
  transition: background-size 0.3s ease-out;
}

@media (hover: hover) {
  .g-navi-list-wrap .g-navi-item .item-ttl a:is(:hover, :focus) {
    background-size: 100% 1px;
    background-position: bottom left;
  }
}

.g-navi-list>li {
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  margin-bottom: 20px;
}

.g-navi-list>li>a,
.g-navi-list>li>.no-link {
  color: #fff;
  font-family: var(--font_jp);
  font-size: 2rem;
  background: -webkit-gradient(linear, left top, left bottom, from(currentColor)) no-repeat bottom right/0 1px;
  background: linear-gradient(currentColor) no-repeat bottom right/0 1px;
  -webkit-transition: background-size 0.3s ease-out;
  transition: background-size 0.3s ease-out;
}

@media (hover: hover) {

  .g-navi-list>li>a:is(:hover, :focus),
  .g-navi-list>li>.no-link:is(:hover, :focus) {
    background-size: 100% 1px;
    background-position: bottom left;
  }
}

.navi-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.navi-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.navi-contact .tel-link {
  font-size: 2rem;
  color: #fff;
}

.navi-contact .tel-link:before {
  width: 1.6rem;
  height: 1.6rem;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

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

body.is-hidden {
  overflow: clip;
}

@media (max-width: 800px) {

  /*-----------------------------------------------------------
  g-navi SP
  -----------------------------------------------------------*/
  /* ボタン */
  .navi-menu-btn {
    background: none;
    width: 25vw;
    height: 55px;
    top: auto;
    bottom: 0;
  }

  .navi-menu-btn .ttl {
    display: block;
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 100%;
    font-family: var(--font_jp);
    font-size: 1rem;
    line-height: 1;
    color: #fff;
    text-align: center;
  }

  .navi-menu-btn .hamburger-line {
    width: 12px;
    background: #fff;
    inset: 18px auto auto;
  }

  .navi-menu-btn .hamburger-line::before {
    top: -6px;
  }

  .navi-menu-btn .hamburger-line::after {
    top: 6px;
  }

  :root {
    --navi-background: #E66413;
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --menu-btn: #fff;
  }

  /* ボタン類 */
  .sp-navi-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: var(--navi-background);
    -webkit-box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55px;
    z-index: 998;
  }

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

  .sp-navi-btns .item {
    border-right: 1px solid var(--navi-border-color);
    font-family: var(--font_jp);
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }

  .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: var(--navi-text-color);
    text-decoration: none;
    height: 100%;
    padding: 8px 0;
  }

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

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

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

  /* 中身 */
  .g-navi-contents {
    padding: 50px 0 100px;
  }

  .g-navi-contents:before {
    content: none;
  }

  .g-navi-list-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 60px 0;
  }

  .g-navi-list-wrap .g-navi-item .item-ttl {
    font-size: 1.8rem;
    padding: 0 0 10px;
    margin: 0 0 20px;
  }

  .g-navi-list>li {
    margin-bottom: 10px;
  }

  .g-navi-list>li>a,
  .g-navi-list>li>.no-link {
    font-size: 1.6rem;
  }

  .navi-sns {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
  }

  .navi-sns img {
    width: 30px;
  }

  .navi-contact {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .navi-contact .tel-link {
    font-size: 2.4rem;
  }

  .navi-contact .tel-link:before {
    width: 1.9rem;
    height: 1.9rem;
  }
}

/*-----------------------------------------------------------
/*-----------------------------------------------------------
hero
-----------------------------------------------------------*/
.hero {
  position: relative;
}

.hero-ttl {
  position: absolute;
  left: 5%;
  bottom: 10%;
  z-index: 5;
}

.hero-ttl .txt01 {
  color: #fff;
  font-family: var(--font_jp);
  font-size: 4.5rem;
  line-height: 1.4;
}

.hero-ttl .txt02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 25px;
  color: #fff;
  font-family: var(--font_en);
  font-size: 2.5rem;
  line-height: 1.4;
  margin-top: 30px;
}

.hero-ttl .txt02:before {
  content: "";
  background: #fff;
  height: 1px;
  width: 114px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 114px;
  flex: 0 0 114px;
}

  .hero-ttl .txt03 {
  color: #fff;
  font-family: var(--font_en);
  font-size: 1.2rem;
  line-height: 1.4;
  margin-top: 15px;
  opacity: 0.8;
}

.hero.en .hero-ttl .txt02 {
  font-family: var(--font_jp);
}

.hero-slider .splide__pagination {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0 30px;
}

.hero-slider .splide__pagination__page {
  border-radius: 0;
  height: 5px;
  width: 46px;
}

.hero-slider .splide__slide {
  overflow: hidden;
  position: relative;
}

.hero-slider .splide__slide:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.hero-slider .splide__slide img {
  width: 100%;
}

/*ズームアウト*/
.hero-slider .splide__slide.zoom.is-active img {
  animation: zoom 10s 0s infinite forwards;
}

/*左へスライド*/
.hero-slider .splide__slide.slide-l img {
  transform: scale(1.1);
}

.hero-slider .splide__slide.slide-l.is-active img {
  animation: slideLeft 8s 0s infinite forwards;
}

/*右へスライド*/
.hero-slider .splide__slide.slide-r img {
  transform: scale(1.1);
}

.hero-slider .splide__slide.slide-r.is-active img {
  animation: slideRight 8s 0s infinite forwards;
}

@keyframes zoom {
  0% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes slideLeft {
  0% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1.1) translateX(-5%);
  }
}

@keyframes slideRight {
  0% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1.1) translateX(5%);
  }
}


@media (max-width: 800px) {
  .hero-ttl {
    left: 8%;
    bottom: 15%;
    width: 90%;
  }

  .hero-ttl .txt01 {
    font-size: 6vw;
  }

  .hero-ttl .txt02 {
    gap: 0 10px;
    font-size: 1.1rem;
    margin-top: 10px;
  }

  .hero-ttl .txt02:before {
    width: 50px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
  }

  .hero-ttl .txt03 {
    font-size: 0.85rem;
    margin-top: 8px;
  }

  .hero-slider .splide__pagination {
    padding: 0 15px;
  }

  .hero-slider .splide__pagination__page {
    height: 4px;
    width: 34px;
  }
}

/*-----------------------------------------------------------
top contents
-----------------------------------------------------------*/
.container {
  margin-inline: auto;
  max-width: 1024px;
  width: 90%;
}

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

.container.wide02 {
  max-width: 1400px;
}

/*t-ttl*/
.t-ttl01 {
  margin-bottom: 35px;
  position: relative;
}

.t-ttl01 .ttl {
  font-family: var(--font_jp);
  font-size: 2.2rem;
}

.t-ttl01 .en {
  font-family: var(--font_en);
  font-size: 6rem;
  line-height: 1;
  margin-bottom: 10px;
}

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

  .t-ttl01 .ttl {
    font-size: 1.7rem;
  }

  .t-ttl01 .en {
    font-size: 3.5rem;
  }
}

.top-card-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 30px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px 30px;
}

.top-card-layout .card-item {
  display: block;
}

.top-card-layout .card-item .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
}

.top-card-layout .card-item .card-img:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}

.top-card-layout .card-item .card-img img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
}

.top-card-layout .card-item .card-ttl .en {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 4rem;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 15px;
}

.top-card-layout .card-item .card-ttl .jp {
  font-family: var(--font_jp);
  font-size: 1.7rem;
  line-height: 1.2;
}

@media (hover: hover) {
  .top-card-layout .card-item:is(:hover, :focus) .card-img:before {
    opacity: 1;
  }

  .top-card-layout .card-item:is(:hover, :focus) .card-img img {
    scale: 1.2;
    rotate: 5deg;
  }
}

@media (max-width: 800px) {
  .top-card-layout {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
    gap: 30px 15px;
  }

  .top-card-layout .card-item {
    display: block;
  }

  .top-card-layout .card-item .card-img {
    margin-bottom: 15px;
  }

  .top-card-layout .card-item .card-ttl .en {
    font-size: 2.3rem;
  }

  .top-card-layout .card-item .card-ttl .jp {
    font-size: 1.4rem;
  }
}

/*sec01*/
.sec01 {
  padding: 135px 0 0;
}

.sec01-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr auto;
  -ms-grid-columns: 23rem 1fr;
  grid-template: 1fr auto/23rem 1fr;
}

.sec01-layout .l-ttl {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
}

.sec01-layout .l-ttl .t-ttl01 .ttl {
  font-size: 1.7rem;
}

.sec01-layout .l-ttl .t-ttl01 .en {
  font-size: 3.5rem;
}

.sec01-layout .l-desc {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/3/3;
  min-width: 0;
}

.sec01-layout .l-btn {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 2/1/3/2;
}

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

  .sec01-layout {
    display: block;
  }

  .sec01-layout .l-ttl .t-ttl01 .ttl {
    font-size: 1.8rem;
  }

  .sec01-layout .l-ttl .t-ttl01 .en {
    font-size: 3.8rem;
  }

  .sec01-layout .l-btn {
    margin-top: 30px;
  }
}

/*sec02*/
.sec02 {
  padding: 150px 0;
  position: relative;
}

.sec02:before {
  content: "";
  display: block;
  background: url(../images/sec02_deco01.png) no-repeat left top/contain;
  width: 36.7%;
  height: auto;
  aspect-ratio: 662/766;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-animation: floating01 5s ease-in-out infinite;
  animation: floating01 5s ease-in-out infinite;
}

.sec02:after {
  content: "";
  display: block;
  background: url(../images/sec02_deco02.png) no-repeat right bottom/contain;
  width: 50%;
  height: auto;
  aspect-ratio: 900/721;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  -webkit-animation: floating02 7s ease-in-out infinite;
  animation: floating02 7s ease-in-out infinite;
}

.sec02-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 7.3% 1fr;
  -ms-grid-columns: 1fr 7.3% 52.3%;
  grid-template: auto 1fr/1fr 52.3%;
  gap: 7.3%;
  padding: 0 0 0 max(10%, 50% - 700px);
}

.sec02-layout .l-ttl {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
  font-family: var(--font_jp);
  font-size: min(8.5rem, 4.72vw);
  line-height: 1.17;
}

.sec02-layout .l-img {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/3/3;
}

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

.sec02-layout .l-txt {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 2/1/3/2;
}

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

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

  .sec02:before {
    width: 60%;
  }

  .sec02:after {
    width: 60%;
    opacity: 0.7;
  }

  .sec02-layout {
    display: block;
    padding: 0 5%;
  }

  .sec02-layout .l-ttl {
    font-size: 4rem;
    margin-bottom: 30px;
  }

  .sec02-layout .l-img {
    text-align: center;
    margin-bottom: 20px;
  }

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

/*sec03*/
.sec03 {
  padding: 150px 0;
  position: relative;
}

.sec03:before {
  content: "";
  position: absolute;
  inset: 0 0 0 max(5%, 50% - 614px);
  background: var(--color_tertiary);
  z-index: -1;
}

.sec03-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20% 30px 1fr;
  grid-template-columns: 20% 1fr;
  gap: 0 30px;
  padding: 0 0 0 max(10%, 50% - 700px);
}

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

  .sec03:before {
    inset: 0;
  }

  .sec03-layout {
    display: block;
    padding: 0 5%;
  }
}

/*sec04*/
.sec04 {
  padding: 150px 0;
  position: relative;
}

.sec04:before {
  content: "";
  display: block;
  background: url(../images/sec04_deco01.png) no-repeat left top/contain;
  width: 53.6%;
  height: auto;
  aspect-ratio: 966/1596;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -2;
  -webkit-animation: floating02 7s ease-in-out infinite;
  animation: floating02 7s ease-in-out infinite;
}

.sec04-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 31.25% 30px 1fr;
  grid-template-columns: 31.25% 1fr;
  gap: 0 30px;
  padding: 0 0 0 max(10%, 50% - 700px);
}

@media (max-width: 800px) {
  .sec04 {
    padding: 60px 0;
    position: relative;
  }

  .sec04:before {
    width: 60%;
    bottom: auto;
    top: 0;
    -webkit-animation: floating01 5s ease-in-out infinite;
    animation: floating01 5s ease-in-out infinite;
  }

  .sec04-layout {
    display: block;
    padding: 0 5%;
  }
}

/*sec05*/
.sec05 {
  padding: 0 0 150px;
  position: relative;
}

.sec05:before {
  content: "";
  display: block;
  background: url(../images/sec05_deco01.png) no-repeat right bottom/contain;
  width: 24.1%;
  height: auto;
  aspect-ratio: 435/404;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  -webkit-animation: floating02 7s ease-in-out infinite;
  animation: floating02 7s ease-in-out infinite;
}

.sec05-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 31.25% 30px 1fr;
  grid-template-columns: 31.25% 1fr;
  gap: 0 30px;
  padding: 0 0 0 max(10%, 50% - 700px);
}

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

  .sec05:before {
    width: 50%;
  }

  .sec05-layout {
    display: block;
    padding: 0 5%;
  }
}

/*sec06*/
.sec06 {
  background: url(../images/share/bg01.jpg) no-repeat center/cover;
  padding: 120px 0;
}

.sec06-ttl {
  position: relative;
  min-height: 138px;
  text-align: center;
}

.sec06-ttl .ttl {
  color: #fff;
  font-family: var(--font_jp);
  font-size: 3.6rem;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.sec06-ttl .en {
  color: rgba(255, 255, 255, 0.15);
  font-family: var(--font_en);
  font-size: 13.8rem;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
}

.sec06-txt {
  color: #fff;
  text-align: center;
}

.sec06-btn {
  text-align: center;
  margin-top: 70px;
}

.sec06-btn a {
  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;
  gap: 15px;
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.5rem;
  text-align: center;
  padding: 20px 60px 20px 8px;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff)) no-repeat bottom left/100% 2px;
  background: linear-gradient(#fff) no-repeat bottom left/100% 2px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  line-height: 1.7;
}

.sec06-btn a:before {
  content: "";
  display: inline-block;
  background: url(../images/share/icon_mail.svg) no-repeat center/contain;
  width: 20px;
  height: 16px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.sec06-btn a:after {
  content: "";
  display: block;
  background: url(../images/share/btn-arrow.svg) no-repeat center/contain;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  width: 1.6rem;
  height: 1.7rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (hover: hover) {
  .sec06-btn a:is(:hover, :focus) {
    color: var(--color_primary);
    background-size: 100% 100%;
    background-position: bottom left;
  }

  .sec06-btn a:is(:hover, :focus):before {
    -webkit-filter: none;
    filter: none;
  }

  .sec06-btn a:is(:hover, :focus):after {
    -webkit-filter: none;
    filter: none;
  }
}

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

  .sec06-ttl {
    min-height: 0;
    margin-bottom: 35px;
  }

  .sec06-ttl .ttl {
    font-size: 2.3rem;
  }

  .sec06-ttl .en {
    font-size: 6rem;
  }

  .sec06-txt {
    text-align: left;
  }

  .sec06-btn {
    margin-top: 30px;
  }
}

.sec07 {
  padding: 150px 0;
  position: relative;
}

.sec07:before {
  content: "";
  display: block;
  background: url(../images/sec07_deco01.png) no-repeat left top/contain;
  width: 37.6%;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-animation: floating01 5s ease-in-out infinite;
  animation: floating01 5s ease-in-out infinite;
}

.sec07:after {
  content: "";
  position: absolute;
  inset: 320px 0 0 max(10%, 50% - 400px);
  background: #fff;
  z-index: -1;
}

.sec07 .t-ttl01 {
  margin-bottom: -60px;
  position: relative;
  z-index: 2;
}

.sec07-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 0 6.8%;
  padding: 0 0 0 9.4%;
}

.sec07-layout .l-img {
  width: 60%;
}

.sec07-layout .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

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

  .sec07:before {
    width: 50%;
  }

  .sec07:after {
    inset: 80vw 0 0;
  }

  .sec07 .t-ttl01 {
    margin-bottom: 35px;
  }

  .sec07-layout {
    display: block;
    padding: 0;
  }

  .sec07-layout .l-img {
    width: 100%;
    margin-bottom: 20px;
  }
}

/*sec08*/
.sec08 {
  padding: 100px 0;
}

.sec08-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr;
  -ms-grid-columns: 23rem 1fr;
  grid-template: auto 1fr/23rem 1fr;
}

.sec08-layout .l-ttl {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
}

.sec08-layout .l-ttl .t-ttl01 .ttl {
  font-size: 1.8rem;
}

.sec08-layout .l-ttl .t-ttl01 .en {
  font-size: 5.5rem;
}

.sec08-layout .l-desc {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/3/3;
  min-width: 0;
}

.sec08-layout .l-btn {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 2/1/3/2;
}

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

  .sec08-layout {
    display: block;
  }

  .sec08-layout .l-desc {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .sec08-layout .l-desc:before {
    content: "横にスクロールできます。";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat left center/20px;
    min-height: 16px;
    font-size: 1.3rem;
    padding: 0 0 0 30px;
    margin-bottom: 5px;
  }

  .sec08-layout .l-desc .top-post-blog {
    width: 800px;
  }

  .sec08-layout .l-btn {
    text-align: center;
    margin-top: 30px;
  }
}

/*sec09*/
.sec09 {
  background: var(--color_tertiary);
  padding: 150px 0;
}

.sec09-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 34.2% 30px minmax(0, 1fr);
  grid-template-columns: 34.2% minmax(0, 1fr);
  gap: 0 30px;
}

.sec09-post-wrap .item+.item {
  margin-top: 120px;
}

.sec09-post-wrap .item-ttl {
  font-family: var(--font_jp);
  font-size: 2.2rem;
  border-bottom: 1px solid var(--color_text);
  padding: 0 0 20px;
  margin-bottom: 20px;
}

.sec09-post-wrap .item-btn {
  text-align: right;
  margin-top: 30px;
}

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

  .sec09-layout {
    display: block;
  }

  .sec09-post-wrap .item+.item {
    margin-top: 60px;
  }

  .sec09-post-wrap .item-ttl {
    font-size: 1.8rem;
    padding: 0 0 15px;
    margin-bottom: 20px;
  }

  .sec09-post-wrap .item-btn {
    text-align: center;
    margin-top: 30px;
  }
}

/*sec10*/
.sec10 {
  padding: 190px 0 85px;
  position: relative;
}

.sec10:before {
  content: "";
  position: absolute;
  inset: 50% 0 0 max(5%, 50% - 614px);
  background: var(--color_tertiary);
  z-index: -2;
}

.sec10:after {
  content: "";
  position: absolute;
  inset: 182px 0 75px max(10%, 50% - 377px);
  background: url(../images/share/bg01.jpg) no-repeat center/cover;
  z-index: -1;
}

.sec10-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto minmax(0, 1fr);
  grid-template-columns: auto minmax(0, 1fr);
  padding: 110px 0 75px;
}

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

  .sec10:before {
    content: none;
  }

  .sec10:after {
    inset: 150px 0 0;
  }

  .sec10-layout {
    display: block;
    padding: 0;
  }

  .sec10-layout .l-desc {
    padding: 35px 0 0;
  }
}

/*sec11*/
.sec11 {
  padding: 150px 0;
  position: relative;
}

.sec11:before {
  content: "";
  display: block;
  background: url(../images/sec11_deco01.png) no-repeat right bottom/contain;
  width: 33.2%;
  height: auto;
  aspect-ratio: 598/840;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -2;
  -webkit-animation: floating02 7s ease-in-out infinite;
  animation: floating02 7s ease-in-out infinite;
}

.sec11-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 470px;
  grid-template-columns: minmax(0, 1fr) 470px;
  padding: 0 max(10%, 50% - 767px) 0 0;
}

.sec11-layout .l-desc {
  background: #fff;
  padding: 70px 80px;
}

.sec11-layout .l-desc p+p {
  margin-top: 1.5rem;
}

@media (max-width: 800px) {
  .sec11 {
    padding: 60px 0;
    position: relative;
  }

  .sec11:before {
    width: 60%;
    right: 0;
    bottom: 0;
    z-index: -2;
  }

  .sec11-layout {
    display: block;
    padding: 0 5%;
  }

  .sec11-layout .l-desc {
    padding: 25px;
  }
}

/*-----------------------------------------------------------
footer
-----------------------------------------------------------*/
.footer {
  background: url(../images/share/bg01.jpg) no-repeat center/cover;
  position: relative;
  padding: 100px 0 70px;
}

.pagetop {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 50;
}

.f-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 29.5% 4.28% 1fr 4.28% 29.2%;
  grid-template-columns: 29.5% 1fr 29.2%;
  max-width: 1400px;
  gap: 0 4.28%;
  width: 90%;
  margin: 0 auto 130px;
}

.f-logo {
  margin-bottom: 25px;
}

.f-address {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.f-tel {
  margin-bottom: 20px;
}

.f-tel .tel-link {
  color: #fff;
}

.f-tel .tel-link:before {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.f-btn {
  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: 0 10px;
  background: #fff;
  border: 1px solid #fff;
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  text-align: center;
  padding: 11px 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  min-width: 224px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 30px;
}

.f-btn:before {
  content: "";
  display: inline-block;
  background: url(../images/share/icon_mail.svg) no-repeat center/contain;
  width: 20px;
  height: 16px;
}

@media (hover: hover) {
  .f-btn:is(:hover, :focus) {
    color: #fff;
    background: none;
  }

  .f-btn:is(:hover, :focus):before {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
}

.f-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.sitemap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(50px, 2.77vw);
}

.sitemap .sitemap-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.sitemap .sitemap-item .item-ttl {
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.27);
  padding: 0 0 15px;
  margin: 0 0 30px;
}

.sitemap .sitemap-item .item-ttl a {
  background: -webkit-gradient(linear, left top, left bottom, from(currentColor)) no-repeat bottom right/0 1px;
  background: linear-gradient(currentColor) no-repeat bottom right/0 1px;
  -webkit-transition: background-size 0.3s ease-out;
  transition: background-size 0.3s ease-out;
}

@media (hover: hover) {
  .sitemap .sitemap-item .item-ttl a:is(:hover, :focus) {
    background-size: 100% 1px;
    background-position: bottom left;
  }
}

.sitemap ul>li {
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  margin-bottom: 15px;
}

.sitemap ul>li>a,
.sitemap ul>li>.no-link {
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(currentColor)) no-repeat bottom right/0 1px;
  background: linear-gradient(currentColor) no-repeat bottom right/0 1px;
  -webkit-transition: background-size 0.3s ease-out;
  transition: background-size 0.3s ease-out;
}

@media (hover: hover) {

  .sitemap ul>li>a:is(:hover, :focus),
  .sitemap ul>li>.no-link:is(:hover, :focus) {
    background-size: 100% 1px;
    background-position: bottom left;
  }
}

.sitemap02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.sitemap02>li {
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
}

.sitemap02>li:after {
  content: "｜";
  color: #fff;
  margin: 0 1rem;
}

.sitemap02>li:last-child:after {
  content: none;
}

.sitemap02>li>a,
.sitemap02>li>.no-link {
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.4rem;
  background: -webkit-gradient(linear, left top, left bottom, from(currentColor)) no-repeat bottom right/0 1px;
  background: linear-gradient(currentColor) no-repeat bottom right/0 1px;
  -webkit-transition: background-size 0.3s ease-out;
  transition: background-size 0.3s ease-out;
}

@media (hover: hover) {

  .sitemap02>li>a:is(:hover, :focus),
  .sitemap02>li>.no-link:is(:hover, :focus) {
    background-size: 100% 1px;
    background-position: bottom left;
  }
}

.f-bnr {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 13px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.copyright-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  width: 90%;
  max-width: 1400px;
  margin-inline: auto;
}

.copyright {
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  font-family: var(--font_jp), Verdana, "Droid Sans";
}

@media (max-width: 800px) {

  /*-----------------------------------------------------------
  footer SP
  -----------------------------------------------------------*/
  .footer {
    padding: 60px 0 100px;
  }

  .pagetop {
    display: none;
  }

  .f-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
    gap: 50px 0;
    width: 90%;
    margin: 0 auto 50px;
  }

  .f-logo {
    text-align: center;
  }

  .f-address {
    text-align: center;
  }

  .f-tel {
    text-align: center;
  }

  .f-btn {
    margin: 0 auto 30px;
  }

  .f-sns {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .sitemap {
    display: block;
  }

  .sitemap .sitemap-item+.sitemap-item {
    margin-top: 40px;
  }

  .sitemap .sitemap-item ul {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }

  .sitemap02 {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .copyright-area {
    display: block;
  }

  .copyright {
    color: #fff;
    text-align: center;
    font-size: 1.4rem;
    font-family: var(--font_jp), Verdana, "Droid Sans";
  }
}

/*-----------------------------------------------------------
under
-----------------------------------------------------------*/
.u-contents p+p {
  margin-top: 15px;
}

/*------------
パンくず
--------------*/
.breadcrumb {
  margin: 5px 0 55px;
  width: 100%;
}

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

.breadcrumb ul li {
  color: #888;
  font-size: 1.3rem;
  display: inline;
}

.breadcrumb ul li a {
  text-decoration: underline;
}

@media (hover: hover) {
  .breadcrumb ul li a:is(:hover, :focus) {
    text-decoration: none;
  }
}

.breadcrumb ul li+li:before {
  content: "> ";
  padding: 0 5px;
  color: #ccc;
}

@media (max-width: 800px) {
  .breadcrumb {
    margin: 5px 0 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

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

/*------------
page ttl
--------------*/
.page-ttl {
  height: 410px;
  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;
  background: url(../images/under/page-ttl.jpg) no-repeat center;
  background-position: center;
  background-size: cover;
  position: relative;
}

.page-ttl:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}

.page-ttl .en {
  color: #fff;
  font-family: var(--font_en);
  font-size: 4.4rem;
  position: relative;
  z-index: 2;
}

.page-ttl .ttl {
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.8rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.page-ttl.en_flamenco {
  background: url(../images/under/pate-ttl-en_flamenco.jpg) no-repeat center;
  background-size: cover;
}

@media (max-width: 800px) {
  .page-ttl {
    height: 180px;
  }

  .page-ttl .en {
    font-size: 2.3rem;
  }

  .page-ttl .ttl {
    font-size: 1.4em;
  }
}

/*------------
見出し
--------------*/
.u-h2,
.postdata h2:not(.password-ttl01) {
  font-family: var(--font_jp);
  font-size: 3rem;
  padding: 0 0 20px;
  margin: 0 0 40px;
  position: relative;
}

.u-h2::after,
.postdata h2:not(.password-ttl01)::after {
  content: "";
  background: var(--color_primary);
  width: 37px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.bg01 .u-h2 {
  color: #fff;
}

.bg01 .u-h2::after {
  background: #fff;
}

.u-h3,
.postdata h3 {
  background: var(--color_tertiary);
  font-family: var(--font_jp);
  font-size: 2.2rem;
  padding: 13px 20px 14px;
  margin: 0 0 30px;
}

.u-h4,
.postdata h4 {
  font-family: var(--font_jp);
  font-size: 1.8rem;
  padding: 0 0 0 20px;
  margin: 0 0 20px;
  position: relative;
}

.u-h4::before,
.postdata h4::before {
  content: "";
  background: var(--color_secondary);
  width: 5px;
  height: 19px;
  position: absolute;
  top: 6px;
  left: 0;
}

.u-catch {
  font-family: var(--font_jp);
  font-size: 1.8rem;
  line-height: 1.5;
}

@media (max-width: 800px) {

  .u-h2,
  .postdata h2 {
    font-size: 2.3rem;
    padding: 0 0 15px;
    margin: 0 0 30px;
  }

  .u-h3,
  .postdata h3 {
    font-size: 2rem;
    padding: 10px 15px;
    margin: 0 0 20px;
  }

  .u-h4,
  .postdata h4 {
    margin: 0 0 15px;
  }

  .u-h4::before,
  .postdata h4::before {
    top: 5px;
  }

  .u-catch {
    font-size: 1.7rem;
  }
}

/*------------
section
--------------*/
.x-short+.x-short {
  margin-top: 40px;
}

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

.tall {
  margin: 0 0 90px;
  display: flow-root;
  overflow-x: clip;
  overflow-y: auto;
}

.tall.bg01 {
  padding: 90px 0;
  background: url(../images/share/bg01.jpg) no-repeat center/cover;
}

.tall.bg01 p {
  color: #fff;
}

@media (max-width: 800px) {
  .short+.short {
    margin-top: 40px;
  }

  .tall {
    margin: 0 0 60px;
  }

  .tall.bg01 {
    padding: 60px 0;
  }
}

/*------------
column
--------------*/
.col2,
.col2-col2,
.col3,
.col3-col2,
.col4,
.col4-col2 {
  display: -ms-grid;
  display: grid;
}

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

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

.col4,
.col4-col2 {
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 30px;
}

@media (max-width: 800px) {

  .col2,
  .col3,
  .col4 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

/*------------
layout
--------------*/
/*l-imgR l-imgL*/
.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;
}

.l-imgR.center,
.l-imgL.center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-imgR .l-img,
.l-imgL .l-img,
.staff-layout .l-img {
  margin: 0 4% 0 0;
  width: 40%;
  position: relative;
}

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

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

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

.l-imgL .l-img.deco {
  position: relative;
  z-index: 1;
  padding: 0 0 100px;
}

.l-imgL .l-img.deco:before {
  content: "";
  display: block;
  background: url(../images/under/under_deco01.png) no-repeat center/contain;
  aspect-ratio: 290/283;
  width: 290px;
  height: auto;
  position: absolute;
  left: -135px;
  bottom: 0;
  z-index: -1;
}

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

.l-imgR .l-img {
  margin: 0 0 0 4%;
}

.l-imgR .l-img.deco {
  position: relative;
  z-index: 1;
  padding: 0 0 160px;
}

.l-imgR .l-img.deco:before {
  content: "";
  display: block;
  background: url(../images/under/under_deco02.png) no-repeat center/contain;
  aspect-ratio: 372/394;
  width: 372px;
  height: auto;
  position: absolute;
  right: -155px;
  bottom: 0;
  z-index: -1;
}

.l-imgR.center,
.l-imgL.center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.fl-imgR,
.fl-imgL {
  display: flow-root;
}

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

.fl-imgR .l-img.half,
.fl-imgL .l-img.half {
  width: 48%;
}

.fl-imgR .l-img.small,
.fl-imgL .l-img.small {
  width: 30%;
}

.fl-imgR .l-img {
  float: right;
  margin: 0 0 15px 4%;
}

.fl-imgL .l-img {
  float: left;
  margin: 0 4% 15px 0;
}

.fl-imgR .l-img.half,
.fl-imgL .l-img.half {
  width: 48%;
}

.fl-imgR .l-img.small,
.fl-imgL .l-img.small {
  width: 30%;
}

@media (max-width: 800px) {

  .l-imgR,
  .l-imgL {
    display: block;
  }

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

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

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

  .l-imgL .l-img.deco {
    position: relative;
    z-index: 1;
    padding: 0 0 50px;
  }

  .l-imgL .l-img.deco:before {
    width: 145px;
    left: -67px;
  }

  .l-imgR .l-img {
    margin: 0 0 15px;
  }

  .l-imgR .l-img.deco {
    padding: 0 0 50px;
  }

  .l-imgR .l-img.deco:before {
    width: 186px;
    right: -77px;
    bottom: -30px;
  }

  .fl-imgR .l-img,
  .fl-imgL .l-img {
    float: none;
    margin: 0 0 15px;
    text-align: center;
    width: 100%;
  }

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

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

/*l-style01*/
.l-style01 .l-img {
  text-align: center;
  position: relative;

}

.l-style01 .l-desc {
  background: var(--color_primary);
  color: #fff;
  padding: min(80px, 4.44vw);
  margin: max(-100px, -5.55vw) auto 0;
  position: relative;
  z-index: 2;
  max-width: 1024px;
  width: 90%;
}

@media (max-width: 800px) {
  .l-style01 .l-desc {
    padding: 25px;
  }
}

/*------------
list
--------------*/
.list-disc li {
  position: relative;
  padding: 0 0 0 1em;
}

.list-disc li:before {
  background: var(--color_primary);
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 0.4em;
  height: 0.4em;
}

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

.list-decimal {
  padding-left: 1.4em;
}

.list-decimal li {
  list-style: decimal;
}

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

.list-num {
  counter-reset: number;
}

.list-num li {
  padding: 0 0 0 2em;
  position: relative;
}

.list-num li:before {
  background: var(--color_primary);
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-family: var(--font_en);
  font-size: 1rem;
  position: absolute;
  top: 0.7em;
  left: 0;
  line-height: 2.1em;
  text-align: center;
  width: 2em;
  height: 2em;
}

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

.list-check li {
  position: relative;
  padding: 0 0 0 1.6em;
}

.list-check li:before {
  content: "";
  background: var(--color_primary);
  -webkit-mask: url(../images/share/icon_check.svg) no-repeat center/contain;
  mask: url(../images/share/icon_check.svg) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 1.125em;
  height: 1.125em;
}

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

.list-col2 {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}

.list-col3 {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
}

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

  .list-num li:before {
    top: 0.3em;
  }

  .list-check li:before {
    top: 0.2em;
  }

  .list-col2 {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }

  .list-col3 {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}

/*------------
table
--------------*/
.table-style01 {
  border-collapse: collapse;
  width: 100%;
}

.table-style01 th,
.table-style01 td {
  padding: 15px;
  border: 1px solid var(--color_border);
  vertical-align: middle;
}

.table-style01 th {
  background: var(--color_primary);
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.5rem;
  text-align: center;
}

.table-style01 td {
  background: #fff;
}

.table-style02 {
  border-collapse: collapse;
  width: 100%;
}

.table-style02 th,
.table-style02 td {
  padding: 15px;
  border: 1px solid var(--color_border);
  vertical-align: middle;
}

.table-style02 th {
  background: var(--color_tertiary);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  text-align: center;
}

.table-style02 thead th {
  background: var(--color_primary);
  color: #fff;
}

.table-style02 td {
  background: #fff;
}

@media (max-width: 800px) {
  .table-style01.sp-block {
    border: 1px solid var(--color_border);
  }

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

  .table-style01.sp-block th,
  .table-style01.sp-block td {
    border: none;
    display: block;
    width: 100%;
  }

  .table-style01 th,
  .table-style01 td {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .table-style02 th,
  .table-style02 td {
    font-size: 1.4rem;
    line-height: 1.5;
  }

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

  .table-scroll:before {
    content: "横にスクロールできます。";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat left center/20px;
    min-height: 16px;
    font-size: 1.3rem;
    padding: 0 0 0 30px;
    margin-bottom: 5px;
  }

  .table-scroll table {
    width: 1024px;
  }
}

.table-style03 th,
.table-style03 td {
  padding: 15px;
  border-bottom: 2px solid var(--color_border);
  vertical-align: middle;
}

.table-style03 th {
  padding: 15px 15px 15px 0;
  font-family: var(--font_jp);
  text-align: left;
  border-bottom: 2px solid var(--color_primary);
}

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

  .table-style03.sp-block th,
  .table-style03.sp-block td {
    display: block;
    padding: 20px 0;
  }

  .table-style03.sp-block th {
    border-bottom: none;
    padding-bottom: 10px;
    font-size: 1.5rem;
  }

  .table-style03.sp-block td {
    padding-top: 0;
    position: relative;
  }

  .table-style03.sp-block td::before {
    content: "";
    background-color: var(--color_primary);
    width: 100px;
    height: 2px;
    position: absolute;
    bottom: -2px;
  }
}

/*------------
アンカーリンク
--------------*/
.list-anchor-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-family: var(--font_jp);
  font-size: 1.5rem;
}

.list-anchor-link.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

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

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

.list-anchor-link li:last-child::after {
  display: none;
}

.list-anchor-link a {
  display: inline-block;
  position: relative;
  padding-right: 25px;
}

.list-anchor-link a::before {
  content: "";
  background: var(--color_primary);
  -webkit-mask: url(../images/share/icon_arrow_bottom.svg) no-repeat 0 0/contain;
  mask: url(../images/share/icon_arrow_bottom.svg) no-repeat 0 0/contain;
  width: 14px;
  height: 14px;
  position: absolute;
  right: 0;
  top: 9px;
}

@media (hover: hover) {
  .list-anchor-link a:is(:hover, :focus) {
    text-decoration: underline;
  }
}

@media (max-width: 800px) {
  .list-anchor-link {
    display: block;
  }

  .list-anchor-link li {
    margin: 0;
  }

  .list-anchor-link li::after {
    display: none;
  }

  .list-anchor-link a {
    padding: 0 0 0 25px;
  }

  .list-anchor-link a::before {
    right: inherit;
    left: 0;
    top: 6px;
  }
}

/*------------
tel-layout
--------------*/
.tel-layout {
  background: var(--color_tertiary);
  max-width: 800px;
  padding: 30px;
  margin: 0 auto;
  text-align: center;
}

.tel-layout .ttl {
  display: table;
  border-bottom: 1px solid #707070;
  font-family: var(--font_jp);
  font-size: 1.8rem;
  line-height: 1.7;
  padding: 0 0 15px;
  margin: 0 auto 25px;
}

.tel-layout .wrapper {
  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;
  gap: 0 50px;
}

.tel-layout .tel {
  font-family: var(--font_jp);
  font-size: 3rem;
}

.tel-layout .tel i img {
  width: 22px;
  height: auto;
}

.tel-layout .txt {
  display: block;
  font-size: 1.4rem;
}

.tel-layout .btn {
  display: inline-block;
  background: url(../images/share/btn_bg04.jpg) no-repeat center center/cover;
  background-blend-mode: multiply;
  color: #F9F9F9;
  font-family: var(--font_jp);
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.1em;
  min-width: 160px;
  padding: 16px 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.tel-layout .btn i {
  margin-right: 17px;
}

@media (hover: hover) {
  .tel-layout .btn:is(:hover, :focus) {
    background-color: rgba(var(--color_primary), 0.6);
  }
}

.tel-layout .time {
  text-align: left;
  overflow: hidden;
  font-size: 1.4rem;
}

.tel-layout .time dt {
  float: left;
}

.tel-layout .time dd {
  padding-left: 70px;
}

@media (max-width: 800px) {
  .tel-layout {
    padding: 15px;
  }

  .tel-layout .ttl {
    display: block;
    font-size: 1.5rem;
  }

  .tel-layout .wrapper {
    display: block;
    margin-bottom: 15px;
  }

  .tel-layout .wrapper li+li {
    margin: 20px 0 0;
  }

  .tel-layout .time {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}

/*------------
カードデザイン
--------------*/
/*card-layout01*/
.card-layout01>.card-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: var(--color_tertiary);
  padding: 25px;
  position: relative;
}

.card-layout01 .card-ttl {
  display: block;
  font-family: var(--font_jp);
  font-size: 1.8rem;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 20px;
}

.card-layout01 .card-num {
  background: var(--color_primary);
  border-radius: 50px;
  display: table;
  color: #fff;
  font-family: var(--font_en);
  font-size: 1.1rem;
  line-height: 25px;
  padding: 0 20px;
  margin: 0 auto 10px;
}

.card-layout01 .card-img {
  text-align: center;
  margin-bottom: 15px;
}

.card-layout01 .card-desc {
  margin-bottom: 15px;
}

.card-layout01 .card-btn {
  text-align: center;
  margin-top: auto;
}

/*------------
ボックスデザイン
--------------*/
/*box-style01*/
.box-style01 {
  background: var(--color_tertiary);
  padding: 50px 40px;
}

.box-style01 .box-ttl {
  font-family: var(--font_jp);
  font-size: 2rem;
  margin-bottom: 20px;
}

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

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

/*box-style02*/
.box-style02-wrap {
  padding: 80px 0;
  position: relative;
}

.box-style02-wrap:before {
  content: "";
  position: absolute;
  inset: 0 0 0 max(10%, 50% - 434px);
  background: var(--color_tertiary);
  z-index: -1;
}

.box-style02 {
  background: #fff;
  padding: 50px 40px;
}

.box-style02 .box-ttl {
  font-family: var(--font_jp);
  font-size: 2rem;
  margin-bottom: 20px;
}

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

  .box-style02-wrap:before {
    inset: 0;
  }

  .box-style02 {
    padding: 25px;
  }

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

/*box-style03*/
.box-style03 {
  background: var(--color_primary);
  color: #fff;
  padding: 35px;
}

.box-style03>.box-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: var(--font_jp);
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.box-style03>.box-ttl img {
  margin-right: 15px;
  vertical-align: -4px;
}

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

  .box-style03>.box-ttl {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

/*------------
スタッフページ
--------------*/
.staff-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.staff-layout .l-img {
  width: 510px;
  margin-right: 85px;
}

.staff-layout .l-desc {
  margin-top: 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.staff-layout .job {
  font-family: var(--font_jp);
  font-size: 2rem;
  border-bottom: 1px solid var(--color_primary);
  margin-bottom: 10px;
  padding-bottom: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.staff-layout .name-wrap {
  line-height: 1;
  margin-bottom: 10px;
}

.staff-layout .name {
  display: inline;
  font-family: var(--font_jp);
  font-size: 3rem;
}

.staff-layout .kana {
  display: inline;
  font-family: var(--font_jp);
  font-size: 2.2rem;
  margin-left: 20px;
}

.staff-layout .origin {
  font-family: var(--font_jp);
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.bg01 .staff-layout .job {
  color: #fff;
  border-bottom: 1px solid #fff;
}

.bg01 .staff-layout .name-wrap {
  color: #fff;
}

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

  .staff-layout .l-img {
    text-align: center;
    margin: 0 0 30px;
    width: 100%;
  }

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

  .staff-layout .job {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

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

  .staff-layout .name {
    font-size: 2.5rem;
  }

  .staff-layout .kana {
    font-size: 1.4rem;
    margin-left: 15px;
  }

  .staff-layout .origin {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}

/*------------
Member’s page
--------------*/
.password-layout-wrap {
  position: relative;
  padding: 90px 0 116px;
}

.password-layout-wrap:before {
  content: "";
  display: block;
  background: url(../images/under/under_deco01.png) no-repeat center/contain;
  aspect-ratio: 290/283;
  width: 290px;
  height: auto;
  position: absolute;
  left: -135px;
  top: 0;
  z-index: -1;
}

.password-layout-wrap:after {
  content: "";
  display: block;
  background: url(../images/under/under_deco02.png) no-repeat center/contain;
  aspect-ratio: 372/394;
  width: 372px;
  height: auto;
  position: absolute;
  right: -155px;
  bottom: 0;
  z-index: -1;
}

.password-layout {
  background-color: var(--color_tertiary);
  padding: 65px;
  position: relative;
}

.password-layout .password-ttl01 {
  font-family: var(--font_en);
  font-size: 4rem;
  text-align: center;
  margin-bottom: 35px;
}

.password-layout .password-ttl02 {
  font-family: var(--font_en);
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.password-layout .form-password {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 106px;
  grid-template-columns: 1fr 106px;
}

.password-layout .form-password input[type=password] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  border: none;
  font-size: 16px;
  padding: 10px;
  width: 100%;
  min-height: 60px;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}

.password-layout .form-password input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.6rem;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.password-layout .form-password input[type=submit]:hover {
  background-color: #E66413;
}

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

  .password-layout-wrap:before {
    width: 145px;
    left: -67px;
  }

  .password-layout-wrap:after {
    width: 186px;
    right: -77px;
    bottom: -30px;
  }

  .password-layout {
    padding: 25px;
  }

  .password-layout .password-ttl01 {
    font-size: 2.3rem;
    margin-bottom: 15px;
  }

  .password-layout .password-ttl02 {
    font-size: 1.6rem;
  }

  .password-layout .form-password {
    -ms-grid-columns: 1fr 65px;
    grid-template-columns: 1fr 65px;
  }

  .password-layout .form-password input[type=password] {
    padding: 5px 10px;
    min-height: 50px;
  }
}

/*------------
sidebar-layout
--------------*/
.sidebar-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-inline: auto;
  padding: 0 0 90px;
  max-width: 1400px;
}

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

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

.side-contents-wrapper {
  position: sticky;
  top: 11rem;
  overflow: auto;
  max-height: calc(90svh - 11rem);
}

.side-contents-ttl {
  border-bottom: 1px solid var(--color_border);
  font-family: var(--font_jp);
  font-size: 1.8rem;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

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

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

.side-area-links>li {
  padding-left: 15px;
  position: relative;
  font-size: 1.4rem;
}

.side-area-links>li::before {
  content: "";
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent var(--color_text);
  position: absolute;
  top: 12px;
  left: 0;
}

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

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

.side-area-links>li>ul>li {
  padding-left: 15px;
  position: relative;
  font-size: 1.4rem;
}

.side-area-links>li>ul>li::before {
  content: "";
  width: 5px;
  height: 1px;
  background: var(--color_text);
  position: absolute;
  top: 16px;
  left: 0;
}

@media (hover: hover) {

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

.category-ttl {
  font-family: var(--font_jp);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .sidebar-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 0 5vw 50px;
    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: 1.5rem;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }

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

/*------------
投稿パーツ
--------------*/
.no-post {
  white-space: nowrap;
}

/*TOP投稿 top-post-news*/
.top-post-news {
  border-top: 1px solid var(--color_border);
}

.top-post-news .article {
  border-bottom: 1px solid var(--color_border);
}

.top-post-news .article a {
  display: block;
  padding: 15px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.top-post-news .article.no-post {
  padding: 15px 0;
}

.top-post-news .article time {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.5rem;
  margin-right: 20px;
}

.top-post-news .article .ttl {
  font-family: var(--font_jp);
  font-size: 1.8rem;
}

@media (hover: hover) {
  .top-post-news .article a:is(:hover, :focus) {
    background-color: var(--color_tertiary);
  }
}

@media (max-width: 800px) {
  .top-post-news .article {
    border-bottom: 2px dotted #D3D3D3;
  }

  .top-post-news .article a {
    padding: 10px 0;
  }

  .top-post-news .article time {
    font-size: 1.4rem;
  }

  .top-post-news .article .ttl {
    font-size: 1.4rem;
  }
}

/*TOP投稿 top-post-blog */
/*下層投稿 u-post-live */
.top-post-blog,
.u-post-live {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 35px 1fr 35px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.top-post-blog .article,
.u-post-live .article {
  min-width: 0;
}

.top-post-blog .list-img,
.u-post-live .list-img {
  margin-bottom: 10px;
}

@media (hover: hover) {

  .top-post-blog .list-img a,
  .u-post-live .list-img a {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }

  .top-post-blog .list-img a:is(:hover, :focus),
  .u-post-live .list-img a:is(:hover, :focus) {
    opacity: 0.7;
  }
}

.top-post-blog .list-img a img,
.u-post-live .list-img a img {
  border: 1px solid #D9D9D9;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 3/2;
}

.top-post-blog .list-data,
.u-post-live .list-data {
  margin-bottom: 10px;
  line-height: 1.5;
}

.top-post-blog .list-data time,
.u-post-live .list-data time {
  display: inline-block;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.4rem;
  line-height: 1;
}

.top-post-blog .list-ttl,
.u-post-live .list-ttl {
  font-family: var(--font_jp);
  font-size: 1.6rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 15px;
}

.top-post-blog .list-ttl a,
.u-post-live .list-ttl a {
  position: relative;
}

.top-post-blog .list-ttl a::after,
.u-post-live .list-ttl a::after {
  content: "";
  position: absolute;
  width: 100%;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--color_primary);
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

@media (hover: hover) {

  .top-post-blog .list-ttl a:is(:hover, :focus)::after,
  .u-post-live .list-ttl a:is(:hover, :focus)::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
}

.top-post-blog .category,
.u-post-live .category {
  background: var(--color_secondary);
  border: 1px solid var(--color_secondary);
  color: #fff;
  display: inline-block;
  font-family: var(--font_jp);
  font-size: 1.2rem;
  line-height: 1;
  padding: 5px 8px;
  margin: 0 10px 0 0;
}

@media (max-width: 800px) {
  .u-post-live-wrap {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .u-post-live-wrap:before {
    content: "横にスクロールできます。";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat left center/20px;
    min-height: 16px;
    font-size: 1.3rem;
    padding: 0 0 0 30px;
    margin-bottom: 5px;
  }

  .u-post-live-wrap .u-post-live {
    width: 800px;
  }
}

/*TOP投稿 top-post-info*/
/*下層投稿 u-post-info*/
.top-post-info .article a,
.u-post-info .article a {
  display: block;
  padding: 12px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.top-post-info .article.no-post,
.u-post-info .article.no-post {
  padding: 12px 0;
}

.top-post-info .article time,
.u-post-info .article time {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.3rem;
  margin-right: 20px;
}

.top-post-info .article .ttl,
.u-post-info .article .ttl {
  font-family: var(--font_jp);
  font-size: 1.7rem;
}

@media (hover: hover) {

  .top-post-info .article a:is(:hover, :focus),
  .u-post-info .article a:is(:hover, :focus) {
    background-color: rgba(255, 255, 255, 0.8);
  }
}

@media (hover: hover) {
  .u-post-info .article a:is(:hover, :focus) {
    background-color: var(--color_tertiary);
  }
}

.u-info-layout {
  background: #fff;
  border: 1px solid var(--color_text);
  padding: 50px;
}

.u-info-layout .l-ttl {
  font-family: var(--font_jp);
  font-size: 2.2rem;
  border-bottom: 1px solid var(--color_text);
  padding: 0 0 20px;
  margin-bottom: 20px;
}

.u-info-layout .l-btn {
  text-align: center;
  margin-top: 30px;
}

@media (max-width: 800px) {

  .top-post-info .article a,
  .u-post-info .article a {
    padding: 10px 0;
  }

  .top-post-info .article time,
  .u-post-info .article time {
    font-size: 1.2rem;
    margin-right: 10px;
  }

  .top-post-info .article .ttl,
  .u-post-info .article .ttl {
    font-size: 1.4rem;
  }

  .u-info-layout {
    padding: 25px;
  }

  .u-info-layout .l-ttl {
    font-size: 1.8rem;
    padding: 0 0 15px;
    margin-bottom: 20px;
  }

  .u-info-layout .l-btn {
    text-align: center;
    margin-top: 30px;
  }
}

/*TOP投稿 top-post-voice*/
/*下層投稿 u-post-voice*/
.top-post-voice .splide__pagination,
.u-post-voice .splide__pagination {
  bottom: 0;
}

.top-post-voice .splide__arrow,
.u-post-voice .splide__arrow {
  background: #00AFCC;
  top: calc(50% - 20px);
}

.top-post-voice .splide__arrow svg,
.u-post-voice .splide__arrow svg {
  fill: #fff;
}

.top-post-voice .splide,
.u-post-voice .splide {
  padding: 0 85px 40px;
}

.top-post-voice .article,
.u-post-voice .article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 213px;
}

.top-post-voice .article a,
.u-post-voice .article a {
  background: #fff;
  display: block;
  padding: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 100%;
}

.top-post-voice .article.no-post,
.u-post-voice .article.no-post {
  padding: 30px;
}

.top-post-voice .article time,
.u-post-voice .article time {
  display: block;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.5rem;
  margin: 0 0 25px;
}

.top-post-voice .article .ttl,
.u-post-voice .article .ttl {
  font-family: var(--font_jp);
  font-size: 1.8rem;
  line-height: 1.83;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media (hover: hover) {

  .top-post-voice .article a:is(:hover, :focus),
  .u-post-voice .article a:is(:hover, :focus) {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    scale: 0.95;
  }
}

@media (max-width: 800px) {

  .top-post-voice .splide__pagination,
  .u-post-voice .splide__pagination {
    bottom: 0;
  }

  .top-post-voice .splide__arrow,
  .u-post-voice .splide__arrow {
    background: #00AFCC;
    top: calc(50% - 20px);
  }

  .top-post-voice .splide,
  .u-post-voice .splide {
    padding: 0 45px 40px;
  }

  .top-post-voice .article,
  .u-post-voice .article {
    min-height: 0;
  }

  .top-post-voice .article a,
  .u-post-voice .article a {
    padding: 20px;
  }

  .top-post-voice .article.no-post,
  .u-post-voice .article.no-post {
    padding: 20px;
  }

  .top-post-voice .article time,
  .u-post-voice .article time {
    font-size: 1.3rem;
    margin: 0 0 15px;
  }

  .top-post-voice .article .ttl,
  .u-post-voice .article .ttl {
    font-size: 1.6rem;
  }
}

.u-post-voice-wrap {
  padding: 0 0 85px;
  position: relative;
}

.u-post-voice-wrap:before {
  content: "";
  position: absolute;
  inset: 50% 0 0 max(5%, 50% - 614px);
  background: var(--color_tertiary);
  z-index: -2;
}

.u-post-voice-wrap:after {
  content: "";
  position: absolute;
  inset: 90px 0 90px max(10%, 50% - 377px);
  background: url(../images/share/bg01.jpg) no-repeat center/cover;
  z-index: -1;
}

.u-post-voice-wrap .container {
  padding: 110px 0 75px;
}

@media (max-width: 800px) {
  .u-post-voice-wrap {
    padding: 0 0 60px;
  }

  .u-post-voice-wrap:before {
    content: none;
  }

  .u-post-voice-wrap:after {
    inset: 80px 0 0;
  }

  .u-post-voice-wrap .container {
    padding: 0;
  }

  .u-post-voice-wrap .u-post-voice {
    padding: 60px 0 0;
  }
}

/*list-post-type01*/
.list-post-type01 {
  border-top: 1px solid var(--color_border);
}

.list-post-type01>.article {
  border-bottom: 1px solid var(--color_border);
}

.list-post-type01 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  padding: 15px 35px 15px 0;
  position: relative;
}

.list-post-type01 a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--color_primary);
  border-right: 2px solid var(--color_primary);
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(50%) rotate(45deg);
  transform: translateY(50%) rotate(45deg);
}

@media (hover: hover) {
  .list-post-type01 a:is(:hover, :focus) {
    background-color: var(--color_tertiary);
  }

  .list-post-type01 a:is(:hover, :focus) .list-ttl {
    text-decoration: underline;
  }
}

.list-post-type01 .list-img {
  width: 150px;
  margin-right: 25px;
}

.list-post-type01 .list-img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 105px;
  border: 1px solid var(--color_border);
}

.list-post-type01 .list-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.4rem;
}

.list-post-type01 time {
  display: block;
  display: inline-block;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.4rem;
  line-height: 1;
}

.list-post-type01 .list-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.list-post-type01 .category {
  background: var(--color_secondary);
  border: 1px solid var(--color_secondary);
  color: #fff;
  display: inline-block;
  font-family: var(--font_jp);
  font-size: 1.1rem;
  line-height: 1;
  padding: 5px 8px;
  margin: 5px 10px 0 0;
}

.list-post-type01 .no-post {
  padding: 25px 0;
}

@media (max-width: 800px) {
  .list-post-type01 a {
    padding: 20px 25px 20px 0;
  }

  .list-post-type01 a::before {
    right: 0;
  }

  .list-post-type01 .list-img {
    width: 120px;
    margin-right: 20px;
  }

  .list-post-type01 .list-img img {
    height: 90px;
  }

  .list-post-type01 .list-desc {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .list-post-type01 time {
    font-size: 1rem;
  }

  .list-post-type01 .list-ttl {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }

  .list-post-type01 .category {
    font-size: 1rem;
  }

  .list-post-type01 .no-post {
    padding: 25px 0;
  }
}

/*list-post-type02*/
.list-post-type02 {
  border-top: 1px solid var(--color_border);
}

.list-post-type02 .article {
  border-bottom: 1px solid var(--color_border);
}

.list-post-type02 .article a {
  display: block;
  padding: 15px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.list-post-type02 .article.no-post {
  padding: 15px 0;
}

.list-post-type02 .article time {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.5rem;
  margin-right: 20px;
}

.list-post-type02 .article .ttl {
  font-family: var(--font_jp);
  font-size: 1.8rem;
}

@media (hover: hover) {
  .list-post-type02 .article a:is(:hover, :focus) {
    background-color: var(--color_tertiary);
  }
}

@media (max-width: 800px) {
  .list-post-type02 .article {
    border-bottom: 2px dotted #D3D3D3;
  }

  .list-post-type02 .article a {
    padding: 10px 0;
  }

  .list-post-type02 .article time {
    font-size: 1.4rem;
  }

  .list-post-type02 .article .ttl {
    font-size: 1.4rem;
  }
}

/*list-post-type03*/
.list-post-type03 .article {
  display: flow-root;
}

.list-post-type03 .article+.article {
  margin-top: 50px;
}

.list-post-type03 .list-ttl {
  border-bottom: 1px solid var(--color_border);
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 2rem;
  position: relative;
  padding: 0 0 15px;
  margin: 0 0 25px;
}

.list-post-type03 .list-ttl a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (hover: hover) {
  .list-post-type03 .list-ttl a:is(:hover, :focus) {
    opacity: 0.5;
  }
}

.list-post-type03 .list-img {
  float: left;
  margin: 0 30px 0 0;
  width: 250px;
}

.list-post-type03 .list-img img {
  border: 1px solid var(--color_border);
  width: 250px;
  height: 180px;
  -o-object-fit: cover;
  object-fit: cover;
}

.list-post-type03 .list-img a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (hover: hover) {
  .list-post-type03 .list-img a:is(:hover, :focus) {
    opacity: 0.5;
  }
}

.list-post-type03 .list-data {
  font-size: 1.3rem;
  margin: 0 0 5px;
}

.list-post-type03 time {
  display: inline-block;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.4rem;
  line-height: 1;
}

.list-post-type03 .category {
  background: var(--color_secondary);
  border: 1px solid var(--color_secondary);
  color: #fff;
  display: inline-block;
  font-family: var(--font_jp);
  font-size: 1.2rem;
  line-height: 1;
  padding: 5px 8px;
  margin: 0 10px 0 0;
}

.list-post-type03 .list-txt {
  margin: 0 0 15px;
}

.list-post-type03 .list-btn {
  text-align: right;
}

.list-post-type03 .list-btn a {
  border: 1px solid var(--color_primary);
  background: #fff;
  border-radius: 50px;
  display: inline-block;
  color: var(--color_primary);
  font-family: var(--font_jp);
  text-align: center;
  padding: 5px 40px 6px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (hover: hover) {
  .list-post-type03 .list-btn a:is(:hover, :focus) {
    background: var(--color_primary);
    color: #fff;
  }
}

@media (max-width: 800px) {
  .list-post-type03 {
    margin: 0 0 50px;
  }

  .list-post-type03 .article+.article {
    margin-top: 20px;
  }

  .list-post-type03 .list-ttl {
    font-size: 1.8rem;
    padding: 0 0 7px;
    margin: 0 0 15px;
  }

  .list-post-type03 .list-img {
    float: left;
    margin: 0 15px 0 0;
    width: 40%;
  }

  .list-post-type03 .list-img img {
    width: 100%;
    height: 25vw;
  }

  .list-post-type03 .list-desc {
    margin: -5px 0 0;
  }

  .list-post-type03 time {
    display: inline-block;
    color: var(--color_primary);
    font-family: var(--font_en);
    font-size: 1.2rem;
    line-height: 1;
  }

  .list-post-type03 .list-txt {
    font-size: 1.1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0 0 5px;
  }

  .list-post-type03 .list-btn {
    margin-top: 15px;
  }

  .list-post-type03 .list-btn a {
    font-size: 1.1rem;
    text-align: center;
    padding: 2px 15px 4px;
  }
}

/*症例紹介*/
.case-layout {
  border: 1px solid #707070;
  background: #fff;
  padding: 50px;
}

.case-layout time {
  display: inline-block;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.4rem;
  line-height: 1;
}

.case-layout .category {
  background: var(--color_secondary);
  border: 1px solid var(--color_secondary);
  color: #fff;
  display: inline-block;
  font-family: var(--font_jp);
  font-size: 1.2rem;
  line-height: 1;
  padding: 5px 8px;
  margin: 0 10px 0 0;
}

.case-layout .l-ttl {
  font-family: var(--font_jp);
  font-size: 3rem;
  margin-bottom: 30px;
}

.case-layout .post-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.case-layout .before-after {
  margin-bottom: 30px;
}

.case-layout .l-table {
  background-color: #fff;
  border: 1px solid var(--color_border);
}

.case-layout .l-table:not(:last-child) {
  margin-bottom: 60px;
}

.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr td,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
.case-layout .l-table th,
.case-layout .l-table td {
  border: 1px solid var(--color_border);
  background: #fff;
  line-height: 1.5;
  font-size: 1.5rem;
  padding: 15px;
}

.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
.case-layout .l-table th {
  background: var(--color_primary);
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.5rem;
  vertical-align: top;
  text-align: left;
  width: 25%;
}

.case-layout .l-btn {
  text-align: center;
  margin-top: 50px;
}

.case-layout .l-item {
  margin-top: 50px;
}

.case-layout .item-ttl {
  border-bottom: 1px solid var(--color_text);
  font-family: var(--font_jp);
  font-size: 1.8rem;
  position: relative;
  padding: 0 0 12px;
  margin: 0 0 25px;
}

.case-layout .item-ttl::after {
  content: "";
  width: 25px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

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

.before-after {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5% 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5%;
}

.before-after .item {
  text-align: center;
  position: relative;
}

.before-after .item {
  display: -ms-grid;
  display: grid;
  place-items: center;
  height: 300px;
  position: relative;
}

.before-after .item img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  max-height: 300px;
}

.before-after p {
  text-align: center;
}

.before-after p::before,
.before-after p::after {
  content: "-";
  margin: 0 5px;
}

.list-case-details>li {
  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;
}

.list-case-details>li+li {
  border-top: 1px dashed #c8c8c8;
  margin-top: 30px;
  padding-top: 30px;
}

.list-case-details .list-img {
  width: 35%;
  margin-left: 30px;
}

.list-case-details .list-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.list-case-details .list-ttl {
  font-size: 1.7rem;
}

@media (max-width: 800px) {
  .case-layout {
    padding: 30px 25px;
  }

  .case-layout .l-ttl {
    font-size: 2.3rem;
    margin-bottom: 20px;
  }

  .case-layout .post-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .case-layout .before-after {
    margin-bottom: 30px;
  }

  .case-layout .l-table:not(:last-child) {
    margin-bottom: 40px;
  }

  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table,
  .case-layout .l-table {
    border-color: #bbb;
    border-width: 1px;
  }

  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
  .case-layout .l-table th,
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr td,
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
  .case-layout .l-table th,
  .case-layout .l-table td {
    display: block;
    border: none;
    padding: 10px;
    font-size: 1.4rem;
    width: 100%;
  }

  .case-layout .l-btn {
    margin-top: 30px;
  }

  .case-layout .l-item {
    margin-top: 30px;
  }

  .case-layout .item-ttl {
    border-bottom: 1px solid var(--color_text);
    font-size: 1.8rem;
    position: relative;
    padding: 0 0 12px;
    margin: 0 0 25px;
  }

  .case-layout .item-ttl::after {
    content: "";
    width: 25px;
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 0;
  }

  .case-layout+.case-layout {
    margin-top: 30px;
  }

  .before-after {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }

  .before-after .item {
    height: auto;
  }

  .list-case-details>li {
    display: block;
  }

  .list-case-details .list-img {
    width: 100%;
    margin: 0 0 25px;
  }
}

/*詳細ページ*/
.l-post-single .l-ttl {
  font-family: var(--font_jp);
  font-size: 3.5rem;
  margin: 0 0 40px;
}

.l-post-single .post-data {
  margin: 0 0 20px;
}

.l-post-single .post-data time {
  display: inline-block;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.4rem;
  line-height: 1;
  vertical-align: -1px;
  margin: 0 20px 0 0;
}

.l-post-single .post-data .category {
  background: var(--color_secondary);
  border: 1px solid var(--color_secondary);
  color: #fff;
  display: inline-block;
  font-family: var(--font_jp);
  font-size: 1.2rem;
  line-height: 1;
  padding: 5px 8px;
  margin: 0 10px 0 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media (hover: hover) {
  .l-post-single .post-data a.category:is(:hover, :focus) {
    background: var(--color_primary);
    color: #fff;
  }
}

@media (max-width: 800px) {
  .l-post-single .l-ttl {
    font-size: 2.8rem;
    margin: 0 0 30px;
  }
}

/*postdata*/
.postdata {
  overflow-wrap: break-word;
}

.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 {
  position: relative;
  padding-left: 15px;
}

.postdata ul li:before {
  content: "";
  background: var(--color_primary);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 1em;
  width: 5px;
  height: 5px;
}

.postdata ol {
  counter-reset: number;
}

.postdata ol li {
  padding-left: 30px;
  position: relative;
}

.postdata ol li::before {
  background-color: var(--color_primary);
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-size: 1.1rem;
  position: absolute;
  top: 2px;
  left: 0;
  line-height: 20px;
  text-align: center;
  padding-left: 2px;
  width: 20px;
  height: 20px;
}

.postdata ol li>ol {
  counter-reset: number;
}

.postdata sub {
  font-size: 1.1rem;
  position: relative;
  bottom: -0.1em;
}

.postdata sup {
  font-size: 1.1rem;
  position: relative;
  top: -0.1em;
}

@media (any-hover: hover) {
  .postdata a:hover {
    text-decoration: none;
  }
}

.postdata sub {
  font-size: 1.1rem;
  position: relative;
  bottom: -0.1em;
}

.postdata .wp-block-button__link {
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  border-radius: 2px;
  color: #fff;
  font-size: 1.6rem;
  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::after {
  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;
}

.wp-block-button__link:hover {
  opacity: 1;
  background-color: #fff;
  color: var(--color_primary);
}

/*ページャー*/
.post-number {
  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;
  margin: 50px 0 0;
}

.post-number a {
  background: #fff;
  color: var(--color_text);
  display: block;
  padding: 0 10px;
  margin: 0 5px 10px;
  line-height: 40px;
  text-align: center;
  min-width: 40px;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (hover: hover) {
  .post-number a:is(:hover, :focus) {
    background: var(--color_primary);
    color: #fff;
  }
}

.post-number .current {
  background: var(--color_primary);
  color: #fff;
  display: block;
  margin: 0 5px 10px;
  line-height: 40px;
  text-align: center;
  min-width: 40px;
}

.post-number-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font_jp);
  line-height: 1;
  overflow: hidden;
  margin: 50px 0 0;
}

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

.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 center/contain;
  display: inline-block;
  margin-right: 1.5rem;
  width: 2.2rem;
  height: 2.2rem;
}

.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 center/contain;
  display: inline-block;
  margin-left: 1.5rem;
  width: 2.2rem;
  height: 2.2rem;
}

.post-number-single a.all {
  padding: 0.2rem 0 0;
}

@media (hover: hover) {

  .post-number-single a:hover,
  .post-number-single a:focus {
    opacity: 0.5;
  }
}

/*-----------------------------------------------------------
common
-----------------------------------------------------------*/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.fade {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media (hover: hover) {
  .fade:is(:hover, :focus) {
    opacity: 0.5;
  }
}

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

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, rgba(250, 134, 62, 0.4)));
  background: linear-gradient(transparent 50%, rgba(250, 134, 62, 0.4) 50%);
}

.red {
  color: #F44336;
}

.notice {
  font-size: 1.3rem;
  text-indent: -1rem;
  padding: 0 0 0 15px;
}

.sp-map iframe,
.sp-map object,
.sp-map embed {
  vertical-align: top;
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

.youtube iframe {
  width: 100% !important;
  height: 100% !important;
}

.zoom-img {
  display: block;
  position: relative;
  overflow: hidden;
}

.zoom-img::after {
  content: "";
  background: #E66413 url(../images/share/icon_zoom.svg) no-repeat center/22px auto;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 2;
}

.zoom-img img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
}

@media (hover: hover) {
  .zoom-img:is(:hover, :focus) img {
    scale: 1.05;
    opacity: 0.6;
  }
}

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

.mb5 {
  margin-bottom: 5px !important;
}

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

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

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

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

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

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

@media (max-width: 800px) {

  /*-----------------------------------------------------------
  common SP
  -----------------------------------------------------------*/
  .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;
  }

  .sp-map {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
  }

  .sp-map iframe,
  .sp-map object,
  .sp-map embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/*------------
btn
--------------*/
/*btn-style01 */
.btn-style01 {
  display: inline-block;
  border: 1px solid #333;
  color: #333;
  font-family: var(--font_jp);
  font-size: 1.6rem;
  line-height: 1.1;
  text-align: left;
  padding: 2rem 5rem 2rem 2.5rem;
  position: relative;
  min-width: 270px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.btn-style01:after {
  content: "";
  display: block;
  background: url(../images/share/btn-arrow.svg) no-repeat center/contain;
  width: 1.6rem;
  height: 1.7rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (hover: hover) {
  .btn-style01:is(:hover, :focus) {
    border-color: var(--color_primary);
    background-color: var(--color_primary);
    color: #fff;
  }

  .btn-style01:is(:hover, :focus):after {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
}

.btn-style01.btn-white {
  border: 1px solid #fff;
  color: #fff;
}

.btn-style01.btn-white:after {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

@media (hover: hover) {
  .btn-style01.btn-white:is(:hover, :focus) {
    border-color: #fff;
    background-color: #fff;
    color: var(--color_text);
  }

  .btn-style01.btn-white:is(:hover, :focus):after {
    -webkit-filter: none;
    filter: none;
  }
}

.btn-style01.btn-small {
  min-width: 143px;
}

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

.btn-contact {
  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;
  gap: 0 10px;
  background: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.6rem;
  text-align: center;
  padding: 1.2rem 2.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  min-width: 224px;
}

.btn-contact:before {
  content: "";
  display: inline-block;
  background: url(../images/share/icon_mail.svg) no-repeat center/contain;
  width: 20px;
  height: 16px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

@media (hover: hover) {
  .btn-contact:is(:hover, :focus) {
    background-color: oklch(from var(--color_primary) 0.65 c h);
  }
}

@media (max-width: 800px) {
  .btn-contact {
    padding: 1.5rem 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.tel-link {
  display: inline-block;
  font-family: var(--font_en);
  font-size: 2.4rem;
  line-height: 1;
}

.tel-link:before {
  content: "" /"Tel";
  background: url(../images/share/icon_tel.svg) no-repeat center/contain;
  width: 1.9rem;
  height: 1.9rem;
  display: inline-block;
  margin-right: 5px;
}

.btn-wrap {
  margin-top: 30px;
  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;
  gap: 15px 20px;
}

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

.btn-wrap.tar {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media (max-width: 800px) {
  .btn-wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/*-----------------------------------------------------------
アニメーション
-----------------------------------------------------------*/
@-webkit-keyframes floating01 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes floating01 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes floating02 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes floating02 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.is-fade {
  opacity: 0;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  -webkit-transform: translate(0, 15%);
  transform: translate(0, 15%);
}

.is-fade.is-action {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.is-card>* {
  opacity: 0;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  -webkit-transform: translate(0, 15%);
  transform: translate(0, 15%);
}

.is-card>*:nth-child(2) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.is-card>*:nth-child(3) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.is-card>*:nth-child(4) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.is-card>*:nth-child(5) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.is-card>*:nth-child(6) {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.is-card.is-action>* {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .is-fade {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }

  .is-card>* {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/*------------
gallery-slider01
--------------*/
.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: 270px;
  left: calc((100% - 872px) / 2);
}

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

.gallery-slider01 .splide__slide img {
  background: var(--color_tertiary);
  max-height: 697px;
  aspect-ratio: 1024/697;
  -o-object-fit: contain;
  object-fit: contain;
}

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

.gallery-slider01 .item-ttl {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 2rem;
  line-height: 1.7;
  margin-bottom: 5px;
}

@media (max-width: 800px) {
  .gallery-slider01 .splide__slide img {
    max-height: 300px;
  }

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

  .gallery-slider01 .item-ttl {
    font-family: var(--font_jp);
    font-size: 1.6rem;
    line-height: 1.4;
  }
}

/*------------
gallery-slider02
--------------*/
@media print {
  .gallery-slider02 {
    display: none;
  }
}

.gallery-slider02 .splide__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.gallery-slider02 .splide__arrow--prev {
  left: -25px;
}

.gallery-slider02 .splide__arrow--next {
  right: -25px;
}

.gallery-slider02 .splide__slide img {
  background: var(--color_tertiary);
  max-height: 697px;
  aspect-ratio: 1024/697;
  -o-object-fit: contain;
  object-fit: contain;
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
}

.gallery-slider02 .thumb-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-gap: 8px;
  margin-top: 20px;
}

.gallery-slider02 .thumb-wrapper:has(.thumb-item:nth-child(8)) {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.gallery-slider02 .thumb-item {
  cursor: pointer;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: calc((100% - 56px) / 8);
  border: 3px solid rgba(255, 255, 255, 0);
}

.gallery-slider02 .thumb-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
}

.gallery-slider02 .thumb-item.is-active {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  border: 3px solid var(--color_primary);
}

@media (max-width: 800px) {
  .gallery-slider02 .thumb-wrapper {
    grid-gap: 3px;
    margin-top: 15px;
  }

  .gallery-slider02 .thumb-wrapper:has(.thumb-item:nth-child(5)) {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .gallery-slider02 .splide__slide img {
    max-height: 300px;
  }

  .gallery-slider02 .thumb-item {
    width: calc((100% - 12px) / 5);
  }
}

/*------------
img-slider
--------------*/
.img-slider .item-img {
  position: relative;
}

.img-slider .item-img figcaption {
  background: #fff;
  font-family: var(--font_en);
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: left;
  padding: 3px 5px;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.img-slider .item-img {
  position: relative;
}

.img-slider .item-img figcaption {
  background: #fff;
  font-family: var(--font_en);
  font-size: 1.3rem;
  line-height: 1.5;
  text-align: left;
  padding: 3px 5px;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.under-slider03-main .splide__track--fade>.splide__list>.splide__slide {
  position: absolute;
}

.under-slider03-main .splide__track--fade>.splide__list>.splide__slide.is-active {
  position: relative;
}

.under-slider03-main .splide__slide {
  display: flex;
  align-content: center;
  text-align: center;
  justify-content: center;
}

.under-slider03-main .splide__slide img,
.under-slider03-main .wp-block-gallery .wp-block-image {
  max-height: 500px;
}


.under-slider03-main .splide__slide img {
  flex: revert;
  object-fit: cover;
}

.under-slider03-thumbnail {
  visibility: visible;
}

.under-slider03-thumbnail>.wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px !important;
  margin-top: 30px;
}

.under-slider03-thumbnail .wp-block-image {
  cursor: pointer;
  filter: grayscale(100%);
  transition: filter 0.3s transform 0.3s;
}

.under-slider03-thumbnail .wp-block-image.is-active {
  filter: grayscale(0%);
  transform: scale(0.9);
}


.under-slider03-thumbnail .wp-block-gallery.has-nested-images figure.wp-block-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 4px;
  height: auto;
}

.under-slider03-thumbnail .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
  width: 100%;
}


.under-slider03-thumbnail figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

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

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

.postdata ul.splide__list li:before {
  content: none;
}

.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 {
  background: #ddd;
  margin-top: 10px;
}

.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__controls {
  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-top: 15px;
}

.splide__controls .splide__pagination {
  position: static;
}

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

@-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__arrow {
  background: none;
  border: none;
  cursor: pointer;
  background: #fff;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  opacity: 1;
  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) {
  opacity: 0.3;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

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

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

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 15px;
  left: 0;
  padding: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #F8F8F8;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 10px;
  margin: 5px;
  opacity: 1;
  padding: 0;
  position: relative;
  -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;
  width: 10px;
}

.splide__pagination__page.is-active {
  background: var(--splide-pagination-color);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide__progress__bar {
  background: var(--splide-progress-color);
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid var(--splide-focus-color);
    outline-offset: -3px;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid var(--splide-focus-color);
    outline-offset: -3px;
  }
}

.splide__toggle {
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #737e80;
  border-radius: 50%;
  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;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  height: 29px;
  width: 29px;
}

.splide__toggle:hover {
  background: var(--splide-toggle-color);
}

.splide__toggle svg {
  fill: #fff;
  -webkit-transition: fill 0.2s ease;
  transition: fill 0.2s ease;
  width: 12px;
  height: auto;
}

.splide__toggle:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide__track--nav>.splide__list>.splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
  border: 3px solid var(--splide-track-color);
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

@media (max-width: 800px) {
  .splide__arrow {
    width: 25px;
    height: 25px;
  }

  .splide__arrow--prev {
    left: 10px;
  }

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

.img-credit {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #fff;
  font-family: var(--font_en);
  font-size: 1.2rem;
  line-height: 1.4;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
  margin: 0;
}

@media (max-width: 800px) {
  .img-credit {
    right: 8px;
    top: 8px;
    font-size: 0.85rem;
  }
}

.img-credit.bottom {
  top: auto;
  bottom: 10px;
}

@media (max-width: 800px) {
  .img-credit.bottom {
    bottom: 8px;
  }
}

.notice {
  font-size: 1.3rem;
  padding: 0 0 0 15px;
}