/*****************************************
  SITE ORG
******************************************/
/*---------------------------------------
  Reset
-----------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

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

/*----------------------------------------
  :root
-----------------------------------------*/
:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray: #808080;
  --color-primary: #000;
  --color-p: #000;
  --color-border: #7fffd4;
  --color-link-hover: #808080;
  --font-family-base: 'Karla', 'Shippori Mincho', serif;
  --border-radius-top: calc(40px + 20 * ((100vw - 320px) / 1120)) calc(40px + 20 * ((100vw - 320px) / 1120)) 0 0;
  --border-radius-bottom: 0 0 calc(40px + 20 * ((100vw - 320px) / 1120)) calc(40px + 20 * ((100vw - 320px) / 1120));
  --border-radius-large: calc(20px + 20 * ((100vw - 320px) / 1120));
  --border-radius-medium: 20px;
  --border-radius-small: 10px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

/*----------------------------------------
  base
-----------------------------------------*/
html,
body {
  overflow-x: hidden;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  background-color: var(--color-white);
  font-family: var(--font-family-base);
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

img {
  width: 100%;
}

.section-wrap {
  max-width: 1800px;
  margin: 0 auto;
  width: 100%;
  padding: 0 0;
}

@media (max-width: 767px) {
  .section-wrap {
    max-width: none;
    padding: 0 20px;
  }
}


.row {
  margin: 0;
  padding: 0;
}

ul li {
  color: var(--color-p);
  font-size: var(--font-size-p);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-link-hover);
}

a img:hover {
  opacity: 0.8;
  transition: filter 0.3s ease, opacity 0.3s ease;
}


.more-box:hover,
.linkbnr li:hover {
  opacity: 0.8;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.btn {
  border-radius: 0;
}

.sec-gap {
  display: grid;
  margin-top: 2rem;
  grid-gap: 2rem;
}

.svh-sp {
  height: 100vh;
}

.anchor {
  scroll-margin-top: 110px;
}




/*---------------------------------------
  TYPOGRAPHY
-----------------------------------------*/
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-semibold);
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

h5 {
  font-size: var(--font-size-h5);
}

h6 {
  color: var(--color-primary);
  font-size: var(--font-size-h6);
}

p {
  color: var(--color-p);
  font-size: var(--font-size-p);
  font-weight: var(--font-weight-normal);
}



/*---------------------------------------
  ANIMATION
-----------------------------------------*/

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/*.hero-anime
*/

.hero-anime {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-anime img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeAnime 24s infinite;
}

.hero-anime img:nth-child(1) {
  animation-delay: 0s;
}

.hero-anime img:nth-child(2) {
  animation-delay: 8s;
}

.hero-anime img:nth-child(3) {
  animation-delay: 16s;
}

@keyframes fadeAnime {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  35% {
    opacity: 1;
  }

  45% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}


.use-anime {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.use-anime img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeAnime-use 32s infinite;
}

.use-anime img:nth-child(1) {
  animation-delay: 0s;
}

.use-anime img:nth-child(2) {
  animation-delay: 8s;
}

.use-anime img:nth-child(3) {
  animation-delay: 16s;
}

.use-anime img:nth-child(4) {
  animation-delay: 24s;
}

@keyframes fadeAnime-use {
  0% { opacity: 0; }
  5% { opacity: 1; }
  35% { opacity: 1; }
  45% { opacity: 0; }
  100% { opacity: 0; }
}



/*.tproducts-anime
 */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tproducts-anime {
  opacity: 0;
  animation-name: fadeUp;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

.tproducts-anime.delay-1 {
  animation-delay: .5s;
}

.tproducts-anime.delay-2 {
  animation-delay: 1s;
}

.tproducts-anime.delay-3 {
  animation-delay: 1.5s;
}

.tproducts-anime.delay-4 {
  animation-delay: 2s;
}


/*confirm-popup
*/
.confirm-popup {
  position: absolute;
  background: #fff;
  border: 1px solid #999;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 9999;
  display: none;
}
.confirm-popup::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -8px;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-right-color: #fff;
}
.confirm-popup button {
  margin: 0 5px;
  font-size: 13px;
}


/*---------------------------------------
  external-link
-----------------------------------------*/
.external-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.external-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 2px);
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #000;
  padding: 3px 8px;
  font-size: 11px;
  white-space: nowrap;
  opacity: 0 !important;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
  color: #000;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0;
  min-height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.external-tooltip::before,
.external-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  pointer-events: none;
}

.external-tooltip::before {
  border-top-color: #000;
  z-index: 0;
  margin-top: 1px;
}

.external-tooltip::after {
  border-top-color: #fff;
  z-index: 1;
}

.external-link:hover .external-tooltip,
.external-link:focus .external-tooltip {
  opacity: 1 !important;
}

@media (hover: none) and (pointer: coarse) {
  .external-link:active .external-tooltip {
    opacity: 1 !important;
  }
}


/*---------------------------------------
  NAVBAR
-----------------------------------------*/

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 999;
  padding-left: 90px;
  padding-right: 60px;
  background: transparent;
  transition: none !important;
  opacity: 0;
  pointer-events: none;
}

.navbar.scrolled {
  opacity: 1;
  pointer-events: auto;
  background-color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--color-black);
}

.navbar:not(.scrolled) {
  pointer-events: none;
}

.header-wrap {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-name,
.brand-name:hover {
  display: flex;
  align-items: center;
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-bold);
}

a.brand-name:hover .sitelogo {
  filter: invert(100%) brightness(0.4);
  transition: filter 0.3s ease;
}

img.sitelogo {
  width: clamp(207.08px, calc(207.08px + (322.38 - 207.08) * ((100vw - 320px) / 1600)), 322.38px);
  height: auto;
  display: flex;
  transition: filter 0.3s ease;
}

.sitelogo {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navbar.scrolled .sitelogo {
  opacity: 1;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2.88px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--color-primary);
}

.navbar.scrolled .navbar-nav .nav-link {
  color: var(--color-primary);
}

.navbar.scrolled .navbar-nav .nav-link:hover,
.navbar.scrolled .navbar-nav a:hover,
.navbar.scrolled .navbar-nav a:hover i {
  color: var(--color-gray) !important;
}

.navbar-nav.header-icon-fixed {
  display: flex;
  gap: 10px;
}

.navbar-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 16px;
  letter-spacing: 2.88px;
  width: 123.29px;
  height: 33.98px;
  line-height: 1;
  text-align: center;
  background: var(--color-black);
  color: var(--color-white);
  transition: all 0.3s ease;
}

.navbar-box img,
.navbar-icon img {
  width: 16px;
  height: 16px;
  display: block;
}

.navbar-boxfd {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 16px;
  letter-spacing: 2.88px;
  width: 203.79px;
  height: 33.98px;
  line-height: 1;
  text-align: center;
  background: var(--color-black);
  color: var(--color-white);
  transition: all 0.3s ease;
}

.navbar-boxfd img {
  width: 16px;
  height: 16px;
  display: block;
}

.navbar-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--color-black);
  color: var(--color-white);
  border-radius: var(--border-radius-large);
  transition: all 0.3s ease;
}

.navbar-icon .cart-badge {
  position: absolute;
  top: -9px;
  right: -4px;
  width: 1.2rem;
  height: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ED161B;
  color: #fff;
  border-radius: 50%;
  font-size: calc(10px + 2 * ((100vw - 320px) / 670));
  font-weight: bold;
}

/*---------------------------------------
  NAVBAR - SP ONLY
-----------------------------------------*/

@media screen and (max-width: 991px) {
  .navbar {
    height: 60px;
    padding: 0 20px;
    transition: none !important;
  }

  .navbar.scrolled {
    border-bottom: none;
  }

  .navbar-collapse {
    transition: none !important;
    height: 100vh !important;
    display: block !important;
    visibility: visible !important;
      background-color: rgba(255, 253, 235, 0.98) !important;
  }

  .collapse:not(.show) {
    display: none !important;
  }

  .collapse.show {
    display: block !important;
  }

  .navbar.menu-open {
    background-color: #fffdeb !important;
    border-bottom: none !important;
  }

  .navbar.menu-open .brand-name {
    display: none !important;
  }

  .header-wrap {
    justify-content: end;
    height: 60px;
  }

  .brand-name {
    margin-right: auto;
    order: 0;
  }

  .navbar-icon,
  .navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
  }

  .navbar-toggler {
    padding: 0;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background: transparent !important;
  }

  .navbar-toggler:focus,
  .navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
  }

  .navbar-icon {
    order: 1;
  }

  .navbar-toggler {
    order: 2;
  }

  .sitelogo {
    opacity: 1;
  }

  .navbar-toggler-img {
    width: 25px;
    height: 28px;
    transition: opacity 0.3s ease;
    opacity: 1;
  }

  .navbar-toggler-img.fade-out {
    opacity: 0;
  }

  .navbar-collapse {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: #fffdeb;
    padding: 39px 50px;
    overflow-y: auto;
    z-index: 998;
  }

  .navbar-nav-logo {
    display: flex;
    justify-content: center;
    top: 99px;
    left: 0;
  }

  .navbar-nav-logo img {
    width: 153.63px;
    height: 69.99px;
  }

  .rl-nav-link::after {
    content: none !important;
  }

  .rl-nav {
    min-width: 243.12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 51px;
  }

  .rl-nav li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .rl-nav li::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 5.97px;
    height: 11.41px;
    background-image: url('/img/icon_sr.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .rl-navs {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding-top: 29px;
  }

  .rl-navs li {
    display: flex;
    align-items: center;
    font-weight: bold;
    letter-spacing: 2.4px;
    font-size: 13px;
  }

  .header-icon-fixed {
    margin-top: 32px;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }

  .header-icon-fixed .navbar-icon {
    display: none;
  }

  .navbar-nav.header-icon-fixed {
    gap: 8px;
  }

  .header-icon-fixed .navbar-box:first-child {
    width: 133.03px;
    height: 34px;
  }

  .header-icon-fixed .navbar-box:last-child {
    width: 133.89px;
    height: 34px;
  }

  .header-icon-fixed .navbar-boxfd {
    width: 200px;
    height: 39.56px;
  }


  .navbar:not(.scrolled) .navbar-toggler {
    pointer-events: auto;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

.navbar-nav .nav-link {
  font-size: 20px;
}

}

/*---------------------------------------
  NAVBAR - TAB ONLY
-----------------------------------------*/


/*---------------------------------------
  section-hero
-----------------------------------------*/

.section-hero {
  width: 100vw;
  height: 100vh;
  display: flex;
  position: relative;
  background-color: #fffef7;
  overflow: hidden;
  z-index: 1;
}

