/* 基本設定 */
:root {
  --main-bg-color: #324460;
  --dark-bg-color: #253049;
  --gold-color: #d4b96a;
  --light-gold: #fee69f;
  --teal-accent: #6282a8;
  --teal-blue: #3A7D89;
  --dark-gold: #9f8440;
  --white: #FFFFFF;
  --off-white: #F5F5F0;
  --gray: #CCCCCC;
  --main-gradient: linear-gradient(135deg, #1A3B3B 0%, #5A9B94 50%, #D4B96A 100%);
  --dark-gradient: linear-gradient(to bottom, #142E2E 0%, #1A3B3B 100%);
}

* {
  letter-spacing: 0.08em;
  box-sizing: border-box;
}

iframe {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

figure {
  margin: 0;
}

* :has(> wbr) {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

body {
  font-family: '游ゴシック体', YuGothic, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic';
  margin: 0;
  padding: 0;
  background-color: var(--main-bg-color);
  color: var(--white);
  line-height: 1.6;
}

dd {
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
}

/* 汎用 */
.m-c {
  margin-inline: auto;
}

.ma-0 {
  margin: 0em;
}

@media (max-width: 768px) {
  .ma-0 {
    margin: calc(0 * 0.6);
  }
}

.mb-0 {
  margin-bottom: 0em;
}

@media (max-width: 768px) {
  .mb-0 {
    margin-bottom: calc(0em * 0.6);
  }
}

.mt-0 {
  margin-top: 0em;
}

@media (max-width: 768px) {
  .mt-0 {
    margin-top: calc(0em * 0.6);
  }
}

.ml-0 {
  margin-left: 0em;
}

@media (max-width: 768px) {
  .ml-0 {
    margin-left: calc(0em * 0.6);
  }
}

.mr-0 {
  margin-right: 0em;
}

@media (max-width: 768px) {
  .mr-0 {
    margin-right: calc(0em * 0.6);
  }
}

.pa-0 {
  padding: 0em;
}

@media (max-width: 768px) {
  .pa-0 {
    padding: calc(0em * 0.6);
  }
}

.pb-0 {
  padding-bottom: 0em;
}

@media (max-width: 768px) {
  .pb-0 {
    padding-bottom: calc(0em * 0.6);
  }
}

.pt-0 {
  padding-top: 0em;
}

@media (max-width: 768px) {
  .pt-0 {
    padding-top: calc(0em * 0.6);
  }
}

.pl-0 {
  padding-left: 0em;
}

@media (max-width: 768px) {
  .pl-0 {
    padding-left: calc(0em * 0.6);
  }
}

.pr-0 {
  padding-right: 0em;
}

@media (max-width: 768px) {
  .pr-0 {
    padding-right: calc(0em * 0.6);
  }
}

.gap-0 {
  gap: 0em;
}

@media (max-width: 768px) {
  .gap-0 {
    gap: calc(0em * 0.6);
  }
}

.ma-1 {
  margin: 1em;
}

@media (max-width: 768px) {
  .ma-1 {
    margin: calc(1 * 0.6);
  }
}

.mb-1 {
  margin-bottom: 1em;
}

@media (max-width: 768px) {
  .mb-1 {
    margin-bottom: calc(1em * 0.6);
  }
}

.mt-1 {
  margin-top: 1em;
}

@media (max-width: 768px) {
  .mt-1 {
    margin-top: calc(1em * 0.6);
  }
}

.ml-1 {
  margin-left: 1em;
}

@media (max-width: 768px) {
  .ml-1 {
    margin-left: calc(1em * 0.6);
  }
}

.mr-1 {
  margin-right: 1em;
}

@media (max-width: 768px) {
  .mr-1 {
    margin-right: calc(1em * 0.6);
  }
}

.pa-1 {
  padding: 1em;
}

@media (max-width: 768px) {
  .pa-1 {
    padding: calc(1em * 0.6);
  }
}

.pb-1 {
  padding-bottom: 1em;
}

@media (max-width: 768px) {
  .pb-1 {
    padding-bottom: calc(1em * 0.6);
  }
}

.pt-1 {
  padding-top: 1em;
}

@media (max-width: 768px) {
  .pt-1 {
    padding-top: calc(1em * 0.6);
  }
}

.pl-1 {
  padding-left: 1em;
}

@media (max-width: 768px) {
  .pl-1 {
    padding-left: calc(1em * 0.6);
  }
}

.pr-1 {
  padding-right: 1em;
}

@media (max-width: 768px) {
  .pr-1 {
    padding-right: calc(1em * 0.6);
  }
}

.gap-1 {
  gap: 1em;
}

@media (max-width: 768px) {
  .gap-1 {
    gap: calc(1em * 0.6);
  }
}

.ma-2 {
  margin: 2em;
}

@media (max-width: 768px) {
  .ma-2 {
    margin: calc(2 * 0.6);
  }
}

.mb-2 {
  margin-bottom: 2em;
}

@media (max-width: 768px) {
  .mb-2 {
    margin-bottom: calc(2em * 0.6);
  }
}

.mt-2 {
  margin-top: 2em;
}

@media (max-width: 768px) {
  .mt-2 {
    margin-top: calc(2em * 0.6);
  }
}

.ml-2 {
  margin-left: 2em;
}

@media (max-width: 768px) {
  .ml-2 {
    margin-left: calc(2em * 0.6);
  }
}

.mr-2 {
  margin-right: 2em;
}

@media (max-width: 768px) {
  .mr-2 {
    margin-right: calc(2em * 0.6);
  }
}

.pa-2 {
  padding: 2em;
}

@media (max-width: 768px) {
  .pa-2 {
    padding: calc(2em * 0.6);
  }
}

.pb-2 {
  padding-bottom: 2em;
}

@media (max-width: 768px) {
  .pb-2 {
    padding-bottom: calc(2em * 0.6);
  }
}

.pt-2 {
  padding-top: 2em;
}

@media (max-width: 768px) {
  .pt-2 {
    padding-top: calc(2em * 0.6);
  }
}

.pl-2 {
  padding-left: 2em;
}

@media (max-width: 768px) {
  .pl-2 {
    padding-left: calc(2em * 0.6);
  }
}

.pr-2 {
  padding-right: 2em;
}

@media (max-width: 768px) {
  .pr-2 {
    padding-right: calc(2em * 0.6);
  }
}

.gap-2 {
  gap: 2em;
}

@media (max-width: 768px) {
  .gap-2 {
    gap: calc(2em * 0.6);
  }
}

.ma-3 {
  margin: 3em;
}

@media (max-width: 768px) {
  .ma-3 {
    margin: calc(3 * 0.6);
  }
}

.mb-3 {
  margin-bottom: 3em;
}

@media (max-width: 768px) {
  .mb-3 {
    margin-bottom: calc(3em * 0.6);
  }
}

.mt-3 {
  margin-top: 3em;
}

@media (max-width: 768px) {
  .mt-3 {
    margin-top: calc(3em * 0.6);
  }
}

.ml-3 {
  margin-left: 3em;
}

@media (max-width: 768px) {
  .ml-3 {
    margin-left: calc(3em * 0.6);
  }
}

.mr-3 {
  margin-right: 3em;
}

@media (max-width: 768px) {
  .mr-3 {
    margin-right: calc(3em * 0.6);
  }
}

.pa-3 {
  padding: 3em;
}

@media (max-width: 768px) {
  .pa-3 {
    padding: calc(3em * 0.6);
  }
}

.pb-3 {
  padding-bottom: 3em;
}

@media (max-width: 768px) {
  .pb-3 {
    padding-bottom: calc(3em * 0.6);
  }
}

.pt-3 {
  padding-top: 3em;
}

@media (max-width: 768px) {
  .pt-3 {
    padding-top: calc(3em * 0.6);
  }
}

.pl-3 {
  padding-left: 3em;
}

@media (max-width: 768px) {
  .pl-3 {
    padding-left: calc(3em * 0.6);
  }
}

.pr-3 {
  padding-right: 3em;
}

@media (max-width: 768px) {
  .pr-3 {
    padding-right: calc(3em * 0.6);
  }
}

.gap-3 {
  gap: 3em;
}

@media (max-width: 768px) {
  .gap-3 {
    gap: calc(3em * 0.6);
  }
}

.ma-4 {
  margin: 4em;
}

@media (max-width: 768px) {
  .ma-4 {
    margin: calc(4 * 0.6);
  }
}

.mb-4 {
  margin-bottom: 4em;
}

@media (max-width: 768px) {
  .mb-4 {
    margin-bottom: calc(4em * 0.6);
  }
}

.mt-4 {
  margin-top: 4em;
}

@media (max-width: 768px) {
  .mt-4 {
    margin-top: calc(4em * 0.6);
  }
}

.ml-4 {
  margin-left: 4em;
}

@media (max-width: 768px) {
  .ml-4 {
    margin-left: calc(4em * 0.6);
  }
}

.mr-4 {
  margin-right: 4em;
}

@media (max-width: 768px) {
  .mr-4 {
    margin-right: calc(4em * 0.6);
  }
}

.pa-4 {
  padding: 4em;
}

@media (max-width: 768px) {
  .pa-4 {
    padding: calc(4em * 0.6);
  }
}

.pb-4 {
  padding-bottom: 4em;
}

@media (max-width: 768px) {
  .pb-4 {
    padding-bottom: calc(4em * 0.6);
  }
}

.pt-4 {
  padding-top: 4em;
}

@media (max-width: 768px) {
  .pt-4 {
    padding-top: calc(4em * 0.6);
  }
}

.pl-4 {
  padding-left: 4em;
}

@media (max-width: 768px) {
  .pl-4 {
    padding-left: calc(4em * 0.6);
  }
}

.pr-4 {
  padding-right: 4em;
}

@media (max-width: 768px) {
  .pr-4 {
    padding-right: calc(4em * 0.6);
  }
}

.gap-4 {
  gap: 4em;
}

@media (max-width: 768px) {
  .gap-4 {
    gap: calc(4em * 0.6);
  }
}

.ma-5 {
  margin: 5em;
}

@media (max-width: 768px) {
  .ma-5 {
    margin: calc(5 * 0.6);
  }
}

.mb-5 {
  margin-bottom: 5em;
}

@media (max-width: 768px) {
  .mb-5 {
    margin-bottom: calc(5em * 0.6);
  }
}

.mt-5 {
  margin-top: 5em;
}

@media (max-width: 768px) {
  .mt-5 {
    margin-top: calc(5em * 0.6);
  }
}

.ml-5 {
  margin-left: 5em;
}

@media (max-width: 768px) {
  .ml-5 {
    margin-left: calc(5em * 0.6);
  }
}

.mr-5 {
  margin-right: 5em;
}

@media (max-width: 768px) {
  .mr-5 {
    margin-right: calc(5em * 0.6);
  }
}

.pa-5 {
  padding: 5em;
}

@media (max-width: 768px) {
  .pa-5 {
    padding: calc(5em * 0.6);
  }
}

.pb-5 {
  padding-bottom: 5em;
}

@media (max-width: 768px) {
  .pb-5 {
    padding-bottom: calc(5em * 0.6);
  }
}

.pt-5 {
  padding-top: 5em;
}

@media (max-width: 768px) {
  .pt-5 {
    padding-top: calc(5em * 0.6);
  }
}

.pl-5 {
  padding-left: 5em;
}

@media (max-width: 768px) {
  .pl-5 {
    padding-left: calc(5em * 0.6);
  }
}

.pr-5 {
  padding-right: 5em;
}

@media (max-width: 768px) {
  .pr-5 {
    padding-right: calc(5em * 0.6);
  }
}

.gap-5 {
  gap: 5em;
}

@media (max-width: 768px) {
  .gap-5 {
    gap: calc(5em * 0.6);
  }
}

.ma-6 {
  margin: 6em;
}

@media (max-width: 768px) {
  .ma-6 {
    margin: calc(6 * 0.6);
  }
}

.mb-6 {
  margin-bottom: 6em;
}

@media (max-width: 768px) {
  .mb-6 {
    margin-bottom: calc(6em * 0.6);
  }
}

.mt-6 {
  margin-top: 6em;
}

@media (max-width: 768px) {
  .mt-6 {
    margin-top: calc(6em * 0.6);
  }
}

.ml-6 {
  margin-left: 6em;
}

@media (max-width: 768px) {
  .ml-6 {
    margin-left: calc(6em * 0.6);
  }
}

.mr-6 {
  margin-right: 6em;
}

@media (max-width: 768px) {
  .mr-6 {
    margin-right: calc(6em * 0.6);
  }
}

.pa-6 {
  padding: 6em;
}

@media (max-width: 768px) {
  .pa-6 {
    padding: calc(6em * 0.6);
  }
}

.pb-6 {
  padding-bottom: 6em;
}

@media (max-width: 768px) {
  .pb-6 {
    padding-bottom: calc(6em * 0.6);
  }
}

.pt-6 {
  padding-top: 6em;
}

@media (max-width: 768px) {
  .pt-6 {
    padding-top: calc(6em * 0.6);
  }
}

.pl-6 {
  padding-left: 6em;
}

@media (max-width: 768px) {
  .pl-6 {
    padding-left: calc(6em * 0.6);
  }
}

.pr-6 {
  padding-right: 6em;
}

@media (max-width: 768px) {
  .pr-6 {
    padding-right: calc(6em * 0.6);
  }
}

.gap-6 {
  gap: 6em;
}

@media (max-width: 768px) {
  .gap-6 {
    gap: calc(6em * 0.6);
  }
}

.ma-7 {
  margin: 7em;
}

@media (max-width: 768px) {
  .ma-7 {
    margin: calc(7 * 0.6);
  }
}

.mb-7 {
  margin-bottom: 7em;
}

@media (max-width: 768px) {
  .mb-7 {
    margin-bottom: calc(7em * 0.6);
  }
}

.mt-7 {
  margin-top: 7em;
}

@media (max-width: 768px) {
  .mt-7 {
    margin-top: calc(7em * 0.6);
  }
}

.ml-7 {
  margin-left: 7em;
}

@media (max-width: 768px) {
  .ml-7 {
    margin-left: calc(7em * 0.6);
  }
}

.mr-7 {
  margin-right: 7em;
}

@media (max-width: 768px) {
  .mr-7 {
    margin-right: calc(7em * 0.6);
  }
}

.pa-7 {
  padding: 7em;
}

@media (max-width: 768px) {
  .pa-7 {
    padding: calc(7em * 0.6);
  }
}

.pb-7 {
  padding-bottom: 7em;
}

@media (max-width: 768px) {
  .pb-7 {
    padding-bottom: calc(7em * 0.6);
  }
}

.pt-7 {
  padding-top: 7em;
}

@media (max-width: 768px) {
  .pt-7 {
    padding-top: calc(7em * 0.6);
  }
}

.pl-7 {
  padding-left: 7em;
}

@media (max-width: 768px) {
  .pl-7 {
    padding-left: calc(7em * 0.6);
  }
}

.pr-7 {
  padding-right: 7em;
}

@media (max-width: 768px) {
  .pr-7 {
    padding-right: calc(7em * 0.6);
  }
}

.gap-7 {
  gap: 7em;
}

@media (max-width: 768px) {
  .gap-7 {
    gap: calc(7em * 0.6);
  }
}

.ma-8 {
  margin: 8em;
}

@media (max-width: 768px) {
  .ma-8 {
    margin: calc(8 * 0.6);
  }
}

.mb-8 {
  margin-bottom: 8em;
}

@media (max-width: 768px) {
  .mb-8 {
    margin-bottom: calc(8em * 0.6);
  }
}

.mt-8 {
  margin-top: 8em;
}

@media (max-width: 768px) {
  .mt-8 {
    margin-top: calc(8em * 0.6);
  }
}

.ml-8 {
  margin-left: 8em;
}

@media (max-width: 768px) {
  .ml-8 {
    margin-left: calc(8em * 0.6);
  }
}

.mr-8 {
  margin-right: 8em;
}

@media (max-width: 768px) {
  .mr-8 {
    margin-right: calc(8em * 0.6);
  }
}

.pa-8 {
  padding: 8em;
}

@media (max-width: 768px) {
  .pa-8 {
    padding: calc(8em * 0.6);
  }
}

.pb-8 {
  padding-bottom: 8em;
}

@media (max-width: 768px) {
  .pb-8 {
    padding-bottom: calc(8em * 0.6);
  }
}

.pt-8 {
  padding-top: 8em;
}

@media (max-width: 768px) {
  .pt-8 {
    padding-top: calc(8em * 0.6);
  }
}

.pl-8 {
  padding-left: 8em;
}

@media (max-width: 768px) {
  .pl-8 {
    padding-left: calc(8em * 0.6);
  }
}

.pr-8 {
  padding-right: 8em;
}

@media (max-width: 768px) {
  .pr-8 {
    padding-right: calc(8em * 0.6);
  }
}

.gap-8 {
  gap: 8em;
}

@media (max-width: 768px) {
  .gap-8 {
    gap: calc(8em * 0.6);
  }
}

.ma-9 {
  margin: 9em;
}

@media (max-width: 768px) {
  .ma-9 {
    margin: calc(9 * 0.6);
  }
}

.mb-9 {
  margin-bottom: 9em;
}

@media (max-width: 768px) {
  .mb-9 {
    margin-bottom: calc(9em * 0.6);
  }
}

.mt-9 {
  margin-top: 9em;
}

@media (max-width: 768px) {
  .mt-9 {
    margin-top: calc(9em * 0.6);
  }
}

.ml-9 {
  margin-left: 9em;
}

@media (max-width: 768px) {
  .ml-9 {
    margin-left: calc(9em * 0.6);
  }
}

.mr-9 {
  margin-right: 9em;
}

@media (max-width: 768px) {
  .mr-9 {
    margin-right: calc(9em * 0.6);
  }
}

.pa-9 {
  padding: 9em;
}

@media (max-width: 768px) {
  .pa-9 {
    padding: calc(9em * 0.6);
  }
}

.pb-9 {
  padding-bottom: 9em;
}

@media (max-width: 768px) {
  .pb-9 {
    padding-bottom: calc(9em * 0.6);
  }
}

.pt-9 {
  padding-top: 9em;
}

@media (max-width: 768px) {
  .pt-9 {
    padding-top: calc(9em * 0.6);
  }
}

.pl-9 {
  padding-left: 9em;
}

@media (max-width: 768px) {
  .pl-9 {
    padding-left: calc(9em * 0.6);
  }
}

.pr-9 {
  padding-right: 9em;
}

@media (max-width: 768px) {
  .pr-9 {
    padding-right: calc(9em * 0.6);
  }
}

.gap-9 {
  gap: 9em;
}

@media (max-width: 768px) {
  .gap-9 {
    gap: calc(9em * 0.6);
  }
}

.ma-10 {
  margin: 10em;
}

@media (max-width: 768px) {
  .ma-10 {
    margin: calc(10 * 0.6);
  }
}

.mb-10 {
  margin-bottom: 10em;
}

@media (max-width: 768px) {
  .mb-10 {
    margin-bottom: calc(10em * 0.6);
  }
}

.mt-10 {
  margin-top: 10em;
}

@media (max-width: 768px) {
  .mt-10 {
    margin-top: calc(10em * 0.6);
  }
}

.ml-10 {
  margin-left: 10em;
}

@media (max-width: 768px) {
  .ml-10 {
    margin-left: calc(10em * 0.6);
  }
}

.mr-10 {
  margin-right: 10em;
}

@media (max-width: 768px) {
  .mr-10 {
    margin-right: calc(10em * 0.6);
  }
}

.pa-10 {
  padding: 10em;
}

@media (max-width: 768px) {
  .pa-10 {
    padding: calc(10em * 0.6);
  }
}

.pb-10 {
  padding-bottom: 10em;
}

@media (max-width: 768px) {
  .pb-10 {
    padding-bottom: calc(10em * 0.6);
  }
}

.pt-10 {
  padding-top: 10em;
}

@media (max-width: 768px) {
  .pt-10 {
    padding-top: calc(10em * 0.6);
  }
}

.pl-10 {
  padding-left: 10em;
}

@media (max-width: 768px) {
  .pl-10 {
    padding-left: calc(10em * 0.6);
  }
}

.pr-10 {
  padding-right: 10em;
}

@media (max-width: 768px) {
  .pr-10 {
    padding-right: calc(10em * 0.6);
  }
}

.gap-10 {
  gap: 10em;
}

@media (max-width: 768px) {
  .gap-10 {
    gap: calc(10em * 0.6);
  }
}

.gap-05 {
  gap: 0.5em;
}

@media (max-width: 768px) {
  .gap-05 {
    gap: 0.3em;
  }
}

.fwB {
  font-weight: bold;
}

.flexBox {
  display: flex;
}

.ai_c {
  align-items: center;
}

.ai_fs {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.ai_fe {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.ai_s {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.jc_sb {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.jc_sa {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

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

.jc_fe {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.fw_wp {
  flex-wrap: wrap;
}

.taC {
  text-align: center;
}

.slick-arrow {
  z-index: 2;
}

.slick-arrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  transform: scale(.75, 1) rotate(45deg);
}

@media (max-width:768px) {
  .slick-arrow {
    top: calc(22vw - 10px);
  }
}

.slick-arrow.slick-prev {
  left: 5px;
}

.slick-arrow.slick-next {
  right: 5px;
}

.slick-arrow.slick-prev::before {
  border-left: 2px solid var(--dark-gold);
  border-bottom: 2px solid var(--dark-gold);
}

.slick-arrow.slick-next::before {
  border-top: 2px solid var(--dark-gold);
  border-right: 2px solid var(--dark-gold);
}

.sliderLoad {
  opacity: 0;
  transition: opacity .5s;
}

.sliderLoad.slick-initialized {
  opacity: 1;
}

.btnStl01 {
  position: relative;
  display: block;
  width: fit-content;
  margin-inline: auto;
  font-family: "Noto Serif JP", serif;
  color: var(--gold-color);
  text-decoration: none;
  transition: color .3s, border-color .3s;
  border: 1px solid #fff;
  overflow: hidden;
}

.btnStl01:hover {
  color: var(--dark-bg-color);
  border-color: var(--gold-color);
}

.btnStl01 span {
  position: relative;
  z-index: 1;
  display: block;
  /* width: 320px; */
  max-width: 100%;
  padding: 1em 3em;
  font-size: 1.125em;
}

.btnStl01::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  width: 0;
  background: var(--gold-color);
  transition: width .3s;
}

.btnStl01:hover::after {
  left: 0;
  right: auto;
  width: 100%;
}

.btnStl01 span::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1em;
  display: block;
  width: .5em;
  height: .5em;
  border-top: 2px solid var(--gold-color);
  border-right: 2px solid var(--gold-color);
  transform: translateY(-50%) rotate(45deg);
  transition: border-color .3s;
}

.btnStl01:hover span::after {
  border-color: var(--dark-bg-color);
}

.btnStl02 {
  position: relative;
  display: block;
  width: fit-content;
  margin-inline: auto;
  color: var(--dark-bg-color);
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  text-decoration: none;
  background: var(--gold-color);
  transition: color .3s, border-color .3s;
  border: none;
}

.btnStl02:hover {
  color: var(--dark-bg-color);
  border-color: var(--gold-color);
}

.btnStl02 span {
  position: relative;
  z-index: 1;
  display: block;
  width: 320px;
  max-width: 100%;
  padding: 1em;
  font-size: 1.125em;
}

.btnStl02::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  width: 0;
  background: var(--light-gold);
  transition: width .3s;
}

.btnStl02:hover::after {
  left: 0;
  right: auto;
  width: 100%;
}

.btnStl02 span::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1em;
  display: block;
  width: .5em;
  height: .5em;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color .3s;
}

.btnStl02:hover span::after {
  border-color: var(--dark-bg-color);
}

.linkStl01 {
  display: block;
  color: var(--gold-color);
}


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

.tableStl01 {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.tableStl01>tbody>tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, .15);
}

.tableStl01>tbody>tr>* {
  padding: 1em;
}

.tableStl01>tbody>tr>th {
  text-align: left;
}

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

.ul01>li+li {
  margin-top: 0.5em;
}

.ul01>li:before {
  content: "・";
}

/* ヘッダー */
.header {
  background-color: var(--dark-bg-color);
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 1000;
  font-family: "Noto Serif JP", serif;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 4%;
}

header .logo {
  max-width: 50%;
}

.logo {
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

/* ナビゲーション */


header nav {
  display: flex;
  align-items: center;
  gap: 0 1.5em;
}

header .header-line {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-direction: column;
  gap: .25em;
  justify-content: center;
  padding: .25em 1em .5em;
  text-align: center;
  text-decoration: none;
  line-height: 1.2em;
  white-space: nowrap;
  background: #00b900;
}

header .header-line img {
  width: 40px;
}

@media (min-width:993px) {
  header .header-line {
    margin-right: -1.5em;
  }
}

header nav>dl {
  display: grid;
  align-self: stretch;
  grid-template-columns: repeat(2, 1fr);
  width: 17em;
  margin: 0;
  color: var(--dark-bg-color);
  text-align: center;
  background: var(--gold-color);
}

header nav>dl * {
  font-weight: 500;
  letter-spacing: 0.05em;
}

header nav>dl dt {
  grid-column: 1/-1;
  padding: .5em;
  font-size: .95em;
  line-height: 1.2em;
  border-bottom: 1px solid var(--dark-bg-color);
}

header nav>dl dd {
  margin: 0;
}

header nav>dl dd+dd {
  border-left: 1px solid var(--dark-bg-color);
}

header nav>dl a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .25em;
  padding: .75em;
  color: inherit;
  fill: currentColor;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .5em 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0 15px;
}

.nav-link {
  position: relative;
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  inset: auto 0 -.5em;
  display: block;
  width: 0;
  height: 1px;
  margin-inline: auto;
  background: var(--teal-accent);
  transition: width .3s;
}

.nav-link:hover::after {
  width: 100%;
}


/* ハンバーガーメニュー */
.hamburger {
  position: relative;
  display: none;
  width: 48px;
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  aspect-ratio: 1/1;
}

.hamburger span,
.hamburger::before,
.hamburger::after {
  display: block;
  position: absolute;
  top: 50%;
  width: 80%;
  height: 3px;
  background: var(--gold-color);
  border-radius: 100vmax;
  transform: translateY(-1.5px);
}

.hamburger::before,
.hamburger::after {
  content: '';
}

.hamburger::before {
  transform: translateY(-11.5px);
}

.hamburger::after {
  transform: translateY(8.5px);
}

.hamburger[aria-expanded="true"] span {
  display: none;
}

.hamburger[aria-expanded="true"]::before {
  transform: translateY(-50%) rotate(35deg);
}

.hamburger[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(-35deg);
}

/* ヒーローセクション */
.hero {
  position: relative;
  padding: 0;
  margin: 0;
  /* background-image: url(../images/mv.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed; */
  /*display: flex;
  align-items: center;
  justify-content: center;
  text-align: center; */
}

.hero-slider {
  min-height: calc(100vh - 80px);
}

.hero-slider * {
  height: 100%;
  min-height: calc(100vh - 80px);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 3%;
  z-index: 1;
  width: fit-content;
  padding: 0 20px;
  font-weight: 500;
  transform: translateY(-50%);
}

.hero-content * {
  margin: 0;
}

.hero-content h2 {
  margin: 0 0 .45em;
  color: var(--dark-bg-color);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(55px, 5.5vw, 57px);
  text-shadow: 0 0 8px rgba(255, 255, 255, 1), 0 0 12px rgba(255, 255, 255, 1);
  letter-spacing: 0.06em;
}

.hero-content>p {
  width: fit-content;
  padding: .25em .5em;
  color: var(--dark-bg-color);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(22px, 2.2vw, 27px);
  background: var(--gold-color);
}



.hero-content ul {
  display: inline-grid;
  gap: .75em;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1em;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700;
  text-align: center;
}

.hero-content ul li {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: .5em;
  justify-content: center;
  width: 9.5em;
  background: var(--dark-bg-color);
  border-radius: 50%;
  aspect-ratio: 1/1;
}

.hero-content ul li p {
  line-height: 1.4em;
}

.hero-content ul li img {
  width: 3em;
  height: 2.75em;
  object-fit: contain;
}

.hero-subtitle {
  font-size: 24px;
  color: var(--light-gold);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-title {
  font-size: 72px;
  font-weight: 700;
  color: var(--gold-color);
  margin: 0 0 20px;
  font-family: 'Playfair Display', serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 30px;
}


/* コンテナ */
.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

/* セクション共通 */

.bkImg {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

section {
  padding: 70px 0 100px;
}

.section-title {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background-color: var(--teal-accent);
  margin: 15px auto 0;
}


.section-title02 {
  font-size: 1.4em;
  font-weight: bold;
}

/* About */
#introduction {
  font-family: "Noto Serif JP", serif;
}

#introduction h2 {
  margin-bottom: 2em;
}

#introduction p {
  line-height: 2em;
}

#introduction p+p {
  margin-top: 2em;
}

#introduction .container>img {
  margin-top: 2em;
}

#introduction .btnStl01 {
  margin-top: 2.5em;
}

