@charset "UTF-8";

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

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

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

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

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

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

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

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

legend {
  color: #000;
}

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

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

li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

input,
select {
  vertical-align: middle;
}

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

del {
  text-decoration: line-through;
}

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

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

img {
  vertical-align: top;
}

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

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

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

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

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

::selection {
  background: #d4dcd6;
}

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

body,
html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "FP-ヒラギノ明朝 ProN W2", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  color: #231900;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.05em;
}

html {
  scroll-behavior: smooth;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "FP-ヒラギノ明朝 ProN W3";
}

th,
dt {
  font-family: "FP-ヒラギノ明朝 ProN W3";
}

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

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

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

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

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

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

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

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

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

.header .h-logo {
  width: 282px;
  margin-left: 55px;
}

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

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

.header .h-contact {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 25px;
}

.header .h-contact .tel {
  margin-right: 25px;
}

.header.is-fixed {
  background: rgba(255, 255, 255, 0.8);
}

.header.is-fixed .tel {
  color: #231900;
}

.header.is-fixed .tel::before {
  background: url(../images/share/icon_tel_g.svg) center/contain no-repeat;
}

.header.is-fixed .pc-navi-list>li>a {
  color: #231900;
}

.header.is-fixed .pc-navi-list>li>a:hover {
  color: #AD9C30;
}

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

  .header-inr {
    display: block;
    padding: 10px;
  }

  .header .h-logo {
    width: 220px;
    margin: 0 auto;
  }

  .header .h-contact {
    display: none;
  }
}

/*------------
G-navi
--------------*/
.pc-navi {
  padding-right: 50px;
}

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

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

.pc-navi-list>li>a {
  color: #fff;
  font-size: 17px;
  font-family: "FP-ヒラギノ明朝 ProN W3";
  letter-spacing: 0.1em;
  line-height: 1.5;
  transition: 0.3s;
}

.pc-navi-list>li>a:hover {
  color: #AD9C30;
}

@media screen and (max-width: 1200px) and (min-width: 801px) {
  .pc-navi {
    padding-right: 25px;
  }

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

  .pc-navi-list>li:not(:last-child) {
    margin-right: 15px;
  }

  .pc-navi-list>li>a {
    font-size: 15px;
  }
}

.sp-navi {
  display: none;
}

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

  :root {
    --navi-background: #231900;
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --menu-btn: #fff;
    --navi-font: "FP-ヒラギノ明朝 ProN W3", sans-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 {
    border-right: 1px solid var(--navi-border-color);
    font-size: 12px;
    font-family: var(--navi-font);
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }

  .sp-navi-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.contact {
    flex: 0 0 40%;
    background-color: #BCA849;
  }

  .sp-navi-btns .item.contact a {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    padding: 0 10px;
  }

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

  .sp-navi-btns .item.contact .img {
    width: 22px;
    height: 20px;
  }

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

  .sp-navi-btns .item.contact .ttl {
    font-size: 17px;
  }

  .sp-menu-btn {
    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;
  }

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

  .sp-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background: #fff;
    font-family: var(--navi-font);
    padding: 50px 10% 100px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    z-index: 9999;
  }

  .sp-navi-contents.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    opacity: 1;
  }

  .sp-navi-list {
    border-top: 1px solid #d6d6d6;
    font-family: "FOT-スーラ Pro DB";
    margin: 0 0 50px;
  }

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

  .sp-navi-list>li>a,
  .sp-navi-list>li>.no-link {
    color: #333;
    display: block;
    font-size: 14px;
    line-height: 1;
    padding: 15px 0;
  }

  .sp-navi-list>li.menu-item-has-children {
    position: relative;
  }

  .sp-navi-list>li.menu-item-has-children::before,
  .sp-navi-list>li.menu-item-has-children::after {
    content: "";
    background-color: #333;
    position: absolute;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

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

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

  .sp-navi-list>li.menu-item-has-children.is-on::before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

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

  .sp-navi-list .sub-menu>li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
  }

  .sp-navi-list .sub-menu>li::before {
    content: "-";
    color: #333;
    position: absolute;
    left: 0;
    top: 0;
  }

  .sp-navi-list .sub-menu>li>a {
    display: inline-block;
    font-size: 13px;
    text-decoration: none;
  }

  .sp-navi-logo {
    text-align: center;
    margin-bottom: 30px;
  }

  .sp-navi-address {
    text-align: center;
    font-size: 13px;
  }

  .sp-navi-tel {
    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;
    font-size: 23px;
    font-weight: bold;
  }

  .sp-navi-tel img {
    margin-right: 10px;
  }

  .sp-navi-time {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 70px 10px 1fr;
    grid-template-columns: 70px 1fr;
    grid-gap: 5px 10px;
    font-size: 13px;
  }

  .sp-navi-time dt {
    background-color: #fff;
    border: 1px solid #000;
    text-align: center;
    font-size: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .sp-navi-sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .sp-navi-sns li+li {
    margin-left: 15px;
  }

  .sp-navi-sns a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  .sp-navi-sns a:hover {
    opacity: 0.5;
  }
}


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

  .pc-navi {
    display: none;
  }
}

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

.hero .splide__slide img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero-wrap {
  display: flex;
}

.hero-item {
  flex: 1;
  position: relative;
}

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

.hero-catch span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  color: #fff;
  font-family: "FP-ヒラギノ明朝 ProN W3";
  font-size: 36px;
  border: 1px solid #fff;
  padding: 14px 20px;
}

.hero-catch span+span {
  margin-top: 10px;
}

.hero-desc {
  position: absolute;
  top: 47%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 5;
}

