@charset "UTF-8";
:root {
  --color_primary: #B3A363;
  --color_secondary: #3F4040;
  --font_base: "Noto Sans JP", sans-serif;
  --font_size_base: 1.6rem;
  --font_jp: "Zen Old Mincho", serif;
  --font_en: "Italiana", sans-serif;
  --color_text: #333;
  --color_link: #B3A363;
  --color_bg: #F1EEE9;
}

/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
  -moz-tab-size: 2;
  -o-tab-size: 2;
  tab-size: 2;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
  -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;
}

:where(button) {
  all: unset;
}

:where(a, input, button, textarea, select) {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

textarea {
  resize: block;
}

:where(:focus-visible) {
  outline: 2px solid #2e2c29;
  outline-offset: 2px;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(ul, ol, li) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(em, dfn) {
  font-style: inherit;
}

sup {
  vertical-align: text-top;
  font-size: 0.65em;
  line-height: 1;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.65em;
  line-height: 1;
}

hr {
  border: none;
  -webkit-border-before: 1px solid;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

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

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

::selection {
  background: #d4dcd6;
}

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

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

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

@media (max-width: 800px) {
  :target {
    scroll-margin-top: 0;
  }
}
body,
html {
  min-height: 100svh;
}

body {
  font-family: var(--font_base);
  font-weight: 500;
  font-size: var(--font_size_base);
  color: var(--color_text);
  line-height: 2;
  letter-spacing: 0.1em;
}

main {
  overflow: hidden;
}

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

.link:focus-visible {
  text-decoration: none;
}

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

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

.anchor {
  margin-top: -50px;
  padding-top: 50px;
}

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

a:focus-visible,
button:focus-visible {
  outline: auto;
}

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

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

.container.narrow {
  max-width: 850px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.8;
  letter-spacing: 0.15em;
  font-family: var(--font_jp);
  font-weight: 500;
}

@media (max-width: 800px) {
  /*-------------
  Body
  -------------*/
  body {
    font-size: 1.5rem;
  }
}
/*------------
Common
--------------*/
.btn-tel {
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: 1.8rem;
}

/*------------
Header
--------------*/
.h-logo {
  position: absolute;
  top: 15px;
  left: 30px;
  z-index: 2;
}

.fixed-menu {
  position: fixed;
  top: 115px;
  right: 0;
  z-index: 5;
}
.fixed-menu .item {
  position: relative;
}
.fixed-menu .item + .item::before {
  content: "";
  background: #fff;
  width: 67px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.fixed-menu .item > a {
  display: grid;
  place-content: center;
  width: 117px;
  height: 115px;
  color: #fff;
  background: var(--color_primary);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.fixed-menu svg {
  fill: currentColor;
  margin: 0 auto 7px;
}
.fixed-menu .txt {
  font-family: var(--font_jp);
  font-weight: 500;
  text-align: center;
}
@media (any-hover: hover) {
  .fixed-menu .item a:hover {
    background: #c4b785;
  }
}
.fixed-menu .item a:focus-visible {
  background: #c4b785;
}

@media (max-width: 800px) {
  .h-logo {
    top: 10px;
    left: 10px;
    width: 200px;
  }
  .fixed-menu {
    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: var(--color_secondary);
  border: 1px solid var(--color_secondary);
  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: 115px;
  height: 115px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 999;
}
.navi-menu-btn .hamburger-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 55px;
  height: 2px;
  -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: -13px;
}
.navi-menu-btn .hamburger-line::after {
  top: 2px;
}
.navi-menu-btn[aria-expanded=true] {
  background: transparent;
  width: 55px;
  height: 55px;
  top: 30px;
  right: 30px;
  border: none;
}
.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(45deg);
          transform: rotate(45deg);
}
.navi-menu-btn[aria-expanded=true] .hamburger-line::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.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);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px;
}
.navi-menu-btn .hamburger-ttl {
  font-family: var(--font_jp);
  font-weight: 500;
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 27px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
  line-height: 1;
}
.navi-menu-btn[aria-expanded=true] .hamburger-ttl {
  display: none;
}

/* 中身 */
.g-navi-contents {
  display: none;
  background: rgba(64, 64, 64, 0.9);
  color: #fff;
  padding: 60px 70px 55px;
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transition: opacity 0.5s, display 0.5s;
  transition: opacity 0.5s, display 0.5s;
  transition-behavior: allow-discrete;
  z-index: 998;
  opacity: 0;
  width: 500px;
}

.g-navi-contents.is-open {
  display: block;
  pointer-events: auto;
  visibility: visible;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  opacity: 1;
}
@starting-style {
  .g-navi-contents.is-open {
    opacity: 0;
  }
}

/* レイアウト等 */
.g-navi-layout .item + .item {
  margin-top: 30px;
}

.g-navi-list li + li {
  margin-top: 14px;
}
.g-navi-list li a {
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.8;
}
@media (any-hover: hover) {
  .g-navi-list li a:hover {
    color: var(--color_primary);
  }
}
.g-navi-list li a:focus-visible {
  color: var(--color_primary);
}

.btn-style03 {
  display: block;
  padding: 20px 45px 20px 25px;
  background: var(--color_secondary);
  color: #fff;
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: 2rem;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn-style03::after {
  content: "";
  -webkit-mask: url(../images/share/btn_arrow_right.svg) no-repeat center/contain;
          mask: url(../images/share/btn_arrow_right.svg) no-repeat center/contain;
  background: currentColor;
  width: 26px;
  height: 9px;
  position: absolute;
  right: 35px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (any-hover: hover) {
  .btn-style03:hover {
    background: #656767;
  }
}
.btn-style03:focus-visible {
  background: #656767;
}

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

body.is-hidden {
  display: flow-root;
  overflow: clip;
}

.sp-navi {
  display: none;
}

@media (max-width: 800px) {
  /*-----------------------------------------------------------
  g-navi SP
  -----------------------------------------------------------*/
  /* ボタン */
  .navi-menu-btn {
    display: none;
  }
  /* 中身 */
  .g-navi-contents {
    padding: 50px 5vw 100px;
    width: 100%;
    left: 0;
    bottom: 0;
  }
  .g-navi-contents.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    opacity: 1;
  }
  /* レイアウト等 */
  .g-navi-layout {
    display: block;
  }
  .g-navi-layout .item + .item {
    margin: 50px 0 0;
  }
  .g-navi-list li a {
    font-size: 1.5rem;
  }
  /* SPメニュー */
  .sp-navi {
    display: block;
  }
  :root {
    --navi-background: #B3A363;
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --menu-btn: #fff;
    --navi-font: "Zen Old Mincho", serif;
  }
  /* ボタン類 */
  .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: 65px;
    z-index: 10000;
  }
  .sp-navi-btns > * {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: relative;
  }
  .sp-navi-btns .item {
    font-size: 10px;
    font-family: var(--navi-font);
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
    position: relative;
  }
  .sp-navi-btns .item + .item::before {
    content: "";
    width: 1px;
    height: 60%;
    background: var(--navi-border-color);
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .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: 10px 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;
    fill: var(--svg-stroke);
  }
  .sp-navi-btns .item .ttl {
    display: block;
  }
  .sp-menu-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-bottom: 10px;
    background: var(--color_secondary);
  }
  .sp-menu-btn .ttl {
    display: block;
    color: var(--navi-text-color);
    font-family: var(--navi-font);
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
  }
  .sp-menu-btn span:not(.ttl) {
    background: var(--menu-btn);
    position: absolute;
    left: 50%;
    width: 22px;
    height: 1px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .sp-menu-btn span:not(.ttl):nth-of-type(1) {
    top: 20px;
  }
  .sp-menu-btn span:not(.ttl):nth-of-type(2) {
    top: 26px;
  }
  .sp-menu-btn span:not(.ttl):nth-of-type(3) {
    top: 32px;
  }
  .sp-menu-btn.is-open span:nth-of-type(1) {
    -webkit-transform: translate(-50%, 6px) rotate(-45deg);
            transform: translate(-50%, 6px) rotate(-45deg);
  }
  .sp-menu-btn.is-open span:nth-of-type(2) {
    opacity: 0;
  }
  .sp-menu-btn.is-open span:nth-of-type(3) {
    -webkit-transform: translate(-50%, -6px) rotate(45deg);
            transform: translate(-50%, -6px) rotate(45deg);
  }
}
/*------------
Hero
--------------*/
.sec-bg01 {
  background: url(../images/sec_bg01.jpg) no-repeat center/cover;
}

.hero {
  position: relative;
  z-index: 1;
}

.hero-en {
  font-family: var(--font_en);
  font-weight: 400;
  font-size: 29.9rem;
  color: #fff;
  line-height: 1;
  text-align: center;
  position: absolute;
  bottom: -150px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  overflow: hidden;
}

.hero-img img {
  width: 100%;
  height: 900px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-mask: url(../images/hero_mask.png) no-repeat bottom center/cover;
          mask: url(../images/hero_mask.png) no-repeat bottom center/cover;
}

.hero-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  max-width: 1370px;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hero-desc {
  margin-bottom: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.list-hero-point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.list-hero-point li {
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: clamp(1.5rem, 1.39vw, 2.5rem);
  color: #fff;
  line-height: 1;
  padding: 20px 15px;
  background: #A09876;
}

.hero-catch-sub {
  font-family: var(--font_jp);
  font-weight: 500;
  line-height: 1.5;
  padding: 20px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1.7rem, 1.78vw, 3.2rem);
  color: #000;
}

.hero-catch-main {
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: clamp(3rem, 3vw, 5.4rem);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  padding: 0.05em 0.3em;
  background-color: #fff;
  line-height: 1.8;
}
.hero-catch-main em {
  color: var(--color_primary);
}

.hero-bnr {
  max-width: 600px;
  width: 33.33vw;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid #fff;
  color: #fff;
  background: url(../images/hero_img01.jpg) no-repeat center/cover;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: grid;
  place-content: center;
  font-family: var(--font_jp);
  font-weight: 500;
  padding-top: 25px;
}
.hero-bnr::before {
  content: "";
  background: oklch(from #333 l c h/0.5);
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bnr .item + .item {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid currentColor;
}
.hero-bnr .bnr-txt {
  font-size: clamp(1.5rem, 1.5vw, 2.7rem);
  text-align: center;
}
.hero-bnr .bnr-txt .txt-box {
  padding: 0.28em 0.2em;
  border: 1px solid currentColor;
}
.hero-bnr .bnr-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: clamp(1.5rem, 1.5vw, 2.7rem);
  position: relative;
  line-height: 1.8;
  padding: 3px 40px 3px 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hero-bnr .bnr-btn::after {
  content: "";
  -webkit-mask: url(../images/hero_btn_arrow.svg) no-repeat center/contain;
          mask: url(../images/hero_btn_arrow.svg) no-repeat center/contain;
  background: currentColor;
  width: 26px;
  height: 9px;
  position: absolute;
  right: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hero-bnr .bnr-btn em {
  padding: 0 0.2em;
  background: #B3A363;
}
@media (any-hover: hover) {
  .hero-bnr .bnr-btn:hover {
    background: oklch(from #fff l c h/0.2);
  }
}

@media (max-width: 800px) {
  .hero-img img {
    height: 300px;
  }
  .hero-wrapper {
    display: block;
    position: relative;
    bottom: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
    margin: -135px auto 0;
  }
  .hero-desc {
    margin-bottom: 20px;
  }
  .list-hero-point {
    gap: 10px;
  }
  .list-hero-point li {
    font-size: 1.5rem;
    padding: 10px 15px;
  }
  .hero-catch-sub {
    font-size: 1.7rem;
    padding: 10px 0;
  }
  .hero-catch-main {
    font-size: 3rem;
  }
  .hero-bnr {
    width: 100%;
    padding-top: 15px;
  }
  .hero-bnr .item + .item {
    padding-top: 10px;
    margin-top: 10px;
  }
  .hero-bnr .bnr-txt {
    font-size: 1.5rem;
  }
  .hero-bnr .bnr-btn {
    font-size: 1.5rem;
  }
  .hero-en {
    display: none;
  }
}
/*------------
Top contents
--------------*/
/* sec01 */
.sec01 {
  padding: 150px 0;
}

.price-layout {
  border: 1px solid #707070;
  position: relative;
}
.price-layout .pricetag {
  position: absolute;
  top: -80px;
  right: -75px;
  z-index: 2;
  width: 230px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(148deg, #CEBB66 0%, #E5D79D 50%, #CAB65C 100%);
  color: #fff;
  font-family: var(--font_jp);
  font-weight: 400;
  font-size: 5.3rem;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  display: grid;
  place-items: center;
}
.price-layout .pricetag em {
  font-size: 9.3rem;
}
.price-layout .l-ttl {
  font-size: 4.8rem;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  padding: 7px 20px;
  background: var(--color_secondary);
}
.price-layout .l-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.price-layout .l-img {
  width: 45.83%;
}
.price-layout .l-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.price-layout .l-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #fff;
  padding: 50px 85px 65px 50px;
}
.price-layout .l-item + .l-item {
  margin-top: 50px;
}
.price-layout .item-ttl {
  font-size: 2.8rem;
  line-height: 1.42;
  letter-spacing: 0.05em;
  padding: 13px 20px;
  border: 1px solid #3F4040;
  color: #3F4040;
  margin-bottom: 15px;
}
.price-layout .item-ttl small {
  font-size: 1.8rem;
}
.price-layout .item-txt {
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: 3rem;
}
.price-layout .item-txt .txt-none {
  text-decoration-line: line-through;
  text-decoration-color: #BF0000;
  text-decoration-thickness: 1px;
}
.price-layout .price {
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: 9.3rem;
  color: #BF0000;
  line-height: 1;
  letter-spacing: 0;
  padding-left: 45px;
  position: relative;
}
.price-layout .price .unit {
  font-size: 5rem;
}
.price-layout .price small {
  font-size: 3rem;
}
.price-layout .price::before {
  content: "";
  background: url(../images/price_arrow.svg) no-repeat center/contain;
  width: 27px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.price-layout .l-btn {
  margin-top: 30px;
}

.btn-style01 {
  display: block;
  padding: 16px 70px 16px 30px;
  background: var(--color_primary);
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: 2rem;
  color: #fff;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn-style01.large {
  font-size: 2.4rem;
}
.btn-style01::after {
  content: "";
  background: url(../images/share/btn_arrow_right.svg) no-repeat center/contain;
  width: 26px;
  height: 9px;
  position: absolute;
  right: 35px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn-style01.bg01 {
  background: var(--color_secondary);
}
@media (any-hover: hover) {
  .btn-style01:hover {
    opacity: 0.8;
  }
}
.btn-style01:focus-visible {
  opacity: 0.8;
}

@media (max-width: 800px) {
  .sec01 {
    padding: 50px 0;
  }
  .price-layout .l-ttl {
    font-size: 2.5rem;
  }
  .price-layout .l-wrapper {
    display: block;
  }
  .price-layout .l-img {
    display: none;
  }
  .price-layout .l-desc {
    padding: 25px 5vw;
  }
  .price-layout .pricetag {
    width: 80px;
    font-size: 1.5rem;
    top: -30px;
    right: -15px;
  }
  .price-layout .pricetag em {
    font-size: 3rem;
  }
  .price-layout .l-ttl {
    font-size: 2rem;
    padding: 10px 60px 10px 30px;
  }
  .price-layout .item-ttl {
    font-size: 2rem;
    padding: 10px;
  }

  .price-layout .item-ttl small {
    font-size: 1.3rem;
}

  .price-layout .item-txt {
    font-size: 1.8rem;
  }
  .price-layout .price {
    font-size: 3.5rem;
    padding-left: 25px;
  }
  .price-layout .price::before {
    width: 15px;
  }
  .price-layout .price .unit {
    font-size: 2.5rem;
  }
  .price-layout .price small {
    font-size: 2rem;
  }
  .btn-style01,
  .btn-style01.large {
    font-size: 1.8rem;
    padding: 10px 50px 10px 20px;
  }
  .btn-style01::after {
    right: 20px;
  }
}
/* sec02 */
.sec02 {
  padding: 0 0 485px;
}

.ttl-style01 {
  font-size: 3.2rem;
  text-align: center;
  letter-spacing: 0.06em;
  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;
  gap: 0 20px;
  margin-bottom: 110px;
}
.ttl-style01 em {
  font-size: 4.8rem;
}
.ttl-style01 .txt {
  display: inline-block;
  position: relative;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}
.ttl-style01 .txt.arrow::after {
  content: "";
  background: #333;
  width: 1px;
  height: 30px;
  position: absolute;
  right: 10px;
  bottom: -26px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.l-style01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 60px;
}
.l-style01 .l-img-wrap {
  width: 45%;
}
.l-style01 .l-img-wrap .l-img + .l-img {
  margin-top: 30px;
}
.l-style01 .l-img-wrap .l-img:nth-of-type(odd) {
  -webkit-transform: translateX(-8.33%);
          transform: translateX(-8.33%);
}
.l-style01 .l-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.list-style01 > li {
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.05em;
  padding: 30px 45px 30px 70px;
  position: relative;
  background: #fff;
}
.list-style01 > li::before {
  content: "";
  background: url(../images/share/icon_check.svg) no-repeat center/contain;
  width: 14px;
  height: 16px;
  position: absolute;
  left: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.list-style01 > li + li {
  margin-top: 15px;
}

@media (max-width: 800px) {
  .sec02 {
    padding: 50px 0 100px;
  }
  .ttl-style01 {
    font-size: 2rem;
    gap: 20px;
    margin-bottom: 40px;
  }
  .ttl-style01 em {
    font-size: 2.5rem;
  }
  .l-style01 {
    display: block;
  }
  .l-style01 .l-img-wrap {
    width: 100%;
    margin-bottom: 30px;
  }
  .l-style01 .l-img-wrap .l-img:nth-of-type(odd) {
    -webkit-transform: none;
            transform: none;
    width: 90%;
  }
  .l-style01 .l-img-wrap .l-img:nth-of-type(even) {
    width: 90%;
    margin-left: auto;
  }
  .list-style01 > li {
    font-size: 1.5rem;
    padding: 15px 30px 15px 55px;
  }
}
/* sec03 */
.sec03 {
  padding: 210px 0 120px;
  background: url(../images/sec03_bg.jpg) no-repeat center/cover;
  position: relative;
  z-index: 1;
}
.sec03::before {
  content: "";
  background: oklch(from #fff l c h/0.8);
  position: absolute;
  inset: 0;
  z-index: -1;
}
.sec03 .box-style01 {
  position: absolute;
  top: -340px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}

.box-style01 {
  max-width: 1700px;
  width: 90%;
  margin-inline: auto;
  padding: 110px 50px;
  background: var(--color_secondary);
  color: #fff;
}
.box-style01::after {
  content: "";
  background: #707070;
  width: 1px;
  height: 105px;
  position: absolute;
  bottom: -55px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
.box-style01 .box-catch {
  text-align: center;
  font-family: var(--font_jp);
  font-weight: 500;
}
.box-style01 .box-catch .txt01,
.box-style01 .box-catch .txt02 {
  display: inline-block;
  line-height: 1.5;
}
.box-style01 .box-catch .txt01 {
  font-size: clamp(1.9rem, 2.67vw, 4.8rem);
  letter-spacing: 0.05em;
}
.box-style01 .box-catch .txt02 {
  position: relative;
  font-size: clamp(1.8rem, 1.78vw, 3.2rem);
  letter-spacing: 0.06em;
  margin-top: 50px;
}
.box-style01 .box-catch .txt02 .txt-box {
  display: inline-block;
  font-size: clamp(2rem, 2.67vw, 4.8rem);
  padding: 0 0.5em;
  border: 1px solid currentColor;
}
.box-style01 .box-catch .txt02 .icon-txt {
  font-size: 2.6rem;
  line-height: 1.3;
  text-align: center;
  display: grid;
  place-content: center;
  width: 128px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #B3A363;
  position: absolute;
  left: -110px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-10deg);
          transform: translateY(-50%) rotate(-10deg);
  z-index: 2;
}

.box-style02 {
  padding: 75px 50px;
  background: oklch(from #fff l c h/0.75);
  position: relative;
}
.box-style02 .box-ttl {
  font-size: 2.4rem;
  text-align: center;
  color: #fff;
  letter-spacing: 0.05em;
  padding: 5px 25px;
  background: #707070;
  position: absolute;
  top: -28px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
.box-style02 .box-ttl::after {
  content: "";
  background: #707070;
  width: 13px;
  height: 12px;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  bottom: -11px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.box-style02 .box-catch {
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: 4.8rem;
  text-align: center;
}
.box-style02 .box-catch .dot > span {
  display: inline-block;
  position: relative;
  line-height: 1.8;
}
.box-style02 .box-catch .dot > span::before {
  content: "";
  background: var(--color_primary);
  width: 6px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.box-style02 .box-txt {
  text-align: center;
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: 3.2rem;
}

.list-card01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.list-card01 > li {
  width: 150px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color_primary);
  display: grid;
  place-content: center;
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: 3.2rem;
  text-align: center;
  color: #fff;
  position: relative;
}
.list-card01 > li::before {
  content: "";
  border: 4px solid #CBC093;
  position: absolute;
  inset: 7px;
  pointer-events: none;
  border-radius: 50%;
}
.list-card01 > li + li::after {
  content: "";
  background: url(../images/icon_mul.svg) no-repeat center/contain;
  width: 23px;
  height: 23px;
  position: absolute;
  top: 50%;
  left: -33px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 800px) {
  .sec03 {
    padding: 50px 0;
  }
  .sec03 .box-style01 {
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
  }
  .box-style01 {
    margin: -100px auto 100px;
  }
  .box-style01 {
    padding: 25px 5vw;
  }
  .box-style01::after {
    height: 40px;
    bottom: -20px;
  }
  .box-style01 .box-catch .txt01 {
    font-size: 1.9rem;
  }
  .box-style01 .box-catch .txt02 {
    margin-top: 30px;
    font-size: 1.8rem;
    padding-left: 40px;
  }
  .box-style01 .box-catch .txt02 .txt-box {
    font-size: 2rem;
  }
  .box-style01 .box-catch .txt02 .icon-txt {
    font-size: 1.3rem;
    width: 60px;
    left: -4%;
    top: 25%;
  }
  .box-style02 {
    padding: 30px 5vw 25px;
  }
  .box-style02 .box-ttl {
    width: 90%;
    font-size: 1.8rem;
    padding: 5px 15px;
    top: -20px;
  }
  .box-style02 .box-catch {
    font-size: 2.5rem;
  }
  .list-card01 {
    gap: 20px;
  }
  .list-card01 > li {
    font-size: 2rem;
  }
  .list-card01 > li::before {
    inset: 5px;
    border-width: 2px;
  }
  .list-card01 > li + li::after {
    width: 15px;
    height: 15px;
    left: -18px;
  }
  .box-style02 .box-txt {
    font-size: 1.6rem;
  }
}
/* sec04 */
.sec04 {
  padding: 170px 0 315px;
  background: var(--color_bg);
  position: relative;
}
.sec04 .box-style01 {
  position: absolute;
  bottom: -235px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}

.ttl-style02 {
  font-size: 3.2rem;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 75px;
}
.ttl-style02.white {
  color: #fff;
}

.table-style02 {
  background: #fff;
  text-align: center;
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: 2rem;
}
.table-style02 .table-head,
.table-style02 .table-body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.table-style02 .table-head {
  background-color: #707070;
  color: #fff;
}
.table-style02 .table-head .item {
  padding: 20px 5px;
}
.table-style02 .table-head .item + .item {
  border-left: 1px solid var(--color_bg);
}
.table-style02 .table-head .item.bg01 {
  background: #DAD7D3;
  color: var(--color_text);
}
.table-style02 .table-head .item.bg02 {
  background: #B3A363;
  border: 1px solid #B3A363;
}
.table-style02 .table-head .item.active {
  position: relative;
  margin-top: -10px;
  padding-top: 30px;
}
.table-style02 .table-body {
  border-bottom: 1px solid #333;
}
.table-style02 .table-body .item {
  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;
  padding: 15px 5px;
  line-height: 1.6;
}
.table-style02 .table-body .item + .item {
  border-left: 1px solid var(--color_bg);
}
.table-style02 .table-body .item.bg01 {
  background: #FAFAEC;
  border-left: 1px solid #B3A363;
  border-right: 1px solid #B3A363;
  position: relative;
  z-index: 1;
}
.table-style02 .table-body .item.bg01::before {
  content: "";
  background: url(../images/table_circle.svg) no-repeat center/contain;
  width: 69px;
  height: 69px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}

@media (max-width: 800px) {
  .sec04 {
    padding: 50px 0 100px;
  }
  .ttl-style02 {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }
  .table-style02 {
    font-size: 1.3rem;
  }
  .table-style02 .table-head .item {
    display: grid;
    place-content: center;
  }
  .table-scroll .table-style02 {
    margin-bottom: 10px !important;
    width: 200%;
    margin-top: 20px;
  }
}
/* sec05 */
.sec05 {
  padding: 430px 0 0;
}

.sec05-inner {
  max-width: 1800px;
  margin-inline: auto;
  padding: 200px 0 120px;
  position: relative;
  z-index: 1;
}
.sec05-inner::before {
  content: "";
  background: var(--color_bg);
  position: absolute;
  inset: 0 14.17% 0 0;
  z-index: -1;
}

.sec05-en {
  font-family: var(--font_en);
  font-size: clamp(5.5rem, 7.78vw, 14rem);
  line-height: 1;
  letter-spacing: 0.075em;
  position: absolute;
  left: 6.39%;
  top: -73px;
  z-index: 2;
}

.txt-layout01 {
  max-width: 1350px;
  width: 90%;
  margin-inline: auto;
}
.txt-layout01 .l-ttl {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #333;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
}
.txt-layout01 .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
}
.txt-layout01 .wrapper .l-catch {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 480px;
          flex: 0 0 480px;
  font-size: 3.2rem;
  font-family: var(--font_jp);
  font-weight: 500;
}
.txt-layout01 .wrapper .l-desc {
  max-width: 515px;
  margin-top: 15px;
}

.l-style02 {
  max-width: 1800px;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 6.39%;
}
@media (max-width: 1480px) {
  .l-style02 {
    margin-left: 5vw;
  }
}
.l-style02 .l-img {
  width: 51%;
}
.l-style02 .l-desc {
  max-width: 555px;
  margin-top: 25px;
}
.l-style02 .num-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-bottom: 20px;
  font-size: 2.4rem;
  color: #707070;
}
.l-style02 .num-wrap .num {
  font-family: var(--font_en);
  white-space: nowrap;
}
.l-style02 .num-wrap .txt {
  font-family: var(--font_jp);
  font-weight: 500;
}
.l-style02 .l-ttl {
  font-size: 3.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}
.l-style02 .l-ttl em {
  background: var(--color_primary);
  color: #fff;
  padding: 0 0.3em;
}
.l-style02.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 0 auto 0 0;
}
@media (max-width: 1480px) {
  .l-style02.reverse {
    margin: 0 5vw 0 0;
  }
}
.l-style02.reverse .l-desc {
  max-width: 685px;
}
.l-style02 + .l-style02 {
  margin-top: 110px;
}

.box-style03 {
  padding: 30px 35px;
  background: #fff;
  position: relative;
}
.box-style03 .en {
  font-family: var(--font_en);
  font-size: 2.1rem;
  line-height: 1;
  position: absolute;
  left: 30px;
  top: -12px;
  z-index: 2;
}

.l-style03 {
  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;
  margin-bottom: 130px;
}
.l-style03 .l-img {
  width: 48.34%;
  position: relative;
}
.l-style03 .l-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-style03 .img-caption {
  color: #fff;
  padding: 8px 20px;
  background: var(--color_secondary);
  position: absolute;
  bottom: 40px;
  left: -45px;
  z-index: 2;
}
.l-style03 .l-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding: 30px 35px 40px;
  background: #fff;
}
.l-style03 .en {
  font-family: var(--font_en);
  font-size: 2.1rem;
  line-height: 1;
  color: #000;
  position: absolute;
  left: 35px;
  top: -10px;
  z-index: 2;
}
.l-style03 .l-ttl {
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

@media (max-width: 800px) {
  .sec05 {
    padding: 270px 0 50px;
  }
  .sec05-en {
    font-size: 5.5rem;
  }
  .sec05-inner {
    padding: 80px 0 50px;
  }
  .sec05-inner::before {
    inset: -45px 14.17% 0 0;
  }
  .txt-layout01 .l-ttl {
    font-size: 1.8rem;
    padding-bottom: 5px;
  }
  .txt-layout01 .wrapper {
    display: block;
  }
  .txt-layout01 .wrapper .l-catch {
    font-size: 2.3rem;
  }
  .l-style02,
  .l-style02.reverse {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
  .l-style02 + .l-style02 {
    margin-top: 50px;
  }
  .l-style02 .l-img {
    width: 100%;
    margin: 0 0 20px;
  }
  .l-style02 .num-wrap {
    font-size: 1.8rem;
  }
  .l-style02 .l-ttl {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .l-style03 {
    display: block;
    margin-bottom: 50px;
  }
  .l-style03 .l-img {
    width: 100%;
  }
  .l-style03 .img-caption {
    font-size: 1.2rem;
    padding: 10px;
    bottom: -35px;
    left: 5vw;
  }
  .l-style03 .l-desc {
    padding: 50px 5vw 25px;
  }
  .l-style03 .en {
    position: static;
  }
}
/* sec06 */
.sec06 {
  padding: 140px 0 160px;
  background: url(../images/sec06_bg.jpg) no-repeat center/cover;
  position: relative;
  z-index: 1;
}
.sec06::before {
  content: "";
  background: oklch(from #1C1C1C l c h/0.5);
  position: absolute;
  inset: 0;
  z-index: -1;
}

.l-style04 {
  padding: 30px 70px 40px 60px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 65px;
}
.l-style04 + .l-style04 {
  margin-top: 10px;
}
.l-style04 .l-img {
  width: 150px;
  margin-top: 20px;
}
.l-style04 .l-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 800px) {
  .sec06 {
    padding: 50px 0;
  }
  .l-style04 {
    padding: 25px 5vw;
    display: block;
  }
  .l-style04 .l-img {
    margin: 0 auto 20px;
  }
}
/* sec07 */
.sec07 {
  padding: 170px 0;
  background: var(--color_bg);
}

.flow-layout01 {
  margin-bottom: 250px;
}
.flow-layout01 .l-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.flow-layout01 .l-item + .l-item {
  margin-top: 50px;
}
.flow-layout01 .l-item::after {
  content: "";
  background: url(../images/flow_arrow_down.svg) no-repeat center/contain;
  width: 101px;
  height: 32px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
.flow-layout01 .l-item:last-of-type::after {
  display: none;
}
.flow-layout01 .l-img {
  width: 39.06%;
}
.flow-layout01 .l-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.flow-layout01 .l-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 40px 60px 40px 60px;
  background: #fff;
}
.flow-layout01 .ttl-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  margin-bottom: 15px;
}
.flow-layout01 .num {
  font-family: var(--font_en);
  font-size: 2.4rem;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  border-bottom: 1px solid #707070;
  line-height: 1.1;
}
.flow-layout01 .l-ttl {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
}

@media (max-width: 800px) {
  .sec07 {
    padding: 50px 0;
  }
  .flow-layout01 {
    margin-bottom: 80px;
  }
  .flow-layout01 .l-item {
    display: block;
  }
  .flow-layout01 .l-item::after {
    height: 20px;
    bottom: -20px;
  }
  .flow-layout01 .l-img {
    width: 100%;
  }
  .flow-layout01 .l-desc {
    padding: 25px 5vw;
  }
  .flow-layout01 .l-ttl {
    font-size: 2rem;
  }
}
/* sec08 */
.sec08 {
  padding: 0 0 170px;
  background: var(--color_bg);
}

.faq-layout01 .l-item {
  padding: 55px 60px 65px;
  background: #fff;
  border: 1px solid #707070;
}
.faq-layout01 .l-item + .l-item {
  margin-top: 20px;
}
.faq-layout01 .l-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}
.faq-layout01 .l-ttl .icon {
  width: 54px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color_bg);
  display: grid;
  place-content: center;
  font-family: var(--font_en);
  text-align: center;
  line-height: 1;
  font-size: 2.5rem;
}
.faq-layout01 .l-ttl .ttl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 3.2rem;
  letter-spacing: 0.05em;
}

@media (max-width: 800px) {
  .sec08 {
    padding: 50px 0;
  }
  .faq-layout01 .l-item {
    padding: 25px;
  }
  .faq-layout01 .l-ttl .icon {
    width: 40px;
    font-size: 2rem;
  }
  .faq-layout01 .l-ttl .ttl {
    font-size: 1.8rem;
  }
}
/* sec09 */
.sec09 {
  padding: 0 0 190px;
  background: var(--color_bg);
}

.l-style05 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.l-style05::before {
  content: "";
  -webkit-mask: url(../images/sec09_en.svg) no-repeat center/contain;
          mask: url(../images/sec09_en.svg) no-repeat center/contain;
  width: 90%;
  height: auto;
  aspect-ratio: 1626/151;
  background: -webkit-gradient(linear, left bottom, left top, from(oklch(from #080807 l c h/0.15)), to(oklch(from #575551 l c h/0.15)));
  background: linear-gradient(0deg, oklch(from #080807 l c h/0.15), oklch(from #575551 l c h/0.15));
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  -webkit-filter: brightness(115%);
          filter: brightness(115%);
  position: absolute;
  bottom: -37px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 1680px) {
  .l-style05::before {
    bottom: -30px;
  }
}
@media (max-width: 1400px) {
  .l-style05::before {
    bottom: -25px;
  }
}
@media (max-width: 1200px) {
  .l-style05::before {
    bottom: -20px;
  }
}
.l-style05 .l-img {
  width: 40.5%;
  position: relative;
}
.l-style05 .l-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-style05 .name-wrap {
  position: absolute;
  top: 55px;
  right: 35px;
  z-index: 2;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  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-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
}
.l-style05 .name-wrap .job,
.l-style05 .name-wrap .name {
  padding: 20px 0;
  background: #fff;
  font-family: var(--font_jp);
  font-weight: 500;
}
.l-style05 .name-wrap .job {
  font-size: 2.4rem;
}
.l-style05 .name-wrap .name {
  font-size: 3.7rem;
  margin-bottom: -70px;
}
.l-style05 .l-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 125px 10.44% 190px;
  background: url(../images/sec09_bg.jpg) no-repeat center/cover;
  position: relative;
  z-index: 1;
  color: #fff;
}
.l-style05 .l-desc::before {
  content: "";
  background: oklch(from #000 l c h/0.5);
  position: absolute;
  inset: 0;
  z-index: -1;
}
.l-style05 .l-desc .l-inner {
  max-width: 555px;
}
.l-style05 .l-desc p + p {
  margin-top: 2em;
}
.l-style05 .l-ttl {
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}

@media (max-width: 800px) {
  .sec09 {
    padding: 0 0 50px;
  }
  .l-style05 {
    display: block;
  }
  .l-style05::before {
    width: 95%;
    bottom: -5px;
  }
  .l-style05 .l-img {
    width: 100%;
  }
  .l-style05 .name-wrap .job {
    font-size: 1.5rem;
  }
  .l-style05 .name-wrap .name {
    font-size: 2.5rem;
    margin-bottom: -40px;
  }
  .l-style05 .l-desc {
    padding: 50px 5vw;
  }
  .l-style05 .l-ttl {
    font-size: 1.9rem;
  }
}
/* sec10 */
.cta-layout {
  padding: 120px 0 115px;
  color: #fff;
  background: #333;
}
.cta-layout .l-ttl {
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 30px;
}
.cta-layout .l-btn {
  text-align: center;
}

.btn-style02 {
  display: inline-block;
  padding: 17px 45px;
  border: 1px solid currentColor;
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.8;
  min-width: 400px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn-style02::after {
  content: "";
  -webkit-mask: url(../images/share/btn_arrow_right.svg) no-repeat center/contain;
          mask: url(../images/share/btn_arrow_right.svg) no-repeat center/contain;
  background: currentColor;
  width: 37px;
  height: 9px;
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (any-hover: hover) {
  .btn-style02:hover {
    background: oklch(from #fff l c h/0.1);
  }
}
.btn-style02:focus-visible {
  background: oklch(from #fff l c h/0.1);
}

@media (max-width: 800px) {
  .cta-layout {
    padding: 50px 0;
  }
  .cta-layout .l-ttl {
    font-size: 2.5rem;
  }
  .btn-style02 {
    min-width: 0;
    width: 100%;
    font-size: 2rem;
  }
}
/*------------
Footer
--------------*/
.footer {
  position: relative;
  background: var(--color_bg);
}
.footer .container {
  max-width: 1590px;
}

.f-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 100px;
  padding: 150px 0 110px;
}
.f-wrapper .utility {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.f-wrapper .map {
  width: 58.99%;
  height: 675px;
}
.f-wrapper .map iframe {
  width: 100%;
  height: 100%;
}

.box-style04 {
  padding: 35px;
  border: 1px solid #71706C;
}

.pagetop {
  position: absolute;
  bottom: 90px;
  right: 20px;
  z-index: 5;
  height: 41px;
}

.pagetop a {
  display: inline-block;
  width: 129px;
}

.copyright {
  font-family: var(--font_jp);
  font-size: 1.3rem;
  text-align: center;
  padding: 32px 0;
  border-top: 1px solid #707070;
  color: #7E7E7E;
}

@media (max-width: 800px) {
  .footer {
    margin-bottom: 65px;
  }
  .f-wrapper {
    padding: 50px 0;
    display: block;
  }
  .f-wrapper .map {
    width: 100%;
    margin-top: 50px;
    height: 300px;
  }
  .box-style04 {
    padding: 25px;
  }
}
/*------------
Under layout
--------------*/
.breadcrumb ul {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}

.breadcrumb ul li {
  display: inline;
}

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

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

@media (max-width: 800px) {
  .breadcrumb {
    overflow: auto;
    white-space: nowrap;
  }
}
/*------------
Under parts
--------------*/
.short + .short {
  margin-top: 50px;
}

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

.tall {
  padding: 50px 0;
}

.tall:last-of-type {
  margin-bottom: 50px;
}

.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 .l-img,
.l-imgL .l-img {
  margin: 0 40px 0 0;
  width: 40%;
}

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

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

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

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

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

.fl-imgR {
  float: right;
  margin: 0 0 15px 35px;
}

.fl-imgL {
  float: left;
  margin: 0 35px 15px 0;
}

@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.small,
  .l-imgL .l-img.small {
    width: 100%;
  }
  .l-imgR .l-img {
    margin: 0 0 15px;
  }
  .fl-imgR,
  .fl-imgL {
    float: none;
    margin: 0 0 15px;
    width: 100%;
  }
}
/* グリッド */
.col1,
.col2,
.col3,
.col4 {
  display: -ms-grid;
  display: grid;
}

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

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

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

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

@media (max-width: 800px) {
  .col2,
  .col3,
  .col4 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}
/* リストデザイン */
.list-disc > li {
  position: relative;
  padding: 0 0 0 1em;
}

.list-disc:not(.col2):not(.col3):not(.col4) > li + li {
  margin-top: 5px;
}

.list-disc li:before {
  content: "・";
  color: #333;
  position: absolute;
  top: 0;
  left: 0;
}

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

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

.list-num > li:before {
  background: 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: 0 0 0 2px;
  width: 20px;
  height: 20px;
}

.list-num:not(.col2):not(.col3):not(.col4) > li + li {
  margin-top: 5px;
}

.list-check > li {
  position: relative;
  padding: 0 0 0 25px;
}

.list-check > li::before {
  content: "";
  width: 15px;
  height: 9px;
  border-left: 2px solid var(--color_primary);
  border-bottom: 2px solid var(--color_primary);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 7px;
  left: 0;
}

.list-check:not(.col2):not(.col3):not(.col4) > li + li {
  margin-top: 5px;
}

.list-disc.col2,
.list-check.col2,
.list-num.col2 {
  grid-gap: 5px;
}

.list-disc.col3,
.list-check.col3,
.list-num.col3 {
  grid-gap: 5px;
}

.list-disc.col4,
.list-check.col4,
.list-num.col4 {
  grid-gap: 5px;
}

/* テーブルデザイン */
.table-style01 {
  background: #fff;
}

.table-style01 th,
.table-style01 td {
  border: 1px solid #c9c9c9;
  padding: 15px;
  vertical-align: middle;
}

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

.table-style01 .bg01 {
  background-color: var(--color_secondary);
  color: #333;
}

@media (max-width: 800px) {
  .table-style01 colgroup {
    display: none;
  }
  .table-style01 th,
  .table-style01 td {
    padding: 10px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .table-style01.sp-block {
    border-bottom: 1px solid #c9c9c9;
  }
  .table-style01.sp-block colgroup {
    display: none;
  }
  .table-style01.sp-block th,
  .table-style01.sp-block td {
    display: block;
  }
  .table-style01.sp-block td {
    border-width: 0 1px;
  }
  .table-scroll::before {
    content: "スクロールできます";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat left center/contain;
    width: 100%;
    height: 24.5px;
    margin-bottom: 5px;
    padding-left: 40px;
    position: sticky;
    top: 0;
    left: 0;
  }
  .table-scroll {
    overflow-x: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }
  .table-scroll::-webkit-scrollbar {
    height: 5px;
  }
  .table-scroll::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #f5f6f8;
  }
  .table-scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #333;
  }
  .table-scroll table {
    margin-bottom: 10px !important;
    width: 150%;
  }
  .table-scroll.table-sticky .table-style01 th:first-child {
    position: sticky;
    top: 0;
    left: 0;
  }
  .table-scroll .table-style01 th,
  .table-scroll .table-style01 td {
    white-space: nowrap;
  }
}
/*------------
個人情報保護方針
--------------*/
.dl-privacy dt {
  border-bottom: 1px solid #000;
  font-size: 1.8rem;
  padding: 0 0 5px;
  margin: 0 0 15px;
}

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

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

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

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

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
.category-ttl {
  margin-bottom: 15px;
}

/*普通投稿 old*/
.l-post-type01 {
  margin-bottom: 80px;
}

.l-post-type01 .post-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-post-type01 .post-item + .post-item {
  margin-top: 50px;
}

.l-post-type01 .post-ttl {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  font-family: "###";
  font-size: 2rem;
  word-break: break-all;
  position: relative;
  margin: 0 0 25px;
}

.l-post-type01 .post-ttl a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.l-post-type01 .post-ttl a:focus-visible {
  opacity: 0.5;
}

@media (any-hover: hover) {
  .l-post-type01 .post-ttl a:hover {
    opacity: 0.5;
  }
}
.l-post-type01 .post-img {
  margin: 0 30px 0 0;
  width: 250px;
}

.l-post-type01 .post-img img {
  width: 250px;
  height: 180px;
  -o-object-fit: cover;
  object-fit: cover;
}

.l-post-type01 .post-img a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.l-post-type01 .post-img a:focus-visible {
  opacity: 0.5;
}

@media (any-hover: hover) {
  .l-post-type01 .post-img a:hover {
    opacity: 0.5;
  }
}
.l-post-type01 .post-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

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

.l-post-type01 time {
  display: inline-block;
  color: #98918c;
  font-size: 1.4rem;
  vertical-align: -1px;
  margin: 0 25px 0 0;
}

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

.l-post-type01 .post-txt {
  margin: 0 0 30px;
}

.l-post-type01 .post-btn {
  text-align: right;
}

.l-post-type01 .post-btn a {
  display: inline-block;
  background: var(--color_primary);
  color: #fff;
  font-family: "###";
  line-height: 1;
  text-align: center;
  padding: 15px 45px;
  min-width: 160px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  z-index: 0;
}

.l-post-type01 .post-btn a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.l-post-type01 .post-btn a:focus-visible {
  opacity: 0.5;
}

@media (any-hover: hover) {
  .l-post-type01 .post-btn a:hover {
    opacity: 0.5;
  }
}
@media (max-width: 800px) {
  .l-post-type01 {
    margin: 0 0 50px;
  }
  .l-post-type01 .post-item + .post-item {
    margin-top: 20px;
  }
  .l-post-type01 .post-ttl {
    font-size: 1.8rem;
    padding: 0 0 7px;
    margin: 0 0 15px;
  }
  .l-post-type01 .post-img {
    margin: 0 15px 0 0;
    width: 40%;
  }
  .l-post-type01 .post-img img {
    width: 100%;
    height: 25vw;
  }
  .l-post-type01 .post-desc {
    margin: -5px 0 0;
  }
  .l-post-type01 time {
    font-size: 1.2rem;
    margin: 0 15px 0 0;
  }
  .l-post-type01 .post-txt {
    font-size: 1.1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0 0 5px;
  }
  .l-post-type01 .post-btn {
    margin-top: 15px;
  }
  .l-post-type01 .post-btn a {
    padding: 12px 25px;
    font-size: 1.3rem;
    min-width: 130px;
  }
}
/* 普通投稿 */
.l-under-post {
  border-top: 1px solid #e8ecf0;
  margin-bottom: 50px;
}

.l-under-post > .post-item {
  border-bottom: 1px solid #f5f5f5;
}

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

.l-under-post 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: 8px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.l-under-post a::after {
  content: "";
  width: 20px;
  border: 1px solid var(--color_primary);
  position: absolute;
  right: 0;
  top: 15px;
  bottom: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.l-under-post a:focus-visible::before {
  border-color: #fff;
}

.l-under-post a:focus-visible::after {
  background: var(--color_primary);
}

@media (any-hover: hover) {
  .l-under-post a:hover::before {
    border-color: #fff;
  }
  .l-under-post a:hover::after {
    background: var(--color_primary);
  }
}
.l-under-post .post-img {
  width: 150px;
  margin-right: 25px;
}

.l-under-post .post-img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 105px;
}

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

.l-under-post time {
  display: block;
  color: #ADADAD;
  font-size: 1.2rem;
}

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

.l-under-post .category {
  display: inline-block;
  background-color: var(--color_primary);
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.1rem;
  padding: 0 5px;
  margin-right: 10px;
}

.l-under-post .no-post {
  padding: 25px 0;
}

@media (max-width: 800px) {
  .l-under-post a {
    padding: 20px 25px 20px 0;
  }
  .l-under-post a:hover {
    background-color: transparent;
  }
  .l-under-post .post-img {
    width: 120px;
    margin-right: 20px;
  }
  .l-under-post .post-img img {
    height: 90px;
  }
  .l-under-post .post-desc {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .l-under-post time {
    font-size: 1rem;
  }
  .l-under-post .post-ttl {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  .l-under-post .category {
    font-size: 1rem;
  }
  .l-under-post .no-post {
    padding: 25px 0;
  }
}
/*詳細ページ*/
.single-post-layout {
  display: flow-root;
  border-bottom: 3px solid #eee;
  padding-bottom: 50px;
  margin-bottom: 50px;
  max-width: 800px;
  margin: 0 auto 50px;
}

.single-post-layout .l-ttl {
  border-bottom: 3px solid #eee;
  font-size: 2.4rem;
  padding-bottom: 20px;
  margin-bottom: 50px;
}

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

.single-post-layout .post-data time {
  display: inline-block;
  color: #98918c;
  font-size: 1.2rem;
  margin-right: 20px;
}

.single-post-layout .post-data .category {
  display: inline-block;
  background-color: var(--color_primary);
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.1rem;
  padding: 0 5px;
  margin-right: 10px;
}

@media (max-width: 800px) {
  .single-post-layout .l-ttl {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
/*詳細ページ*/
.postdata p,
.postdata ul,
.postdata ol {
  margin-bottom: 15px;
}

.postdata a {
  text-decoration: underline;
}

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

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

.postdata em {
  font-style: italic;
}

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

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

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

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

/*セレクト式カテゴリー*/
.select-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 50px;
}

.select-area .select-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 30px 0 0;
}

.select-area .select-ttl {
  display: inline-block;
  font-family: "###";
  font-size: 1.6rem;
  margin: 0 15px 0 0;
}

.select-area .select-category {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  text-overflow: "";
  background: #fff url(../images/share/ico_arrow_down.svg) no-repeat;
  background-size: 20px;
  background-position: right center;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  color: #333;
  font-size: 1.6rem;
  vertical-align: middle;
  height: 35px;
  min-width: 150px;
  padding: 5px 20px 5px 5px;
}

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

@media (max-width: 800px) {
  .select-area {
    display: block;
    margin: 0 0 30px;
  }
  .select-area .select-item {
    margin: 0;
  }
  .select-area .select-item + .select-item {
    margin-top: 10px;
  }
  .select-area .select-ttl {
    font-size: 1.5rem;
  }
}
/*ページャー*/
.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;
}

.post-number span,
.post-number a {
  display: inline-block;
  color: var(--color_primary);
  border: 1px solid var(--color_primary);
  font-size: 1.3rem;
  text-align: center;
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  padding: 0 4px;
  margin: 0 4px;
}

.post-number a:focus-visible {
  background: var(--color_primary);
  color: #fff;
}

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

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

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

.post-number-single .all {
  background: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: #fff;
  font-size: 1.3rem;
  line-height: 28px;
  max-width: 200px;
  margin: 0 10px;
  height: 30px;
  width: 100%;
}

.post-number-single .all:focus-visible {
  background: #fff;
  color: var(--color_primary);
}

@media (any-hover: hover) {
  .post-number-single .all:hover {
    background: #fff;
    color: var(--color_primary);
  }
}
.post-number-single .prev,
.post-number-single .next {
  border: 1px solid var(--color_primary);
  width: 30px;
  height: 30px;
  position: relative;
}

.post-number-single .prev::before,
.post-number-single .next::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-bottom: 1px solid var(--color_primary);
  margin: 0 auto;
  top: 12px;
}

.post-number-single .prev:focus-visible,
.post-number-single .next:focus-visible {
  background: var(--color_primary);
}

.post-number-single .prev:focus-visible::before,
.post-number-single .next:focus-visible::before {
  border-color: #fff;
}

@media (any-hover: hover) {
  .post-number-single .prev:hover,
  .post-number-single .next:hover {
    background: var(--color_primary);
  }
  .post-number-single .prev:hover::before,
  .post-number-single .next:hover::before {
    border-color: #fff;
  }
}
.post-number-single .prev::before {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  left: 13px;
  border-left: 1px solid var(--color_primary);
}

.post-number-single .next::before {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  right: 13px;
  border-right: 1px solid var(--color_primary);
}

/*------------
症例紹介
--------------*/
.case-layout {
  background-color: #f5f5f5;
  padding: 6%;
  margin-bottom: 50px;
}

.case-layout time {
  color: #aaa;
  display: block;
  font-size: 1.2rem;
  margin-right: 15px;
}

.case-layout .category {
  display: inline-block;
  background-color: var(--color_primary);
  color: #fff;
  font-size: 1.1rem;
  padding: 0 5px;
  margin-right: 10px;
}

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

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

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

.post-table,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table {
  background-color: #fff;
  border: 1px solid #eee;
}

.post-table tr th,
.post-table tr td,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
  border: 1px solid #eee;
  line-height: 1.5;
  font-size: 1.5rem;
  padding: 15px;
}

.post-table tr th,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th {
  background-color: var(--color_primary);
  color: #fff;
  vertical-align: top;
  text-align: left;
  width: 25%;
}

.case-layout .l-btn {
  text-align: center;
  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 figure {
  display: -ms-grid;
  display: grid;
  place-items: center;
  height: 300px;
  position: relative;
}

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

.before-after p {
  font-family: var(--font_jp);
  font-weight: 500;
  text-align: center;
}

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

@media (max-width: 800px) {
  .case-layout .l-ttl {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .case-layout .post-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
  }
  .case-layout .before-after {
    margin-bottom: 30px;
  }
  .post-table tr th,
  .post-table tr td,
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
    display: block;
    padding: 10px;
    font-size: 1.4rem;
  }
  .post-table tr th,
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th {
    width: 100%;
  }
  .case-layout .l-btn {
    margin-top: 30px;
  }
  .before-after {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .before-after figure {
    height: auto;
  }
}
/*-----------------------------------------------------------
投稿02
-----------------------------------------------------------*/
/*------------
sidebar-layout
--------------*/
.sidebar-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 100px 0;
  margin: 0 auto;
  max-width: 1400px;
}

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

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

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

.side-contents-ttl {
  border-bottom: 1px solid #e8ecf0;
  font-size: 1.5rem;
  padding-bottom: 15px;
  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: 20px;
  position: relative;
  font-size: 1.4rem;
}

.side-area-links li::before {
  content: "";
  width: 5px;
  height: 8px;
  background-color: var(--color_primary);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  top: 7px;
  left: 0;
}

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

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

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

@media (any-hover: hover) {
  .side-area-links a:hover {
    text-decoration: underline;
  }
}
@media (max-width: 800px) {
  .sidebar-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 50px 5vw;
    width: 100%;
  }
  .sidebar-layout .tall + .tall {
    margin-top: 50px;
  }
  .sidebar-layout.sp-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .sidebar-layout.sp-reverse .side-contents {
    margin: 0 0 50px;
  }
  .main-contents {
    width: 100%;
    padding: 0;
  }
  .side-contents {
    width: 100%;
    padding: 0;
    margin-top: 50px;
  }
  .side-contents-wrapper {
    position: sticky;
    top: 20px;
  }
  .side-contents-ttl {
    font-size: 1.5rem;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .side-area-item + .side-area-item {
    margin-top: 30px;
  }
}
/*お知らせ*/
.under-post-news {
  border-top: 1px solid #dfdfdf;
  margin-bottom: 30px;
}

.under-post-news a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #dfdfdf;
  padding: 20px 0;
}

.under-post-news a:focus-visible .ttl {
  text-decoration: underline;
}

@media (any-hover: hover) {
  .under-post-news a:hover .ttl {
    text-decoration: underline;
  }
}
.under-post-news time {
  display: inline-block;
  color: #888;
  white-space: nowrap;
  margin-right: 25px;
}

.under-post-news .ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

@media (max-width: 800px) {
  .under-post-news a {
    display: block;
    line-height: 1.5;
    padding: 10px 0;
  }
  .under-post-news time {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  .under-post-news .ttl {
    -webkit-line-clamp: 2;
  }
}
/*-----------------------------------------------------------
Utility
-----------------------------------------------------------*/
.clearfix:after {
  clear: both;
  content: "";
  display: block;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

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

.fade:focus-visible {
  opacity: 0.5;
}

@media (any-hover: hover) {
  .fade:hover {
    opacity: 0.5;
  }
}
.bold,
strong {
  font-weight: 700;
}

.red {
  color: #F44336;
}

.white {
  color: #fff;
}

.marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #F8F8B1;
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.marker02 {
  text-decoration: underline;
  text-decoration-thickness: 1.2em;
  text-decoration-color: #fff;
  text-underline-offset: -1em;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: var(--color_text);
}

.font01 {
  font-family: var(--font_jp);
}

.fwM {
  font-weight: 500;
}

.fs18 {
  font-size: 1.8rem;
}

.fs20 {
  font-size: 2rem;
}

.fs32 {
  font-size: 3.2rem;
}

.notice {
  font-size: 1.4rem;
  text-indent: -1.5em;
  padding-left: 1.5em;
}

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

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

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

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

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

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

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

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

.tac {
  text-align: center;
}
.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.map {
  height: 450px;
}

.map iframe {
  width: 100%;
  height: 100%;
}

.video iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

@media (max-width: 800px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .sp-tac {
    text-align: center !important;
  }
  .sp-tar {
    text-align: right !important;
  }
  .sp-tal {
    text-align: left !important;
  }
  .mbL {
    margin-bottom: 30px !important;
  }
  .mbXL {
    margin-bottom: 50px !important;
  }
  .map {
    height: 300px;
  }
  .fs18 {
    font-size: 1.6rem;
  }
  .fs20 {
    font-size: 1.8rem;
  }
  .fs32 {
    font-size: 2rem;
  }
}
/*-----------------------------------------------------------
Add
-----------------------------------------------------------*/
/*------------
splide
-------------*/
/*各種色設定*/
:root {
  --splide-arrow-color: #7EC2C2;
  /*矢印*/
  --splide-focus-color: #7EC2C2;
  /*タブ移動によるフォーカス時のアウトライン*/
  --splide-pagination-color: #7EC2C2;
  /*アクティブ時のページネーション*/
  --splide-progress-color: #7EC2C2;
  /*プログレスバー*/
  --splide-toggle-color: #7EC2C2;
  /*再生ボタン*/
  --splide-track-color: #7EC2C2;
  /*サムネイルの枠*/
}

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

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

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

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

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

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

.splide__progress {
  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 {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  background: #e9e9e9;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 64px;
  width: 64px;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.splide__arrow--prev::after,
.splide__arrow--next::after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  border: solid var(--color_primary);
  border-width: 1px 1px 0 0;
}

.splide__arrow--prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.splide__arrow--next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.splide__arrow svg {
  display: none;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid var(--color_primary);
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: calc((100% - 870px) / 2);
}

.splide__arrow--prev svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: calc((100% - 870px) / 2);
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 15px;
  left: 0;
  padding: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ddd;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  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: 8px;
}

.splide__pagination__page.is-active {
  background: var(--splide-pagination-color);
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
  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: 45px;
    height: 45px;
  }
  .splide__arrow--prev {
    left: 10px;
  }
  .splide__arrow--next {
    right: 10px;
  }
}
/* under-slider01 */
.under-slider01 .splide {
  padding-bottom: 30px;
}

.under-slider01 .splide__arrow--prev {
  left: -7%;
}

.under-slider01 .splide__arrow--next {
  right: -7%;
}

.under-slider01 .splide__pagination {
  bottom: 0;
}

@media (max-width: 800px) {
  .under-slider01 .splide__arrow--prev {
    left: -4%;
  }
  .under-slider01 .splide__arrow--next {
    right: -4%;
  }
}
/*-----------------------------------------------------------
Animation
-----------------------------------------------------------*/
.js-fadein {
  -webkit-transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, transform 1s;
  transition: opacity 1.2s, transform 1s, -webkit-transform 1s;
  opacity: 0;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
}

.js-fadein.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
