:root{
  --ink:#222;
  --line:rgba(0,0,0,.10);
  --gray:#f6f6f2;
  --header-h:86px;
  --shadow:0 18px 40px rgba(0,0,0,.10);

  --olive:#272727;
  --olive-2:#4e4e4e;

  --reading-w:51em;
  --reading-w:51ic;
  --page-hero-h:132px;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
  scroll-behavior:smooth;
}

body{
  font-family:
    "Yu Gothic Medium",
    "游ゴシック Medium",
    "Yu Gothic",
    "游ゴシック",
    "Hiragino Kaku Gothic ProN",
    sans-serif;
  font-size:16px;
  font-weight:500;
  line-height:1.75;
  letter-spacing:.02em;
  color:var(--ink);
  background:#fff;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

/* =========================
  Layout
========================= */
.container{
  width:min(1100px, 92%);
  margin:0 auto;
}

.section{
  padding:45px 0;
}

.section-light{
  background:#fff;
}

.section-gray{
  background:var(--gray);
}

.section-title{
  font-family:
    "Yu Mincho",
    "游明朝",
    "Hiragino Mincho ProN",
    serif;
  font-size:28px;
  text-align:center;
  margin-bottom:17px;
  color:#111;
}

.reading-wrap{
  width:min(1100px, 92%);
  margin:0 auto;
  padding:0 16px;
}

.reading-block{
  max-width:var(--reading-w);
  margin:0 auto;
}

.reading{
  max-width:none;
}

.reading-block .reading{
  max-width:none;
  margin:0;
}

.reading.prose{
  font-size:1rem;
}

.prose,
.prose p,
.lead,
.card-article,
.card-article__title,
.card-article__eyebrow,
.card-article__more,
.floating-btn,
.site-footer,
.site-footer small,
.prose strong,
.prose a{
  font-family:
    "Yu Gothic Medium",
    "游ゴシック Medium",
    "Yu Gothic",
    "游ゴシック",
    "Hiragino Kaku Gothic ProN",
    sans-serif;
  letter-spacing:.02em;
}

.prose{
  font-size:16px;
  line-height:1.75;
  color:#222;
}

.prose p{
  font-size:16px;
  line-height:1.75;
  margin:0 0 1.9em;
  color:#222;
}

.prose p:last-child{
  margin-bottom:0;
}

.lead{
  font-size:16px;
  line-height:2;
  color:#222;
}

.prose strong{
  font-weight:800;
  background:linear-gradient(transparent 58%, #f6e7a6 58%);
  padding:0 .15em;
}

.prose a{
  color:#222;
  text-decoration:none;
  background:#e4edd6;
  padding:2px 6px;
  border-radius:4px;
  font-weight:600;
  transition:background .2s ease, color .2s ease;
}

.prose a:hover{
  background:#cfdcb7;
  color:#000;
}

/* =========================
  Header / PC Nav
========================= */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.header-inner{
  height:var(--header-h);
  width:100%;
  margin:0;
  padding:0 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.logo{
  display:flex;
  align-items:center;
}

.logo img{
  width:400px;
  height:auto;
  display:block;
}

.gnav a,
.drawer__parent,
.drawer__link{
  -webkit-tap-highlight-color:transparent;
}

@media (min-width:980px){
  .hamburger{
    display:none;
  }

  .gnav{
    flex:1;
  }

  .gnav ul{
    list-style:none;
    display:flex;
    justify-content:flex-end;
    align-items:stretch;
    gap:1px;
    border:none;
    background:transparent;
  }

  .gnav li{
    position:relative;
    height:var(--header-h);
    display:flex;
    align-items:stretch;
  }

  .gnav li::before{
    content:"";
    position:absolute;
    inset:0;
    background:transparent;
    transition:background .15s ease;
    pointer-events:none;
  }

  .gnav li:hover::before,
  .gnav li:focus-within::before{
    background:rgba(107,90,53,.10);
  }

  .gnav > ul > li > a{
    position:relative;
    z-index:1;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:4px;
    height:var(--header-h);
    min-width:110px;
    padding:10px 8px;
    text-align:center;
  }

  .gnav > ul > li:nth-child(1) > a{
    min-width:98px;
    padding-left:3px;
    padding-right:3px;
  }

  .gnav > ul > li:nth-child(2) > a{
    min-width:102px;
    padding-left:4px;
    padding-right:4px;
  }

  .gnav > ul > li > a span{
    font-family:
      "Yu Mincho",
      "游明朝",
      "Hiragino Mincho ProN",
      serif;
    font-size:12px;
    font-weight:700;
    line-height:1.1;
    letter-spacing:.16em;
    opacity:.75;
    color:#111;
  }

  .gnav > ul > li > a b{
    font-size:16px;
    line-height:1.1;
    font-weight:500;
    color:#222;
  }

  .gnav > ul > li > a i{
    width:10px;
    height:10px;
    display:inline-block;
    flex-shrink:0;
    box-sizing:border-box;
    border-right:2px solid var(--olive);
    border-bottom:2px solid var(--olive);
    transform:rotate(45deg);
    transform-origin:center;
    backface-visibility:hidden;
    margin-top:3px;
    opacity:.9;
  }

  .gnav > ul > li:not(.has-dropdown) > a i{
    display:none;
  }

  .gnav > ul > li:not(.has-dropdown) > a::after{
    content:"";
    display:block;
    width:8px;
    height:8px;
    margin-top:2px;
  }

  .gnav .dropdown{
    position:absolute;
    top:calc(100% + 1px);
    left:50%;
    right:auto;
    transform:translateX(-50%);
    margin-top:0;
    min-width:240px;
    background:var(--olive-2);
    color:#fff;
    border:1px solid rgba(255,255,255,.18);
    border-top:0;
    border-radius:0;
    box-shadow:var(--shadow);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .15s ease, visibility .15s ease;
    overflow:hidden;
    z-index:2000;
  }

  .has-dropdown:hover > .dropdown{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }

  .has-dropdown:focus-within:not(:hover) > .dropdown{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
  }

  .gnav li:last-child .dropdown{
    left:auto;
    right:0;
    transform:none;
    margin-top:0;
  }

  .gnav .dropdown::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:-1px;
    height:1px;
    background:var(--olive-2);
  }

  .gnav li:focus-within::before{
    background:transparent;
  }

  .gnav a:focus,
  .gnav a:focus-visible{
    outline:none;
  }
}

.dropdown a{
  display:block;
  padding:12px 14px;
  border-top:1px solid rgba(255,255,255,.16);
  color:#fff;
  white-space:nowrap;
  font-size:16px;
  font-weight:500;
  line-height:1.6;
}

.dropdown a:first-child{
  border-top:none;
}

.dropdown a:hover{
  background:rgba(255,255,255,.16);
}

/* =========================
  Drawer / Hamburger
========================= */
.drawer{
  position:fixed;
  inset:0;
  z-index:1200;
  pointer-events:none;
}

.drawer.is-open{
  pointer-events:auto;
}

.drawer__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.38);
  opacity:0;
  transition:opacity .4s ease;
}