.hero-ttl {
  font-family: "FP-ヒラギノ明朝 ProN W3";
  color: #fff;
  font-size: 55px;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.hero-scroll {
  position: absolute;
  left: 25px;
  bottom: 0;
  z-index: 5;
  width: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.hero-scroll .txt {
  display: block;
  font-size: 19px;
  font-family: "Cormorant Infant", serif;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  transform: rotate(-90deg);
}

.hero-scroll .line {
  display: block;
  width: 1px;
  height: 50px;
  background: #fff;
  margin-top: 40px;
}

@media screen and (max-width: 1200px) and (min-width: 801px) {
  .hero .splide__slide img {
    height: 900px;
  }
}

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

  .hero .splide__slide img {
    height: 250px;
  }

  .hero-wrap {
    display: block;
  }

  .hero-catch {
    left: 5%;
    bottom: 20px;
  }

  .hero-catch span {
    font-size: 18px;
    padding: 5px 10px;
  }

  .hero-catch span+span {
    margin-top: 5px;
  }

  .hero-desc {
    top: auto;
    bottom: 0;
    transform: translateY(100%);
  }

  .hero-ttl {
    font-size: 24px;
    line-height: 1.4;
    color: #231900;
    padding-top: 15px;
  }

  .hero-scroll {
    left: auto;
    right: 15px;
  }
}

/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
.t-ttl {
  text-align: center;
  margin-bottom: 50px;
}

.t-ttl .en {
  font-family: "Cormorant Infant", serif;
  font-weight: 400;
  font-size: 150px;
  color: #EEE9D1;
  display: block;
  line-height: 1;
}

.t-ttl .en.white {
  color: #fff;
}

.t-ttl .jp {
  display: block;
  font-size: 40px;
  line-height: 1.7;
  margin-top: -60px;
  letter-spacing: 0.1em;
}

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

  .t-ttl .en {
    font-size: 60px;
  }

  .t-ttl .jp {
    font-size: 20px;
    line-height: 1.4;
    margin-top: -20px;
  }
}

/*------------
Block
--------------*/
.sec-cta {
  background: url(../images/sec-cta_bg.jpg) center/cover no-repeat;
  padding: 100px 0 90px;
}

.cta-bnr {
  display: block;
  transition: 0.3s;
}

.cta-bnr:hover {
  opacity: 0.7;
}

.cta-bnr img {
  width: 100%;
}

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

.sec01 {
  padding: 100px 0 80px;
}

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

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

.sec03 {
  background: url(../images/sec03_bg01.jpg) center top/100% auto no-repeat;
  position: relative;
  padding-top: 120px;
  z-index: 5;
}

.sec03 .t-ttl {
  margin-bottom: 40px;
}

.sec03-arrow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.sec03-arrow img {
  width: 54px;
}

.sec03-catch {
  text-align: center;
  font-size: 40px;
  font-family: "FP-ヒラギノ明朝 ProN W3";
  line-height: 1.6;
  margin-bottom: 90px;
}

.sec03-inr {
  width: 90%;
  max-width: 1600px;
  background: linear-gradient(to bottom right, #EEE9D1, #E5D4B4);
  margin: 0 auto;
  padding: 65px 0 120px;
}

.sec03-layout {
  display: flex;
  flex-direction: row-reverse;
  padding-bottom: 60px;
  border-bottom: 1px solid #BCA849;
}

.sec03-layout .l-img {
  width: 46.5%;
  margin-left: 5.8%;
  margin-top: 30px;
}

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

.sec03-layout .l-num {
  display: flex;
  align-items: flex-end;
  margin-bottom: 25px;
}

.sec03-layout .l-num span {
  display: block;
  line-height: 1;
  font-family: "Cormorant Infant", serif;
  font-weight: 400;
}

.sec03-layout .l-num .txt {
  font-size: 25px;
  color: #AD9C30;
  position: relative;
  z-index: 5;
}

.sec03-layout .l-num .num {
  font-size: 83px;
  color: #fff;
  margin: 0 0 -10px -15px;
  font-style: italic;
}

.sec03-layout .l-ttl {
  font-size: 30px;
  line-height: 1.76;
  padding-bottom: 10px;
  margin-bottom: 25px;
  position: relative;
}

.sec03-layout .l-ttl::before {
  content: "";
  width: 96px;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #BCA849;
}

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

.sec03-layout.reverse .l-img {
  margin-left: 0;
  margin-right: 5.8%;
}

.sec03-layout.sec03-layout {
  margin-top: 30px;
}

@media (max-width: 800px) {
  .sec03 {
    background: none;
    padding-top: calc(40vw + 30px);
  }

  .sec03::before {
    content: "";
    width: 100%;
    height: 40vw;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/sec03_bg01.jpg) center/cover no-repeat;
    z-index: -1;
  }

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

  .sec03-arrow {
    top: -30px;
  }

  .sec03-arrow img {
    width: 30px;
  }

  .sec03-catch {
    font-size: 21px;
    line-height: 1.5;
    margin-bottom: 30px;
  }

  .sec03-inr {
    padding: 35px 0;
  }

  .sec03-layout {
    display: block;
    padding-bottom: 30px;
  }

  .sec03-layout .l-img {
    width: 100%;
    margin: 0 0 10px;
  }

  .sec03-layout .l-num {
    margin-bottom: 10px;
  }

  .sec03-layout .l-num .txt {
    font-size: 20px;
  }

  .sec03-layout .l-num .num {
    font-size: 54px;
    margin: 0 0 -7px -10px;
  }

  .sec03-layout .l-ttl {
    font-size: 22px;
    line-height: 1.4;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }

  .sec03-layout .l-ttl::before {
    width: 60px;
  }

  .sec03-layout.reverse .l-img {
    margin: 0 0 10px;
  }
}

.sec04 {
  padding: 200px 0 0;
  background: url(../images/sec04_bg01.jpg) center top/100% auto no-repeat;
  margin-top: -200px;
}

.sec04 .container {
  padding: 80px 0 100px;
}

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

.sec04-list>li {
  width: 48%;
}

.sec04-list>li:nth-child(n+3) {
  margin-top: 50px;
}

.sec04-list .list-ttl {
  line-height: 2;
  margin: -35px 0 40px;
  position: relative;
  z-index: 5;
}