.hero-inner {
  display: flex;
  width: 100%;
  height: 100%;
}

.hero-left {
  width: 520px;
  flex-shrink: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fffef7;
  z-index: 2;
}

.hero-left img {
  width: clamp(208px, calc(208px + (265.7 - 208) * ((100vw - 320px) / 1600)), 265.7px);
  height: clamp(94.77px, calc(94.77px + (121.06 - 94.77) * ((100vw - 320px) / 1600)), 121.06px);
}

.hero-right {
  width: 1400px;
  position: relative;
}

.hero-right {
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0;
  height: 100%;
  position: relative;
  z-index: 1;
}

.hero-right>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-right .hero-icon-scroll {
  width: 70px;
  height: 44px;
}

.hero-icon-scroll {
  position: absolute;
  bottom: 50px;
  right: 70px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
  pointer-events: none;
  z-index: 2
}

.topmenu {
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: fadeIn .3s ease-out .3s forwards;
}

.topmenulist {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: clamp(30px, calc(30px + 66 * ((100vw - 320px) / 1600)), 96px);
}

.vertical-menu {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  list-style: none;
  padding: 0;
  margin-right: 12px;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
}


.vertical-menu a {
  color: #000;
  font-weight: bold;
  writing-mode: vertical-rl;
  display: inline-block;
  font-size: 23px;
  letter-spacing: .3rem;
  text-decoration: underline;
  text-underline-offset: 10px;
}

.vertical-menu a:hover {
  color: var(--color-link-hover);
}

.rl-nav-link {
  position: relative;
  display: inline-block;
  padding-right: 0.3rem;
}

.rl-nav-link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1.6px;
  height: 100%;
  background: var(--color-primary);
  transform-origin: center;
  transition: transform 0.4s ease;
}
.rl-nav-link:hover::after {
  transform: scaleY(0);
}

.navbar.scrolled .rl-nav-link:not(.sc-rnl)::after {
  display: none !important;
  content: none !important;
}

.navbar.scrolled .sc-rnl {
  position: relative;
  display: inline-block;
}

.navbar.scrolled .sc-rnl::after {
  content: "";
  position: absolute;
  bottom: 5px;
  height: 2px;
  width: 50%;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  top: auto;
  right: auto;
  background: var(--color-primary);
  opacity: 0;
  visibility: hidden;
}

.navbar.scrolled .sc-rnl:hover::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
  visibility: visible;
}

.navbar.scrolled .rl-nav {
  padding-right: 16px;
  gap: 16px;
}

.topprodlist {
  margin-top: clamp(20px, calc(20px + 67 * ((100vw - 320px) / 1600)), 87px);
}

.btn-more-topmenu {
  display: flex;
  justify-content: flex-end;
  margin-top: 55px;
}

.topmenu .more-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 271.96px;
  height: 52px;
  font-size: 22px;
  letter-spacing: 2.64px;
  line-height: 34px;
  text-align: center;
  background: var(--color-black);
  color: var(--color-white);
  transition: color 0.3s ease;
}

.btn-more-topmenu .more-box img {
  width: 16.96px;
  height: 16.97px;
  display: block;
}



@media screen and (max-width: 1024px) {
  .hero-left {
    position: absolute;
    top: 109px;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: initial;
  }

  .toplogo {
    display: block;
  }

  .sitelogo-t {
    filter: brightness(0) invert(1);
  }

  .topmenulist,
  .btn-more-topmenu {
    display: none;
  }

  .hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero-icon-scroll {
  width: 56px;
  height: 35px;
}

  .hero-icon-scroll {
    position: absolute;
    bottom: 32px;
    left: auto;
    right: auto;
    transform: none;
  }



}

/*---------------------------------------
  section-map & section-intro
-----------------------------------------*/

/*---------------------------------------
  section-map
-----------------------------------------*/

.section-map {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: #fffef7;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.map-wrap-out-out {
  width: 1279px;
  margin: 130px auto;
  position: relative;
  display: flex;
  justify-content: flex-end;
}


.map-wrap {
  width: 1089.93px;
  height: 758.51px;
  display: flex;
  flex-direction: column;
  position: relative;
  left: 40px;
}


.map-ttl-wrap {
  position: absolute;
  top: 8px;
  left: 20px;
  z-index: 2;
}

.map-ttl {
  width: 70.71px;
  height: 339.69px;
  display: block;
}

.map-map-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.map-map {
  max-width: 707.94px;
  max-height: 602.3px;
}

.map-text-wrap {
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;

}

.map-p-wrap {
  display: flex;
  flex-direction: column;
  width: 628.34px;
  z-index: 2;
}

.map-main {
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 4.48px;
}

.map-sub1 {
  font-family: 'Karla';
  font-weight: bold;
  font-size: 37px;
  letter-spacing: 5.18px;
}

.map-sub2 {
  font-family: 'Karla';
  font-weight: bold;
  font-size: 37px;
  letter-spacing: 5.18px;
}

.map-subs {
  font-weight: bold;
  font-size: 26px;
  letter-spacing: 1.3px;
}

.map-subss {
  font-family: 'Shippori Mincho';
  margin-top: 8px;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.75px;
}

.map-no-break {
  white-space: nowrap;
  display: inline;
}

.map-read {
  margin-top: 30px;
  height: 158.14px;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 26px;
}

@media screen and (max-width: 1024px) {
  .section-map {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: #fffef7;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
  }

  .map-wrap-out-out {
    width: 100%;
    height: auto;
    margin: 64px 36px;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .map-wrap {
    width: 100%;
    height: auto;
    left: 0;
  }

  .map-ttl-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
  }

  .map-ttl {
    width: 41.9px;
    height: 184.24px;
    display: block;
  }

  .map-map-wrap {
    width: 100%;
    margin-top: 49px;
    position: relative;
    z-index: 1;
  }

  .map-map {
    width: 100%;
    height: auto;
    display: block;
  }

  .map-text-wrap {
    position: relative;
    margin-top: 20px;
    z-index: 2;
  }

  .map-p-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .map-main {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 3.73px;
  }

  .map-sub1 {
    font-family: 'Karla';
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 3.73px;
  }

  .map-sub2 {
    font-family: 'Karla';
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 3.73px;
  }

  .map-subs {
    font-weight: bold;
    font-size: 17px;
    letter-spacing: 1.13px;
  }

  .map-subss {
    font-family: 'Shippori Mincho';
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: 0.73px;
    display: flex;
    justify-content: end;
  }

  .map-read {
    margin-top: 30px;
    height: auto;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 2.08px;
    line-height: 26px;
  }
  .map-no-break{
    display: none;
  }
}

/*---------------------------------------
  section-intro
-----------------------------------------*/

.section-intro {
  display: flex;
  position: relative;
  background-color: #fffef7;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}


.intro-wrap {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  box-sizing: border-box;
}

.intro-layout {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(50px, 6.25vw, 120px);
}

.intro-img-left-top,
.intro-img-right-top,
.intro-img-right-bottom {
  object-fit: cover;
  display: block;
  max-width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
}

.intro-img-left-top {
  position: relative;
  top: 0;
  left: 0;
  width: clamp(312px, 23.4375vw, 450px);
  height: clamp(188px, 31.25vw, 600px);
  opacity: 0;
  animation: fadeIn .5s ease-out .5s forwards;
}

.intro-img-right-top {
  align-self: flex-start;
  width: clamp(170.5px, 16vw, 307.29px);
  height: clamp(239.89px, 23vw, 443.57px);
  opacity: 0;
  animation: fadeIn 1.0s ease-out 1.0s forwards;
}

.intro-img-right-bottom {
  width: clamp(265.5px, 27vw, 517.71px);
  height: clamp(173.49px, 15.5vw, 297px);
  opacity: 0;
  animation: fadeIn 2s ease-out 2s forwards;
}

.intro-layout-pic-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.intro-read-t {
  margin-bottom: clamp(28px, 5vw, 96px);
}

.intro-read-u {
  margin-bottom: clamp(40px, 5.2vw, 100px);
}

.intro-img-right-top {
  margin-top: clamp(55px, 8.85vw, 170px);
}

.intro-img-right-bottom {
  margin-top: clamp(30px, 6.5vw, 125px);

}

.intro-text {
  align-self: flex-start;
  margin: 0;
  padding-top: clamp(42px, 3.125vw, 60px);
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 0;
  font-family: 'Shippori Mincho';
}

.intro-read-t {
  font-size: clamp(21px, 1.3vw, 25px);
  line-height: clamp(46px, 2.4vw, 46px);
  letter-spacing: clamp(2.1px, 0.24vw, 4.67px);
  font-weight: bold;
  opacity: 0;
  animation: fadeIn 1.5s ease-out 1.5s forwards;
}

.intro-read-u,
.intro-read-d {
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(33px, 2.6vw, 50px);
  letter-spacing: clamp(2.66px, 0.25vw, 4.8px);
  font-weight: 600;
  opacity: 0;
  animation: fadeIn 1.5s ease-out 1.5s forwards;
}

@media screen and (max-width: 767.98px) {
  .intro-layout {
    display: block;
    position: relative;
    background-color: #fffef7;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 50px;
  }

  .intro-img-left-top {
    position: relative;
    top: 0;
    left: 0;
    width: 312px;
    height: 188px;
  }

  .intro-img-right-top {
    align-self: end;
    width: 170.5px;
    height: 239.89px;
  }

  .intro-img-right-bottom {
    width: 265.5px;
    height: 173.49px;
    align-self: flex-start;
  }

  .intro-img-right-top {
    margin-top: 55px;
    padding-right: 20px;
  }

  .intro-img-right-bottom {
    margin-top: 30px;
    padding-left: 20px;
  }

  .intro-read-t {
    margin-bottom: 28px;
  }

  .intro-read-u {
    margin-bottom: 40px;
  }

  .intro-text {
    padding: 42px 20px 0;
  }

  .intro-read-t {
    font-size: 21px;
    line-height: 46px;
    letter-spacing: 2.1px;
    font-weight: bold;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 1.5s forwards;
  }

  .intro-read-u,
  .intro-read-d {
    font-size: 14px;
    line-height: 33px;
    letter-spacing: 2.66px;
    font-weight: 600;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 1.5s forwards;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .intro-layout {
    display: block;
    position: relative;
    background-color: #fffef7;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 50px;
  }

  .intro-img-left-top {
    position: relative;
    top: 0;
    left: 0;
    width: clamp(312px, 40.6vw, 468px);
    height: clamp(188px, 24.5vw, 282px);
  }

  .intro-img-right-top {
    align-self: end;
    width: clamp(170.5px, 22.2vw, 256px);
    height: clamp(239.89px, 31.25vw, 360px);
  }

  .intro-img-right-bottom {
    width: clamp(265.5px, 34.5vw, 398px);
    height: clamp(173.49px, 22.6vw, 260px);
    align-self: flex-start;
  }

  .intro-img-right-top {
    margin-top: 55px;
    padding-right: 20px;
  }

  .intro-img-right-bottom {
    margin-top: 30px;
    padding-left: 20px;
  }

  .intro-read-t {
    margin-bottom: clamp(28px, 3.6vw, 42px);
  }

  .intro-read-u {
    margin-bottom: clamp(28px, 3.6vw, 42px);
  }

  .intro-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 50%;
    margin: 0 auto;
    padding-top: clamp(42px, 3.125vw, 60px);
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 0;
  }

  .intro-text p {
    text-align: left;
    width: 100%;
  }

  .intro-read-t {
    font-size: 21px;
    line-height: 46px;
    letter-spacing: 2.1px;
    font-weight: bold;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 1.5s forwards;
  }

  .intro-read-u,
  .intro-read-d {
    font-size: 14px;
    line-height: 33px;
    letter-spacing: 2.66px;
    font-weight: 600;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 1.5s forwards;
  }
}


/*---------------------------------------
  section-tproducts
-----------------------------------------*/

.section-tproducts {
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.tproducts-wrap {
  max-width: 1344px;
  margin: 100px auto;
  display: flex;
  flex-direction: column;
}

.tproducts-wrapper-up {
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 100px;
}

.tproducts-item-wrap {
  display: flex;
  gap: 60px;
}


.tproducts-ttl-wrap {
  width: 250px;
  display: flex;
  justify-content: flex-end;
  flex-shrink: 1;
}

.tproducts-ttl {
  width: 86.72px;
  height: 412.52px;
  display: block;
}

.tproducts-wrapper-down {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  margin-left: auto;
}

.tproducts-item {
  width: 517px;
}

.tproducts-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  border: 2px solid var(--color-black);
}

.tproducts-img > img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tproducts-img:hover > img {
  transform: scale(1.05);
  transition: transform 0.5s ease;
}

.tproducts-label {
  display: none !important;
}

.tproducts-label {
  position: absolute;
  top: -2px;
  right: -2px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 51.56px;
  height: auto;
  pointer-events: none;
}

.tproducts-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  margin-top: 22px;
  gap: 20px;
}