.drawer.is-open .drawer__overlay{
  opacity:1;
}

.drawer__panel{
  position:absolute;
  top:0;
  right:0;
  height:100%;
  width:min(86vw, 380px);
  background:#fff;
  border-left:1px solid var(--line);
  transform:translateX(102%);
  transition:transform .48s cubic-bezier(.19,1,.22,1);
  display:flex;
  flex-direction:column;
  overflow-y:auto;
}

.drawer.is-open .drawer__panel{
  transform:translateX(0);
}

.drawer__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px;
  border-bottom:1px solid var(--line);
}

.drawer__title{
  font-family:
    "Yu Mincho",
    "游明朝",
    "Hiragino Mincho ProN",
    serif;
  font-weight:800;
  letter-spacing:.12em;
  color:#111;
}

.drawer__close{
  width:42px;
  height:42px;
  border:1px solid var(--line);
  background:#fff;
  font-size:22px;
  line-height:1;
  border-radius:0;
  color:#222;
}

.drawer__nav{
  padding:10px 12px 2rem;
  overflow:visible;
}

.drawer__list{
  list-style:none;
  display:grid;
  gap:4px;
  padding-bottom:2rem;
}

.drawer__item + .drawer__item{
  margin-top:10px;
}

.drawer__parent,
.drawer__parent--link{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px;
  min-height:52px;
  border:1px solid var(--line);
  background:#fff;
  border-radius:0;
  line-height:1.2;
  letter-spacing:.02em;
  transition:background .15s ease;
}

.drawer__parent.drawer__parent--link{
  padding:14px;
  line-height:1.2;
}

.drawer__parent:hover,
.drawer__parent--link:hover,
.drawer__link:hover{
  background:rgba(107,90,53,.10);
}