.sec04-list .list-ttl span {
  color: #fff;
  font-size: 28px;
  letter-spacing: 0.1em;
  background: #BCA849;
  padding: 10px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.sec04-list .list-catch {
  background: #F6F6F4;
  border-radius: 5px;
  padding: 40px 15px;
  text-align: center;
  position: relative;
  margin-bottom: 15px;
}

.sec04-list .list-catch::before {
  content: "";
  width: 86px;
  height: 85px;
  position: absolute;
  top: -35px;
  right: 0;
  background: url(../images/img_person.svg) center/contain no-repeat;
}

.sec04-list .list-catch-en {
  font-family: "Nothing You Could Do", cursive;
  font-size: 41px;
  line-height: 1;
  color: #AD9C30;
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 5;
  transform: rotate(-6deg);
}

.sec04-list .list-catch-txt span {
  font-family: "FP-ヒラギノ明朝 ProN W3";
  font-size: 26px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  border-bottom: 1px solid #707070;
  padding-bottom: 5px;
}

@media screen and (max-width: 1200px) and (min-width: 801px) {
  .sec04-list .list-catch-txt span {
    font-size: 23px;
  }
}

.sec04-list .btn-more {
  margin: 20px auto 0;
}

@media (max-width: 800px) {
  .sec04 {
    padding: 80px 0 0;
    margin-top: -80px;
  }

  .sec04 .container {
    padding: 50px 0;
  }

  .sec04-list {
    display: block;
  }

  .sec04-list>li {
    width: 100%;
  }

  .sec04-list>li:nth-child(n+2) {
    margin-top: 40px;
  }

  .sec04-list .list-ttl {
    line-height: 2;
    margin: -25px 0 40px;
  }

  .sec04-list .list-ttl span {
    font-size: 20px;
    padding: 7px 10px;
  }

  .sec04-list .list-catch {
    padding: 30px 15px;
    text-align: center;
    position: relative;
    margin-bottom: 15px;
  }

  .sec04-list .list-catch::before {
    width: 72px;
    height: 72px;
    top: -35px;
    right: 0;
  }

  .sec04-list .list-catch-en {
    font-size: 30px;
    top: -15px;
    left: -5px;
  }

  .sec04-list .list-catch-txt span {
    font-size: 18px;
  }

  .sec04-list .btn-more {
    margin: 20px auto 0;
  }
}

.sec05 {
  background: url(../images/sec05_bg01.jpg) center/cover no-repeat;
  position: relative;
  z-index: 5;
}

.sec05 .container {
  padding: 120px 0 160px;
  position: relative;
}

.sec05 .container .tab-area {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(50%);
}

.sec05-ttl {
  text-align: center;
  margin-bottom: 45px;
  font-size: 40px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

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

.sec05-ttl .ttl-deco::before {
  content: "";
  width: 100%;
  height: 35px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  background: url(../images/sec05-ttl_deco.svg) center bottom/contain no-repeat;
  z-index: -1;
}

.sec05-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 910px;
  margin: 0 auto;
}

.sec05-list>li {
  max-width: 220px;
}

.sec05-list>li:not(:nth-child(3n)) {
  margin-right: calc((100% - 660px) / 2);
}

.sec05-list>li:nth-child(n+4) {
  margin-top: 50px;
}

.sec05-list .list-img {
  margin-bottom: 10px;
}

.sec05-list .list-img img {
  width: 100%;
}

.sec05-list .list-ttl {
  text-align: center;
  font-size: 26px;
}

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

  .sec05-ttl {
    margin-bottom: 30px;
    font-size: 22px;
    line-height: 1.7;
  }

  .sec05-ttl .ttl-deco::before {
    height: 18px;
    bottom: -7px;
  }

  .sec05-list {
    max-width: none;
    margin: 0;
    justify-content: space-between;
  }

  .sec05-list>li {
    max-width: none;
    width: 48.5%;
  }

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

  .sec05-list>li:nth-child(n+3) {
    margin-top: 20px;
  }

  .sec05-list .list-img {
    margin-bottom: 10px;
    text-align: center;
  }

  .sec05-list .list-img img {
    width: 80%;
  }

  .sec05-list .list-ttl {
    text-align: center;
    font-size: 17px;
  }
}

.sec06 {
  padding: 130px 0 0;
  position: relative;
  z-index: 1;
}

.sec06::after {
  content: "";
  width: 100%;
  height: calc(100% - 355px);
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/sec06_bg01.jpg) center/cover no-repeat;
  z-index: -1;
}

.sec06-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 100px;
}

.sec06-list>li {
  width: 47.5%;
}

.sec06-list>li:nth-child(1) {
  margin-top: 30px;
}

.sec06-list>li:nth-child(3) {
  margin-top: 70px;
}

.sec06-list>li:nth-child(4) {
  margin-top: 40px;
}

.sec06-list .list-img {
  margin-left: 35px;
}

.sec06-list .list-desc {
  position: relative;
  z-index: 5;
  margin: -65px 35px 0 0;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
  padding: 50px 30px;
}

.sec06-list .list-num {
  font-family: "Cormorant Infant", serif;
  font-weight: 400;
  font-size: 99px;
  color: #BCA849;
  line-height: 1;
  position: absolute;
  left: 35px;
  top: -65px;
}

.sec06-list .list-ttl {
  text-align: center;
  font-size: 32px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.sec06-layout {
  display: flex;
  align-items: flex-end;
  margin-right: 5%;
}

.sec06-layout .l-img {
  width: 59%;
}

.sec06-layout .l-img img {
  width: 100%;
  height: 626px;
  -o-object-fit: cover;
  object-fit: cover;
}

.sec06-layout .l-desc {
  flex: 1;
  background: #BCA849;
  padding: 90px 5.3% 90px 4.7%;
  color: #fff;
  margin-left: -7%;
  position: relative;
  z-index: 5;
  margin-bottom: 25px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
}

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

.sec06-layout .l-ttl span {
  font-family: "FP-ヒラギノ明朝 ProN W3";
  font-size: 26px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  font-size: 40px;
}

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

  .sec06::after {
    height: calc(100% - 355px);
  }

  .sec06-list {
    display: block;
    margin-bottom: 40px;
  }

  .sec06-list>li {
    width: 100%;
  }

  .sec06-list>li:nth-child(1) {
    margin-top: 0;
  }

  .sec06-list>li:nth-child(3) {
    margin-top: 0;
  }

  .sec06-list>li:nth-child(4) {
    margin-top: 0;
  }

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

  .sec06-list .list-img {
    margin-left: 15px;
  }

  .sec06-list .list-desc {
    margin: -30px 15px 0 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
    padding: 30px 20px;
  }

  .sec06-list .list-num {
    font-size: 60px;
    left: 20px;
    top: -40px;
  }

  .sec06-list .list-ttl {
    font-size: 21px;
    line-height: 1.5;
  }

  .sec06-layout {
    display: block;
    margin: 0;
  }

  .sec06-layout .l-img {
    width: 100%;
    margin: 0;
  }

  .sec06-layout .l-img img {
    height: auto;
  }

  .sec06-layout .l-desc {
    padding: 25px 20px 30px;
    margin: -30px 5% 0;
    margin-bottom: 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
  }

  .sec06-layout .l-ttl {
    margin-bottom: 15px;
    line-height: 1.7;
  }

  .sec06-layout .l-ttl span {
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    font-size: 22px;
  }
}