.tproducts-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tproducts-read {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  margin: 0;
  font-size: 27px;
  letter-spacing: 4.32px;
  line-height: 44px;
}

.tproducts-sub {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2.4px;
  line-height: 32px;
}

.btn-more-tproducts {
  display: flex;
  justify-content: flex-end;
  margin-top: 55px;
}

.btn-more-tproducts .more-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 271.96px;
  height: 52px;
  font-size: 22px;
  letter-spacing: 2.64px;
  line-height: 34px;
  text-align: center;
  background: var(--color-black);
  color: var(--color-white);
  transition: color 0.3s ease;
}

.btn-more-tproducts .more-box img {
  width: 16.96px;
  height: 16.97px;
  display: block;
}

@media screen and (max-width: 1024px) {

  .tproducts-wrap {
    max-width: 100%;
    margin: 40px auto;
    padding: 0 36px;
    display: flex;
    flex-direction: column;
  }

  .tproducts-wrapper-up {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
  }

  .tproducts-item-wrap {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .tproducts-ttl-wrap {
    width: 100%;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 40px;
  }

  .tproducts-ttl {
    width: 41.9px;
    height: 184.24px;
  }

  .tproducts-wrapper-down {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-left: auto;
  }

  .tproducts-item {
    width: 100%;
  }

  .tproducts-label {
    width: 32.98px;
  }

  .tproducts-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    margin-top: 10px;
    gap: 10px;
  }

  .tproducts-read {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 3px;
    line-height: 29px;
  }

  .tproducts-sub {
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    line-height: 20px;
  }

  .btn-more-tproducts {
    margin-top: 40px;
  }

  .btn-more-tproducts .more-box {
    gap: 4px;
    width: 200px;
    height: 39.56px;
    font-size: 16px;
    letter-spacing: 1.92px;
    line-height: 25px;
  }

  .btn-more-tproducts .more-box img {
    width: 16.96px;
    height: 16.97px;
    display: block;
  }

}

/*---------------------------------------
  section-refeature
-----------------------------------------*/

.section-refeature {
  width: 100%;
  padding: 165px 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
}

.refeature-header-wrap {
  display: flex;
  justify-content: space-between;
  width: 1344px;
  margin: 0 auto 80px;
  position: relative;
}

.refeature-ttl-wrap {
  padding: 0;
}

.refeature-ttl {
  width: 435.01px;
  height: 71.97px;
  display: block;
  margin-bottom: 40px;
}

.refeature-header-p {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(13px, 3vw, 18px);
  letter-spacing: 3.6px;
  line-height: clamp(20px, 4vw, 34px);
  font-weight: 600;
  padding: 0;
  margin-bottom: 0;
}

.btn-more-refeature {
  position: absolute;
  bottom: 0;
  right: 0;
}

.btn-more-refeature .more-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 200.78px;
  height: 51.54px;
  font-size: 22px;
  letter-spacing: 2.64px;
  line-height: 34px;
  text-align: center;
  background: var(--color-black);
  color: var(--color-white);
  transition: color 0.3s ease;
  margin-right: 4px;
  margin-bottom: 15px;
}

.btn-more-refeature .more-box img {
  width: 18.73px;
  height: 14.49px;
  display: block;
}

.refeature-wrap {
  display: flex;
  justify-content: center;
  max-width: 1344px;
  margin: 0 auto;
  gap: 70px;
}

/*
.section-refeature .refeature-wrap:last-of-type {
  margin-bottom: 110px;
}
*/
.refeature-wrap+.refeature-wrap {
  margin-top: 76px;
}

.refeature-pic img {
  width: 763.74px;
  height: 465.65px;
  overflow: hidden;
  position: relative;
  object-fit: cover;
  display: block;
  border: 2px solid var(--color-black);
}

.refeature-layout {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.refeature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.refeature-ttlp {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(16px, 5vw, 32px);
  letter-spacing: 5.12px;
  line-height: clamp(30px, 5vw, 55px);
  font-weight: 600;
  padding: 0;
  margin-bottom: 0;
}

.refeature-read {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(13px, 3vw, 18px);
  letter-spacing: 1.3px;
  line-height: clamp(20px, 4vw, 30px);
  font-weight: 500;
  margin-bottom: 0;
}


@media screen and (max-width: 1024px) {
  .section-refeature {
    width: 100%;
    padding: 50px 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    border-top: 2px solid var(--color-black);
    border-bottom: 2px solid var(--color-black);
  }

  .refeature-header-wrap {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .refeature-ttl-wrap {
    padding: 0;
  }

  .refeature-ttl {
    width: 257.57px;
    height: 44.99px;
    display: block;
    margin-bottom: 20px;
  }

  .refeature-header-p {
    letter-spacing: 2px;
  }

  .btn-more-refeature {
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .btn-more-refeature .more-box {
    gap: 8px;
    width: 152px;
    height: 39.56px;
    font-size: 16px;
    letter-spacing: 1.92px;
    line-height: 25px;
    text-align: center;
    margin-right: 4px;
    margin-bottom: 15px;
  }

  .btn-more-refeature .more-box img {
    width: 14.03px;
    height: 11.12px;
    display: block;
  }

  .refeature-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px 16px 0;
    gap: 0;
  }


  .refeature-wrap+.refeature-wrap {
    margin-top: 0;
  }

  .section-refeature .refeature-wrap:last-of-type {
    margin-bottom: 110px;
  }

  .refeature-pic img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    object-fit: cover;
    display: block;
    border: 2px solid var(--color-black);
  }

  .refeature-layout {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 16px;
  }

  .refeature-text {
    padding: 16px 0;
    gap: 12px;
  }

  .refeature-ttlp {
    font-weight: bold;
    letter-spacing: 3.2px;
  }



  .refeature-read {
    letter-spacing: 1.9px;
  }

  .btn-more-refeature-end {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .btn-more-refeature-end .more-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 154.08px;
    height: 39.56px;
    font-size: 16px;
    letter-spacing: 1.7px;
    line-height: 25px;
    text-align: center;
    background: var(--color-black);
    color: var(--color-white);
    transition: color 0.3s ease;
    margin-right: 4px;
    margin-bottom: 15px;
  }

  .btn-more-refeature-end .more-box img {
    width: 14.37px;
    height: 11.12px;
    display: block;
  }

}

/*---------------------------------------
  section-feature
-----------------------------------------*/
/*
.section-feature {
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
}

.feature-wrap {
  display: flex;
  justify-content: center;
  max-width: 1344px;
  margin: 0 auto;
  gap: 60px;
}

.section-feature .feature-wrap:first-of-type {
  margin-top: 166px;
}

.section-feature .feature-wrap:last-of-type {
  margin-bottom: 166px;
}

.feature-wrap+.feature-wrap {
  margin-top: 80px;
}

.feature-ttl-wrap-s {
  display: none;
}

.feature-pic img {
  width: 784.42px;
  height: 691px;
  overflow: hidden;
  position: relative;
  object-fit: cover;
  display: block;
  border: 2px solid var(--color-black);
}

.feature-layout {
  width: 500px;
  display: flex;
  flex-direction: column;
  padding: 97px 0 102px 0;
}

.feature-ttl-wrap {
  padding: 0;
  margin-bottom: 55px;
}

.feature-ttl {
  width: 440.4px;
  height: 71.97px;
  display: block;
}

.feature-text {
  padding: 0;
  margin-bottom: 30px;
}

.feature-ttlp {
  font-family: 'Shippori Mincho', serif;
  font-size: 32px;
  letter-spacing: 5.12px;
  line-height: 55px;
  font-weight: 600;
  padding: 0;
  margin-bottom: 35px;
}

.feature-read {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  letter-spacing: 3.2px;
  line-height: 30px;
  font-weight: 500;
}

.btn-more-feature {
  display: flex;
  justify-content: flex-end;
}

.btn-more-feature .more-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 154.08px;
  height: 39.56px;
  font-size: 16px;
  letter-spacing: 1.7px;
  line-height: 25px;
  text-align: center;
  background: var(--color-black);
  color: var(--color-white);
  transition: color 0.3s ease;
  margin-right: 4px;
}

.btn-more-feature .more-box img {
  width: 14.37px;
  height: 11.12px;
  display: block;
}

@media screen and (max-width: 1024px) {
  .section-feature {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    border-top: 2px solid var(--color-black);
    border-bottom: 2px solid var(--color-black);
  }

  .feature-ttl-wrap {
    display: none;
  }

  .feature-wrap {
    width: 100%;
    margin: 20px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .section-feature .feature-wrap:first-of-type {
    margin-top: 20px;
  }

  .section-feature .feature-wrap:last-of-type {
    margin-bottom: 20px;
  }

  .feature-wrap+.feature-wrap {
    margin-top: 10px;
  }

  .feature-pic img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    object-fit: cover;
    display: block;
    border: 2px solid var(--color-black);
  }

  .feature-layout {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px 16px 0;
  }

  .feature-ttl-wrap-s {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-bottom: -2px;
  }

  .feature-ttl-s {
    width: 257.57px;
    height: 44.99px;
    display: block;
  }

  .feature-text {
    padding: 0;
    margin-bottom: 16px;
  }

  .feature-ttlp {
    font-family: 'Shippori Mincho', serif;
    font-size: 20px;
    letter-spacing: 2.4px;
    line-height: 29px;
    font-weight: 700;
    padding: 0;
    margin-bottom: 16px;
  }

  .feature-read {
    font-family: 'Shippori Mincho', serif;
    font-size: 13px;
    letter-spacing: 1.56px;
    line-height: 20px;
    font-weight: 500;
  }

  .btn-more-feature {
    display: flex;
    justify-content: flex-start;
  }

  .btn-more-feature .more-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 154.08px;
    height: 39.56px;
    font-size: 16px;
    letter-spacing: 1.7px;
    line-height: 25px;
    text-align: center;
    background: var(--color-black);
    color: var(--color-white);
    transition: color 0.3s ease;
  }
}
*/
/*---------------------------------------
  section-linkbnr
-----------------------------------------*/
.section-linkbnr {
  background-color: #FFFDEB;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.linkbnr-wrap-out {
  max-width: 1344px;
  height: 100%;
  margin: 160px auto;
  padding-right: 32px;
}

.linkbnr-wrap {
  background-color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 80px 256px 80px 190px;
  border: 2px solid var(--color-black);
  position: relative;
}

.linkbnr-ttl-wrap {
  position: absolute;
  top: -30px;
  right: -32px;
  z-index: 1;
}

.linkbnr-ttl {
  width: 63.83px;
  height: 447.01px;
  display: block;
}

.linkbnr-layout {
  width: 100%;
  display: flex;
  padding: 0;
  margin: 0;
  position: relative;
}


ul.linkbnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 34px 0;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  box-sizing: border-box;
}