.drawer__parent span,
.drawer__parent--link span{
  font-family:
    "Yu Gothic Medium",
    "游ゴシック Medium",
    "Yu Gothic",
    "游ゴシック",
    "Hiragino Kaku Gothic ProN",
    sans-serif;
  font-size:1rem;
  font-weight:500;
  color:#222;
}

.drawer__link{
  display:block;
  padding:10px;
  border-top:1px solid rgba(0,0,0,.08);
  font-family:
    "Yu Gothic Medium",
    "游ゴシック Medium",
    "Yu Gothic",
    "游ゴシック",
    "Hiragino Kaku Gothic ProN",
    sans-serif;
  font-size:1rem;
  font-weight:500;
  transition:background .15s ease;
  color:#222;
}

.drawer__panel-inner{
  margin-top:6px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  overflow:hidden;
  height:0;
  opacity:0;
  border-radius:0;
  transition:
    height .46s cubic-bezier(.25,.46,.45,.94),
    opacity .24s ease;
}

.drawer__panel-inner.is-open{
  opacity:1;
}

.drawer__panel-inner a:first-child{
  border-top:none;
}

.drawer__cta{
  display:block;
  text-align:center;
  padding:12px 14px;
  background:var(--olive);
  color:#fff;
  font-weight:800;
  border-radius:0;
}

.drawer__chev{
  width:8px;
  height:8px;
  display:block;
  border-right:2px solid var(--olive);
  border-bottom:2px solid var(--olive);
  transform:rotate(45deg);
  opacity:.9;
}

.drawer__parent[aria-expanded="true"] .drawer__chev{
  transform:rotate(-135deg);
}

@media (max-width:979px){
  .header-inner{
    width:100%;
    padding:0 12px;
    gap:10px;
    overflow:visible;
  }

  .gnav{
    display:none;
  }

  .logo{
    min-width:0;
    flex:1 1 auto;
  }

  .logo img{
    width:clamp(330px, 52vw, 400px);
    max-width:100%;
    height:auto;
  }

  .drawer__panel{
    width:100vw;
    border-left:none;
    -webkit-overflow-scrolling:touch;
    padding-bottom:2rem;
  }

  .drawer__panel::after{
    content:"";
    display:block;
    flex:0 0 2rem;
  }

  .drawer__parent{
    padding:14px 12px;
  }

  .hamburger{
    position:relative;
    flex:0 0 68px;
    width:68px;
    min-width:68px;
    height:68px;
    border:1px solid var(--line);
    background:#fff;
    display:grid;
    grid-template-rows:22px 12px;
    align-content:center;
    justify-items:center;
    row-gap:8px;
    padding:0;
    overflow:hidden;
    box-sizing:border-box;
  }

  .hamburger > span:not(.hamburger__icon):not(.hamburger__label){
    display:none;
  }

  .hamburger__icon{
    position:relative;
    display:block;
    width:28px;
    height:2px;
    background:var(--ink);
    margin:0;
    transform:translateY(9px);
  }

  .hamburger__icon::before,
  .hamburger__icon::after{
    content:"";
    position:absolute;
    left:0;
    width:28px;
    height:2px;
    background:var(--ink);
  }

  .hamburger__icon::before{
    top:-10px;
  }

  .hamburger__icon::after{
    top:10px;
  }

  .hamburger__label{
    display:block;
    width:100%;
    margin:0;
    padding:0;
    text-align:center;
    font-family:
      "Yu Mincho",
      "游明朝",
      "Hiragino Mincho ProN",
      serif;
    font-size:12px;
    line-height:1;
    letter-spacing:.18em;
    color:rgba(0,0,0,.62);
    transform:none;
  }
}

/* =========================
  Floating button / To top
========================= */
.floating-btn{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:1400;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 16px;
  background:var(--olive);
  color:#fff;
  font-weight:800;
  box-shadow:0 14px 40px rgba(0,0,0,.16);
  border-radius:999px;
  transition:background .2s ease;
}

.floating-btn:hover{
  background:#8a7447;
}

.to-top{
  position:fixed;
  right:24px;
  bottom:120px;
  width:46px;
  height:46px;
  border:1px solid var(--line);
  background:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:all .25s ease, background .2s ease;
  z-index:1300;
}

.to-top::before{
  content:"";
  width:10px;
  height:10px;
  border-left:2px solid var(--olive);
  border-top:2px solid var(--olive);
  transform:rotate(45deg);
  margin-top:4px;
}