.sec07 {
  padding: 100px 0 95px;
}

.sec07-ttl {
  text-align: center;
  font-size: 34px;
  padding: 10px;
  border-top: 1px solid #231900;
  border-bottom: 1px solid #231900;
  margin-bottom: 60px;
}

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

.sec07-layout .l-img {
  width: 50%;
  margin-left: 60px;
}

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

.sec07-layout .l-ttl {
  font-size: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid #E0E0E0;
  position: relative;
  margin-bottom: 20px;
}

.sec07-layout .l-ttl::before {
  content: "";
  width: 70px;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background: #BCA849;
}

.sec07-layout .l-ttl .small {
  font-size: 21px;
}

.sec07-layout .l-box {
  background: #F6F6F4;
  padding: 35px 35px 25px 25px;
  position: relative;
  margin-top: 30px;
}

.sec07-layout .l-box-ttl {
  font-size: 20px;
  color: #fff;
  background: #BCA849;
  line-height: 1.2;
  padding: 5px 10px;
  position: absolute;
  top: -13px;
  left: 0;
}

.sec07-layout .l-box-list>li {
  font-size: 18px;
  font-family: "FP-ヒラギノ明朝 ProN W3";
  padding-left: 22px;
  position: relative;
  line-height: 1.4;
}

.sec07-layout .l-box-list>li:not(:last-child) {
  margin-bottom: 10px;
}

.sec07-layout .l-box-list>li::before {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  top: 7px;
  left: 0;
  background: url(../images/share/icon_check_small.svg) center/contain no-repeat;
}

.sec07-layout+.sec07-layout {
  margin-top: 45px;
}

.sec07 .btn-more {
  margin: 70px auto 0;
}

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

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

  .sec07-layout {
    display: block;
  }

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

  .sec07-layout .l-ttl {
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }

  .sec07-layout .l-ttl::before {
    width: 60px;
  }

  .sec07-layout .l-ttl .small {
    font-size: 16px;
  }

  .sec07-layout .l-box {
    padding: 35px 20px 25px 20px;
    margin-top: 30px;
  }

  .sec07-layout .l-box-ttl {
    font-size: 16px;
  }

  .sec07-layout .l-box-list>li {
    font-size: 16px;
  }

  .sec07-layout .l-box-list>li::before {
    top: 4px;
  }

  .sec07-layout+.sec07-layout {
    margin-top: 35px;
  }

  .sec07 .btn-more {
    margin: 25px auto 0;
  }
}

.sec08 {
  padding: 70px 0 120px;
  background: url(../images/sec08_bg01.jpg) center/cover no-repeat;
  margin-bottom: 100px;
}

.sec08-list>li {
  background: #fff;
  padding: 50px;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
}

.sec08-list>li:not(:last-child) {
  margin-bottom: 100px;
  position: relative;
}

.sec08-list>li:not(:last-child)::before {
  content: "";
  border-style: solid;
  border-width: 20px 17px 0;
  border-color: #231900 transparent transparent transparent;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.sec08-list .list-num {
  position: absolute;
  top: -60px;
  left: 50px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  font-family: "Cormorant Infant", serif;
  font-weight: 400;
  text-align: center;
  color: #BCA849;
}

.sec08-list .list-num .txt {
  font-size: 22px;
}

.sec08-list .list-num .num {
  font-size: 72px;
}

.sec08-list .list-layout {
  display: flex;
}

.sec08-list .list-layout .l-img {
  flex: 1;
  margin-right: 45px;
}

.sec08-list .list-layout .l-desc {
  flex: 1.1;
}

.sec08-list .list-layout .l-ttl {
  font-size: 26px;
  margin-bottom: 30px;
}

.sec08-list .list-btn {
  display: flex;
  margin-top: 50px;
}

.sec08-list .list-btn a {
  flex: 1;
}

.sec08-list .list-btn a:not(:last-child) {
  margin-right: 40px;
}

.sec08-list .list-comment {
  margin-top: 35px;
  display: flex;
}

.sec08-list .list-comment-img {
  width: 148px;
  margin: 22px 32px 0 0;
}

.sec08-list .list-comment-desc {
  flex: 1;
  background: #EEE9D1;
  padding: 45px;
  position: relative;
}

.sec08-list .list-comment-desc::before {
  content: "";
  border-style: solid;
  border-width: 12px 20px 12px 0;
  border-color: transparent #EEE9D1 transparent transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
}

.sec08-list .list-comment-catch {
  text-align: center;
  font-size: 26px;
  line-height: 1.7;
}