.btnStl03 {
  position: relative;
  display: block;
  width: fit-content;
  /* margin-inline: auto; */
  font-family: "Noto Serif JP", serif;
  color: var(--gold-color);
  text-decoration: none;
  transition: color .3s, border-color .3s;
  border: 1px solid #fff;
}

.btnStl03:hover {
  color: var(--dark-bg-color);
  border-color: var(--gold-color);
}

.btnStl03 span {
  position: relative;
  z-index: 1;
  display: block;
  /* width: 320px; */
  max-width: 100%;
  padding: 0.8em 2.5em;
  font-size: 1em;
}

.btnStl03::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  width: 0;
  background: var(--gold-color);
  transition: width .3s;
}

.btnStl03:hover::after {
  left: 0;
  right: auto;
  width: 100%;
}

.btnStl03 span::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1em;
  display: block;
  width: .5em;
  height: .5em;
  border-top: 2px solid var(--gold-color);
  border-right: 2px solid var(--gold-color);
  transform: translateY(-50%) rotate(45deg);
  transition: border-color .3s;
}

.btnStl03:hover span::after {
  border-color: var(--dark-bg-color);
}

/* 事業者様へご案内 */

.businessList {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 0;
  justify-content: center;
  max-width: 1000px;
  margin: 2em auto 0;
  padding: 0;
  list-style: none;
}

