/* 共通 */

.dr-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.dr-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  position: relative;
  font-size: 13px;
  color: #d7af73;
  font-weight: bold;
  display: inline-block;
  padding-bottom: 2px;
  margin-bottom: 12px;
}

.section-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 18px;
  height: 2%;
  background-color: #d7af73;
  transform: translateX(-50%);
}

.section-title {
  font-size: 28px;
  color: #5a4b23;
  font-weight: bold;
  text-align: center;
}

.section-subtitle {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 16px;
  padding-left: 17px; 
}

.section-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 5px;
  height: 1.4em;
  background-color: #d7af73;
}

.highlight-bold {
  font-weight: bold;
  background: linear-gradient(transparent 70%, #F0DCB4 0%);
  display: inline;
}

.br-sp {
  display: none;
}

.br-pc {
  display: inline;
}

html {
  scroll-behavior: smooth;
}

/* max-width: 768px */

@media (max-width: 768px) {

  .dr-heading {
  text-align: center;
  margin-bottom: 35px;
}
  .section-title {
    font-size: 20px;
  }

  .section-subtitle {
    font-size: 18px;
    padding-left: 12px;
  }

  .br-pc {
  display: none;
}

  .br-sp {
    display: inline;
  }
}

/* hero */
.dr-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.dr-hero__inner {
  width: 100%;
  height: 100%;
}

.dr-hero__image {
  position: relative; 
  width: 100%;
  height: 100%;
}

.dr-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.dr-hero__copy {
  position: absolute;
  top: 65%;
  left: 8%;
  color: #fff;
  z-index: 2;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}

.dr-hero__lead {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  color: #fff;
}

.dr-hero__title {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-family: '游明朝体', 'Yu Mincho', 'Hiragino Mincho Pro', serif;
  color: #fff;
}

/* スマホ対応 */

@media (max-width: 1100px) {
.dr-hero__title {
  font-size: 5vw;
}
}

@media (max-width: 768px) {
  .dr-hero {
    height: auto;
  }

  .dr-hero__image img {
    height: 460px;
  }

  .dr-hero__copy {
    top: 70%;
  }

  .dr-hero__title {
    font-size: 6vw;
  }

  .dr-hero__lead {
    font-size: 0.9rem;
    margin-bottom: 0;
  }
}


/* anker link */
.dr-anchor {
  position: absolute;
  top: 75%;
  right: 50px;
  transform: translateY(-50%);
  z-index: 10;
}

.dr-anchor__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dr-anchor__list li {
  margin-bottom: 10px;
}

.dr-anchor__list li a {
  display: block;
  font-size: 13px;
  color: #5A4B23;
  text-decoration: none;
  background: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.dr-anchor__list li a:hover {
  background: #d7af73;
  color: #fff;
}

.dr-anchor--sp {
  display: none;
}

/* max-width: 768px */

@media (max-width: 768px) {

  .dr-anchor {
    display: none;
  }

  .dr-anchor--sp {
    display: block;
    background: linear-gradient(to right, #f5e9c5, #f9f5eb 50%, #f5e9c5);
    padding: 24px 16px;
  }

  .dr-anchor__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .dr-anchor__grid li a {
    display: block;
    background: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    padding: 12px 8px;
    color: #5a4b23;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    transition: all 0.3s;
  }

  .dr-anchor__grid li a:hover {
    background: #d7af73;
    color: #fff;
}
}

/* concept */
.dr-concept {
  background: linear-gradient(to right, #f5e9c5, #f9f5eb 50%, #f5e9c5);
  padding: 10% 20px;
}

.dr-concept__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.dr-concept__box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 10px 40px;
  margin-bottom: 40px;
  display: inline-block;
  text-align: center;
}

.dr-concept__text p {
  font-size: 16px;
  color: #5A4B23;
  line-height: 2;
  text-align: center;
  margin-top: 20px;
}

.dr-concept .section-title {
  font-size: 18px;
}


/* max-width: 768px */

@media (max-width: 768px) {
  .dr-concept__box {
    padding: 20px;
    margin-bottom: 30px;
  }

  .dr-concept__text p {
    font-size: 13px;
    line-height: 2;
    margin-top: 20px;
  }
}

/* charm */
.dr-charm {
  background: #fff;
  padding: 50px 20px;

}

.dr-charm__heading {
  text-align: center;
  margin-bottom: 100px;

}


.dr-charm__block {
  margin-bottom: 100px;
}

.dr-charm__section-heading {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 30px;
}

.dr-charm__section-heading::after {
  content: "";
  display: block;
  height: 1px;
  background: #d7af73;
  margin: 24px auto 0;
  width: 100%;
}

.dr-charm__section-number {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 0 12px;
  font-size: 32px;
  font-weight: bold;
  color: #d7af73;
  font-family: 'Libre Baskerville', serif;
}

.dr-charm__section-number::before,
.dr-charm__section-number::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #d7af73;
  margin: 0 12px;
}

.dr-charm__section-title {
  position: relative;
  font-size: 25px;
  font-weight: bold;
  color: #5a4b23;
  padding-top: 30px;
  border-top: 1px solid #d7af73;
  text-align: center;
}

.dr-charm__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.dr-charm__text {
  flex: 1;
}

.dr-charm__text p {
  font-size: 16px;
  line-height: 2;
  color: #333;
}

.dr-charm__image {
  text-align: right;
}

.dr-charm__image img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

@media (max-width: 768px) {
  .dr-charm__row {
    display: block;
  }

  .dr-charm__image {
    text-align: center;
    margin-top: 20px;
  }

  .dr-charm__image img {
    max-width: 100%;
    height: auto;
  }

  .dr-charm__section-title {
    font-size: 22px;
  }

  .dr-charm__section-number {
    font-size: 24px;
    top: -20px;
  }

  .dr-charm__block {
    margin-bottom: 60px;
  }

  .dr-charm__text p {
    font-size: 15px;
    line-height: 2;
  }
}


/* education */

.dr-education {
  background: #FAF7DC;
  padding: 50px 20px;
}

.dr-education__box {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.dr-education__text {
  flex: 1;
}

.dr-education__text p {
  font-size: 16px;
  color: #333;
  line-height: 2;
}

.dr-education__lead {
  font-weight: bold;
}

.dr-education__image {
  flex-shrink: 0;
}

.dr-education__image img {
  width: 320px;
  height: auto;
}

.dr-education__box--stack {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  display: block;
  text-align: center;
}

.dr-education__text--center {
  margin-bottom: 30px;
}

.dr-education__gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.dr-education__gallery img {
  width: calc(25% - 15px);
  height: auto;
  object-fit: cover;
}


@media (max-width: 768px) {
  .dr-education__box {
    display: block;
    padding: 40px 20px;
  }

  .dr-education__image {
    text-align: center;
    margin-top: 20px;
  }

  .dr-education__image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .dr-education__text p {
    font-size: 15px;
    line-height: 2;
  }

  .dr-education__box--stack {
    padding: 40px 20px;
  }

  .dr-education__text--center {
    margin-bottom: 20px;
  }

  .dr-education__gallery {
    flex-direction: column;
    gap: 12px;
  }

  .dr-education__gallery img {
    width: 100%;
  }
}

/* career */

.dr-career {
  background: #FAF7DC;
  padding: 0  20px 50px
}

.dr-career__box {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
}

.dr-career__row {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.dr-career__text {
  flex: 1;
  min-width: 300px;
}

.dr-career__text p {
  font-size: 16px;
  color: #333;
  line-height: 2;
  margin-bottom: 30px;
}

.dr-career__scrollara {
  margin-bottom: 60px;
}

.dr-career__scroll {
  overflow-x: auto;
}

.dr-career__scroll img {
  min-width: 800px;
  max-width: 150%;
  height: auto;
  display: block;
}

.dr-career__image {
  flex-shrink: 0;
  max-width: 500px;
}

.dr-career__image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .dr-career {
    padding: 0 16px 40px;
  }

  .dr-career__box {
    padding: 40px 20px;
  }

  .dr-career__row {
    display: block;
  }

  .dr-career__text {
    min-width: 100%;
  }

  .dr-career__text p {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 24px;
  }

  .dr-career__scrollara {
  margin-bottom: 55px;
}

  .dr-career__scroll img {
    min-width: 1000px;
    width: auto;
    height: auto;
    display: block;
  }

  .dr-career__image {
    max-width: 100%;
    margin-top: 24px;
    text-align: center;
  }

  .dr-career__image img {
    width: 100%;
    height: auto;
  }
}


/* voice */

.dr-voice {
  background: #fff;
  padding: 50px 20px;
}

.dr-voice__box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px;
}

.dr-voice__image {
  flex: 1;
  min-width: 280px;
}

.dr-voice__image img {
  width: 100%;
  height: auto;
}

.dr-voice__text {
  flex: 2;
}

.dr-voice__text p {
  font-size: 16px;
  line-height: 2;
  color: #333;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .dr-voice {
    padding: 40px 16px;
  }

  .dr-voice__box {
    display: block;
    padding: 24px;
  }

  .dr-voice__image {
    text-align: center;
    margin-bottom: 24px;
  }

  .dr-voice__image img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .dr-voice__text {
    text-align: left;
  }

  .dr-voice__text p {
    font-size: 15px;
    line-height: 2;
  }
}

/* faq */

.dr-faq {
  padding: 50px 20px;
}

.dr-faq__box {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
}


@media (max-width: 768px) {
  .dr-faq {
    padding: 40px 16px;
  }

  .dr-faq__box {
  padding: 0 20px;
  }

}


/* recruitment */
.dr-recruit {
  background: radial-gradient(circle, #f9f5eb 0%, #f5e9c5 100%);
  padding: 80px 20px;
}

.dr-recruit__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.dr-recruit__item {
  background: #fff;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dr-recruit__item img {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.dr-recruit__label {
  margin-top: 0;
  background: #d7af73;
  color: #fff;
  font-weight: bold;
  padding: 12px 0;
  font-size: 16px;
  text-align: center;
}

.dr-recruit__item:hover .dr-recruit__label {
  background: #b68e50;
}

/* レスポンシブ */
@media (min-width: 600px) {
  .dr-recruit__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .dr-recruit__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* message */

.dr-message {
  padding: 50px 20px;
}

.dr-message__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.dr-message__text {
  flex: 1;
}

.dr-message__image {
  text-align: right;
}

.dr-message__image img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.dr-message__movie {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

.dr-message__movie iframe {
  width: 100%;
  height: 100%;
  border: none;
}


@media (max-width: 768px) {
  .dr-message {
    padding: 40px 16px;
  }

  .dr-message__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .dr-message__text {
    width: 100%;
  }

  .dr-message__text h3.section-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
    padding-left: 12px;
  }

  .dr-message__text p {
    font-size: 15px;
    line-height: 2;
    color: #333;
  }

  .dr-message__image {
    width: 100%;
    text-align: center;
    order: -1;
    margin-bottom: 0;
  }

  .dr-message__image img {
    max-width: 240px;
    width: 100%;
    height: auto;
    display: inline-block;
  }

}