.sec08-list .list-comment-txt {
  margin-top: 10px;
}

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

  .sec08-list>li {
    padding: 25px 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
  }

  .sec08-list>li:not(:last-child) {
    margin-bottom: 55px;
  }

  .sec08-list>li:not(:last-child)::before {
    border-width: 14px 12px 0;
    bottom: -35px;
  }

  .sec08-list .list-num {
    position: absolute;
    top: -40px;
    left: 20px;
  }

  .sec08-list .list-num .txt {
    font-size: 18px;
  }

  .sec08-list .list-num .num {
    font-size: 44px;
  }

  .sec08-list .list-layout {
    display: block;
  }

  .sec08-list .list-layout .l-img {
    margin: 0 0 20px;
  }

  .sec08-list .list-layout .l-ttl {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .sec08-list .list-btn {
    display: block;
    margin-top: 20px;
  }

  .sec08-list .list-btn a:not(:last-child) {
    margin: 0 0 15px;
  }

  .sec08-list .list-comment {
    margin-top: 20px;
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .sec08-list .list-comment-img {
    width: 90px;
    margin: -15px 0 0;
    position: relative;
    z-index: 10;
  }

  .sec08-list .list-comment-desc {
    padding: 20px;
    width: 100%;
  }

  .sec08-list .list-comment-desc::before {
    border-width: 12px 7px 0 7px;
    border-color: #EEE9D1 transparent transparent transparent;
    top: 100%;
    transform: translateY(-1px);
    left: 100px;
  }

  .sec08-list .list-comment-catch {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
  }

  .sec08-list .list-comment-txt {
    margin-top: 10px;
  }
}

.sec09-ttl {
  text-align: center;
  margin-bottom: 45px;
  font-size: 40px;
}

.sec09-inr {
  width: 90%;
  max-width: 1600px;
  background: linear-gradient(to bottom right, #EEE9D1, #E5D4B4);
  margin: 0 auto;
  padding: 100px 0;
}

.sec09-list {
  display: flex;
  justify-content: space-between;
}

.sec09-list>li {
  width: 48.5%;
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.16);
  background: #fff;
  text-align: center;
  padding: 45px 40px;
}

.sec09-list .list-ttl {
  display: block;
  font-size: 30px;
  font-family: "FP-ヒラギノ明朝 ProN W3";
  line-height: 1.7;
}

.sec09-list .ttl-small {
  display: block;
  font-size: 18px;
  font-family: "FP-ヒラギノ明朝 ProN W3";
  line-height: 1.4;
  margin-bottom: 15px;
}

.sec09-list .txt01 {
  display: block;
  font-size: 26px;
  font-family: "FP-ヒラギノ明朝 ProN W3";
  line-height: 1.4;
  margin-bottom: 10px;
}

.sec09-list .arrow {
  line-height: 1;
  margin-bottom: 10px;
}

.sec09-list .arrow img {
  width: 32px;
}

.sec09-list .txt02 {
  display: inline-block;
  background: #4B2612;
  color: #fff;
  line-height: 1;
  padding: 5px 10px;
  font-size: 18px;
  font-family: "FP-ヒラギノ明朝 ProN W3";
  margin-bottom: 15px;
}

.sec09-list .price-wrap {
  display: flex;
  justify-content: center;
  line-height: 1;
  margin-bottom: 25px;
}

.sec09-list .price-wrap .txt {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #4B2612;
  text-align: center;
  line-height: 52px;
  font-size: 16px;
  color: #4B2612;
  font-family: "FP-ヒラギノ明朝 ProN W3";
  margin-right: 5px;
}

.sec09-list .price-wrap .price {
  display: inline-block;
  font-size: 36px;
  color: #BCA849;
  padding: 5px;
  border-bottom: 1px solid #4B2612;
  font-family: "FP-ヒラギノ明朝 ProN W3";
}

.sec09-list .txt03 {
  text-align: left;
  font-family: "FP-ヒラギノ明朝 ProN W3";
}

@media (max-width: 800px) {
  .sec09-ttl {
    margin-bottom: 25px;
    font-size: 22px;
  }

  .sec09-inr {
    max-width: none;
    padding: 30px 0;
  }

  .sec09-list {
    display: block;
  }

  .sec09-list>li {
    width: 100%;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.16);
    padding: 30px 20px;
  }

  .sec09-list>li:not(:last-child) {
    margin-bottom: 20px;
  }

  .sec09-list .list-ttl {
    font-size: 20px;
    line-height: 1.4;
  }

  .sec09-list .ttl-small {
    font-size: 16px;
  }

  .sec09-list .txt01 {
    font-size: 24px;
  }

  .sec09-list .arrow {
    margin-bottom: 10px;
  }

  .sec09-list .arrow img {
    width: 24px;
  }

  .sec09-list .txt02 {
    font-size: 16px;
  }

  .sec09-list .price-wrap {
    margin-bottom: 25px;
  }

  .sec09-list .price-wrap .txt {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
    margin-right: 5px;
  }

  .sec09-list .price-wrap .price {
    font-size: 31px;
  }
}

.sec10 {
  padding: 80px 0 100px;
}

.sec10-table {
  margin-bottom: 20px;
}

.sec10-table tr {
  border-top: 1px solid #231900;
}

.sec10-table tr:last-child {
  border-bottom: 1px solid #231900;
}

.sec10-table th,
.sec10-table td {
  vertical-align: middle;
  line-height: 1.333;
  font-family: "FP-ヒラギノ明朝 ProN W3";
}

.sec10-table th {
  width: 22.6%;
  padding: 25px 30px;
  background: #F7F5ED;
}

.sec10-table td {
  padding: 15px 30px;
  width: 38.7%;
}

.sec10-table td+td {
  border-left: 1px solid #231900;
}

.sec10-txt {
  font-family: "FP-ヒラギノ明朝 ProN W3";
}

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

  .sec10-table th {
    display: block;
    width: 100%;
    padding: 15px;
  }

  .sec10-table td {
    display: inline-block;
    width: 65%;
    padding: 15px;
    vertical-align: bottom;
  }

  .sec10-table td+td {
    border-left: none;
    width: 35%;
  }
}

.sec11 {
  padding: 80px 0 100px;
  background: #F6F6F4;
}

.sec11-ttl {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 70px;
}

.sec11 .t-ttl {
  text-align: left;
  margin-bottom: 0;
}

.sec11 .btn-more {
  min-width: 230px;
}

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

  .sec11-ttl {
    display: block;
    margin-bottom: 30px;
  }

  .sec11 .t-ttl {
    text-align: center;
    margin-bottom: 0;
  }

  .sec11 .btn-more+.btn-more {
    margin-top: 15px;
  }
}

.sec12 {
  padding: 80px 0 100px;
}

.sec12-faq {
  font-family: "FP-ヒラギノ明朝 ProN W3";
}

.sec12-faq .icon {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background: #333333;
  color: #fff;
  font-size: 23px;
  font-family: "Cormorant Infant", serif;
  font-weight: 400;
  text-align: center;
  line-height: 41px;
  margin-right: 15px;
}

.sec12-faq dt {
  display: flex;
  align-items: flex-start;
  padding-bottom: 15px;
  border-bottom: 1px solid #382F19;
  margin-bottom: 25px;
}

.sec12-faq dt .txt {
  margin-top: 2px;
  flex: 1;
  font-size: 21px;
}

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

.sec12-faq p+p {
  margin-top: 2em;
}

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

  .sec12-faq .icon {
    width: 32px;
    height: 32px;
    font-size: 18px;
    line-height: 30px;
    margin-right: 10px;
  }

  .sec12-faq dt {
    padding-bottom: 10px;
    margin-bottom: 15px;
  }

  .sec12-faq dt .txt {
    margin-top: 0;
    font-size: 18px;
  }

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

  .sec12-faq p+p {
    margin-top: 1em;
  }
}

.sec13 {
  padding: 80px 0;
}

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

.sec14 {
  padding: 80px 0 120px;
  background: url(../images/sec14_bg01.jpg) center/cover no-repeat;
}

.sec14-ttl {
  text-align: center;
  margin-bottom: 50px;
}

.sec14-ttl span {
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  border-bottom: 1px solid #fff;
  padding-bottom: 7px;
  font-size: 40px;
  color: #fff;
}

.sec14-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 5px;
}

