:root {
  --ink: #4e3528;
  --ink-soft: #816b5b;
  --gold: #b88942;
  --gold-soft: #d9bc8e;
  --rose: #d97878;
  --cream: #fffaf5;
  --paper: #f9f0ea;
  --line: rgba(177, 133, 67, .28);
  --shadow: 0 12px 30px rgba(98, 63, 36, .10);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(217, 120, 120, .48);
  outline-offset: 4px;
}

img {
  display: block;
  max-width: 100%;
}

.visually-hidden,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 6px;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(177, 133, 67, .20);
  background: rgba(255, 250, 245, .94);
  box-shadow: 0 4px 18px rgba(91, 57, 34, .06);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1260px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  color: var(--ink);
  text-decoration: none;
}

.brand-name {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .08em;
}

.brand-subtitle {
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: .16em;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0 10px 14px;
  color: var(--ink);
  cursor: pointer;
  border: 0;
  background: transparent;
}

.menu-toggle-lines {
  display: grid;
  gap: 5px;
  width: 24px;
}

.menu-toggle-lines i {
  display: block;
  height: 1px;
  background: var(--gold);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-label {
  font-size: 11px;
  letter-spacing: .16em;
}

.page-shell {
  padding: 32px 0 180px;
}

.site-footer {
  padding: 48px 20px 220px;
  border-top: 1px solid rgba(177, 133, 67, .22);
  background: rgba(255, 250, 245, .82);
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(180px, .7fr) minmax(0, 1.3fr);
  gap: 28px 48px;
  width: min(960px, 100%);
  margin: 0 auto;
}

.site-footer-brand {
  align-self: start;
}

.site-footer-name {
  margin: 0;
  color: var(--ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .08em;
}

.site-footer-subtitle {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: .12em;
}

.site-footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
}

.site-footer-nav a {
  padding: 9px 0;
  color: var(--ink-soft);
  font-size: 12px;
  text-decoration: none;
  border-bottom: 1px solid rgba(177, 133, 67, .16);
  transition: color 150ms ease;
}

.site-footer-nav a:hover,
.site-footer-placeholder:hover {
  color: var(--rose);
}

.site-footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.site-footer-info a{
  font-size:13px;
  color:#666;
  text-decoration: none;
}
.site-footer-placeholder {
  padding: 0;
  color: var(--ink-soft);
  font-size: 12px;
  cursor: pointer;
  border: 0;
  background: transparent;
  transition: color 150ms ease;
}

.site-footer-note,
.site-footer-copy {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.7;
  text-align: center;
}

.site-footer-copy {
  color: rgba(78, 53, 40, .62);
  letter-spacing: .08em;
}

.lp-layout {
  display: grid;
  grid-template-columns: minmax(240px, 260px) minmax(0, 1fr) minmax(240px, 300px);
  align-items: start;
  gap: 24px;
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}

.contents-panel,
.desktop-cta {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.contents-card,
.desktop-cta-card {
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 250, 245, .90);
  box-shadow: var(--shadow);
}

.contents-kicker,
.menu-kicker {
  margin: 0 0 6px;
  color: var(--rose);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}

.contents-card h2,
.placeholder-dialog h2,
.menu-panel h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 700;
  letter-spacing: .08em;
}

.contents-card h2 {
  font-size: 21px;
}

.contents-description {
  margin: 10px 0 18px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.contents-nav {
  display: grid;
  gap: 5px;
}

.contents-link {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 9px 10px;
  color: var(--ink-soft);
  border-left: 2px solid transparent;
  text-decoration: none;
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.contents-link span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 13px;
}

.contents-link strong {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.contents-link:hover,
.contents-link.is-active {
  color: var(--ink);
  border-left-color: var(--rose);
  background: rgba(217, 120, 120, .08);
}

.lp-images {
  min-width: 0;
}

.lp-image {
  margin: 0 0 28px;
  overflow: hidden;
  border: 1px solid rgba(177, 133, 67, .22);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(98, 63, 36, .08);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.lp-image:last-child {
  margin-bottom: 0;
}

.lp-image img {
  width: 100%;
  height: auto;
}

.desktop-cta-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.image-cta {
  display: block;
  width: 100%;
  padding: 0;
  color: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
}

.image-cta img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 150ms ease, filter 150ms ease;
}

.image-cta:hover img {
  transform: translateY(-2px);
  filter: drop-shadow(0 8px 12px rgba(107, 68, 36, .16));
}

.floating-cta {
  position: fixed;
  z-index: 15;
  right: 16px;
  bottom: 14px;
  left: 16px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.floating-cta .image-cta {
  width: min(680px, 100%);
  pointer-events: auto;
  filter: drop-shadow(0 8px 18px rgba(72, 42, 24, .20));
}

.floating-cta .image-cta img {
  border-radius: 18px;
}

.menu-layer,
.placeholder-layer {
  position: fixed;
  z-index: 40;
  inset: 0;
}

.menu-layer[hidden],
.placeholder-layer[hidden] {
  display: none;
}

.menu-backdrop,
.placeholder-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(66, 40, 28, .30);
  animation: fade-in 180ms ease both;
}

.menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, calc(100% - 28px));
  overflow-y: auto;
  padding: 26px 24px 34px;
  background: var(--cream);
  box-shadow: -12px 0 30px rgba(72, 42, 24, .16);
  animation: slide-in 220ms cubic-bezier(.25, 1, .5, 1) both;
}

.menu-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}

.menu-panel h2 {
  font-size: 26px;
}