.linkbnr li {
  display: flex;
  align-items: center;
}

.linkbnr li a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.linkbnr_bnr {
  width: 351.71px;
  height: 88.55px;
  display: block;
}

.linkbnr_arrow {
  width: 31px;
  height: 31px;
  display: block;
}


@media screen and (max-width: 767.98px) {
  .linkbnr-wrap-out {
    max-width: 335px;
    margin: 80px auto;
    padding-right: 0;
  }

  .linkbnr-wrap {
    background-color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: 34px 64px 52px 16px;
    border: 2px solid var(--color-black);
    position: relative;
  }

  .linkbnr-ttl-wrap {
    position: absolute;
    top: -4px;
    right: -2px;
    z-index: 1;
  }

  .linkbnr-ttl {
    width: 41.9px;
    height: 293.48px;
    display: block;
  }

  .linkbnr-layout {
    width: 100%;
    display: flex;
    padding: 0;
    margin: 0;
    position: relative;
  }


  ul.linkbnr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5px;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
    box-sizing: border-box;
  }

  .linkbnr li {
    display: flex;
    align-items: center;
  }

  .linkbnr li a {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .linkbnr_bnr {
    width: 230.02px;
    height: 58.02px;
    display: block;
  }

  .linkbnr_arrow {
    width: 19.66px;
    height: 19.66px;
    display: block;
  }

}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .linkbnr-wrap-out {
    max-width: 600px;
    max-height: 664px;
    margin: 80px auto;
    padding-right: 0;
  }

  .linkbnr-wrap {
    background-color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: 34px 64px 52px 16px;
    border: 2px solid var(--color-black);
    position: relative;
  }

  .linkbnr-ttl-wrap {
    position: absolute;
    top: -2px;
    right: -2px;
    z-index: 1;
  }

  .linkbnr-ttl {
    width: 41.9px;
    height: 293.48px;
    display: block;
  }

  .linkbnr-layout {
    width: 100%;
    display: flex;
    padding: 0;
    margin: 0;
    position: relative;
  }

  ul.linkbnr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5px;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
    box-sizing: border-box;
  }

  .linkbnr li {
    display: flex;
    align-items: center;
  }

  .linkbnr li a {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .linkbnr_bnr {
    width: 230.02px;
    height: 58.02px;
    display: block;
  }

  .linkbnr_arrow {
    width: 19.66px;
    height: 19.66px;
    display: block;
  }

}

/*---------------------------------------
  section-use
-----------------------------------------*/

.section-use {
  background-color: #FFFDEB;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.use-layout {
  position: relative;
  width: 1345px;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
}

.use-pic-wrap {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 671.31px;
  height: 450.35px;
}

.use-pic-img {
  display: block;
  width: 671.31px;
  height: 450.35px;
  border: 2px solid var(--color-black);
}

.use-wrap {
  width: 1022px;
  height: 521.23px;
  border: 2px solid var(--color-black);
  background-color: var(--color-white);
  padding: 110px 0 47px 66px;
  margin-top: 58px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.use-ttl-wrap {
  position: absolute;
  top: 58px;
  left: 0;
  z-index: 2;
}

.use-ttl {
  width: 368.09px;
  height: 72.21px;
  display: block;
}

.use-text {
  font-family: 'Shippori Mincho', serif;
  display: flex;
  flex-direction: column;
}

.use-ttlp {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 34px;
  margin-bottom: 26px;
}

.use-read {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 3.36px;
  line-height: 45px;
  margin-bottom: 34px;
}

.btn-more-use {
  display: flex;
}

.btn-more-use .more-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 200.78px;
  height: 51.54px;
  font-size: 22px;
  letter-spacing: 2.64px;
  line-height: 34px;
  text-align: center;
  background: var(--color-black);
  color: var(--color-white);
  transition: color 0.3s ease;
}

.btn-more-use .more-box img {
  width: 18.73px;
  height: 14.49px;
  display: block;
}

@media screen and (max-width: 767.98px) {

  .use-layout {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
  }

  .use-pic-wrap {
    position: absolute;
    top: 0;
    right: -2px;
    z-index: 2;
    width: 339px;
    height: 217.34px;
  }

  .use-pic-img {
    display: block;
    width: 339px;
    height: 217.34px;
    border-right: 0 !important;
  }

  .use-wrap {
    width: 100%;
    height: auto;
    border: 2px solid var(--color-black);
    border-left: 0 !important;
    background-color: var(--color-white);
    padding: 106px 16px 30px 36px;
    margin-top: 125px;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
  }

  .use-ttl-wrap {
    position: absolute;
    top: 0;
    left: -2px;
    z-index: 3;
  }

  .use-ttl {
    width: 213.93px;
    height: 41.96px;
    display: block;
  }

  .use-ttlp {
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 1.56px;
    line-height: 26px;
    margin-bottom: 16px;
  }

  .use-read {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.84px;
    line-height: 29px;
    margin-bottom: 23px;
  }

  .btn-more-use {
    display: flex;
  }

  .btn-more-use .more-box {
    gap: 10px;
    width: 152px;
    height: 39.56px;
    font-size: 16px;
    letter-spacing: 1.92px;
    line-height: 25px;
  }

  .btn-more-use .more-box img {
    width: 14.03px;
    height: 11.12px;
    display: block;
  }

}


@media screen and (min-width: 768px) and (max-width: 1024px) {

  .use-layout {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
  }

  .use-pic-wrap {
    position: absolute;
    top: 0;
    right: -2px;
    z-index: 2;
  }

  .use-pic-img {
    display: block;
    width: 400px;
    height: 256.4px;
    border-right: 0 !important;
  }

  .use-wrap {
    width: 100%;
    height: auto;
    border: 2px solid var(--color-black);
    border-left: 0 !important;
    background-color: var(--color-white);
    padding: 106px 16px 30px 36px;
    margin-top: 125px;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
  }

  .use-ttl-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
  }

  .use-ttl {
    width: 213.93px;
    height: 41.96px;
    display: block;
  }

  .use-ttlp {
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 1.56px;
    line-height: 26px;
    margin-bottom: 16px;
  }

  .use-read {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.84px;
    line-height: 29px;
    margin-bottom: 23px;
  }

  .btn-more-use {
    display: flex;
  }

  .btn-more-use .more-box {
    gap: 10px;
    width: 152px;
    height: 39.56px;
    font-size: 16px;
    letter-spacing: 1.92px;
    line-height: 25px;
  }

  .btn-more-use .more-box img {
    width: 14.03px;
    height: 11.12px;
    display: block;
  }

}

/*---------------------------------------
  section-faq
-----------------------------------------*/

.section-faq {
  background-color: var(--color-white);
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 115px;
  background: linear-gradient(to bottom,
      rgb(255, 253, 235), rgb(255, 255, 255));
  pointer-events: none;
}

.faq-wrap-out {
  max-width: 969.21px;
  height: 344.19px;
  margin: 230px auto 115px;
  padding-right: 0;
}

.faq-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  position: relative;
  left: 15px;
}

.faq-ttl-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.faq-ttl {
  width: 55px;
  height: 304.64px;
  display: block;
}

.faq-text {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding-left: 103px;
}

.faq-ttlp {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 3.6px;
  line-height: 34px;
  margin-bottom: 16px;
}

.faq-read {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-item {
  position: relative;
  padding-left: 34px;
  text-indent: 0;
  font-weight: 600;
  font-size: 25px;
  letter-spacing: 3px;
  line-height: 60px;
}

.faq-item::before {
  content: "Q.";
  position: absolute;
  left: 0;
  top: 0;
  color: #ED161B;
  font-family: 'Karla';
  font-style: italic;
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 2.7px;
  line-height: 53px;
}

.faq-read a:hover {
  color: var(--color-gray);
  transition: color 0.3s ease;
}

.btn-more-faq {
  position: absolute;
  bottom: 5px;
  right: -40px;
}

.btn-more-faq .more-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 200.78px;
  height: 51.54px;
  font-size: 22px;
  letter-spacing: 2.64px;
  line-height: 34px;
  text-align: center;
  background: var(--color-black);
  color: var(--color-white);
  transition: color 0.3s ease;
}

.btn-more-faq .more-box img {
  width: 18.73px;
  height: 14.49px;
  display: block;
}