.sec14-list>li>a {
  background: #fff;
  display: block;
  padding: 40px 20px 85px;
  position: relative;
}

.sec14-list>li>a::before {
  content: "";
  width: 19px;
  height: 10px;
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  background: url(../images/sec14_arrow.svg) center/contain no-repeat;
  transition: 0.3s;
}

.sec14-list>li>a:hover::before {
  left: 53%;
}

.sec14-list .list-img {
  text-align: center;
  margin-bottom: 5px;
}

.sec14-list .list-img img {
  width: 50px;
}

.sec14-list .list-ttl span {
  display: block;
  text-align: center;
}

.sec14-list .list-ttl .jp {
  font-size: 18px;
  letter-spacing: 0.1em;
}

.sec14-list .list-ttl .en {
  font-family: "Cormorant Infant", serif;
  color: #4B2612;
  font-size: 13px;
  letter-spacing: 0.15em;
}

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

  .sec14-ttl {
    margin-bottom: 30px;
    line-height: 1.7;
  }

  .sec14-ttl span {
    padding-bottom: 5px;
    font-size: 22px;
  }

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

  .sec14-list>li>a {
    padding: 20px 20px 45px;
  }

  .sec14-list>li>a::before {
    bottom: 20px;
  }
}

/*------------
top-parts
--------------*/
.top-layout01 {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  padding: 20px 0 60px;
  position: relative;
}

.top-layout01::before {
  content: "";
  width: 100px;
  height: 233px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../images/sec01_deco02.png) center/cover no-repeat;
  z-index: -1;
}

.top-layout01::after {
  content: "";
  width: 36%;
  height: 645px;
  position: absolute;
  top: 0;
  right: 42%;
  transform: translateX(50%);
  background: url(../images/sec01_deco01.png) center/cover no-repeat;
  z-index: -1;
}

.top-layout01 .l-img {
  width: 47.4%;
  position: relative;
  z-index: 5;
}

.top-layout01 .l-img img {
  width: 100%;
  height: 594px;
  -o-object-fit: cover;
  object-fit: cover;
}

.top-layout01 .l-desc {
  flex: 1;
  padding-left: 5vw;
}

.top-layout01 .l-desc-inr {
  max-width: 650px;
  margin-left: auto;
}

.top-layout01 .l-en {
  font-size: 150px;
  color: #AD9C30;
  font-family: "Cormorant Infant", serif;
  font-weight: 400;
  line-height: 1;
  max-width: 750px;
  margin-left: auto;
  margin-bottom: 40px;
  line-height: 1.2;
}

.top-layout01 .l-ttl {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 45px;
}

.top-layout01 .l-ttl::before {
  content: "";
  width: 52.6vw;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #E0E0E0;
}

.top-layout01 .l-ttl span {
  font-size: 40px;
  display: block;
  max-width: 650px;
  margin-left: auto;
  position: relative;
}

.top-layout01 .l-ttl span::before {
  content: "";
  width: 200px;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -16px;
  background: #BCA849;
}

.top-layout01.reverse {
  flex-direction: row;
  align-items: flex-start;
  padding: 0 0 125px;
}

.top-layout01.reverse::before {
  content: "";
  width: 235px;
  height: 346px;
  position: absolute;
  left: auto;
  right: 0;
  bottom: 0;
  background: url(../images/sec02_deco02.png) center/cover no-repeat;
  z-index: -1;
}

.top-layout01.reverse::after {
  content: "";
  width: 30.5%;
  height: 654px;
  position: absolute;
  top: 170px;
  right: auto;
  left: 47.5%;
  transform: translateX(-50%);
  background: url(../images/sec02_deco01.png) center/cover no-repeat;
  z-index: -1;
}

.top-layout01.reverse .l-img {
  margin-top: 100px;
}

.top-layout01.reverse .l-desc {
  padding-left: 0;
  padding-right: 5vw;
}

.top-layout01.reverse .l-desc-inr {
  max-width: none;
  margin-left: 7.5vw;
}

.top-layout01.reverse .l-en {
  max-width: none;
  margin-left: -50px;
  margin-bottom: 30px;
}

.top-layout01.reverse .l-en span {
  display: block;
}

.top-layout01.reverse .l-en .txt02 {
  margin-left: 85px;
}

.top-layout01.reverse .l-ttl {
  padding-left: 7.5vw;
}

.top-layout01.reverse .l-ttl::before {
  right: auto;
  left: 0;
}

.top-layout01.reverse .l-ttl span {
  max-width: none;
  margin-left: 0;
}

@media screen and (max-width: 1200px) and (min-width: 801px) {
  .top-layout01 .l-en {
    font-size: 100px;
  }
}

@media (max-width: 800px) {
  .top-layout01 {
    display: block;
    padding: 50px 0 40px;
  }

  .top-layout01::before {
    width: 50px;
    height: 117px;
    left: 0;
    bottom: 0;
  }

  .top-layout01::after {
    width: 50%;
    height: 50vw;
    top: 0;
    right: 0;
    transform: none;
  }

  .top-layout01 .l-img {
    width: 90%;
    margin: 0 auto 20px;
    position: static;
  }

  .top-layout01 .l-img img {
    height: auto;
  }

  .top-layout01 .l-desc {
    padding-left: 0;
    width: 90%;
    margin: 0 auto;
  }

  .top-layout01 .l-desc-inr {
    max-width: 100%;
    margin: 0;
  }

  .top-layout01 .l-en {
    font-size: 54px;
    max-width: none;
    margin: 0 0 15px;
    position: absolute;
    top: 10px;
    left: 5%;
    z-index: 10;
  }

  .top-layout01 .l-ttl {
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #E0E0E0;
  }

  .top-layout01 .l-ttl::before {
    display: none;
  }

  .top-layout01 .l-ttl::after {
    content: "";
    width: 60px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -1px;
    background: #BCA849;
  }

  .top-layout01 .l-ttl span {
    font-size: 24px;
    max-width: none;
    margin-left: 0;
  }

  .top-layout01 .l-ttl span::before {
    display: none;
  }

  .top-layout01.reverse {
    padding: 100px 0 40px;
  }

  .top-layout01.reverse::before {
    width: 117px;
    height: 173px;
    right: 0;
    bottom: 0;
  }

  .top-layout01.reverse::after {
    width: 40%;
    height: 50vw;
    top: 0;
    left: 0;
    transform: none;
  }

  .top-layout01.reverse .l-img {
    margin-top: 0;
  }

  .top-layout01.reverse .l-desc {
    padding: 0;
  }

  .top-layout01.reverse .l-desc-inr {
    margin-left: 0;
  }

  .top-layout01.reverse .l-en {
    margin-left: 0;
    margin-bottom: 30px;
    position: absolute;
    line-height: 1;
  }

  .top-layout01.reverse .l-en .txt02 {
    margin-left: 30px;
  }

  .top-layout01.reverse .l-ttl {
    padding-left: 0;
  }

  .top-layout01.reverse .l-ttl span {
    max-width: none;
    margin-left: 0;
  }
}