.to-top.is-visible{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.to-top:hover{
  background:rgba(107,90,53,.10);
}

@media (max-width:899px){
  .floating-btn{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    height:72px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:0;
    padding:0;
  }

  .to-top{
    right:16px;
    bottom:96px;
  }

  body{
    padding-bottom:0;
  }

  main{
    padding-bottom:calc(30px + 32px);
  }

  .site-footer{
    padding-bottom:calc(20px + 110px);
  }
}

/* =========================
  Footer
========================= */
.site-footer{
  border-top:1px solid rgba(0,0,0,.10);
  padding:20px 0;
  background:#4a4a4a;
  color:rgba(255,255,255,.85);
}

.site-footer small{
  color:rgba(255,255,255,.75);
}

.site-footer .container{
  width:100%;
  max-width:none;
  margin:0;
  padding:0 40px;
}

@media (max-width:899px){
  .site-footer{
    padding-bottom:calc(20px + 110px);
  }

  .site-footer .container{
    padding:0 16px;
  }

  .site-footer small{
    display:block;
    padding-bottom:8px;
  }
}

/* =========================
  Common headings
========================= */
.heading-bar{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 22px;
  font-family:
    "Yu Mincho",
    "游明朝",
    "Hiragino Mincho ProN",
    serif;
  font-size:18px;
  font-weight:800;
  letter-spacing:.02em;
  color:#111;
}

.heading-bar::before{
  content:"|";
  font-weight:900;
  color:var(--olive);
  transform:translateY(-1px);
}

.reading-block .heading-bar{
  margin:0 0 22px;
}

/* =========================
  Page hero
========================= */
.page-hero{
  position:sticky;
  top:var(--header-h);
  z-index:900;
  overflow:hidden;
  background:var(--gray);
  border-bottom:1px solid var(--line);
  padding:25px 0;
}

.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:url("../img/hero-cloud.jpg") center/cover no-repeat;
  opacity:.35;
  filter:grayscale(100%) brightness(120%) contrast(95%);
  pointer-events:none;
}

.page-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:var(--gray);
  opacity:.45;
  pointer-events:none;
}

.page-hero > *{
  position:relative;
  z-index:1;
}

.page-hero__title{
  text-align:center;
  margin:0;
}

.page-hero__en{
  display:block;
  font-family:
    "Yu Mincho",
    "游明朝",
    "Hiragino Mincho ProN",
    serif;
  font-size:12px;
  letter-spacing:.22em;
  opacity:.75;
  margin-bottom:8px;
  font-weight:700;
  color:#111;
}

.page-hero__jp{
  margin:0;
  font-family:
    "Yu Mincho",
    "游明朝",
    "Hiragino Mincho ProN",
    serif;
  font-size:30px;
  letter-spacing:.04em;
  line-height:1.2;
  font-weight:800;
  color:#111;
}

section[id]{
  scroll-margin-top:calc(var(--header-h) + var(--page-hero-h));
}

@media (max-width:899px){
  .page-hero{
    padding:12px 0;
  }

  .page-hero__jp{
    font-size:26px;
  }

  :root{
    --page-hero-h:114px;
  }
}

@media (max-width:699px){
  .page-hero{
    padding:12px 0;
  }

  :root{
    --page-hero-h:104px;
  }
}

/* =========================
  Home / FV / lead
========================= */
.page-home .section-light .lead{
  max-width:none;
  width:100%;
  margin:0;
  text-align:left;
}

.page-home .section-gray{
  background:#f3f3eb;
}

.fv,
.fv picture,
.fv .fv-img{
  margin:0;
  padding:0;
}

.fv picture{
  display:block;
  width:100%;
  height:auto;
}

@media (min-width:900px){
  .page-home .fv.fv-home{
    position:relative;
    width:100%;
    margin:0;
    padding:0;
    height:calc(100svh - var(--header-h));
    background:#000;
    overflow:hidden;
    display:block;
  }

  .page-home .fv.fv-home::before,
  .page-home .fv.fv-home::after{
    content:"";
    position:absolute;
    left:0;
    width:100%;
    height:70px;
    background:#000;
    z-index:2;
  }

  .page-home .fv.fv-home::before{
    top:0;
  }

  .page-home .fv.fv-home::after{
    bottom:0;
  }

  .page-home .fv.fv-home picture{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    height:calc(100% - 140px);
    display:block;
    min-height:0;
    z-index:1;
    background:#fff;
  }

  .page-home .fv.fv-home .fv-img{
    display:block;
    width:100%;
    height:100%;
    max-width:none;
    object-fit:contain;
    object-position:center center;
    background:#fff;
  }
}