@media screen and (max-width: 767.98px) {

  .section-faq::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 115px;
    background: linear-gradient(to bottom,
        rgb(255, 253, 235), rgb(255, 255, 255));
    pointer-events: none;
  }

  .faq-wrap-out {
    width: 100%;
    height: auto;
    margin: 94px auto 0;
    padding: 36px;
  }

  .faq-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    position: relative;
    left: 0;
  }

  .faq-ttl-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }

  .faq-ttl {
    width: 207.81px;
    height: 41.96px;
    display: block;
  }

  .faq-text {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding-left: 0;
    padding: 60px 0;
  }

  .faq-ttlp {
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.44px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .faq-read {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
  }

  .faq-item {
    position: relative;
    padding-left: 22px;
    text-indent: 0;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1.6px;
    line-height: 21px;
  }

  .faq-item::before {
    content: "Q.";
    position: absolute;
    left: 0;
    top: 0;
    color: #ED161B;
    font-family: 'Karla';
    font-style: italic;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1.62px;
    line-height: 18px;
  }

  .faq-read a:hover {
    color: var(--color-gray);
    transition: color 0.3s ease;
  }

  .btn-more-faq {
    position: absolute;
    bottom: -18px;
    right: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .btn-more-faq .more-box {
    gap: 8px;
    width: 152px;
    height: 39.56px;
    font-size: 16px;
    letter-spacing: 1.92px;
    line-height: 25px;
    text-align: center;
    background: var(--color-black);
    color: var(--color-white);
    transition: color 0.3s ease;
  }

  .btn-more-faq .more-box img {
    width: 14.03px;
    height: 11.12px;
    display: block;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section-faq::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 115px;
    background: linear-gradient(to bottom,
        rgb(255, 253, 235), rgb(255, 255, 255));
    pointer-events: none;
  }

  .faq-wrap-out {
    width: 100%;
    height: auto;
    margin: 94px auto 0;
    padding: 36px;
    position: relative;
  }

  .faq-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    position: relative;
    left: 0;
  }

  .faq-ttl-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }

  .faq-ttl {
    width: 207.81px;
    height: 41.96px;
    display: block;
  }

  .faq-text {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding-left: 0;
    padding: 60px 0;
  }

  .faq-ttlp {
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.44px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .faq-read {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
  }

  .faq-item {
    position: relative;
    padding-left: 22px;
    text-indent: 0;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1.6px;
    line-height: 21px;
  }

  .faq-item::before {
    content: "Q.";
    position: absolute;
    left: 0;
    top: 0;
    color: #ED161B;
    font-family: 'Karla';
    font-style: italic;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1.62px;
    line-height: 18px;
  }

  .faq-read a:hover {
    color: var(--color-gray);
    transition: color 0.3s ease;
  }

  .btn-more-faq {
    width: 100%;
    position: absolute;
    bottom: -18px;
    left: 0;
    justify-content: center;
    display: flex;
  }

  .btn-more-faq .more-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 154.08px;
    height: 39.56px;
    font-size: 16px;
    letter-spacing: 1.7px;
    line-height: 25px;
    text-align: center;
    background: var(--color-black);
    color: var(--color-white);
    transition: color 0.3s ease;
  }

  .btn-more-faq .more-box img {
    width: 14.37px;
    height: 11.12px;
    display: block;
  }

}

/*---------------------------------------
  section-faq-bg
-----------------------------------------*/

.section-faq-bg {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  /* border-bottom: 2px solid var(--color-black);*/
}

.section-faq-img {
  position: relative;
}

.section-faq-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.8) 40%,
      rgba(255, 255, 255, 0.4) 70%,
      rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 2;
}

.section-faq-img img {
  display: block;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 767.98px) {
  .section-faq-img::before {
    height: 150px;
  }

}


/*---------------------------------------
  section-footer
-----------------------------------------*/

.section-footer {
  position: relative;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--color-black);
}

.footer-wrap {
  max-width: 1344px;
  margin: 0 auto;
  width: 100%;
  padding: 0;
}


.footer-wrap1 {
  padding: 68px 0 20px 0;
  display: flex;
  flex-direction: row;
}

.toplogof {
  width: 256.8px;
  height: 117px;
  margin: 0;
  padding: 0;
}

.ad-wrap {
  width: auto;
  height: 136px;
  margin-left: 58px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 6px;
  padding: 0;

}

.ad-wrap .ad-t13 {
  font-size: clamp(12px, 2vw, 13px);
  letter-spacing: 1.3px;
  line-height: 18px;
}

.ad-wrap .ad-t18 {
  font-size: clamp(16px, 2.5vw, 18px);
  letter-spacing: 1.8px;
  font-weight: 500;
}

.ad-wrap .ad-t11 {
  font-size: clamp(10px, 1.8vw, 11px);
  letter-spacing: 1.1px;
  margin-top: 4px;
}

.topmenulist-wrap {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  flex: 1;
}