.list-check01>li {
  position: relative;
  font-size: 26px;
  padding-left: 35px;
  line-height: 1.5;
}

.list-check01>li::before {
  content: "";
  width: 21px;
  height: 21px;
  position: absolute;
  top: 10px;
  left: 0;
  background: url(../images/share/icon_check_large.svg) center/contain no-repeat;
}

.list-check01>li:not(:last-child) {
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .list-check01>li {
    font-size: 18px;
    padding-left: 25px;
    line-height: 1.4;
  }

  .list-check01>li::before {
    width: 18px;
    height: 18px;
    top: 4px;
  }

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

.tab-area {
  width: 100%;
  display: flex;
}

.tab-area .tab-item {
  flex: 1;
  background: #fff;
  border: 1px solid #BCA849;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 30px;
  font-family: "FP-ヒラギノ明朝 ProN W3";
  display: flex;
  align-items: center;
  padding: 22px;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
}

.tab-area .tab-item::before {
  content: "";
  border-style: solid;
  border-width: 0 0 11px 11px;
  border-color: transparent transparent #BCA849 transparent;
  position: absolute;
  bottom: 6px;
  right: 6px;
}

.tab-area .tab-item:not(:last-child) {
  margin-right: 50px;
}

.tab-area .tab-item:hover {
  opacity: 0.6;
}

.tab-area .tab-item.active {
  background: #F7F5ED;
}

.tab-area .tab-img {
  margin-right: 15px;
}

.tab-area .tab-img img {
  width: auto;
  height: 80px;
}

.panel-item {
  display: none;
}

.panel-item.active {
  display: block;
}

@media (max-width: 800px) {
  .tab-area {
    display: flex;
  }

  .tab-area .tab-item {
    font-size: 18px;
    line-height: 1.4;
    padding: 15px 15px 20px;
    display: block;
    text-align: center;
  }

  .tab-area .tab-item::before {
    border-width: 0 0 10px 10px;
    bottom: 5px;
    right: 5px;
  }

  .tab-area .tab-item:not(:last-child) {
    margin-right: 15px;
  }

  .tab-area .tab-img {
    margin: 0 0 10px;
    text-align: center;
  }

  .tab-area .tab-img img {
    width: auto;
    height: 70px;
  }
}

.map-layout01 {
  display: flex;
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

.map-layout01 iframe {
  vertical-align: bottom;
  height: 100%;
  width: 100%;
}

.map-layout01 .l-map {
  flex: 1;
}

.map-layout01 .l-desc {
  padding: 60px 30px 65px;
  width: 32.5%;
  min-width: 480px;
  margin-left: 50px;
  border: 1px solid #BCA849;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-layout01 .l-logo {
  text-align: center;
  margin-bottom: 20px;
}

.map-layout01 .l-logo img {
  max-width: 270px;
}

.map-layout01 .address {
  display: inline-block;
  position: relative;
  padding-left: 23px;
  margin-bottom: 20px;
  font-family: "FP-ヒラギノ明朝 ProN W3";
}

.map-layout01 .address::before {
  content: "";
  width: 15px;
  height: 21px;
  position: absolute;
  top: 7px;
  left: 0;
  background: url(../images/share/icon_map.svg) center/contain no-repeat;
}

.map-layout01 .l-tel {
  display: inline-block;
  font-size: 34px;
  font-family: "Cormorant Infant", serif;
  font-weight: 400;
  line-height: 1;
  padding-left: 30px;
  position: relative;
  margin-bottom: 25px;
}

.map-layout01 .l-tel:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  background: url(../images/share/icon_tel_g.svg) no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
}

.map-layout01 .l-dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-gap: 10px 0px;
  font-family: "FP-ヒラギノ明朝 ProN W3";
  line-height: 1.5;
  text-align: left;
  margin-bottom: 35px;
}

.map-layout01 .btn-more {
  margin: 0 auto;
}

@media (max-width: 800px) {
  .map-layout01 {
    display: block;
    max-width: none;
    margin: 0 auto;
  }

  .map-layout01 iframe {
    height: 70vw;
  }

  .map-layout01 .l-desc {
    padding: 30px 20px;
    width: 100%;
    min-width: auto;
    margin: 20px 0 0;
  }

  .map-layout01 .l-logo img {
    max-width: 250px;
  }

  .map-layout01 .address::before {
    top: 3px;
  }

  .map-layout01 .l-tel {
    font-size: 30px;
    padding-left: 25px;
    margin-bottom: 20px;
  }

  .map-layout01 .l-tel:before {
    top: 3px;
    left: 0;
    width: 21px;
    height: 21px;
  }

  .map-layout01 .l-dl {
    font-size: 14px;
    grid-template-columns: 80px 1fr;
    margin-bottom: 25px;
  }
}

/*------------
Post
--------------*/
/*症例紹介*/
.top-case-layout {
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 60px;
}

.top-case-layout .l-img {
  width: 295px;
  margin-left: 6.7%;
}

.top-case-layout .l-img-item:not(:last-child) {
  margin-bottom: 15px;
}

.top-case-layout .l-img-item:nth-child(2) .l-img-txt {
  color: #BCA849;
}

.top-case-layout .l-img-txt {
  line-height: 1.2;
  text-align: center;
  font-size: 20px;
  font-family: "Cormorant Infant", serif;
  font-weight: 400;
  margin-top: 15px;
  letter-spacing: 0.1em;
}

.top-case-layout .l-desc {
  flex: 1;
}

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

.top-case-layout .case-table th,
.top-case-layout .case-table td {
  line-height: 1.333;
  vertical-align: middle;
  font-family: "FP-ヒラギノ明朝 ProN W3";
}

.top-case-layout .case-table th {
  padding: 15px 0;
  border-bottom: 2px solid #BCA849;
}

.top-case-layout .case-table td {
  padding: 15px 35px;
  border-bottom: 1px solid #aaa;
}