/* =========================
  Carousel
========================= */
.slider,
.slider-track,
.slide{
  display:none !important;
}

.carousel{
  position:relative;
  margin-top:28px;
}

.carousel__viewport{
  overflow:hidden;
}

.carousel__track{
  list-style:none;
  display:flex;
  gap:14px;
  padding:0;
  margin:0;
  transition:transform .32s ease;
  will-change:transform;
}

.carousel__slide{
  flex:0 0 100%;
}

.card-article{
  display:block;
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  padding:22px 20px;
  min-height:160px;
  transition:background .2s ease;
  color:#222;
}

.card-article:hover{
  background:#e8e8df;
}

.card-article__eyebrow{
  font-size:11px;
  letter-spacing:.18em;
  color:#222;
  margin-bottom:10px;
}

.card-article__title{
  font-size:18px;
  line-height:1.5;
  margin-bottom:12px;
  color:#222;
}

.card-article__more{
  display:inline-block;
  margin-top:14px;
  font-size:13px;
  letter-spacing:.08em;
  padding:6px 10px;
  border:1px solid rgba(107,90,53,.25);
  transition:background .2s ease, color .2s ease;
  color:#222;
}

.card-article:hover .card-article__more{
  background:rgba(107,90,53,.10);
}

.card-article__more::after{
  content:" →";
  font-size:12px;
}

.card-article{
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  padding:22px 20px;
  min-height:190px;
  transition:background .2s ease;
  color:#222;
}

.card-article__title{
  font-size:18px;
  line-height:1.5;
  margin-bottom:10px;
  color:#222;
}

.card-article__desc{
  font-size:14px;
  line-height:1.7;
  color:#555;
  margin:0 0 14px;
  min-height:3.4em;
}

.card-article__more{
  display:inline-block;
  margin-top:auto;
  font-size:13px;
  letter-spacing:.08em;
  padding:6px 10px;
  border:1px solid rgba(107,90,53,.25);
  transition:background .2s ease, color .2s ease;
  color:#222;
}

.carousel__btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border:1px solid rgba(0,0,0,.18);
  background:#fff;
  display:grid;
  place-items:center;
  font-size:22px;
  line-height:1;
  z-index:2;
  transition:background .2s ease;
}

.carousel__btn:hover{
  background:rgba(107,90,53,.10);
}

.carousel__btn--prev{
  left:-10px;
}

.carousel__btn--next{
  right:-10px;
}

.carousel__dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:14px;
}

.carousel__dot{
  width:8px;
  height:8px;
  border:1px solid rgba(0,0,0,.28);
  background:transparent;
}

.carousel__dot.is-active{
  background:rgba(0,0,0,.55);
}

@media (min-width:700px){
  .carousel__slide{
    flex-basis:calc((100% - 14px) / 2);
  }
}

@media (min-width:1100px){
  .carousel__track{
    gap:14px;
  }

  .carousel__slide{
    flex:0 0 calc((100% - 28px) / 3);
  }
}

@media (max-width:899px){
  .carousel__btn,
  .carousel__dots{
    display:none;
  }

  .carousel__viewport{
    overflow:visible !important;
  }

  .carousel__track{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
    padding:0;
    margin:0;
    transform:none !important;
    scroll-snap-type:none !important;
  }

  .carousel__slide{
    min-width:0;
    width:auto;
  }
}

@media (max-width:699px){
  .carousel__btn{
    width:44px;
    height:44px;
  }

  .carousel__btn--prev{
    left:6px;
  }

  .carousel__btn--next{
    right:6px;
  }

  .carousel__dot{
    width:10px;
    height:10px;
  }
}

/* =========================
  Profile
========================= */
.profile{
  margin:48px auto 0;
  text-align:center;
}

.profile__media{
  width:min(360px, 92%);
  aspect-ratio:4 / 3;
  margin:0 auto 14px;
  background:#eee;
  border:1px solid var(--line);
  display:grid;
  place-items:center;
}

.profile__placeholder{
  font-size:13px;
  color:rgba(0,0,0,.55);
}

.profile__caption{
  width:min(360px, 92%);
  margin:16px auto 0;
  font-size:13px;
  color:rgba(0,0,0,.65);
}