.businessList>li {
  flex-basis: calc(100% / 3);
  padding: 1em 1.5%;
  border-left: 1px dashed #fff;
  border-right: 1px dashed #fff;
  box-sizing: border-box;
}

.businessList>li:not(:nth-of-type(3n+1)) {
  margin-left: -1px;
}

.businessList__icon {
  display: block;
  width: fit-content;
  margin: 1em auto .5em;
}

.businessList__title {
  margin: 0 0 .25em;
  color: var(--gold-color);
  font-family: "Noto Serif JP", serif;
  font-size: 1.625rem;
  line-height: 1.2em;
}

.businessList>li p {
  font-size: 15px;
}

#business .container>p {
  margin: 3em 0;
  font-size: 18px;
  line-height: 2em;
}

/* 新着情報 */

#whatsNew {
  background: var(--dark-bg-color);
}

ul.newsList {
  margin-bottom: 2em;
}

ul.newsList>li>a {
  position: relative;
  display: grid;
  gap: .5em 1em;
  grid-template-columns: 6em 5em 1fr;
  padding: 1em 1em 1em 0;
  text-decoration: none;
}

ul.newsList>li>a:hover .news-title {
  text-decoration: underline;
}

ul.newsList>li>a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: .2em;
  display: block;
  width: .35em;
  height: .35em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

