:root{
  --rm-white: #ffffff;
  --rm-ivory: #fceccb;
  --rm-bg: #ffffff;
  --rm-brown: #72501e;
  --rm-gold: #b38726;
  --rm-accent: #ec632b;
  --rm-shadow: 0 18px 40px rgba(114, 80, 30, 0.14);
  --rm-header-h-pc: 140px;
  --rm-header-h-sp: 96px;
  --rm-ease: 0.35s ease;
}

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

body{
  margin: 0;
  color: var(--rm-brown);
  background: var(--rm-bg);
  font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  font-weight: 400;
}
body {
  background-image: url("../img/top/rose2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media(max-width:700px){
	body{
		    background-position: right 15% center;
	}
}

h1,h2,h3{
  font-weight: 500;
}

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

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

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

body.rm-menu-open{
  overflow: hidden;
}

/* =========================
   Header
========================= */
.rm-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 14px rgba(0,0,0,0.03);
}

.rm-header-spacer{
  height: var(--rm-header-h-pc);
}

.rm-header__container{
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
}

.rm-header__inner{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: var(--rm-header-h-pc);
}

.rm-header__brand{
  flex: 0 0 520px;
  min-width: 520px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.rm-header__logo{
  flex: 0 0 120px;
}

.rm-header__logo a{
  display: block;
  width: 120px;
}

.rm-header__brandtext{
  flex: 1 1 auto;
  min-width: 0;
}

.rm-header__catch{
  margin: 0 0 14px;
  color: var(--rm-brown);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.rm-header__name{
  margin: 0 0 10px;
  color: var(--rm-gold);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.rm-header__name img{
  width: 230px;
}

.rm-header__subname{
  margin: 0;
  color: var(--rm-gold);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.rm-header__toggle{
  display: none;
}

.rm-header__navwrap{
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 28px;
}

.rm-header__subnav{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 54px;
}

.rm-subnav{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0 34px;
  white-space: nowrap;
}

.rm-subnav li{
  flex: 0 0 auto;
}

.rm-subnav a{
  color: var(--rm-brown);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.03em;
  transition: color var(--rm-ease);
}

.rm-subnav a:hover,
.rm-subnav a:focus-visible{
  color: var(--rm-accent);
}

/* =========================
   Header nav / dropdown
========================= */
.rm-header__gnav{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 72px;
}

.rm-gnav{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0 34px;
  white-space: nowrap;
}

.rm-gnav__item{
  position: relative;
  flex: 0 0 auto;
}

.rm-gnav__item > a{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rm-brown);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
  transition: color var(--rm-ease);
  position: relative;
  z-index: 2;
}

.rm-gnav__item > a:hover,
.rm-gnav__item > a:focus-visible,
.rm-gnav__item.is-open > a{
  color: var(--rm-accent);
}

.rm-gnav__arrow{
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
  flex-shrink: 0;
  transition: transform var(--rm-ease);
}

.rm-gnav__item--haschild:hover .rm-gnav__arrow,
.rm-gnav__item--haschild:focus-within .rm-gnav__arrow,
.rm-gnav__item--haschild.is-open .rm-gnav__arrow{
  transform: rotate(225deg) translateY(-1px);
}

/* 親と子の間に hover 切れ防止の透明ブリッジ */
.rm-gnav__item--haschild::after{
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 18px;
}

/* PC dropdown */
.rm-dropdown{
  position: absolute;
  top: 100%;
  left: 50%;
  width: 320px;
  padding: 18px 0 0;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.35s ease;
  z-index: 50;
}

.rm-dropdown::before{
  content: "";
  display: block;
  width: 100%;
  background: var(--rm-white);
  border-radius: 18px;
  box-shadow: var(--rm-shadow);
  position: absolute;
  inset: 18px 0 0 0;
  z-index: -1;
}

.rm-gnav__item--haschild:hover .rm-dropdown,
.rm-gnav__item--haschild:focus-within .rm-dropdown,
.rm-gnav__item--haschild.is-open .rm-dropdown{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.rm-dropdown li + li{
  border-top: 1px dashed rgba(179, 135, 38, 0.75);
}

.rm-dropdown a{
  display: block;
  padding: 18px 34px;
  color: var(--rm-brown);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.03em;
  transition:
    color 0.28s ease,
    background-color 0.28s ease,
    padding-left 0.28s ease;
  background: transparent;
}

.rm-dropdown a:hover,
.rm-dropdown a:focus-visible{
  color: var(--rm-accent);
  background: rgba(252, 236, 203, 0.35);
  padding-left: 40px;
}

/* =========================
   SP menu
========================= */
.rm-spmenu{
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(114, 80, 30, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--rm-ease), visibility var(--rm-ease);
}

.rm-spmenu.is-open{
  opacity: 1;
  visibility: visible;
}

.rm-spmenu__inner{
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 420px);
  height: 100%;
  background: var(--rm-ivory);
  padding: 34px 34px 40px;
  overflow-y: auto;
  transform: translateX(40px);
  opacity: 0;
  transition: transform var(--rm-ease), opacity var(--rm-ease);
}

.rm-spmenu.is-open .rm-spmenu__inner{
  transform: translateX(0);
  opacity: 1;
}

.rm-spmenu__close{
  position: absolute;
  top: 26px;
  right: 24px;
  width: 52px;
  height: 52px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.rm-spmenu__close span{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 6px;
  background: var(--rm-gold);
  border-radius: 999px;
}

.rm-spmenu__close span:first-child{
  transform: translate(-50%, -50%) rotate(45deg);
}

.rm-spmenu__close span:last-child{
  transform: translate(-50%, -50%) rotate(-45deg);
}

.rm-spmenu__nav{
  padding-top: 72px;
}

/* 一次メニュー */
.rm-spmenu__primary{
  display: block;
}

.rm-spmenu__primary > li{
  border-bottom: 1px solid rgba(114, 80, 30, 0.12);
  padding: 18px 0;
}

.rm-spmenu__primary > li:first-child{
  padding-top: 0;
}

.rm-spmenu__primary > li > a,
.rm-spmenu__parent > a{
  display: block;
  color: var(--rm-brown);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

/* 子あり */
.rm-spmenu__item--haschild{
  padding-bottom: 18px;
}

.rm-spmenu__parent{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.rm-spmenu__parent > a{
  flex: 1 1 auto;
}

/* 開閉ボタン */
.rm-spmenu__accordion{
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.rm-spmenu__accordion span{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(-50%, -60%) rotate(45deg);
  transition: transform 0.35s ease;
}

.rm-spmenu__item.is-open .rm-spmenu__accordion span{
  transform: translate(-50%, -35%) rotate(225deg);
}

/* 子メニュー：確実に閉じる方式 */
.rm-spmenu__child{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  padding-left: 14px;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    margin-top 0.35s ease;
}

.rm-spmenu__item.is-open .rm-spmenu__child{
  max-height: 500px;
  opacity: 1;
  margin-top: 14px;
}

.rm-spmenu__child li{
  margin: 0;
  padding: 0;
}

.rm-spmenu__child li + li{
  margin-top: 10px;
}

.rm-spmenu__child a{
  display: block;
  color: var(--rm-brown);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.rm-spmenu__child a:hover,
.rm-spmenu__child a:focus-visible{
  color: var(--rm-accent);
}

/* 二次メニュー */
.rm-spmenu__secondary{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 54px;
  margin-top: 56px;
}

.rm-spmenu__secondary a{
  color: var(--rm-brown);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.03em;
}

.rm-spmenu__primary > li > a:hover,
.rm-spmenu__primary > li > a:focus-visible,
.rm-spmenu__parent > a:hover,
.rm-spmenu__parent > a:focus-visible,
.rm-spmenu__secondary a:hover,
.rm-spmenu__secondary a:focus-visible{
  color: var(--rm-accent);
}

/* SNS */
.rm-spmenu__sns{
  display: flex;
  gap: 18px;
  margin-top: 42px;
}

.rm-spmenu__sns a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
}

.rm-spmenu__sns img{
  width: 100%;
  height: auto;
}

/* SP */
@media (max-width: 767px){
  .rm-spmenu__inner{
    width: 100%;
    padding: 26px 24px 34px;
  }

  .rm-spmenu__close{
    top: 18px;
    right: 14px;
    width: 48px;
    height: 48px;
  }

  .rm-spmenu__close span{
    width: 34px;
    height: 5px;
  }

  .rm-spmenu__nav{
    padding-top: 58px;
  }

  .rm-spmenu__primary > li{
    padding: 16px 0;
  }

  .rm-spmenu__primary > li > a,
  .rm-spmenu__parent > a{
    font-size: 1.2rem;
  }

  .rm-spmenu__accordion{
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .rm-spmenu__accordion span{
    width: 12px;
    height: 12px;
  }

  .rm-spmenu__child{
    padding-left: 12px;
  }

  .rm-spmenu__child a{
    font-size: 0.95rem;
  }

  .rm-spmenu__secondary{
    gap: 18px 26px;
    margin-top: 42px;
  }

  .rm-spmenu__secondary a{
    font-size: 1.05rem;
  }

  .rm-spmenu__sns{
    gap: 18px;
    margin-top: 42px;
  }

  .rm-spmenu__sns a{
    width: 56px;
    height: 56px;
  }
}
.rm-spmenu__accordion span{
  transition: transform .35s ease;
}

.rm-spmenu__item.is-open .rm-spmenu__accordion span{
  transform: translate(-50%,-35%) rotate(225deg);
}
.rm-spmenu__inner{
  transform: translateX(100%);
}

.rm-spmenu.is-open .rm-spmenu__inner{
  transform: translateX(0);
}

/* =========================
   Responsive
========================= */
@media (max-width: 1360px){
  .rm-header__container{
    max-width: 1280px;
  }

  .rm-header__brand{
    flex-basis: 470px;
    min-width: 470px;
  }

  .rm-header__logo{
    flex-basis: 145px;
  }

  .rm-header__logo a{
    width: 145px;
  }

  .rm-header__name{
    font-size: 2rem;
  }

  .rm-subnav{
    gap: 0 24px;
  }

  .rm-gnav{
    gap: 0 24px;
  }

  .rm-gnav__item > a{
    font-size: 0.94rem;
  }

  .rm-dropdown{
    width: 400px;
  }
}

@media (max-width: 1180px){
  .rm-header__container{
    max-width: 1160px;
    padding: 0 16px;
  }

  .rm-header__brand{
    flex-basis: 410px;
    min-width: 410px;
    gap: 16px;
  }

  .rm-header__logo{
    flex-basis: 128px;
  }

  .rm-header__logo a{
    width: 128px;
  }

  .rm-header__catch{
    font-size: 0.88rem;
  }

  .rm-header__name{
    font-size: 1.72rem;
  }

  .rm-header__subname{
    font-size: 0.98rem;
  }

  .rm-subnav{
    gap: 0 16px;
  }

  .rm-subnav a{
    font-size: 0.84rem;
  }

  .rm-gnav{
    gap: 0 18px;
  }

  .rm-gnav__item > a{
    font-size: 0.88rem;
  }

  .rm-dropdown{
    width: 340px;
  }
}

@media (max-width: 1024px){
  .rm-header-spacer{
    height: var(--rm-header-h-sp);
  }

  .rm-header__container{
    max-width: none;
    padding: 0 10px 0 12px;
  }

  .rm-header__inner{
    min-height: var(--rm-header-h-sp);
    align-items: center;
  }

  .rm-header__brand{
    flex: 1 1 auto;
    min-width: 0;
    gap: 10px;
  }

  .rm-header__logo{
    flex: 0 0 108px;
  }

  .rm-header__logo a{
    width: 108px;
  }

  .rm-header__brandtext{
    min-width: 0;
  }

  .rm-header__catch{
    margin: 0 0 4px;
    font-size: 0.82rem;
  }

  .rm-header__name{
    margin: 0 0 4px;
    font-size: 1.9rem;
  }

  .rm-header__subname{
    font-size: 0.96rem;
  }

  .rm-header__navwrap{
    display: none;
  }

  .rm-header__toggle{
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    width: 62px;
    height: 62px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
  }

  .rm-header__toggle span{
    display: block;
    width: 42px;
    height: 5px;
    margin-left: auto;
    background: var(--rm-gold);
    border-radius: 999px;
  }
}

@media (max-width: 767px){
  .rm-header-spacer{
    height: 90px;
  }

  .rm-header__inner{
    min-height: 90px;
  }

  .rm-header__container{
    padding: 0 8px 0 10px;
  }

  .rm-header__brand{
    gap: 8px;
  }

  .rm-header__logo{
    flex-basis: 82px;
  }

  .rm-header__logo a{
    width: 82px;
  }

  .rm-header__name img{
    width: 180px;
  }

  .rm-header__catch{
    margin-bottom: 3px;
    font-size: 0.68rem;
  }

  .rm-header__name{
    margin-bottom: 3px;
    font-size: 1.02rem;
    line-height: 1.25;
  }

  .rm-header__subname{
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .rm-header__toggle{
    width: 54px;
    height: 54px;
    gap: 6px;
  }

  .rm-header__toggle span{
    width: 36px;
    height: 4px;
  }

  .rm-spmenu__inner{
    width: 100%;
    padding: 26px 24px 34px;
  }

  .rm-spmenu__close{
    top: 18px;
    right: 14px;
    width: 48px;
    height: 48px;
  }

  .rm-spmenu__close span{
    width: 34px;
    height: 5px;
  }

  .rm-spmenu__nav{
    padding-top: 58px;
  }

  .rm-spmenu__primary > li{
    padding: 16px 0;
  }

 .rm-spmenu__primary > li > a,
.rm-spmenu__parent > a{
  font-size: 1.2rem;
}
.rm-spmenu__child{
  font-size:0;
}

  .rm-spmenu__accordion{
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .rm-spmenu__accordion span{
    width: 12px;
    height: 12px;
  }

  .rm-spmenu__child{
    padding-left: 12px;
  }

  .rm-spmenu__child a{
    font-size: 1.1rem;
  }

  .rm-spmenu__secondary{
    gap: 18px 26px;
    margin-top: 42px;
  }

  .rm-spmenu__secondary a{
    font-size: 1.05rem;
  }

  .rm-spmenu__sns{
    gap: 18px;
    margin-top: 42px;
  }

  .rm-spmenu__sns a{
    width: 56px;
    height: 56px;
  }
}

@media(max-width:400px){
  .rm-header__name img{
    width:180px;
  }
}

/* =========================
   Scroll Fade Up Animation
========================= */
.js-fade-up{
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js-fade-up.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.js-fade-up.delay-1{
  transition-delay: 0.12s;
}

.js-fade-up.delay-2{
  transition-delay: 0.24s;
}

.js-fade-up.delay-3{
  transition-delay: 0.36s;
}

.js-fade-up.fade-soft{
  transform: translateY(18px);
}

.js-fade-up.fade-strong{
  transform: translateY(48px);
}

@media (prefers-reduced-motion: reduce){
  .js-fade-up{
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================
  共通ボタン
========================= */
.rm-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 300px;
  margin: 0 auto;
  padding: 22px 28px;
  background: #b9ad98;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  letter-spacing: .08em;
  font-weight: 500;
  border-radius: 6px;
  transition: all .35s ease;
}

.rm-btn__arrow{
  width: 15px;
  height: 15px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(45deg);
}

.rm-btn:hover{
  background: #a89b84;
  transform: translateY(-2px);
}

@media (max-width:768px){
  .rm-btn{
    font-size: 16px;
    padding: 18px 20px;
    max-width: 280px;
  }

  .rm-btn__arrow{
    width: 14px;
    height: 14px;
    border-width: 3px;
  }
}

/* =========================
  少し大きい角丸ボタン
========================= */
.rm-btn-lg{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width:400px;
  margin: 0 auto;
  padding: 26px 34px;
  background: #38a051;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: .08em;
  font-weight: 500;
  border-radius: 10px; /* ←ほんのり角丸 */
  transition: all .35s ease;
}

.rm-btn-lg__arrow{
  width: 16px;
  height: 16px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(45deg);
}

.rm-btn-lg:hover{
  background: #7bc984;
  transform: translateY(-2px);
}

@media (max-width:768px){
  .rm-btn-lg{
    font-size: 16px;
    padding: 20px 24px;
    max-width: 300px;
  }

  .rm-btn-lg__arrow{
    width: 14px;
    height: 14px;
    border-width: 3px;
  }
}

/* =========================
   Footer
========================= */
.rm-footer{
  background: rgba(241,237,228,0.8);
  padding: 72px 20px 78px;
  color: #8c5c1e;
  border-top: 1px solid rgba(140, 92, 30, 0.08);
}

.rm-footer__inner{
  max-width: 1440px;
  margin: 0 auto;
}

.rm-footer__grid{
  display: grid;
  grid-template-columns: 1.8fr 0.9fr 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* brand */
.rm-footer__brand{
  min-width: 0;
}

.rm-footer__logo{
  display: inline-block;
  vertical-align: top;
}

.rm-footer__logo img{
  display: block;
  width: 180px;
  height: auto;
}

.rm-footer__brandText{
  margin-bottom: 15px;
}

.rm-footer__subcopy{
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.rm-footer__name{
  margin: 0 0 8px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.2;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #b58d23;
}

.rm-footer__nameSub{
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.rm-footer__sns{
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.rm-footer__snsLink{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.rm-footer__snsLink img{
  display: block;
  width: 100%;
  height: auto;
}

.rm-footer__snsLink:hover{
  transform: translateY(-3px);
  opacity: 0.9;
}

.rm-footer__miniNav{
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-bottom: 15px;
}

.rm-footer__miniNav a{
  color: #8c5c1e;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.rm-footer__miniNav a:hover,
.rm-footer__links a:hover{
  opacity: 0.7;
}

.rm-footer__companyName{
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.rm-footer__company p{
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.rm-footer__company p:last-child{
  margin-bottom: 0;
}

.rm-footer__navGroup{
  min-width: 0;
}

.rm-footer__heading{
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: #8c5c1e;
}

.rm-footer__heading--space{
  margin-top: 34px;
}

.rm-footer__links{
  list-style: none;
  padding: 0;
  margin: 0;
}

.rm-footer__links li{
  margin: 0 0 10px;
}

.rm-footer__links li:last-child{
  margin-bottom: 0;
}

.rm-footer__links a{
  color: #8c5c1e;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media (max-width: 1200px){
  .rm-footer__grid{
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px 34px;
  }

  .rm-footer__brand{
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px){
  .rm-footer{
    padding: 30px 20px;
  }

  .rm-footer__grid{
    display: block;
  }

  .rm-footer__brand{
    text-align: center;
    margin-bottom: 0;
  }

  .rm-footer__logo{
    margin-bottom: 24px;
  }

  .rm-footer__logo img{
    width: 230px;
    margin: 0 auto;
  }

  .rm-footer__subcopy{
    font-size: 14px;
    margin-bottom: 10px;
  }

  .rm-footer__name{
    font-size: clamp(28px, 8vw, 52px);
    margin-bottom: 6px;
  }

  .rm-footer__nameSub{
    font-size: 18px;
  }

  .rm-footer__sns{
    justify-content: center;
    gap: 18px;
    margin: 28px 0 0;
  }

  .rm-footer__snsLink{
    width: 130px;
    height: 130px;
  }

  .rm-footer__miniNav,
  .rm-footer__company,
  .rm-footer__navGroup{
    display: none;
  }
}

#FooterTItle{
  display: flex;
  width: 500px;
}

#FooterTItle #FTMlogo{
  width: 100px;
}

#FooterTItle .rm-footer__brandText{
  width: 350px;
  padding-left: 15px;
}

#FooterTItle div img{
  width: 200px;
}

@media (max-width: 767px){
  #FooterTItle{
    display: block;
    width: 100%;
    margin: auto;
  }

  #FooterTItle #FTMlogo{
    width: 100px;
    margin: auto;
  }

  #FooterTItle .rm-footer__brandText{
    width: auto;
    padding-left: 0;
  }

  #FooterTItle div img{
    width: 200px;
    margin: auto;
  }

  .rm-footer__sns{
    display: flex;
    gap: 5px;
  }

  .rm-footer__snsLink{
    width: 50px;
    height: 50px;
  }

  .rm-footer__snsLink img{
    display: block;
    width: 100%;
    height: auto;
  }

  .rm-footer__snsLink:hover{
    transform: translateY(-3px);
    opacity: 0.9;
  }
}

.rm-footer__companyName{
  font-size: 18px !important;
}

/* =========================
   下層ページ共通KV
========================= */
.rm-pagehero{
  --rm-pagehero-image: url("../img/common/pagehero-default.jpg");
  --rm-pagehero-overlay: rgba(140, 92, 53, 0.55);
  --rm-pagehero-text: #ffffff;
  --rm-pagehero-breadcrumb-bg: #efefef;
  --rm-pagehero-breadcrumb-text: #8c5c1e;
  --rm-pagehero-max: 1600px;
  --rm-pagehero-side: clamp(20px, 4vw, 60px);
}

.rm-pagehero__inner{
  width: min(100%, var(--rm-pagehero-max));
  margin: 0 auto;
}

.rm-breadcrumb{
  padding: 10px var(--rm-pagehero-side);
}

.rm-breadcrumb__list{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rm-breadcrumb__item{
  color: var(--rm-pagehero-breadcrumb-text);
  font-size: clamp(14px, 0.95vw, 19px);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.rm-breadcrumb__item + .rm-breadcrumb__item::before{
  content: "|";
  display: inline-block;
  margin: 0 0.65em;
  color: var(--rm-pagehero-breadcrumb-text);
  opacity: 0.9;
}

.rm-breadcrumb__item a{
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.rm-breadcrumb__item a:hover{
  opacity: 0.7;
}

.rm-pagehero__visual{
  position: relative;
  overflow: hidden;
  min-height: clamp(180px, 34vw, 320px);
  background-image: var(--rm-pagehero-image);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.rm-pagehero__visual::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.rm-pagehero__visual .rm-pagehero__inner{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding: clamp(40px, 7vw, 0px) var(--rm-pagehero-side);
}

.rm-pagehero__panel{
  padding: clamp(28px, 4vw, 36px) clamp(24px, 4vw, 38px);
  background: var(--rm-pagehero-overlay);
  color: var(--rm-pagehero-text);
}

.rm-pagehero__title{
  margin: 0;
  color: inherit;
  font-size: clamp(30px,1.8vw, 58px);
  line-height: 1.35;
  letter-spacing: 0.04em;
  font-weight: 500;
  padding-bottom: 15px;
}

.rm-pagehero__lead{
  color: inherit;
  font-size: clamp(16px, 1.65vw, 20px);
  line-height: 1.7;
  letter-spacing: 0.03em;
  font-weight: 400;
}

.rm-pagehero--station{
  --rm-pagehero-image: url("../img/station/station-hero.jpg");
  --rm-pagehero-overlay: rgba(146, 98, 64, 0.646);
}

.rm-pagehero--service{
  --rm-pagehero-image: url("../img/service/service-hero.jpg");
  --rm-pagehero-overlay: rgba(108, 130, 98, 0.52);
}

.rm-pagehero--recruit{
  --rm-pagehero-image: url("../img/recruit/recruit-hero.jpg");
  --rm-pagehero-overlay: rgba(90, 105, 138, 0.52);
}

@media (max-width: 767px){
  .rm-breadcrumb{
    padding: 14px 18px;
  }

  .rm-breadcrumb__item{
    font-size: 13px;
    line-height: 1.5;
  }

  .rm-pagehero__visual{
    min-height: 240px;
    background-position: center center;
  }

  .rm-pagehero__visual .rm-pagehero__inner{
    align-items: center;
    padding: 24px 16px;
  }

  .rm-pagehero__panel{
    width: 100%;
    padding: 22px 18px;
  }

  .rm-pagehero__title{
    font-size: 30px;
    line-height: 1.4;
  }

  .rm-pagehero__lead{
    font-size: 15px;
    line-height: 1.5;
  }
}

@media (max-width: 480px){
  .rm-pagehero__visual{
    min-height: 220px;
  }

  .rm-pagehero__title{
    font-size: 20px;
  }

  .rm-pagehero__lead{
    font-size: 14px;
  }
}

/* =========================
   共通ボタン（別パターン）
========================= */
.rm-btn{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.rm-btn::before{
  content:"▶";
  font-size:12px;
  line-height:1;
}

.rm-btn--green{
  background:#7bc984;
  color:#fff;
  box-shadow:0 6px 16px rgba(0,0,0,.08);
}

.rm-btn--green:hover{
  background:#6db977;
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.rm-btn:active{
  transform:translateY(0);
  box-shadow:0 4px 10px rgba(0,0,0,.1);
}

/* =========================
   丸アイコン付きリスト
========================= */
.rm-pointlist{
  margin: 0;
  padding: 0;
  list-style: none;
  padding-bottom: 25px;
}

.rm-pointlist__item{
  position: relative;
  margin: 0;
  padding-left: 42px;
  color: #8c5c1e;
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.75;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.rm-pointlist__item + .rm-pointlist__item{
  margin-top: 18px;
}

.rm-pointlist__item::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #8c5c1e;
  transform: translateY(-50%);
}

@media (max-width: 767px){
  .rm-pointlist__item{
    padding-left: 30px;
    font-size: 18px;
    line-height: 1.7;
  }

  .rm-pointlist__item + .rm-pointlist__item{
    margin-top: 14px;
  }

  .rm-pointlist__item::before{
    top: 0.72em;
    width: 16px;
    height: 16px;
  }
}

.rm-pointlist--sm .rm-pointlist__item{
  padding-left: 32px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

.rm-pointlist--sm .rm-pointlist__item::before{
  width: 16px;
  height: 16px;
}

.rm-pointlist--sm .rm-pointlist__item + .rm-pointlist__item{
  margin-top: 12px;
}

/* =================================
   共通セクション
================================= */
.rm-section{
  padding: 80px 0px 30px;
}

.rm-section__inner{
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

/* =================================
   カテゴリ見出し
================================= */
.rm-sec-head{
  margin-bottom: 34px;
}

.rm-sec-head__row{
  display: flex;
  align-items: flex-end;
  gap: 48px;
}

.rm-sec-head__en{
  margin: 0;
  flex-shrink: 0;
  color: #e3ddd5;
  font-size: clamp(64px, 9vw, 80px);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.rm-sec-head__line-wrap{
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  padding-bottom: 14px;
}

.rm-sec-head__line{
  flex: 1;
  height: 1px;
  background: #b89563;
}

.rm-sec-head__ja{
  flex-shrink: 0;
  color: #8c5c1e;
  font-size: clamp(22px, 1.2vw, 32px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.08em;
}

/* =================================
   大見出し
================================= */
.rm-sec-title{
  margin-bottom: 35px;
}

.rm-sec-title__main{
  margin: 0;
  color: #8c5c1e;
  font-size: clamp(30px, 2vw, 62px);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* =================================
  小見出し
================================= */
.rm-h4{
  margin-bottom: 35px;
  margin-top:35px;
  border-left:3px solid #baa993;
  padding:15px 35px;
  background-color:#f7f5f2;
}

.rm-h4__main{
  margin: 0;
  color: #8c5c1e;
  font-size: clamp(25px, 1.3vw, 45px);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (max-width: 767px){
  .rm-h4{
  margin-bottom: 15px;
  margin-top:15px;
  border-left:3px solid #baa993;
  padding:15px;
}

.rm-h4__main{
  margin: 0;
  color: #8c5c1e;
  font-size: clamp(18px, 1.2vw, 45px);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: 0.05em;
}
}

/* =================================
   左画像・右本文 / 左本文・右画像
================================= */
.rm-media{
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.rm-media--reverse{
  grid-template-columns: minmax(0, 1fr) minmax(280px, 450px);
}

.rm-media__image{
  width: 100%;
}

.rm-media__stack{
  margin: 0;
}

.rm-media__stack img{
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.rm-media__stack img + img{
  margin-top: 0;
}

.rm-media__body{
  color: #9a6f3d;
  font-size: 17px;
  line-height: 2.05;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.rm-media__body p{
  margin: 0 0 1.8em;
}

.rm-media__body p:last-child{
  margin-bottom: 0;
}

/* =========================
   Message 回り込み本文
========================= */
.rm-message{
  max-width: 1000px;
}

.rm-message__body{
  color: #9a6f3d;
  font-size: 18px;
  line-height: 2.05;
  letter-spacing: 0.05em;
}

.rm-message__body::after{
  content: "";
  display: block;
  clear: both;
}

.rm-message__photo{
  float: left;
  width: min(32%, 320px);
  margin: 0 56px 28px 0;
}

.rm-message__photo img{
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
}

.rm-message__body p{
  margin: 0 0 1.75em;
}

.rm-message__body p:last-child{
  margin-bottom: 0;
}

.rm-message__sign{
  margin-top: 2.4em;
  text-align: right;
}

.rm-message__photo--right{
  float: right;
  margin: 0 0 28px 56px;
}

@media (max-width: 1024px){
  .rm-section{
    padding: 90px 0;
  }

  .rm-section__inner{
    padding: 0 28px;
  }

  .rm-sec-head__row{
    gap: 28px;
  }

  .rm-sec-title{
    margin-bottom: 42px;
  }

  .rm-media{
    grid-template-columns: 0.92fr 1.08fr;
    gap: 42px;
  }

  .rm-media--reverse{
    grid-template-columns: 1.08fr 0.92fr;
  }

  .rm-media__body{
    font-size: 16px;
    line-height: 1.95;
  }

  .rm-message__body{
    font-size: 16px;
    line-height: 1.95;
  }

  .rm-message__photo{
    width: min(34%, 280px);
    margin: 0 34px 20px 0;
  }
}

@media (max-width: 767px){
  .rm-section{
    padding: 34px 0;
  }

  .rm-section__inner{
    padding: 0 20px;
  }

  .rm-sec-head{
    margin-bottom: 20px;
  }

  .rm-sec-head__row{
    display: block;
  }

  .rm-sec-head__en{
    font-size: clamp(52px, 18vw, 82px);
    line-height: 0.95;
  }

  .rm-sec-head__line-wrap{
    padding-bottom: 0;
    margin-top: 14px;
    gap: 14px;
  }

  .rm-sec-head__ja{
    font-size: 20px;
  }

  .rm-sec-title{
    margin-bottom: 30px;
  }

  .rm-sec-title__main{
    font-size: 34px;
    line-height: 1.45;
  }

  .rm-media,
  .rm-media--reverse{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rm-media__image{
    max-width: 540px;
  }

  .rm-media__body{
    font-size: 15px;
    line-height: 1.95;
    letter-spacing: 0.04em;
  }

  .rm-media__body p{
    margin-bottom: 1.5em;
  }

  .rm-message__body{
    font-size: 15px;
    line-height: 1.95;
    letter-spacing: 0.04em;
  }

  .rm-message__photo{
    width: 35%;
    min-width: 120px;
    margin: 0 18px 12px 0;
  }

  .rm-message__body p{
    margin-bottom: 1.4em;
    font-size: 16px;
  }

  .rm-message__sign{
    margin-top: 2em;
    text-align: left;
  }

  .rm-media--reverse .rm-media__image{
    order: -1;
  }
}

@media (max-width: 480px){
  .rm-section__inner{
    padding: 0 16px;
  }

  .rm-sec-head__en{
    font-size: 40px;
  }

  .rm-sec-title__main{
    font-size: 20px;
  }

  .rm-sec-head__ja{
    font-size: 14px;
  }

  .rm-media__body{
    font-size: 16px;
    line-height: 1.9;
  }

  .rm-message__body{
    font-size: 14px;
    line-height: 1.9;
  }

  .rm-message__photo{
    width: 38%;
    min-width: 110px;
    margin: 0 14px 10px 0;
  }
}

/*/////Padding/margin/////*/
.PaddingUnder1{
  padding-bottom: 50px!important;
  border-bottom: 1px solid #b89563;
  margin-bottom: 50px!important;
}

.MarginUnder2{
  margin-bottom: 25px;
}

.PaddingUnder3{
  padding-bottom: 80px;
}

.PaddingUnder4{
  padding-bottom: 30px;
}

.BorderTP{
  border-top: 1px solid #b89563;
  padding-top: 35px;
}

@media (max-width: 480px){
  .PaddingUnder1{
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}

.Pcontext{
  width: 1000px;
  margin: auto;
  position: relative;
}
.Pcontext2{
  width: 1000px;
  margin: auto;
  position: relative;
  padding-bottom:35px;
  margin-bottom:35px;
  border-bottom:1px solid #a89b84;
  padding-left:25px;
  padding-right:25px;
}
.Pcontext2 strong{
  display:block;
  padding-bottom:15px;
}
@media (max-width: 1024px) {
  .Pcontext{
  width: 80%;
}
}
.Pcontext p{
  font-size: 17px;
  padding-bottom: 25px;
  color: #9a6f3d;
  line-height: 2.05;
  letter-spacing: 0.06em;
}

@media (max-width: 767px){
  .Pcontext{
    width: 90%;
  }

  .Pcontext p{
    font-size: 16px;
  }
  .Pcontext2{
  width:100%;
  }
    .Pcontext2 p{
      font-size:16px;
      line-height:1.8em;
    }
}

/* =========================
   STEPタイトル
========================= */
.rm-step-head{
  display: flex;
  align-items: flex-start;
  gap: 26px;
  margin-bottom: 25px;
}

.rm-step-head__num{
  font-size: 90px;
  line-height: 1;
  font-weight: 400;
  color: #7a5523;
  flex-shrink: 0;
}

.rm-step-head__main{
  flex: 1;
  padding-top: 18px;
}

.rm-step-head__title{
  position: relative;
  margin: 0;
  padding-top: 16px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #7a5523;
}

.rm-step-head__title::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #bfa37c;
}

@media (max-width: 1024px){
  .rm-step-head__num{
    font-size: 90px;
  }

  .rm-step-head__title{
    font-size: 24px;
  }
}

@media (max-width: 767px){
  .rm-step-head{
    gap: 16px;
    margin-bottom: 32px;
  }

  .rm-step-head__num{
    font-size: 64px;
  }

  .rm-step-head__main{
    padding-top: 10px;
  }

  .rm-step-head__title{
    font-size: 18px;
    padding-top: 12px;
  }
}

.NumberContent{
  width: 900px;
  position: relative;
  margin: auto;
  padding-top: 50px;
}

@media (max-width: 767px){
  .NumberContent{
    width: 90%;
  }
}

/* =========================
   サービス内容導入文
========================= */
.rm-service-block__intro{
  margin-bottom: 28px;
  color: #9a6f3d;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.rm-service-block__intro p{
  margin: 0 0 0.6em;
}

.rm-service-block__intro p:last-child{
  margin-bottom: 0;
}

/* =========================
   縦ライン付き 定義リスト
========================= */
.rm-deflist{
  max-width: 1280px;
}

.rm-deflist__row{
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  column-gap: 56px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.rm-deflist__row:first-child{
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.rm-deflist__term{
  position: relative;
  min-height: 76px;
  padding: 2px 0 2px 52px;
  color: #8c5c1e;
  font-size: clamp(18px, 1vw, 22px);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.03em;
  box-sizing: border-box;
}

.rm-deflist__term::before{
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  width: 2px;
  height: 76px;
  border-radius: 999px;
  background: #d1c8bf;
}

.rm-deflist__desc{
  padding-top: 2px;
  color: #9a6f3d;
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.9;
  font-weight: 400;
  letter-spacing: 0.03em;
}

@media (max-width: 1024px){
  .rm-service-block__intro{
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.85;
  }

  .rm-deflist__row{
    grid-template-columns: 300px minmax(0, 1fr);
    column-gap: 30px;
    padding: 16px 0;
  }

  .rm-deflist__term{
    min-height: 68px;
    padding-left: 42px;
    font-size: 18px;
  }

  .rm-deflist__term::before{
    left: 14px;
    height: 68px;
  }

  .rm-deflist__desc{
    font-size: 16px;
    line-height: 1.8;
  }
}

@media (max-width: 767px){
  .rm-service-block__intro{
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.85;
  }

  .rm-deflist__row{
    grid-template-columns: 1fr;
    row-gap: 8px;
    padding: 16px 0;
  }

  .rm-deflist__term{
    min-height: auto;
    padding: 0 0 0 22px;
    font-size: 18px;
    line-height: 1.5;
  }

  .rm-deflist__term::before{
    left: 0;
    top: 0.15em;
    width: 3px;
    height: 1.4em;
  }

  .rm-deflist__desc{
    padding-top: 0;
    padding-left: 22px;
    font-size: 14px;
    line-height: 1.85;
    letter-spacing: 0.02em;
  }
}

@media (max-width: 480px){
  .rm-service-block__intro{
    font-size: 14px;
  }

  .rm-deflist__row{
    padding: 14px 0;
  }

  .rm-deflist__term{
    font-size: 17px;
  }

  .rm-deflist__desc{
    font-size: 13px;
    line-height: 1.8;
  }
}

.CommentBX{
  width: 700px;
  padding: 35px;
  border: 1px solid #72501e;
  margin: auto;
  border-radius: 15px;
  color: #72501e;
  letter-spacing: 2px;
  line-height: 1.6em;
}

.CommentBX2{
  width: 900px;
  padding: 25px 35px;
  border: 1px solid #72501e;
  margin: auto;
  border-radius: 5px;
  color: #72501e;
  letter-spacing: 2px;
  line-height: 1.6em;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 767px){
  .CommentBX{
    width: 100%;
    padding: 25px;
  }

  .CommentBX2{
    width: 100%;
    padding: 25px;
    font-size: 16px;
  }
}

.GRbtn{
  width:350px;
  line-height:60px;
  color:#FFF;
  text-align:center;
  font-size:17px;
  background-color:#38a051;
  border-radius:5px;
  padding:25px;
}
.GRbtn:hover{
  background-color:#58bf6e;
}

.rm-pagehero__breadcrumb-wrap{
	background-color:#FFF;
}