.profile__name{
  display:block;
  width:100%;
  text-align:right;
  font-family:
    "Yu Mincho",
    "游明朝",
    "Hiragino Mincho ProN",
    serif;
  font-size:18px;
  letter-spacing:.08em;
  font-weight:800;
  color:#111;
}

@media (min-width:900px){
  .profile__media,
  .profile__caption{
    width:420px;
  }
}

/* =========================
  Contact recruit
========================= */
.page-contact .contact-recruit{
  margin:2.4rem 0;
}

.page-contact .contact-recruit__title{
  position:relative;
  display:inline-block;
  max-width:100%;
  left:50%;
  transform:translateX(-50%);
  margin:0 0 4rem;
  padding:.4rem 1.5rem .55rem;
  border-top:3px solid rgba(92,79,48,.55);
  border-bottom:3px solid rgba(92,79,48,.55);
  font-family:
    "Yu Mincho",
    "游明朝",
    "Hiragino Mincho ProN",
    serif;
  font-size:2.05rem;
  line-height:1.45;
  font-weight:700;
  letter-spacing:.04em;
  color:#111;
  text-align:center;
  white-space:normal;
  word-break:keep-all;
  overflow-wrap:anywhere;
  background:linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.42) 18%,
    rgba(255,255,255,0.42) 82%,
    rgba(255,255,255,0) 100%
  );
  box-sizing:border-box;
}

.page-contact .contact-recruit-box{
  padding:2.2rem 2.4rem 2.3rem;
  border:1px solid rgba(92,79,48,.28);
  background:#e6decb;
  box-sizing:border-box;
}

.page-contact .contact-recruit-list{
  list-style:none;
  margin:0;
  padding:0;
  min-width:0;
}

.page-contact .contact-recruit-item{
  min-width:0;
}

.page-contact .contact-recruit-item + .contact-recruit-item{
  margin-top:1.45rem;
}

.page-contact .contact-recruit-item__label-row{
  display:grid;
  grid-template-columns:1.1rem minmax(0, 1fr);
  column-gap:.2rem;
  align-items:center;
  margin:0;
  min-width:0;
}

.page-contact .contact-recruit-item__mark,
.page-contact .contact-recruit-item__label,
.page-contact .contact-recruit-item__value{
  font-family:
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Noto Sans JP",
    sans-serif;
  color:#222;
}

.page-contact .contact-recruit-item__mark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:1.1rem;
  line-height:1;
  font-weight:400;
}

.page-contact .contact-recruit-item__label{
  min-width:0;
  font-size:1.35rem;
  line-height:1.5;
  font-weight:400;
  letter-spacing:.01em;
  word-break:keep-all;
  overflow-wrap:anywhere;
}

.page-contact .contact-recruit-item__value{
  margin:0;
  padding-left:calc(1.1rem + .2rem);
  min-width:0;
  font-size:1.75rem;
  line-height:1.45;
  font-weight:400;
  letter-spacing:.005em;
  word-break:keep-all;
  overflow-wrap:anywhere;
}

.page-contact .contact-recruit-item__value--tel::before{
  content:"☎";
  display:inline-block;
  margin-right:.18em;
}

@media (max-width:899px){
  .page-contact .contact-recruit{
    margin:1.9rem 0;
  }

  .page-contact .contact-recruit__title{
    margin-bottom:4rem;
    padding:.3rem 1rem .42rem;
    font-size:clamp(1.45rem, 4.9vw, 1.8rem);
    line-height:1.42;
    letter-spacing:.03em;
    max-width:100%;
    font-weight:400;
  }

  .page-contact .contact-recruit-box{
    padding:1.7rem 1.4rem 1.8rem;
  }

  .page-contact .contact-recruit-item + .contact-recruit-item{
    margin-top:1.15rem;
  }

  .page-contact .contact-recruit-item__label-row{
    grid-template-columns:1rem minmax(0, 1fr);
    column-gap:.16rem;
  }

  .page-contact .contact-recruit-item__mark{
    font-size:1rem;
  }

  .page-contact .contact-recruit-item__label{
    font-size:1.2rem;
  }

  .page-contact .contact-recruit-item__value{
    padding-left:calc(1rem + .16rem);
    font-size:1.48rem;
    line-height:1.42;
  }

  .page-contact .contact-recruit-item__value--wide{
    font-size:clamp(1.18rem, 4.35vw, 1.48rem);
    line-height:1.45;
    white-space:normal;
    word-break:keep-all;
    overflow-wrap:anywhere;
  }
}