ul.newsList>li+li {
  border-top: 1px solid #fff;
}

.news-category {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  font-size: .8em;
}

.news-category li:not(:has(a)) {
  display: block;
  padding: .2em .75em;
  border: 1px solid currentColor;
  border-radius: 100vmax;
}

.news-category li a {
  display: block;
  padding: .2em .75em;
  text-decoration: none;
  border: 1px solid currentColor;
  border-radius: 100vmax;
}

.news-category li+li {
  margin-top: .2em;
}

/* ターゲット別分岐 */
.target-section {
  background-color: var(--main-bg-color);
}

.target-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.target-card {
  flex: 1;
  min-width: 300px;
  background-color: rgba(26, 59, 59, 0.7);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.target-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.target-card-image {
  height: 200px;
  overflow: hidden;
}

.target-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.target-card:hover .target-card-image img {
  transform: scale(1.1);
}

.target-card-content {
  padding: 25px;
  position: relative;
}

.target-card-icon {
  position: absolute;
  top: -25px;
  left: 25px;
  width: 50px;
  height: 50px;
  background-color: var(--gold-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg-color);
  font-size: 24px;
}

.target-card-title {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  color: var(--light-gold);
  margin: 15px 0;
}

.target-card-description {
  color: var(--off-white);
  margin-bottom: 20px;
}

.target-card-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--teal-blue);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.target-card-button:hover {
  background-color: var(--teal-accent);
}