.icon-button {
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-section-title {
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
}

.menu-nav {
  display: grid;
  gap: 4px;
}

.menu-nav a,
.menu-placeholder-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 46px;
  padding: 10px 4px;
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  border-bottom: 1px solid rgba(177, 133, 67, .17);
  background: transparent;
}

.menu-nav a span {
  width: 34px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 12px;
}

.menu-nav a {
  font-size: 14px;
}

.menu-placeholder-link {
  cursor: pointer;
  border-top: 0;
  border-right: 0;
  border-left: 0;
}

.menu-placeholder-link small {
  color: var(--rose);
  font-size: 11px;
}

.menu-nav a:hover,
.menu-placeholder-link:hover {
  color: var(--rose);
}

.menu-divider {
  height: 1px;
  margin: 26px 0 22px;
  background: var(--line);
}

.placeholder-dialog {
  position: relative;
  width: min(430px, calc(100% - 32px));
  margin: 12vh auto 0;
  padding: 30px 26px 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cream);
  box-shadow: 0 22px 50px rgba(72, 42, 24, .20);
  animation: modal-in 220ms cubic-bezier(.25, 1, .5, 1) both;
}

.placeholder-dialog h2 {
  font-size: 24px;
}

.placeholder-dialog > p:not(.menu-kicker) {
  margin: 14px 0 20px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.8;
}

.placeholder-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.placeholder-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.placeholder-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(177, 133, 67, .17);
  font-size: 13px;
}

.placeholder-list dt {
  color: var(--ink-soft);
}

.placeholder-list dd {
  margin: 0;
  color: var(--rose);
}

.modal-action {
  width: 100%;
  margin-top: 22px;
  padding: 12px 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 0;
  border-radius: 6px;
  background: var(--rose);
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slide-in {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1080px) {
  .lp-layout {
    grid-template-columns: minmax(210px, 230px) minmax(0, 1fr) minmax(210px, 250px);
    gap: 18px;
  }

  .contents-card,
  .desktop-cta-card {
    padding: 14px 12px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .page-shell {
    padding-top: 20px;
  }

  .lp-layout {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: min(680px, calc(100% - 24px));
  }

  .contents-panel {
    display: none;
    position: static;
    width: 100%;
    order: 1;
  }

  .lp-images {
    order: 2;
    width: 100%;
  }

  .desktop-cta {
    display: none;
  }

  .contents-card {
    padding: 15px;
  }

  .contents-description {
    margin-bottom: 12px;
  }

  .contents-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 8px;
  }

  .contents-link {
    min-height: 38px;
  }

  .lp-image {
    margin-bottom: 18px;
    border-radius: 7px;
  }
}

@media (max-width: 520px) {
  .header-inner {
    width: calc(100% - 24px);
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-subtitle {
    font-size: 9px;
  }

  .menu-toggle-label {
    display: none;
  }

  .page-shell {
    padding-bottom: 128px;
  }

  .site-footer {
    padding-right: 14px;
    padding-bottom: 140px;
    padding-left: 14px;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
  }

  .site-footer-name {
    font-size: 20px;
  }

  .lp-layout {
    width: calc(100% - 14px);
  }

  .contents-card {
    border-radius: 10px;
  }

  .contents-nav {
    grid-template-columns: 1fr 1fr;
  }

  .contents-link {
    grid-template-columns: 24px 1fr;
    gap: 5px;
    padding: 6px 5px;
  }

  .contents-link strong {
    font-size: 11px;
    line-height: 1.35;
    white-space: normal;
  }

  .floating-cta {
    right: 8px;
    bottom: 8px;
    left: 8px;
  }

  .floating-cta .image-cta img {
    border-radius: 12px;
  }

  .menu-panel {
    width: min(360px, calc(100% - 16px));
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}



.box_in{
    position: relative;
	width:100%;
	padding: 50px 10px 50px;
  box-sizing: border-box;
	margin: 0px auto;
	text-align: left;
}


/* ---title---*/
.title_text_c{
width: 100%;
padding: 0px 0 0 0;
text-align:center;
}
.title_text_c p {
width: 6.5%;
margin: 0 auto 20px auto;
}
.title_text_c p img{
width: 100%;
margin: 0 auto;
}
.title_text_c h2 {

margin: 0 auto;
}
.title_text_c h2 img{
width: 100%;
margin: 0 auto;
}

/* ---pp---*/
.pp{
width:100%;
max-width:900px;
	padding:0px 0px 30px 0px;
	margin:0 auto;
	list-style:none;
}
.pp h3{
font-size:20px;
line-height:20px;
color:#000;
font-weight:500;
background-color: #f6f7f8;
border-radius:10px;
padding:15px;
margin:40px 0 20px 0;
}
.pp p{
font-size:16px;
line-height:1.5;
padding:0px 0px 0px 0px ;
}



/* ---t_five---*/
.t_five{

max-width:1200px;
padding:20px 0px 0px 0px;
margin:0 auto;
list-style:none;
}
.t_five li{
padding:30px 0px 30px 0px;
border-bottom:solid 1px #ccc;
}
.t_five li:last-child{
border-bottom:none;
}
.t_five li div{
display:flex;
align-items:center;
padding:20px;
box-sizing: border-box;
}
.t_five li div img{
width: 40px;
margin: 0 20px 0 0;
}

.t_five_title{

padding:8px 0;
}


.t_five h3{
letter-spacing:1px;
font-size:22px;
line-height:1.5;
color:red;
text-align:left;
font-weight:400;
}
.t_five p{
letter-spacing:1px;
font-size:18px;
text-align:left;
}