@media (max-width:390px){
  .page-contact .contact-recruit__title{
    font-size:clamp(1.32rem, 5vw, 1.5rem);
    line-height:1.38;
  }

  .page-contact .contact-recruit-item__label{
    font-size:1.12rem;
  }

  .page-contact .contact-recruit-item__value{
    font-size:1.36rem;
  }

  .page-contact .contact-recruit-item__value--wide{
    font-size:clamp(1.02rem, 4.7vw, 1.36rem);
    line-height:1.42;
  }
}

@media (max-width:210px){
  .page-contact .contact-recruit__title{
    left:auto;
    transform:none;
    display:block;
    width:100%;
    max-width:100%;
    margin:0 0 2rem;
    padding:.2rem .35rem .3rem;
    font-size:clamp(1rem, 7.5vw, 1.18rem);
    line-height:1.32;
    letter-spacing:0;
  }

  .page-contact .contact-recruit-box{
    padding:.9rem .55rem 1rem;
  }

  .page-contact .contact-recruit-item + .contact-recruit-item{
    margin-top:.8rem;
  }

  .page-contact .contact-recruit-item__label-row{
    grid-template-columns:.82rem minmax(0, 1fr);
    column-gap:.08rem;
  }

  .page-contact .contact-recruit-item__mark{
    font-size:.82rem;
  }

  .page-contact .contact-recruit-item__label{
    font-size:clamp(.78rem, 5.8vw, .92rem);
    line-height:1.35;
    letter-spacing:0;
  }

  .page-contact .contact-recruit-item__value{
    padding-left:calc(.82rem + .08rem);
    font-size:clamp(.88rem, 7vw, 1.02rem);
    line-height:1.35;
    letter-spacing:0;
  }

  .page-contact .contact-recruit-item__value--wide{
    font-size:clamp(.84rem, 6.6vw, .98rem);
    line-height:1.35;
  }
}

.page-contact .contact-recruit{
  margin:2.4rem 0 0;
}

/* =========================
  Greeting page
========================= */
.page-greeting .greeting-wrap{
  max-width:980px;
}

.page-greeting .greeting-main-title{
  position:relative;
  margin:0 0 32px;
  padding:0 0 0 2.5em;
  font-size:27px;
  line-height:1.35;
  font-weight:400;
  letter-spacing:.02em;
  color:#111;
  text-align:left;
  font-family:
    "Yu Mincho",
    "游明朝",
    "Hiragino Mincho ProN",
    serif;
}

.page-greeting .greeting-box-bg{
  background:#f3f3ee;
  padding:24px 16px;
}

.page-greeting .greeting-name-title{
  position:relative;
  display:flex;
  align-items:center;
  gap:12px;
  margin:0 0 24px;
  padding:0 0 14px;
  font-size:21px;
  line-height:1.35;
  font-weight:400;
  letter-spacing:.02em;
  color:#111;
  font-family:
    "Yu Mincho",
    "游明朝",
    "Hiragino Mincho ProN",
    serif;
}

.page-greeting .greeting-name-title::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  background:rgba(0,0,0,.24);
}

.page-greeting .greeting-name-title__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  line-height:1;
}

.page-greeting .greeting-name-title__icon img{
  display:block;
  width:auto;
  height:1.1em;
  max-width:none;
}

.page-greeting .greeting-name-title__text{
  display:inline-block;
}

.page-greeting .greeting-photo{
  margin:0 0 64px;
  text-align:center;
}

.page-greeting .greeting-photo img,
.page-greeting .greeting-photo-placeholder{
  display:inline-grid;
  place-items:center;
  width:min(100%, 770px);
  aspect-ratio:770 / 513;
  background:#e8e8e1;
  border:1px solid rgba(0,0,0,.10);
}

.page-greeting .greeting-photo img{
  object-fit:cover;
}

.page-greeting .greeting-photo-placeholder{
  color:rgba(0,0,0,.42);
  font-size:14px;
  letter-spacing:.05em;
}

.page-greeting .greeting-box-border{
  background:transparent;
  border:none;
  padding:0;
}

.page-greeting .greeting-box-border h4{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 22px;
  padding:0;
  border:none;
  color:#111;
  font-size:18px;
  line-height:1.5;
  letter-spacing:.02em;
  font-weight:800;
  font-family:
    "Yu Mincho",
    "游明朝",
    "Hiragino Mincho ProN",
    serif;
}

.page-greeting .greeting-box-border h4::before{
  content:"|";
  font-weight:900;
  color:var(--olive);
  transform:translateY(-1px);
  display:inline-block;
}