/* 特徴セクション */
.features-section {
  background-color: var(--main-bg-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.feature-item {
  background-color: var(--dark-bg-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  /* transition: transform 0.3s; */
  position: relative;
  overflow: hidden;
}

/*
.feature-item:hover {
  transform: translateY(-10px);
} */

.feature-image {
  width: 100%;
}

.feature-icon {
  position: relative;
  z-index: 1;
  width: 100px;
  background-color: var(--dark-bg-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -50px auto 0;
  color: var(--white);
  font-size: 24px;
  aspect-ratio: 1/1;
}

.feature-title {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  color: var(--gold-color);
  margin: 0 0 15px;
}

.feature-item p {
  text-align: left;
}

/* メリットセクション */
.merit-section {
  background-color: var(--dark-bg-color);
  position: relative;
}

.merit-content {
  position: relative;
  z-index: 1;
}


.merit-item {
  display: flex;
  align-items: center;
  gap: 2em;
  padding: 25px;
  border-top: 1px dashed #fff;
  /* transition: transform 0.3s; */
}

.merit-item:last-of-type {
  border-bottom: 1px dashed #fff;
}

/* .merit-item:hover {
  transform: translateX(10px);
} */
.merit-icon img {
  display: block;
}

.merit-text {
  flex: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 20em 1fr;
}

.merit-title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 1.625em;
  line-height: 1.2em;
  color: var(--light-gold);
}

/* 製品カテゴリセクション */
.products-section {
  background-color: var(--main-bg-color);
}

.product-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.product-tab {
  padding: 12px 25px;
  background-color: var(--dark-bg-color);
  color: var(--white);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
}

.product-tab.active,
.product-tab:hover {
  background-color: var(--gold-color);
  color: var(--dark-bg-color);
}

.product-content {
  display: none;
}

.product-content.active {
  display: block;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 3%;
  justify-content: center;
}

.product-item {
  flex-basis: 31%;
  background-color: var(--dark-bg-color);
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
}


.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

/* .product-item:hover .product-image img {
  transform: scale(1.1);
} */

.product-info {
  padding: 20px;
}

.product-name {
  font-size: 18px;
  color: var(--gold-color);
  margin-bottom: 10px;
  text-align: center;
}

.product-info p {
  font-size: 15px;
}

/* 実績紹介セクション */
.results-section {
  background-color: var(--dark-bg-color);
  position: relative;
}

.results-slider {
  position: relative;
  overflow: hidden;
}

.results-slide {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.result-item {
  flex: 0 0 calc(33.333% - 20px);
  background-color: var(--main-bg-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.result-image {
  height: 200px;
  overflow: hidden;
}

.result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-info {
  padding: 20px;
}

.result-title {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  color: var(--gold-color);
  margin: 0 0 10px;
  text-align: center;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.slider-arrow {
  width: 40px;
  height: 40px;
  background-color: var(--gold-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  cursor: pointer;
  color: var(--dark-bg-color);
  transition: background-color 0.3s;
}

.slider-arrow:hover {
  background-color: var(--light-gold);
}

.slider-arrow.stop {
  opacity: .4;
}

/* 製作・導入事例 */

.categoryList {
  display: flex;
  flex-wrap: wrap;
  gap: .5em;
}

.categoryList li a {
  display: block;
  padding: .75em;
  color: var(--gold-color);
  font-size: .8em;
  text-decoration: none;
  line-height: 1.2em;
  border-radius: 100vmax;
  border: 1px solid currentColor;
  transition: color .3s, background-color .3s, border-color .3s;
}

.categoryList li a:hover {
  color: var(--dark-bg-color);
  background: var(--gold-color);
  border-color: var(--gold-color);
}

.worksCategory {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
  margin: 4em 0 2.5em;
}

.worksCategory dt {
  margin-bottom: .5em;
}

.list-category {
  display: flex;
  flex-wrap: wrap;
  gap: .25em;
  font-size: .7em;
}

.list-category li a {
  text-decoration: none;
}

.list-category li>* {
  display: block;
  padding: .45em .6em;
  line-height: 1.2em;
  color: var(--gold-color);
  border: 1px solid currentColor;
  border-radius: 100vmax;
}

.works-list .list-category {
  align-items: flex-end;
  margin: 0 0 1em;
}

ul.works-list .slick-slide {
  padding: 0 8px;
}

.works-list li dd {
  margin-top: .75em;
  font-size: .9em;
}

.works-list li dt {
  margin-top: .5em;
  font-weight: bold;
}

.works-list li a {
  text-decoration: none;
  transition: opacity .3s;
}

.works-list li .list-thumbnail {
  display: block;
  aspect-ratio: 1/1;
}

.works-list li .list-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.works-list li a:hover {
  opacity: .7;
}

.works-list .slick-dots {
  /*   position: static;
  margin: 1.5em 0 1em; */
}

.slick-dots li {
  width: auto;
  height: auto;
}

.works-list .slick-dots li button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: #ccc;
  border-radius: 50%;
}

.works-list .slick-dots li.slick-active button {
  background: var(--gold-color);
}

.works-list .slick-dots li button:before {
  display: none;
}

.works-single_column {
  display: grid;
  gap: 2em;
  grid-template-columns: 260px minmax(0, 1fr);
}

aside.works-aside dl dt {
  margin-bottom: .5em;
  font-weight: bold;
}

aside.works-aside dl>div+div {
  margin-top: 1.5em;
}

.works-single_images-main {
  margin: 0;
}

.works-single_main {
  display: grid;
  grid-template-columns: 48% 46%;
  justify-content: space-between;
}

.works-single_main ul.slick-dots {
  position: static;
  display: grid;
  gap: .5em;
  grid-template-columns: repeat(3, 1fr);
}

.works-single_main ul.slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}

.works-single_main ul.slick-dots li.slick-active {
  filter: brightness(.7);
}

.works-single_main ul.slick-dots li img {
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.works-single_main .slick-list .slick-slide img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.works-single_main .list-cfData {
  font-size: .9em;
}

.works-single_main .list-cfData th {
  width: 6.5em;
  text-align: left;
  vertical-align: text-top;
}

.works-single_main .list-cfData tr>* {
  padding: .5em 0;
}

.works-single_main .list-title {
  margin: .75em 0 0;
  font-size: 1.8rem;
  line-height: 1.4em;
}

.works-single_main ul.slick-dots {
  margin-top: 1em;
}

#related-product {
  background: var(--dark-bg-color);
}

#related-product .works-list {
  display: grid;
  gap: 3em 1em;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width:768px) {
  #related-product .works-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

aside.works-aside {
  padding: 1em;
  background: var(--dark-bg-color);
}

aside.works-aside dl dt {
  margin-bottom: 1em;
  padding-bottom: .5em;
  border-bottom: 1px solid #fff;
}

aside.works-aside dl dd {
  font-size: .9em;
}

aside.works-aside dl dd ul li a {
  display: block;
  padding: .35em 0;
  text-decoration: none;
  transition: color .3s;
}

aside.works-aside dl dd ul li a:hover {
  color: var(--gold-color);
}

.works-listPage .works-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3em 2em;
}

.works-listLinkWrap {
  grid-column: 1/-1;
}

.works-single_main {
  align-items: flex-start;
  grid-template-rows: auto 1fr;
}

.works-single_images {
  grid-row: 1/3;
}

/* 流れセクション */
.flow-section {
  background-color: var(--dark-bg-color);
}

.flow-list {
  position: relative;
}

.flow-list::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background-color: var(--teal-accent);
}

.flow-item {
  position: relative;
  padding-left: 70px;
  margin-bottom: 50px;
}

.flow-item:last-of-type:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 3em;
  height: 95%;
  background: var(--dark-bg-color);
}

.flow-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: var(--gold-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg-color);
  font-size: 24px;
  font-weight: bold;
  z-index: 1;
}

.flow-title {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  color: var(--light-gold);
  margin-bottom: 15px;
}

.flow__notes {
  margin-top: 70px;
}

.flow__notes h3 {
  width: fit-content;
  margin-bottom: 1.5em;
  padding: 0 .5em;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  background: linear-gradient(to bottom, transparent 70%, var(--teal-accent) 70%);
}

.flow__notes p {
  padding: 0 1.5em;
  font-size: 15px;
}

/* FAQセクション */
.faq-section {
  background-color: var(--dark-bg-color);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  background-color: var(--main-bg-color);
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: rgba(50, 68, 96, 0.3);
}

.faq-question h3 {
  margin: 0;
  font-size: 18px;
  color: var(--gold-color);
}

.faq-question .arrow {
  width: 32px;
  transform: rotate(90deg);
  aspect-ratio: 1/1;
}

.faq-question .arrow img {
  display: block;
  width: 100%;
}

.faq-answer {
  background-color: var(--teal-accent);
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-question .arrow {
  transform: rotate(-90deg);
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 500px;
}

/* 会社概要セクション */
.company-info {
  display: grid;
  align-items: center;
  gap: 2em;
  grid-template-columns: 1fr 40%;
}

.company-info+.company-info {
  margin-top: 3em;
}

.company-info table th {
  width: 7em;
  font-weight: 500;
  text-align: left;
  vertical-align: text-top;
}

.company-info .footer-links__blank {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
  margin-top: 2.5em;
}

.company-info .footer-links__blank a {
  border: 1px solid #fff;
}

.company-info .google-map {
  flex-basis: 40%;
  margin: 0;
}


.company-info .google-map iframe {
  width: 100%;
}

.company-info caption {
  text-align: left;
}

.company-info__copy {
  padding-bottom: 1em;
  font-size: 1.4em;
  text-align: center;
}

/* 調香師セクション */
.perfumer-info__position {
  margin: 0;
  color: var(--gold-color);
}

.perfumer-info {
  display: grid;
  align-items: center;
  gap: 2em;
  grid-template-columns: 1fr 40%;
}

.perfumer-info__name {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5em 1em;
  margin-top: 0;
  padding: 0 0 .5em;
  font-size: 1.5em;
  letter-spacing: 0.2em;
  border-bottom: 1px solid #fff;
}

.perfumer-profile figure {
  grid-column: 2;
}

.perfumer-profile .perfumer-info__details {
  grid-row: 1;
}

.perfumer-info__name span {
  font-size: .65em;
  font-weight: normal;
  letter-spacing: 0.05em;
}

.perfumer-info dl {
  font-size: .95em;
}

.perfumer-info dt {
  margin-bottom: .2em;
  font-weight: bold;
}

.perfumer-info dd+dt {
  margin-top: 1.5em;
}

#perfumer .social-link {
  background: var(--dark-bg-color);
  border: 1px solid #fff;
}

.perfumer-info__copy {
  margin-top: 0;
  font-size: 1.5em;
}

.perfumer-kodawari {
  grid-template-columns: 40% 1fr;
  margin-top: 3em;
}

/* お問い合わせセクション */
.contact-section {
  color: #000;
  background: url(../images/bkImg_contact.jpg)no-repeat center center / cover;
  position: relative;
}

.contact-section .section-title {
  margin-bottom: 2.5em;
  color: var(--dark-bg-color);
}

.contact-section ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5em;
  justify-content: center;
  margin-top: 3em;
}

.contact-section ul li p {
  font-size: .9em;
}

.contact-section ul li a {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 130px;
  padding: .5em;
  color: #fff;
  font-family: '游ゴシック体', YuGothic, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic';
  font-size: 26px;
  font-weight: bold;
  text-decoration: none;
  background: var(--main-bg-color);
  box-sizing: border-box;
  transition: opacity .3s;
}

.contact-section ul li a:hover {
  opacity: .8;
}

.contact-section ul li a::after {
  content: '';
}

.contact-section ul li a span:has(svg) {
  display: flex;
  align-items: center;
  gap: .25em;
}

.contact-section ul li a svg {
  fill: var(--gold-color);
  flex-shrink: 0;
}

.contact-section ul li a .fzS {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  font-size: .76923em;
}

.contact-section ul li a .fzS dd {
  font-size: .9em;
}

.contact-section ul li a .fzS dd.fzS {
  display: block;
  width: 100%;
  font-size: .6em;
}

.contact-section ul li a[href*="contact"] .fzS {
  margin-bottom: 0;
  font-size: .523em;
}

/* .contact-section ul li a[href*="tel"] {
  background: var(--teal-accent);
} */

/* フッター */
.footer {
  font-family: '游ゴシック体', YuGothic, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic';
  background-color: var(--dark-bg-color);
  padding: 50px 10px 0;
}

.footer-content {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 0 60px 1.5em;
}

@media (min-width:769px) {
  .footer-logo {
    min-width: 200px;
  }
}

.footer-logo p {
  color: var(--gray);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 1em;
  font-size: 14px;
}

.social-link {
  border-radius: 50%;
  transition: opacity .3s;
}

.social-link img {
  display: block;
  width: 40px;
}

.social-link:hover {
  opacity: .7;
}


.footer-links h3 {
  color: var(--gold-color);
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
}

.footer-links h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--teal-accent);
  margin-top: 10px;
}