.topfmenulist {
  width: 213.19px;
  height: 184.22;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vertical-fmenu {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
}

.vertical-fmenu a {
  font-weight: bold;
  writing-mode: vertical-rl;
  display: inline-block;
  font-size: 20px;
  letter-spacing: .3rem;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.vertical-fmenu a:hover {
  color: var(--color-link-hover);
}

.footer-wrap2 {
  padding: 0;
  margin: 0;
}

.footer-wrap2-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 45px;
}

.footer-wrap2-links .nav-link {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2.16px;
}

.footer-wrap2-links .nav-link:hover {
  color: var(--color-gray);
  transition: color 0.3s ease;
}

.footer-wrap3 {
  width: 100%;
  margin: 0;
  padding: 60px 0 50px 0;
}

.f-linkbnr {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  box-sizing: border-box;
}

.f-linkbnr li {
  flex: 0 1 calc((100% - 20px * 3) / 4);
}

.f-linkbnr li a {
  display: block;
}

.f-linkbnr img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-wrap4 {
  width: 100%;
  margin: 0;
  padding-bottom: 63px;
}

.copyright-text {
  font-size: clamp(9px, 2.5vw, 10px);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.8px;
  color: #808080;
  font-family: 'Shippori Mincho', serif;
}

@media screen and (max-width: 1024px) {
  .footer-wrap {
    max-width: none;
    padding: 0 20px;
  }

  .topmenulist-wrap,
  .footer-wrap2 {
    display: none;
  }

  .footer-wrap1 {
    padding: 50px 16px 0;
    display: flex;
    flex-direction: column;
  }

  .toplogof {
    width: 153.63px;
    height: 69.99px;
    margin-bottom: 30px;
    padding: 0;
  }

  .ad-wrap {
    width: auto;
    height: auto;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 6px;
    padding: 0;
  }

  .ad-wrap .ad-t13 {
    letter-spacing: 1.2px;
    line-height: 18px;
  }

  .ad-wrap .ad-t18 {
    letter-spacing: 1.6px;
    font-weight: 500;
  }

  .ad-wrap .ad-t11 {
    letter-spacing: 0px;
    margin-top: 4px;
  }

  .footer-wrap3 {
    width: 100%;
    margin: 0;
    padding: 40px 0 30px 0;
  }

  .f-linkbnr {
    gap: 6px;
  }

  .f-linkbnr li {
    flex: 0 1 calc((100% - 6px) / 2);
  }

  .f-linkbnr li a {
    display: block;
  }

  .f-linkbnr img {
    display: block;
    width: 100%;
    height: auto;
  }

  .footer-wrap4 {
    padding-bottom: 50px;
  }

}


/*---------------------------------------
  feature-detail
-----------------------------------------*/

.feature-detail {
  background-color: #FFFDEB;
  width: 100%;
  height: auto;
  padding: 176px 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fd-warp {
  position: relative;
  width: 800px;
  height: auto;
  margin: 0 auto 60px;
  display: flex;
}

.fd-head-txt {
  background-color: #fff;
  width: 503px;
  height: 165px;
  padding: 20px 30px;
  border: 2px solid var(--color-black);
  border-bottom: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.fd-head-txtp {
  font-weight: bold;
  font-size: clamp(20px, 5vw, 30px);
  letter-spacing: clamp(3px, 1.5vw, 3px);
  line-height: clamp(29px, 4vw, 45px);
  margin: 0;
}

.fd-cate {
  font-weight: bold;
  font-size: clamp(11px, 2vw, 13px);
  letter-spacing: clamp(0.11px, 0.5vw, 0.26px);
  line-height: clamp(10px, 2.5vw, 28px);
  background-color: #F0F0F0;
  padding: 0 5px;
  text-align: center;
  margin-top: 10px;
}

.fd-head-pic img {
  display: block;
  width: 800px;
  height: 494px;
  border: 2px solid var(--color-black);
}

.fd-warp-contents {
  position: relative;
  width: 688px;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.contents-lead {
  font-weight: bold;
  font-size: clamp(20px, 4vw, 25px);
  letter-spacing: clamp(3.2px, 1.2vw, 3px);
  line-height: clamp(29px, 4vw, 46px);
  margin-bottom: 0;
}

.contents-txt {
  font-weight: 500;
  font-size: clamp(13px, 3vw, 16px);
  letter-spacing: clamp(1.95px, 1vw, 1.92px);
  line-height: clamp(20px, 3vw, 32px);
  margin-bottom: 0;
  font-family: 'Noto Sans JP';
}

.fd-contents-pic {
  width: 100%;
  height: 100%;
  display: block;
}

.company-wrap {
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 2px solid var(--color-black);
  margin: 0;
  padding: 30px 37px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  box-sizing: border-box;
  gap: 10px;
}

.company-name {
  font-weight: 600;
  font-size: clamp(20px, 4vw, 25px);
  letter-spacing: clamp(3.2px, 1.2vw, 3px);
  line-height: clamp(29px, 4vw, 46px);
  margin-bottom: 0;
}

.company-txt {
  margin: 0;
  font-family: 'Shippori Mincho';
  font-weight: bold;
  font-size: clamp(13px, 2.5vw, 14px);
  letter-spacing: clamp(3px, 1vw, 0.28px);
  line-height: clamp(20px, 3vw, 24px);
}

.company-ul {
  margin-top: 30px;
  border-top: 1px solid var(--color-black);
  width: 100%;
}

.company-info dl {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  gap: 5px;
}

.company-info dd {
  margin: 0;
  padding: 0;
}

.company-info .info-row-add,
.company-info .info-row-link {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0;
  font-size: clamp(13px, 2.5vw, 14px);
  letter-spacing: clamp(1.56px, 1vw, 0.28px);
  line-height: clamp(20px, 3vw, 24px);
}

.company-info .info-row-add {
  font-family: 'Noto Sans JP';
}

.company-info .info-row-link {
  font-family: 'Karla';
}

.company-info .info-row-add dt,
.company-info .info-row-add dd,
.company-info .info-row-link dd {
  font-weight: 600;
}

.company-info .info-row-link dt {
  font-weight: bold;
}

.company-info dt {
  width: 50px;
}

.company-info a {
  text-decoration: underline;
}


.intro-prod-wrap {
  width: 800px;
  position: relative;
  margin: 90px auto;
}

.intro-prod-ttl-wrap {
  bottom: -2px;
  position: relative;
}

.introprod-ttl {
  width: 348.47px;
  height: 62.38px;
  display: block;
}

.intro-prod-layout {
  display: flex;
  width: 100%;
  position: relative;
  padding: 48px 50px 40px;
  border: 2px solid var(--color-black);
  background-color: var(--color-white);
}

.intro-prod-layout+.intro-prod-layout {
  margin-top: -2px;
}

.prod-pic-wrap {
  flex: 1;
}

.prod-pic {
  width: 320.33px;
  height: 200px;
  object-fit: cover;
}

.intro-prod-detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

.prod-detail-text {
  font-family: 'Shippori Mincho';
  font-weight: bold;
  font-size: clamp(13px, 3vw, 18px);
  letter-spacing: clamp(1.56px, 1vw, 1.8px);
  line-height: clamp(20px, 4vw, 28px);
  margin-bottom: 45px;
}

.prod-price-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.prod-price-wrap p {
  color: #F84949;
}

.prod-price-ttl {
  font-weight: bold;
  font-family: 'Noto Sans JP';
  font-size: clamp(16px, 2vw, 21px);
  letter-spacing: clamp(1.44px, 1vw, 3.78px);
  line-height: clamp(16px, 4vw, 43px);
}

.prod-price {
  font-family: 'Karla';
  font-weight: 500;
  font-size: clamp(30px, 5vw, 43px);
  letter-spacing: clamp(1.36px, 1vw, 3.44px);
  line-height: clamp(16px, 4vw, 41px);
  padding-bottom: 8px;
  margin-right: 5px;
}

.price-yen {
  font-weight: bold;
  font-family: 'Noto Sans JP';
  font-size: clamp(16px, 3vw, 25px);
  letter-spacing: clamp(1.2px, 1vw, 3px);
  line-height: clamp(16px, 4vw, 41px);
}

.btn-more-prod {
  display: flex;
  justify-content: end;
  margin-top: 10px;
}

.btn-more-prod .more-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 154.08px;
  height: 39.56px;
  font-size: 16px;
  letter-spacing: 1.7px;
  line-height: 25px;
  text-align: center;
  background: var(--color-black);
  color: var(--color-white);
  transition: color 0.3s ease;
}

.btn-more-prod .more-box img {
  width: 14.37px;
  height: 11.12px;
  display: block;
}

/*.articles-pagination
*/
.articles-pagination {
  width: 100%;
  max-width: 799px;
  position: relative;
  margin: 0 auto;
}

.articles-pagination a {
  font-size: clamp(13px, 2.5vw, 16px);
  letter-spacing: clamp(1.3px, 1vw, 3.2px);
  line-height: clamp(28px, 4vw, 34px);
  font-family: 'Shippori Mincho';
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.articles-pagination a:hover {
  opacity: 0.7;
}

.articles-pagination__prev img {
  margin-right: 8px;
  width: 18.73px;
  height: auto;
}

.articles-pagination__next img {
  margin-left: 8px;
  width: 18.73px;
  height: auto;
}

.articles-pagination__prev {
  position: absolute;
  left: 0;
}

.articles-pagination__home {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.articles-pagination__next {
  position: absolute;
  right: 0;
}

/*.section-articles
*/
.section-articles {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.articles-wrap {
  width: 100%;
  max-width: 1344px;
  height: auto;
  margin: 0 auto;
  padding: 110px 0;
}

.articles-ttl-wrap {
  width: 100%;
  margin-bottom: 25px;
}

.articles-ttl {
  font-family: 'Shippori Mincho';
  font-weight: bold;
  margin: 0;
  font-size: 31px;
  letter-spacing: 3.72px;
}

.articles-prod-detail-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.articles-prod-detail-link:hover {
  opacity: 0.7;
}


.articles-prod-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(414px, 1fr));
  gap: 50px;
  width: 100%;
}

.articles-prod-detail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}

.prod-detail-pic {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid var(--color-black);
}

.prod-detail-txt {
  font-family: 'Shippori Mincho';
  font-weight: bold;
  margin-bottom: 15px;
  font-size: clamp(18px, 2vw, 18px);
  letter-spacing: clamp(1.8px, 0.5vw, 1.8px);
  line-height: clamp(28px, 3vw, 28px);
}

.prod-detail-cate {
  font-weight: bold;
  font-size: clamp(13px, 2.5vw, 16px);
  letter-spacing: clamp(1.3px, 1vw, 3.2px);
  line-height: clamp(28px, 4vw, 34px);
  background-color: #F0F0F0;
  padding: 0 5px;
  text-align: center;
  margin: 0;
}



@media screen and (max-width: 1024px) {
  .feature-detail {
    padding: 100px 0;
  }

  .fd-head-wrap {
    margin: 0 20px;
  }

  .fd-warp {
    width: 100%;
    margin: 0 auto;
  }

  .fd-head-txt {
    width: 100%;
    height: 140px;
    padding: 10px 15px;
  }

  .fd-warp-contents {
    width: 100%;
    padding: 36px;
    gap: 20px;
  }

  .fd-head-pic img,
  .fd-contents-pic {
    width: 100%;
    height: 100%;
  }

  .fd-cate {
    padding: 5px;
    margin-bottom: 5px;
  }



  .company-wrap {
    padding: 20px;
  }

  .intro-prod-wrap {
    width: 100%;
    margin: 45px auto;
    padding: 0 20px;
  }

  .introprod-ttl {
    width: 251.57px;
    height: 44.99px;
  }

  .intro-prod-layout {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .prod-pic {
    width: 100%;
    height: auto;
  }

  .prod-price {
    padding-bottom: 0px;
  }


  /*.articles-pagination
*/

  .articles-pagination__prev {
    left: 20px;
  }

  .articles-pagination__next {
    right: 20px;
  }

  /*.section-articles
  */
  .section-articles {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
  }

  .articles-wrap {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 100px 20px;
  }

  .articles-ttl-wrap {
    width: 100%;
    margin-bottom: 10px;
  }

  .articles-ttl {
    font-size: 26px;
  }

  .articles-prod-wrap {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .articles-prod-detail {
    gap: 5px;
  }


}

/*---------------------------------------
  use
-----------------------------------------*/
/*.uselist
*/
.section-uselist {
  background-color: #FFFDEB;
  width: 100%;
  height: auto;
  padding: 196px 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.uselist-head-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.uselist-ttl-wrap {
  margin: 0 auto;
}

.uselist-ttl {
  width: clamp(83.8px, 8.2vw, 116.31px);
  height: auto;
  display: block;
  margin-bottom: 46px;
}

.uselist-headtxt-wrap {
  margin: 0 auto;
  text-align: center;
}

.uselist-head-txt {
  font-family: 'Shippori Mincho';
  font-weight: 600;
  font-size: clamp(14px, 3vw, 18px);
  letter-spacing: clamp(0.84px, 1vw, 3.6px);
  line-height: clamp(29px, 4vw, 34px);
  margin-bottom: 179px;
}

.uselist-dp-wrap {
  position: relative;
  width: 1280px;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 170px;
}


.uselist-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
}

.uselist-layout .uselist-wrap {
  padding: 50px 0 64px 120px;
  align-items: flex-start;
}

.uselist-layout .uselist-pic-wrap {
  position: absolute;
  bottom: 60px;
  right: 0;
  z-index: 2;
  width: 671.31px;
  height: 450.35px;
  display: flex;
  justify-content: flex-end;
}

.uselist-layout-reverse {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
}

.uselist-layout-reverse .uselist-wrap {
  padding: 50px 0 64px 480px
  /*align-items: flex-end;*/
}

.uselist-layout-reverse .uselist-pic-wrap {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: auto;
  z-index: 2;
  width: 671.31px;
  height: 450.35px;
  display: flex;
  justify-content: flex-start;
}

.uselist-wrap {
  width: 1022px;
  height: 450px;
  background: var(--color-white);
  border: 2px solid var(--color-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.uselist-pic-img {
  width: 631.47px;
  height: 450px;
  object-fit: cover;
  border: 2px solid var(--color-black);
}

.uselist-text {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: auto 0;
  justify-content: center;
}

.uselist-dpno {
  margin-bottom: 0;
  color: #F84949;
  font-family: 'Karla';
  font-weight: 600;
  font-size: clamp(24px, 6vw, 50px);
  letter-spacing: clamp(3.84px, 2vw, 5px);

}

.uselist-ttlp {
  margin-bottom: 25px;
  font-family: 'Shippori Mincho';
  font-weight: 600;
  font-size: 20px;
  font-size: clamp(20px, 4vw, 27px);
  letter-spacing: clamp(3.2px, 1.5vw, 4.32px);
  line-height: clamp(29px, 4vw, 38px);
}

.uselist-read {
  margin-bottom: 0;
  font-family: 'Shippori Mincho';
  font-weight: 600;
  font-size: clamp(14px, 2.5vw, 16px);
  letter-spacing: clamp(0.84px, 1vw, 1.92px);
  line-height: clamp(29px, 3vw, 32px);
}


/*.userepo
*/

.section-userepo {
  width: 100%;
  height: auto;
  padding: 150px 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.userepo-head-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.userepo-ttl-wrap {
  margin: 0 auto;
}

.userepo-ttl {
  width: clamp(83.8px, 8.2vw, 116.31px);
  height: auto;
  display: block;
  margin-bottom: 46px;
}

.userepo-headtxt-wrap {
  margin: 0 auto;
  text-align: center;
}

.userepo-head-txt {
  margin-bottom: 0;
  font-family: 'Shippori Mincho';
  font-weight: 600;
  font-size: clamp(14px, 2.5vw, 16px);
  letter-spacing: clamp(0.84px, 1vw, 1.92px);
  line-height: clamp(29px, 3vw, 32px);
}

.userepo-wrap {
  position: relative;
  width: 1040px;
  height: auto;
  margin: 0 auto;
  padding: 80px 0;
}

.userepo-detail-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.userepo-detail-link:hover {
  opacity: 0.7;
}


.userepo-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 120px 40px;
  width: 100%;
}

.userepo-wrap-detail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}

.userepo-pic {
  display: block;
  width: 100%;
  height: auto;
}

.userepo-txtp {
  font-weight: bold;
  font-size: clamp(20px, 4vw, 27px);
  letter-spacing: clamp(3.2px, 1.5vw, 4.32px);
  line-height: clamp(29px, 4vw, 38px);
  margin: 0;
}

.userepo-txt {
  font-family: 'Shippori Mincho';
  font-weight: bold;
  margin-bottom: 15px;
  font-size: clamp(14px, 2.5vw, 16px);
  letter-spacing: clamp(0.84px, 1vw, 1.87px);
  line-height: clamp(29px, 3vw, 32px);
}


/*.userepo-pagination
*/
.userepo-pagination {
  width: 100%;
  max-width: 191.05px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.userepo-pagination__link,
.userepo-pagination__prev,
.userepo-pagination__next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-family: 'Karla';
  font-weight: bold;
  text-decoration: none;
  color: #CCCCCC;
  transition: opacity 0.3s ease;
  min-width: 18px;
  height: 34px;

}

.userepo-pagination__link.active {
  color: #000;
}

.userepo-pagination__link:hover,
.userepo-pagination__prev:hover,
.userepo-pagination__next:hover {
  opacity: 0.9;
}

.userepo-pagination__prev img,
.userepo-pagination__next img {
  width: 10.72px;
  height: auto;
}

.userepo-pagination__prev {
  margin-right: 8px;
}

.userepo-pagination__next {
  margin-left: 8px;
}


@media screen and (max-width: 1024px) {

  /*.uselist
*/
  .section-uselist {
    padding: 110px 0;
  }

  .uselist-head-wrap {}

  .uselist-ttl-wrap {}

  .uselist-ttl {}

  .uselist-headtxt-wrap {
    padding: 0 20px;
  }

  .uselist-head-txt {
    margin-bottom: 100px;

  }

  .uselist-dp-wrap {
    width: 100%;
    gap: 100px;
  }


  .uselist-layout {}

  .uselist-layout .uselist-wrap {
    padding: 80px 20px 20px;
    margin-right: 18px;
    margin-top: 100px;
    left: -2px;
  }

  .uselist-layout .uselist-pic-wrap {
    top: -60px;
    right: -2px;
    width: 339px;
    height: 217.34px;
  }

  .uselist-layout-reverse {}

  .uselist-layout-reverse .uselist-wrap {
    padding: 80px 20px 20px;
    margin-left: 18px;
    margin-top: 100px;
    right: -2px;
  }

  .uselist-layout-reverse .uselist-pic-wrap {
    top: -60px;
    left: -2px;
    width: 339px;
    height: 217.34px;
  }

  .uselist-wrap {
    width: 100%;
    height: auto;
  }

  .uselist-pic-img {
    width: 100%;
    height: auto;
  }

  .uselist-text {}

  .uselist-dpno {}

  .uselist-ttlp {}

  .uselist-read {}


  /*.userepo
*/

  .section-userepo {
    padding: 110px 0;
  }

  .userepo-head-wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .userepo-ttl-wrap {
    margin: 0 auto;
  }


  .userepo-ttl {
    width: clamp(83.8px, 8.2vw, 116.31px);
    height: auto;
    display: block;
    margin-bottom: 46px;
  }

  .userepo-headtxt-wrap {
    padding: 0 20px;
  }

  .userepo-head-txt {}


  .userepo-wrap {
    width: 100%;
    padding: 50px 20px;
  }

  .userepo-detail-link {}

  .userepo-detail-link:hover {}


  .userepo-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .userepo-wrap-detail {}

  .userepo-pic {}

  .userepo-txtp {}

  .userepo-txt {}


}




/*---------------------------------------
  section-flist
-----------------------------------------*/

.section-flist {
  background-color: #FFFDEB;
  width: 100%;
  height: auto;
  padding: 162px 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flist-header-wrap {
  width: 100%;
  max-width: 1344px;
  height: auto;
  margin: 0 auto;
  padding: 70px 0;
}

.flist-ttl-wrap {
  padding: 0;
}

.flist-ttl {
  width: 435.01px;
  height: 71.97px;
  display: block;
  margin-bottom: 40px;
}

.flist-header-p {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(13px, 3vw, 18px);
  letter-spacing: 3.6px;
  line-height: clamp(20px, 4vw, 34px);
  font-weight: 600;
  padding: 0;
  margin-bottom: 0;
}

.flist-wrap {
  width: 100%;
  max-width: 1344px;
  height: auto;
  margin: 0 auto;
  padding: 0;
}

/*
.flist-prod-detail-link {
  text-decoration: none;
  color: inherit;
  display: block;
}*/

.flist-prod-detail-link:hover {
  opacity: 0.7;
}


.flist-prod-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(414px, 1fr));
  gap: 50px;
  width: 100%;
  margin-bottom: 120px;
}

.flist-prod-detail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}

.flist-detail-pic {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid var(--color-black);
}

.flist-detail-txt {
  font-family: 'Shippori Mincho';
  font-weight: bold;
  margin-bottom: 5px;
  font-size: clamp(18px, 2vw, 18px);
  letter-spacing: clamp(1.8px, 0.5vw, 1.8px);
  line-height: clamp(28px, 3vw, 28px);
}

.flist-detail-cate {
  font-weight: bold;
  font-size: clamp(13px, 2.5vw, 16px);
  letter-spacing: 1.3px;
  background-color: #F0F0F0;
  padding: 2px 5px;
  text-align: center;
  margin: 0;
}


/*.tab-menu
*/

input[type="radio"] {
  display: none;
}

.flist-prod-detail-link {
  display: none;
}

#tab-all:checked~.flist-prod-wrap .flist-prod-detail-link {
  display: block;
}

#tab-cate01:checked~.flist-prod-wrap .cate01,
#tab-cate02:checked~.flist-prod-wrap .cate02,
#tab-cate03:checked~.flist-prod-wrap .cate03 {
  display: block;
}

.tab-menu {
  display: flex;
  gap: 42px;
  margin-bottom: 60px;
  padding-left: 0;
}

.tab-menu li {
  list-style: none;
}


.tab-menu label {
  position: relative;
  padding-bottom: 4px;
  font-weight: bold;
  font-size: 16px;
  font-family: 'Shippori Mincho';
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tab-menu label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 2px;
  background-color: #000;
  width: 100%;
  max-width: 90%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

#tab-all:checked~.tab-menu label[for="tab-all"]::after,
#tab-cate01:checked~.tab-menu label[for="tab-cate01"]::after,
#tab-cate02:checked~.tab-menu label[for="tab-cate02"]::after,
#tab-cate03:checked~.tab-menu label[for="tab-cate03"]::after {
  transform: translateX(-50%) scaleX(1);
}




@media screen and (max-width: 1024px) {

  .section-flist {
    padding: 110px 20px;
  }

  .flist-header-wrap {
    max-width: 100%;
    padding: 0;
  }

  .flist-ttl-wrap {
    margin-bottom: 20px;
  }

  .flist-ttl {
    width: 257.57px;
    height: 44.99px;
    margin-bottom: 20px;
  }

  .flist-header-p {}

  .flist-wrap {
    max-width: 100%;
  }

  /*
  .flist-prod-detail-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }*/

  .flist-prod-detail-link:hover {}


  .flist-prod-wrap {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 60px;
  }

  .flist-prod-detail {
    gap: 10px;
  }

  .flist-detail-pic {}

  .flist-detail-txt {}

  .flist-detail-cate {}


  /*.tab-menu
  */

  input[type="radio"] {}

  .flist-prod-detail-link {}

  #tab-all:checked~.flist-prod-wrap .flist-prod-detail-link {}

  #tab-cate01:checked~.flist-prod-wrap .cate01,
  #tab-cate02:checked~.flist-prod-wrap .cate02,
  #tab-cate03:checked~.flist-prod-wrap .cate03 {}

  .tab-menu {
    gap: 10px;
    margin-bottom: 20px;
  }

  .tab-menu li {
    list-style: none;
  }


  .tab-menu label {
    padding-bottom: 4px;
    font-size: 13px;
  }

  .tab-menu label::after {}

  #tab-all:checked~.tab-menu label[for="tab-all"]::after,
  #tab-cate01:checked~.tab-menu label[for="tab-cate01"]::after,
  #tab-cate02:checked~.tab-menu label[for="tab-cate02"]::after,
  #tab-cate03:checked~.tab-menu label[for="tab-cate03"]::after {}

}



/*---------------------------------------
  section-faqindex
-----------------------------------------*/
/*UP
*/
.section-faqindex {
  background-color: #FFFDEB;
  width: 100%;
  height: auto;
  padding: 176px 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faqindex-header-wrap {
  width: 100%;
  max-width: 1344px;
  height: auto;
  margin: 0 auto;
  padding-bottom: 35px;
}

.faqindex-ttl-wrap {
  padding: 0;
}

.faqindex-ttl {
  width: 350.07px;
  height: 70.43px;
  display: block;
  margin-bottom: 40px;
}

.faqindex-header-p {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(13px, 3vw, 18px);
  letter-spacing: 3.6px;
  line-height: clamp(20px, 4vw, 34px);
  font-weight: 600;
  padding: 0;
  margin-bottom: 0;
}

.faqindex-wrap {
  width: 100%;
  max-width: 1344px;
  height: auto;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 115px;
  position: relative;
}

.faqindex-info-wrap {
  background-color: var(--color-white);
  border: 2px solid var(--color-black);
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faqindex-info-detail {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faqindex-info-ttl {
  margin-bottom: 0;
  font-family: 'Shippori Mincho';
  font-weight: bold;
  font-size: clamp(16px, 2.8vw, 20px);
  letter-spacing: clamp(1.6px, 1vw, 2px);
  line-height: clamp(20px, 2.8vw, 24px);

}

.faqindex-info-txt {
  margin-bottom: 0;
  font-family: 'Shippori Mincho';
  font-weight: 500;
  font-size: clamp(13px, 3vw, 16px);
  letter-spacing: 2.4px;
  line-height: clamp(24px, 3vw, 28px);
}

.faqindex-info-pn {
  margin-bottom: 0;
  font-family: 'Kaela';
  font-weight: bold;
  font-size: clamp(24px, 5vw, 32px);
  letter-spacing: 2.88px;
  line-height: clamp(30px, 4vw, 38px);
}

.faqindex-info-pn-s {
  margin-bottom: 0;
  font-family: 'Noto Sans JP';
  font-weight: bold;
  font-size: clamp(18px, 5vw, 24px);
  letter-spacing: 2.88px;
  line-height: clamp(26px, 4vw, 30px);
}
.info-pn-s-Kaela{
  font-family: 'Kaela'!important;
}

.icon_chat {
  width: 27px;
  height: 27px;
  display: inline-block;
  vertical-align: middle;
}

.faqindex-info-detailin {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faqindex-info-outlink {
  font-family: 'Shippori Mincho';
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 432.87px;
  height: 45px;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 25px;
  text-align: center;
  background: var(--color-black);
  color: var(--color-white);
  transition: color 0.3s ease;
  margin-right: 34px;
}

.faqindex-info-outlinks {
  font-family: 'Shippori Mincho';
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 306.87px;
  height: 45px;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 25px;
  text-align: center;
  background: var(--color-black);
  color: var(--color-white);
  transition: color 0.3s ease;
  margin-right: 34px;
}

.icon_outlink {
  width: 18.88px;
  height: 18.88px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
}

/*DOWN
*/
.faqindex-read {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.faqindex-item {
  margin-bottom: 0;
  font-family: 'Noto Sans JP';
  position: relative;
  padding-left: 34px;
  text-indent: 0;
  font-weight: 600;
  font-size: clamp(15px, 3vw, 18px);
  letter-spacing: 3px;
  text-decoration: underline;
}

.faqindex-item::before {
  content: "Q.";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #ED161B;
  font-family: 'Karla';
  font-style: italic;
  font-weight: 600;
  font-size: clamp(24px, 3.5vw, 30px);
  letter-spacing: 2.7px;
}

.faqindex-read a:hover {
  color: var(--color-gray);
  transition: color 0.3s ease;
}

.faqindex-info-wrap-down {
  background-color: var(--color-white);
  border: 2px solid var(--color-black);
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.faqindex-ttlt-wrap {
  position: absolute;
  top: -54px;
  left: -2px;
  z-index: 1;
}

.faqindex-ttlt {
  width: 364px;
  height: 54.59px;
  display: block;
}

.faqindex-line {
  width: 100%;
  max-width: 1344px;
  border: 1px solid var(--color-black);
  margin: 100px auto 0;
}


/*faqlink
*/
.faqindex-faqlink-wrap {
  width: 100%;
  max-width: 1344px;
  height: auto;
  margin: 80px auto;
}


.faqindex-faqlink-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 40px;
  font-size: clamp(13px, 4vw, 22px);
  font-weight: 600;
  color: #000;
  letter-spacing: 2.6px;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.faq-btn:hover,
.faq-btn:active {
  background-color: #000;
  color: #fff;
}

/*accordion
*/


.faqindex-fqa-wrap {
  width: 100%;
  max-width: 1344px;
  height: auto;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 60px;
}

.faqindex-accordion-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faqindex-accttl {
  margin-bottom: 0;
  margin-left: 22px;
  font-family: 'Shippori Mincho';
  font-weight: 600;
  font-size: clamp(20px, 3.5vw, 27px);
  letter-spacing: 4.2px;
}


.faqindex-accordion-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-black);
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 10px;
}

.faq-item-Q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  z-index: 1;
}

.faq-item-q {
  margin-bottom: 0;
  font-family: 'Noto Sans JP';
  position: relative;
  padding-left: 34px;
  text-indent: 0;
  font-weight: 600;
  font-size: clamp(15px, 3vw, 18px);
  letter-spacing: 3px;
}

.faq-item-q::before {
  content: "Q.";
  position: absolute;
  left: 0;
  top: -5px;
  color: #ED161B;
  font-family: 'Karla';
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 2.7px;
}

.faq-item-a::before {
  content: "A.";
  position: absolute;
  left: 0;
  top: -5px;
  color: #ED161B;
  font-family: 'Karla';
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 2.7px;
}

.faq-item-a {
  margin-bottom: 0;
  font-family: 'Noto Sans JP';
  position: relative;
  padding-left: 34px;
  text-indent: 0;
  font-weight: 500;
  font-size: clamp(13px, 3vw, 16px);
  letter-spacing: 3px;
}

.faq-toggle {
  display: none;
}

.faq-item-A {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-toggle:checked+.faq-item-Q+.faq-item-A {
  display: block;
  max-height: 1000px;
}

.icon_faq {
  width: 14.49px;
  height: 7.24px;
  vertical-align: middle;
  margin-right: 10px;
}

.icon-open {
  display: none;
}

.faq-toggle:checked+.faq-item-Q .icon-close {
  display: none;
}

.faq-toggle:checked+.faq-item-Q .icon-open {
  display: inline-block;
}

.always-open .faq-item-A {
  display: block;
  max-height: 1000px;
}

.always-open .icon-open {
  display: inline-block;
}

.always-open .icon-close {
  display: none;
}

.pic_faq {
  width: 100%;
  height: auto;
  padding: 20px 34px 20px 0;
}

.outlink {
  text-decoration: underline;
}



@media screen and (max-width: 1024px) {


  /*UP
*/
  .section-faqindex {
    background-color: #FFFDEB;
    width: 100%;
    height: auto;
    padding: 110px 20px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .faqindex-header-wrap {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding-bottom: 35px;
  }

  .faqindex-ttl-wrap {
    padding: 0;
  }

  .faqindex-ttl {
    width: 207.81px;
    height: 41.96px;
    display: block;
    margin-bottom: 20px;
  }

  .faqindex-header-p {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(13px, 3vw, 18px);
    letter-spacing: 3.6px;
    line-height: clamp(20px, 4vw, 34px);
    font-weight: 600;
    padding: 0;
    margin-bottom: 0;
  }

  .faqindex-wrap {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
  }

  .faqindex-info-wrap {
    background-color: var(--color-white);
    border: 2px solid var(--color-black);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .faqindex-info-detail {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .faqindex-info-ttl {
    margin-bottom: 0;
    font-family: 'Shippori Mincho';
    font-weight: bold;
  }

  .faqindex-info-txt {
    margin-bottom: 0;
    font-family: 'Shippori Mincho';
    font-weight: 500;
  }

  .faqindex-info-pn {
    margin-bottom: 0;
    font-family: 'Kaela';
    font-weight: bold;
    letter-spacing: 1px;
  }

  .icon_chat {
    width: 27px;
    height: 27px;
    display: inline-block;
    vertical-align: middle;
  }

  .faqindex-info-detailin {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .faqindex-info-outlink {
    font-family: 'Shippori Mincho';
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 45px;
    font-size: 13px;
    letter-spacing: 0;
    line-height: 25px;
    text-align: center;
    background: var(--color-black);
    color: var(--color-white);
    transition: color 0.3s ease;
    margin-right: 0;
  }
  
  .faqindex-info-outlinks {
    font-family: 'Shippori Mincho';
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 45px;
    font-size: 13px;
    letter-spacing: 0;
    line-height: 25px;
    text-align: center;
    background: var(--color-black);
    color: var(--color-white);
    transition: color 0.3s ease;
    margin-right: 0;
  }
  

  .icon_outlink {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0
  }

  /*DOWN
*/
  .faqindex-read {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }

  .faqindex-item {
    margin-bottom: 0;
    font-family: 'Noto Sans JP';
    position: relative;
    padding-left: 34px;
    text-indent: 0;
    font-weight: 600;

    letter-spacing: 3px;
    text-decoration: underline;
  }

  .faqindex-item::before {
    content: "Q.";
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(0);
    color: #ED161B;
    font-family: 'Karla';
    font-style: italic;
    font-weight: 600;

    letter-spacing: 2.7px;
  }

  .faqindex-read a:hover {
    color: var(--color-gray);
    transition: color 0.3s ease;
  }

  .faqindex-info-wrap-down {
    background-color: var(--color-white);
    border: 2px solid var(--color-black);
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .faqindex-ttlt-wrap {
    position: absolute;
    top: -42px;
    left: -5px;
    z-index: 1;
  }

  .faqindex-ttlt {
    width: 279.76px;
    height: 41.96px;
    display: block;
  }

  .faqindex-line {
    width: 100%;
    max-width: 100%;
    border: 1px solid var(--color-black);
    margin: 60px auto 0;
  }


  /*faqlink
*/
  .faqindex-faqlink-wrap {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
  }


  .faqindex-faqlink-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .faq-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    letter-spacing: 1.5px;
    font-weight: bold;
    color: #000;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
  }

  .faq-btn:hover,
  .faq-btn:active {
    background-color: #000;
    color: #fff;
  }

  /*accordion
*/
  .faq-anchor {
    scroll-margin-top: 110px;
  }

  .faqindex-fqa-wrap {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 30px;
  }

  .faqindex-accordion-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .faqindex-accttl {
    margin-bottom: 0;
    margin-left: 6px;
    font-family: 'Shippori Mincho';
    font-weight: 600;
    letter-spacing: 2.2px;
  }


  .faqindex-accordion-item {
    background-color: var(--color-white);
    border: 1px solid var(--color-black);
    padding: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 10px;
  }

  .faq-item-Q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    z-index: 1;
  }

  .faq-item-q {
    margin-bottom: 0;
    font-family: 'Noto Sans JP';
    position: relative;
    padding-left: 30px;
    text-indent: 0;
    font-weight: 600;

    letter-spacing: 3px;
  }

  .faq-item-q::before {
    content: "Q.";
    position: absolute;
    left: 0;
    top: -5px;
    color: #ED161B;
    font-family: 'Karla';
    font-style: italic;
    font-weight: 600;

    letter-spacing: 2.7px;
  }

  .faq-item-a::before {
    content: "A.";
    position: absolute;
    left: 0;
    top: -5px;
    color: #ED161B;
    font-family: 'Karla';
    font-style: italic;
    font-weight: 600;

    letter-spacing: 2.7px;
  }

  .faq-item-a {
    margin-bottom: 0;
    font-family: 'Noto Sans JP';
    position: relative;
    padding-left: 34px;
    text-indent: 0;
    font-weight: 600;

    letter-spacing: 3px;
  }

  .faq-toggle {
    display: none;
  }

  .faq-item-A {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }

  .faq-toggle:checked+.faq-item-Q+.faq-item-A {
    display: block;
    max-height: 1000px;
  }

  .icon_faq {
    width: 14.49px;
    height: 7.24px;
    vertical-align: middle;
    margin-right: 0;
    margin-top: 5px;
  }

  .icon-open {
    display: none;
  }

  .faq-toggle:checked+.faq-item-Q .icon-close {
    display: none;
  }

  .faq-toggle:checked+.faq-item-Q .icon-open {
    display: inline-block;
  }

  .always-open .faq-item-A {
    display: block;
    max-height: 1000px;
  }

  .always-open .icon-open {
    display: inline-block;
  }

  .always-open .icon-close {
    display: none;
  }

  .pic_faq {
    width: 100%;
    height: auto;
    padding: 10px 0;
  }

  .outlink {
    text-decoration: underline;
  }

}