.page-greeting .greeting-box-border p{
  font-size:16px;
  line-height:1.75;
  color:#222;
  text-align:left;
  font-family:inherit;
  font-weight:inherit;
  letter-spacing:inherit;
}

.page-greeting .greeting-box-border p:last-child{
  margin-bottom:0;
}

.page-greeting .greeting-box-border p.greeting-signoff{
  text-align:right;
  padding-right:2em;
}

@media (min-width:900px){
  .page-greeting .greeting-box-bg{
    padding:35px;
  }

  .page-greeting .greeting-box-border{
    max-width:51em;
    max-width:51ic;
    margin-left:auto;
    margin-right:auto;
  }
}

@media (max-width:899px){
  .page-greeting #greeting .reading-block{
    width:min(100% - 32px, 21em);
    max-width:21em;
    margin-left:auto;
    margin-right:auto;
  }

  .page-greeting .greeting-main-title{
    margin-bottom:24px;
    padding-left:1.5em;
    font-size:21px;
    line-height:1.35;
    text-align:left;
  }

  .page-greeting .greeting-box-bg{
    width:calc(100% + 88px);
    margin-left:-44px;
    margin-right:-44px;
    padding:24px 42px;
    box-sizing:border-box;
  }

  .page-greeting .greeting-name-title{
    margin-bottom:20px;
    padding-bottom:12px;
    font-size:21px;
    gap:10px;
  }

  .page-greeting .greeting-photo{
    margin-bottom:50px;
  }

  .page-greeting .greeting-box-border h4{
    gap:10px;
    margin:0 0 22px;
    font-size:18px;
    line-height:1.5;
  }

  .page-greeting .greeting-box-border p{
    font-size:16px;
    line-height:1.75;
  }
}

@media (max-width:430px){
  .page-greeting .greeting-box-bg{
    width:calc(100% + 64px);
    margin-left:-32px;
    margin-right:-32px;
    padding:24px 32px;
    box-sizing:border-box;
  }
}

/* =========================
  Responsive common
========================= */
@media (max-width:899px){
  .section{
    padding:20px 0 30px 0;
  }

  .section-title{
    font-size:22px;
    margin-bottom:15px;
  }

  .lead{
    font-size:16px;
    line-height:1.9;
  }

  .reading{
    max-width:21em;
  }

  .reading-block{
    width:min(100% - 32px, 21em);
    margin-left:auto;
    margin-right:auto;
  }

  .reading{
    max-width:100%;
    margin-left:0;
    margin-right:0;
  }

  .reading.prose,
  .prose,
  .prose p,
  body{
    font-size:16px;
    line-height:1.95;
  }

  .heading-bar{
    font-size:18px;
  }

  .page-home .lead{
    font-size:16px;
    line-height:1.95;
    width:24ic;
    max-width:100%;
    margin-left:auto;
    margin-right:auto;
    text-align:left;
  }

  .reading.prose p{
    line-height:1.95;
  }
}

@media (max-width:699px){
  :root{
    --reading-w:21em;
    --reading-w:21ic;
  }

  .page-home .lead,
  .page-home .section-light .lead{
    width:auto;
    max-width:24.5em;
    margin-left:auto;
    margin-right:auto;
    text-align:left;
    line-height:2;
  }

  .reading,
  .reading-block .reading{
    max-width:21em;
    max-width:21ic;
  }
}

@media (max-width:390px){
  .prose,
  .prose p,
  .page-home .lead{
    font-size:15px;
  }

  .page-home .lead{
    width:24ic;
  }
}

/* =========================
  Responsive Index（一時的）
========================= */

@media (max-width:899px){
  .page-home main{
    padding-bottom:calc(36px + 32px);
  }
}

/* =========================
  Greeting（追加）
========================= */
.page-greeting .greeting-photo{
  width:min(100%, 260px);
  margin:0 auto 64px;
  aspect-ratio:3 / 4;
  overflow:hidden;
  text-align:center;
}

.page-greeting .greeting-photo img,
.page-greeting .greeting-photo-placeholder{
  display:block;
  width:100%;
  height:100%;
  aspect-ratio:3 / 4;
  background:#e8e8e1;
  border:none;
}

.page-greeting .greeting-photo img{
  object-fit:cover;
  object-position:center top;
}

@media (min-width:900px){
  .page-greeting .greeting-photo{
    width:min(100%, 360px);
    margin:0 auto 64px;
  }
}