.footer-links ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5em 2em;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold-color);
}


.footer-links__blank li a {
  display: block;
  width: 260px;
  max-width: 100%;
  padding: .75em 4em .75em 1.5em;
  background: var(--main-bg-color) url(../images/icon_blank.svg) no-repeat center right 1em / 1em;
  border-radius: 100vmax;
  transition: opacity .3s;
  box-sizing: border-box;
}

.footer-links__blank li a:hover {
  opacity: .7;
}

.footer-links .footer-links__blank {
  gap: .5em 1em;
  margin-top: 25px;
}

.footer-links__blank li a img {
  display: block;
}

.footer a[href*="contact"] {
  display: flex;
  align-items: center;
  gap: .5em;
  padding: .55em 1.25em;
  color: var(--dark-bg-color);
  background: var(--gold-color);
  border-radius: 100vmax;
}

.footer a[href*="contact"]:hover {
  color: var(--dark-bg-color);
}

.footer a[href*="contact"]::after {
  position: static;
  width: .35em;
  height: .35em;
  background: transparent;
  border: none;
  border-top: 1px solid var(--dark-bg-color);
  border-right: 1px solid var(--dark-bg-color);
  transform: rotate(45deg);
}

.copyright {
  padding: .5em .5em;
  text-align: center;
  border-top: 1px solid var(--main-bg-color);
  color: var(--gray);
  font-size: 10px;
}