@media (max-width: 800px) {
  .top-case-layout {
    display: block;
    margin-bottom: 30px;
  }

  .top-case-layout .l-img {
    width: 100%;
    margin: 0 0 20px;
  }

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

  .top-case-layout .case-table {
    font-size: 14px;
  }

  .top-case-layout .case-table th {
    padding: 10px 0;
  }

  .top-case-layout .case-table td {
    padding: 10px 15px;
  }
}

/*------------
Footer
--------------*/
.footer .copyright {
  font-size: 14px;
  line-height: 1;
  color: #E0D6AA;
  text-align: center;
  padding: 15px;
  background: #BCA849;
}

.pagetop {
  background: #fff;
  border: 1px solid #BCA849;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  transition: 0.3s;
}

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

.pagetop:after {
  content: "";
  width: 11px;
  height: 20px;
  border: 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/share/arrow_pagetop.svg) center/contain no-repeat;
}

@media (max-width: 800px) {
  .footer .copyright {
    font-size: 12px;
  }

  .pagetop {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
  }
}

/*-----------------------------------------------------------
ボタン
-----------------------------------------------------------*/
.btn-more {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 310px;
  padding: 10px 50px;
  font-size: 20px;
  text-align: center;
  color: #fff;
  background-color: #BCA849;
  border: 1px solid #BCA849;
  transition: 0.3s;
  position: relative;
}

.btn-more:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 20px;
  height: 11px;
  background: url(../images/share/arrow_btn.svg) center/contain no-repeat;
}

.btn-more:hover {
  color: #BCA849;
  background-color: #fff;
}

.btn-more:hover:before {
  background: url(../images/share/arrow_btn_g.svg) center/contain no-repeat;
}

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

.btn-icon {
  background: #BCA849;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 70px;
  color: #fff;
  font-family: "FP-ヒラギノ明朝 ProN W3";
  letter-spacing: 0.1em;
  font-size: 17px;
  transition: 0.3s;
}

.btn-icon.official-site {
  background: #231900;
  line-height: 1.5;
  text-align: center;
}

.btn-icon:hover {
  opacity: 0.6;
}

.btn-icon img {
  width: 25px;
  margin-right: 8px;
}

.btn-icon.large {
  height: auto;
  font-size: 23px;
}

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

.btn-tel {
  background: #231900;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 20px;
  transition: 0.3s;
}

.btn-tel:hover {
  opacity: 0.6;
}

.btn-tel-txt {
  font-size: 13px;
  letter-spacing: 0.1em;
  font-family: "FP-ヒラギノ明朝 ProN W3";
  margin-bottom: 8px;
}

.btn-tel-num {
  font-family: "Cormorant Infant", serif;
  font-weight: 400;
  letter-spacing: 0.15em;
  position: relative;
  padding-left: 30px;
  font-size: 30px;
}

.btn-tel-num::before {
  content: "";
  width: 22px;
  height: 22px;
  position: absolute;
  top: 5px;
  left: 0;
  background: url(../images/share/icon_tel_w.svg) center/contain no-repeat;
}

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

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

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

@media (max-width: 800px) {
  .btn-more {
    width: 100%;
    min-width: auto;
    padding: 10px 40px;
    font-size: 16px;
  }

  .btn-icon {
    width: 100%;
    height: 50px;
    font-size: 16px;
  }

  .btn-icon img {
    width: 24px;
    margin-right: 5px;
  }

  .btn-icon.large {
    height: 50px;
    font-size: 16px;
  }

  .btn-icon.large img {
    width: 24px;
    margin-right: 5px;
  }

  .btn-tel {
    padding: 15px;
  }

  .btn-tel-txt {
    font-size: 13px;
    margin-bottom: 5px;
  }

  .btn-tel-num {
    padding-left: 22px;
    font-size: 22px;
  }

  .btn-tel-num::before {
    width: 16px;
    height: 16px;
    top: 4px;
  }

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

  .btn-wrap a {
    margin: 0;
  }

  .btn-wrap a:not(:last-child) {
    margin-bottom: 15px;
  }
}

/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
.clearfix:after {
  clear: both;
  content: "";
  display: block;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

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

.fade {
  transition: opacity 0.5s;
}

.fade:hover {
  opacity: 0.5;
}

.fs11 {
  font-size: 11px;
}

.txt-color01 {
  color: #AD9C30;
}

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

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

.underline {
  text-decoration: underline;
}

.marker {
  background: linear-gradient(transparent 60%, #DFD5A7 60%);
}

.link {
  text-decoration: underline;
}

.link:hover {
  text-decoration: none;
}

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

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

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

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

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

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

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

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

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

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

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

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

@media (max-width: 800px) {
  .txt-large {
    font-size: 18px;
  }

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

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

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .sp-tac {
    text-align: center !important;
  }

  .sp-tar {
    text-align: right !important;
  }

  .sp-tal {
    text-align: left !important;
  }

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

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

.tel {
  display: inline-block;
  font-size: 27px;
  font-family: "Cormorant Infant", serif;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.15em;
  line-height: 1;
  padding-left: 30px;
  position: relative;
}

.tel:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  background: url(../images/share/icon_tel_w.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}

@media (max-width: 800px) {
  .tel {
    font-size: 24px;
    padding-left: 25px;
  }

  .tel:before {
    width: 20px;
    height: 25px;
  }
}

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

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

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

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

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

.splide__progress__bar {
  width: 0;
}

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

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

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

.splide__slide img {
  vertical-align: bottom;
}

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

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

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

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

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

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

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

.splide__track--fade>.splide__list>.splide__slide {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 0;
}

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

.splide--rtl {
  direction: rtl;
}

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

.splide__arrow {
  align-items: center;
  background: #e9e9e9;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 64px;
  width: 64px;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.splide__arrow--prev::after,
.splide__arrow--next::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border: solid #000;
  border-width: 1px 1px 0 0;
}

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

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

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

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

.splide__arrow:disabled {
  opacity: 0.3;
}

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

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

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

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

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

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

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #333;
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

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

.splide__progress__bar {
  background: #ccc;
  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 #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
    border-color: #0bf;
  }
}

.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  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 #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

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

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

@media (max-width: 800px) {
  .splide__arrow {
    height: 40px;
    width: 40px;
  }

  .splide__arrow--prev::after,
  .splide__arrow--next::after {
    width: 12px;
    height: 12px;
  }
}

/*# sourceMappingURL=style.css.map */