.copyright p {
  margin: 0;
}

/* フォームモーダル */

.modal-close {
  position: absolute;
  top: 2em;
  right: 2em;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  height: 4.25em;
  color: var(--gold-color);
  font-size: .7em;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity .3s;
}

.modal-close:hover {
  opacity: .7;
  ;
}

.modal-close::before,
.modal-close::after {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  display: block;
  width: 2px;
  height: 3em;
  margin-inline: auto;
  background: currentColor;
}

.modal-close::before {
  transform: rotate(60deg);
}

.modal-close::after {
  transform: rotate(-60deg);
}

#contactForm-modal {
  position: fixed;
  inset: 50% 0 auto;
  z-index: 9000;
  display: none;
  width: 90%;
  max-width: 1000px;
  max-height: 90dvh;
  margin-inline: auto;
  padding: 3em 5%;
  background: var(--dark-bg-color);
  overflow-y: auto;
  transform: translateY(-50%);
}

.contact-form-item {
  display: grid;
  grid-template-columns: 20em 1fr;
  padding: .75em 0;
}

.contact-form-item>dt {
  display: flex;
  align-items: flex-start;
  gap: .5em;
  padding-top: .25em;
}

.contact-form-item>dd:is(:has(.contact-form-checkbox), :has(.contact-form-radio)) {
  padding: .25em 0;
}

.contact-form-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

.contact-form-item-title {
  position: relative;
  padding-right: 4.5em;
}

.contact-form-item :is(.optional, .required) {
  position: absolute;
  top: .6em;
  right: 1.5em;
  padding: .25em;
  color: var(--dark-bg-color);
  font-size: 12px;
  font-weight: bold;
  line-height: 1em;
  background: var(--gold-color);
}

.contact-form-item .text_s {
  margin-top: .35em;
  font-size: .8em;
  line-height: 1.4em;
}

.contact-form-item .contact-form-checkbox {
  display: flex;
  flex-direction: column;
  gap: .75em;
}

.contact-form-item .check_text {
  margin-top: .8em;
  padding-left: 1em;
  font-size: .9em;
  text-indent: -1em;
}

.contact-form-item :is(input, textarea) {
  max-width: 100%;
  padding: .5em .5em;
  box-shadow: none;
  background: #fff !important;
}

.contact-form-item textarea {
  width: 100%;
  min-height: 3em;
  resize: vertical;
}

.contact-form-item .quantityWrap {
  display: flex;
  align-items: center;
  gap: .5em;
}

.contact-form-item .quantityWrap input {
  width: 4em;
  text-align: right;
}

.contact-form-item input:is([type="checkbox"], [type="radio"]) {
  display: none;
}

.contact-form-item input:is([type="checkbox"], [type="radio"])~span:first-of-type {
  display: flex;
  align-items: flex-start;
  gap: .35em;
}

.contact-form-item input:is([type="checkbox"], [type="radio"])~span:first-of-type::before {
  content: '';
  display: inline-block;
  width: 1em;
  margin-top: .275em;
  background: #fff;
  border: 3px solid #fff;
  aspect-ratio: 1/1;
  box-sizing: border-box;
}

.contact-form-item input[type="radio"]~span:first-of-type::before {
  border-radius: 50%;
}

.contact-form-item input:is([type="checkbox"], [type="radio"]):checked~span:first-of-type::before {
  background: var(--dark-bg-color);
}

#mailformpro .privacypolicyBox {
  height: 200px;
  margin-bottom: 3em;
  padding: 1em 2em;
  font-size: .9em;
  overflow-y: scroll;
  border: 1px solid #fff;
}

#mailformpro .privacypolicyBox dl>* {
  width: 100% !important;
  border: none !important;
  float: none !important;
}

#mailformpro .privacypolicyBox dl>dt {
  font-weight: bold;
}

#mailformpro .privacypolicyBox dl>dd {
  padding: 0;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  background: rgba(0, 0, 0, .5);
}

.floatBtn {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 10px;
}

.floatBtn a {
  display: flex;
  align-items: center;
  gap: .5em;
  justify-content: center;
  width: 60px;
  padding: 1em .5em;
  text-decoration: none;
  background: var(--dark-gold);
}

.floatBtn .floatLink {
  padding: 1.2em .2em;
  text-orientation: upright;
  writing-mode: vertical-rl;
}

.floatBtn .floatLink-line {
  padding-top: .5em;
  background-color: #00b900;
}

/* .floatBtn .floatLink::after {
  content: '';
  display: block;
  width: .35em;
  height: .35em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
} */

.floatBtn .pagetop {
  flex-direction: column;
  aspect-ratio: 1/1;
  padding-top: 1em;
  font-size: .8rem;
  background: var(--dark-bg-color);
}

.floatBtn .pagetop::before {
  content: '';
  display: block;
  width: .75em;
  height: .75em;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: scale(1, .95) rotate(45deg);
}

#thanks p {
  margin-bottom: 3em;
  line-height: 2.5em;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
  header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    width: 100%;
    max-height: calc(100dvh - 68px);
    background-color: rgba(37, 48, 73, 0.95);
    padding: 20px 0 0;
    overflow-y: auto;
  }

  header nav.active {
    display: flex;
  }

  header nav ul {
    align-items: center;
    flex-direction: column;
  }

  header .header-line {
    margin-top: 15px;
  }

  header nav>dl {
    width: 100%;
  }

  .nav-item a {
    display: block;
    padding: .5em;
  }

  .hamburger {
    display: block;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .result-item {
    flex: 0 0 calc(50% - 15px);
  }

  .contact-section ul {
    display: flex;
    flex-direction: column;
  }

  .contact-section ul li:has(img[src*="line"]) {
    order: -1;
  }
}

@media (min-width: 769px) {
  .floatBtn a {
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
  }

  #results:not(:has(.result-item:nth-of-type(4))) .slider-controls {
    display: none;
  }
}

@media (max-width: 768px) {
  .sp_fdc {
    flex-direction: column;
  }

  .tableStl01>*>tr>* {
    display: block;
    width: 100%;
  }

  .tableStl01>tbody>tr>th {
    padding-bottom: 0;
  }

  .tableStl01>tbody>tr>td {
    padding-top: .5em;
  }

  .hero {
    overflow: hidden;
  }

  .header-inner {
    padding: 10px;
    overflow: hidden;
  }

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

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-content {
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-inline: auto;
    padding: 0 12px;
    box-sizing: border-box;
  }

  .hero-content h2 {
    font-size: clamp(12px, 7vw, 38px);
  }

  .hero-content>p {
    font-size: clamp(10px, 4vw, 22px);
  }

  .hero-content ul {
    font-size: clamp(10px, 3vw, 16px);
  }

  .bkImg {
    height: 200px;
    background-size: cover;
    background-position: top left;
    background-attachment: local;
  }

  .section-title {
    font-size: 28px;
  }

  .target-card {
    min-width: 100%;
  }

  #introduction h2 img {
    max-width: 80%;
    height: auto;
  }

  .product-item {
    flex-basis: 100%;
  }

  .result-item {
    flex: 0 0 100%;
  }

  ul.newsList>li>a {
    grid-template-columns: 6em minmax(0, 1fr);
  }

  ul.newsList>li>a .news-title {
    grid-column: 1/-1;
  }

  #business .container>p {
    font-size: 16px;
  }

  .businessList {
    gap: 0;
  }

  .businessList>li {
    flex-basis: 100%;
    padding: 25px 1.5%;
    border: none;
    border-top: 1px dashed #fff;
    border-bottom: 1px dashed #fff;
  }

  .businessList>li+li {
    margin: -1px 0 0 0 !important;
  }

  .businessList__title {
    font-size: 20px;
  }

  .merit-item {
    position: relative;
    display: block;
    /* gap: 1em; */
    padding: 25px 10px;
  }

  .merit-icon {
    position: absolute;
  }

  .merit-title {
    padding-left: 40px;
  }

  .merit-text {
    grid-template-columns: 100%;
  }

  .merit-icon img {
    width: 28px;
    height: auto;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .flow-list::before {
    left: 20px;
  }

  .flow-item {
    padding-left: 60px;
  }

  .flow-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .merit-title,
  .flow-title {
    font-size: 20px;
  }

  .company-info {
    grid-template-columns: 100%;
  }

  .contact-form {
    padding: 30px 0;
  }

  .features-grid,
  .contact-section ul {
    grid-template-columns: 100%;
  }

  .contact-section ul li a {
    min-height: 90px;
    font-size: 20px;
  }

  .google-map {
    width: 100%;
  }

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

  .footer-content {
    flex-direction: column;
    justify-content: center;
  }

  .footer .social-links {
    justify-content: center;
  }

  .footer-links ul {
    justify-content: center;
  }

  .footer-links__blank {
    margin-top: 25px;
  }

  .contact-form-item {
    grid-template-columns: 100%;
  }

  #contactForm-modal .section-title {
    margin-bottom: 0;
  }

  dl.contact-form.contact-formStyle {
    padding-top: 0;
  }

  #mailformpro .privacypolicyBox {
    width: 90%;
    margin-inline: auto;
  }

  .floatBtn {
    display: grid;
    gap: 0;
    grid-template-columns: 1fr 1fr 50px;
    inset: auto 0 0 0;
    transform: translate(0);
  }

  .floatBtn .floatLink {
    width: 100%;
    height: 100%;
    min-height: 3em;
    padding: .25em .5em;
    font-size: .9rem;
    line-height: 1.2em;
    text-align: center;
    writing-mode: horizontal-tb;
  }

  .floatBtn .floatLink-line img {
    width: 30px;
  }

  .floatBtn a.pagetop {
    gap: .1em;
    width: 50px;
    padding: .5em 0 0;
  }

  /*   .floatBtn .pagetop {
    display: none;
  } */

  body {
    padding-bottom: 3.6em;
  }

  .perfumer-info,
  .worksCategory {
    grid-template-columns: 100%;
  }

  .perfumer-info.perfumer-profile {
    display: flex;
    flex-direction: column;
  }

  .contact-form-item :is(.optional, .required) {
    right: 0;
  }

  .contact-form-item-title {
    padding-right: 2.5em;
  }

  .hero-slider {
    height: calc(100vh - 80px);
  }


  .works-listPage .works-list {
    gap: 2.5em 1em;
    grid-template-columns: repeat(2, 1fr);
  }

  .works-single_column {
    display: flex;
    flex-direction: column-reverse;
  }

  .works-listLinkWrap {
    order: -1;
  }

  .works-list .slick-track {
    display: flex;
  }

  .works-list .slick-slide {
    height: auto !important;
  }

  aside.works-aside {
    order: -2;
  }

  .works-single_info {
    order: -1;
  }

  .works-single_main {
    display: flex;
    flex-direction: column;
  }

  .works-single_images {
    width: 100%;
  }

  .contact-section .section-title {
    margin-bottom: 1.5em;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 20px;
  }

  .logo img {
    height: 40px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 24px;
  }

  .feature-item,
  .merit-item {
    padding: 20px;
  }

  .product-tab {
    padding: 8px 15px;
    font-size: 14px;
  }
}