/* =============================
色等の設定
============================= */
:root {
  --black: #333333;
  --gray20: #F4F4F4;

  --green20: #EEF7E9;
  --green40: #DAF0CE;

  --green60: #78C94D;

  --green80: #56AC53;
  --green100: #315C2E;

  --orange20: #FFEBE2;
  --orange80: #FF7D43;
  --shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
}


.block1100,
.block768,
.block450 {
  display: none;
}

@media screen and (max-width: 1100px) {
  .block1100 {
    display: block;
  }

  .none1100 {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .block768 {
    display: block;
  }

  .none768 {
    display: none;
  }
}

@media screen and (max-width: 450px) {
  .block450 {
    display: block;
  }

  .none450 {
    display: none;
  }
}



/* =============================
共通
============================= */
body {
  color: var(--black);
}

.section-title {
  color: var(--green100);
  font-weight: bold;
  font-size: 2.8rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.section-subtitle {
  display: block;
  color: var(--green60);
  font-size: 1.8rem;
  font-weight: normal;
  font-family: Sen;
  letter-spacing: 0.08em;
}

.title-center {
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 1100px) {
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 2.4rem;
  }

  .section-subtitle {
    font-size: 1.4rem;
  }
}

/* =============================
横固定ボタン
============================= */
.side-link {
  position: fixed;
  bottom: 45%;
  right: -20px;
  right: -15px;
  z-index: 6;
}

.side-link01 {
  width: 110px;
  height: 220px;
  display: block;
  background: url(../../img/konosaki/side-link.png) no-repeat center;
  margin-bottom: 1.6rem;
  transition: 0.3s;
}

.side-link01:hover {
  background: url(../../img/konosaki/side-link_hover.png) no-repeat center;
}

@media screen and (max-width: 1500px) {
  .side-link {
    display: none;
  }
}

/* =============================
上へ戻るボタン
============================= */
#page-top {
  position: fixed;
  bottom: 2%;
  right: 1%;
  font-size: 14px;
  line-height: 1;
  z-index: 100;
}

#page-top a {
  background: url(../../img/konosaki/page-top.png) no-repeat center;
  background-size: contain;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: all 0.3s ease;
  text-shadow: var(--shadow);
}

#page-top a:hover {
  text-decoration: none;
  opacity: 0.5;
}

@media screen and (max-width: 768px) {
  #page-top {
    position: fixed;
    bottom: 2rem;
    right: 5%;
  }
}


/* =============================
ヘッダー
============================= */
.k-header {
  width: 100%;
  background: transparent;
  padding: 2.5rem 6rem;
  position: fixed;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
}

.k-header-inner_pc {
  width: 100%;
  background: var(--green20);
  padding: 1.6rem 3.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.header-title a {
  display: block;
  width: 300px;
}

.header-title img {
  display: block;
  width: 100%;
  height: auto;
}

.header-nav_pc {
  display: flex;
  gap: 6rem;
}

.nav-pc_cta {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.pc-tel_wrap {
  text-align: center;
}

.pc-tel_link {
  font-size: 4rem;
  font-weight: bold;
  color: var(--green80);
  display: flex;
  align-items: center;
  transition: 0.2s;
  line-height: 1;
  font-family: "Sen";
}

.pc-tel_link:hover {
  opacity: 0.7;
}

.pc-contact_link {
  background: var(--orange80);
  color: #fff;
  font-weight: bold;
  padding: 1.4rem 3rem;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  gap: 1rem;
}

.pc-contact_link:hover {
  opacity: 0.7;
}

/* ヘッダーPCナビ（アンカーリンク） */
.ks-nav_pc-list {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
}

.ks-nav_pc-list a {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--green100);
  transition: 0.2s;
}

.ks-nav_pc-list a:hover {
  color: var(--green100);
}


@media screen and (max-width: 1660px) {

  .header-title a {
    width: 240px;
  }

  .ks-nav_pc-list {
    gap: 2rem;
  }

  .header-nav_pc {
    gap: 4rem;
  }

  .pc-tel_link {
    font-size: 3rem;
  }
}


/* =============================
ヘッダーSP
============================= */
.k-header-inner_sp {
  display: none;
}

.hamburger-icon {
  display: none;
}

.hamburger_mask {
  display: none;
}

@media screen and (max-width: 1500px) {
  .k-header {
    display: block;
    height: 60px;
    padding: 0;
    background: var(--green20);
    box-shadow: var(--shadow);
  }

  .k-header-inner_pc {
    display: none;
  }

  .k-header-inner_sp {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-title_sp {
    padding-left: 2rem;
  }

  .nav-sp {
    display: flex;
    align-items: center;
    grid-column-gap: 15px;
  }

  .nav-sp li {
    height: 60px;
  }

  .sp-contact_link,
  .sp-tel_link {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
  }

  .sp-contact_link img {
    display: block;
    height: 20px;
    width: auto;
    position: relative;
    top: -2px;
  }

  .sp-tel_link img {
    display: block;
    height: 26px;
    width: auto;
  }

  .sp-contact_link span,
  .sp-tel_link span {
    display: block;
    font-family: Sen;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0;
  }

  .sp-contact_link span {
    color: var(--green100);
  }

  .sp-tel_link span {
    color: var(--green80);
  }

  /* ハンバーガーボタン */
  .hamburger-icon {
    display: block;
    position: relative;
    top: 0;
    right: 0;
    z-index: 100;
    cursor: pointer;
    width: 60px;
    height: 60px;
    background: var(--orange80);
    transition: 0.2s;
  }

  .hamburger-icon_line {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 13px;
    height: 2px;
    background: #fff;
    width: 34px;
  }

  .hamburger-icon_line:nth-of-type(1) {
    top: 13px;
  }

  .hamburger-icon_line:nth-of-type(2) {
    top: 23px;
  }

  .hamburger-icon_line:nth-of-type(3) {
    top: 32px;
  }

  .hamburger-icon_line:nth-of-type(3)::after {
    content: "MENU";
    position: absolute;
    bottom: -23px;
    left: -3px;
    color: #fff;
    font-size: 1.4rem;
    font-family: Sen;
    font-weight: bold;
    letter-spacing: 0;
  }

  .hamburger-icon.is-active .hamburger-icon_line:nth-of-type(3)::after {
    content: "CLOSE";
    transform: translateY(0) rotate(-45deg);
    bottom: -28px;
    left: 13px;
  }

  .hamburger-icon.is-active .hamburger-icon_line:nth-of-type(1) {
    top: 13px;
    left: 12px;
    transform: translateY(6px) rotate(-45deg);
    width: 31px;
  }

  .hamburger-icon.is-active .hamburger-icon_line:nth-of-type(2) {
    opacity: 0;
  }

  .hamburger-icon.is-active .hamburger-icon_line:nth-of-type(3) {
    top: 25px;
    left: 12px;
    transform: translateY(-6px) rotate(45deg);
    width: 31px;
  }

  .hamburger_mask {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    display: block;
    background: var(--green40);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s linear;
    z-index: 1;
    transform: translateX(100vw);
    transition: all 0.3s linear;
  }

  .hamburger_mask.is-active {
    pointer-events: auto;
    opacity: 1;
    transform: translateX(25vw);
  }

  .hamburger_nav {
    text-align: center;
    height: 60vh;
    overflow: auto;
  }

  body.is-active {
    height: 100%;
    overflow: hidden;
  }

  .ham_nav_inner {
    padding: 3rem;
  }

  .hamburger_nav ul {
    width: 170px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
  }

  .hamburger_nav li {
    list-style: none;
    margin: 0;
  }

  .ham_nav_link {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 18px;
    color: var(--green100);
  }

  .ham_nav_recruit {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    background: var(--orange80);
    font-size: 2rem;
    font-weight: bold;
    padding: 1.6rem 3rem;
    color: #fff;
  }
}




/* =============================
ファーストビュー
============================= */
.k-firstview {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #F9FAE2 0%, #fff 60%);
}

.ks-fv-bg-full {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: url(../../img/konosaki/fv-bg-tb.png) no-repeat bottom center;
  background-size: 100%;
  z-index: 0;
  pointer-events: none;
  display: none;
}

.ks-fv-inner {
  max-width: 1920px;
  margin: auto;
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 560px;
  overflow: hidden;
}

/* 左パネル背景装飾（PCのみ） */
.ks-fv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../img/konosaki/fv-bg-deco.png) no-repeat left bottom / contain;
  z-index: 0;
  pointer-events: none;
}

/* 左：テキストエリア */
.ks-fv-left {
  width: 42%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 6rem 4rem 12rem;
}

.ks-fv-catch {
  color: var(--green100);
  font-weight: bold;
  font-size: 5rem;
  letter-spacing: 0.15em;
  line-height: 1.8;
  margin-bottom: 3.2rem;
  position: relative;
  z-index: 2;
}

.ks-fv-logo-img {
  position: relative;
  z-index: 2;
  display: block;
  width: 500px;
  height: auto;
}

/* 右：写真エリア（葉っぱ配置の基準） */
.ks-fv-right {
  width: 58%;
  position: relative;
  z-index: 1;
}

/* 写真と角丸クリップを担当する内側の箱 */
.ks-fv-photo-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0 0 0 60px;
}

.ks-fv-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ks-fv-en {
  position: absolute;
  bottom: 4%;
  right: 9%;
  font-family: "Sen", sans-serif;
  font-weight: 900;
  color: #78C94D;
  mix-blend-mode: multiply;
  letter-spacing: 0.05em;
  line-height: 1;
  z-index: 2;
  font-size: 13rem;
}

/* 右端の葉っぱ装飾（PCのみ表示） */
.ks-fv-corner {
  position: absolute;
  bottom: -80px;
  right: 0;
  width: 90px;
  height: auto;
  z-index: 3;
  pointer-events: none;
}

/* 採用情報タブ */
.ks-fv-recruit {
  position: absolute;
  top: 22%;
  right: 0;
  background: var(--orange80);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 80px;
  padding: 1.6rem 0.8rem;
  border-radius: 12px 0 0 12px;
  text-align: center;
  transition: 0.2s;
  z-index: 3;
}

.ks-fv-recruit:hover {
  opacity: 0.85;
}

.ks-fv-recruit-en {
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-family: "Sen";
}

.ks-fv-recruit-ja {
  font-size: 1.5rem;
  font-weight: bold;
  writing-mode: vertical-rl;
}

.ks-fv-recruit-arrow {
  font-size: 1.4rem;
}

.ks-fv-right-leaf {
  display: none;
}


@media screen and (min-width: 1921px) {
  .ks-fv-inner {
    max-width: none;
    height: 1000px;
  }

  .ks-fv-left {
    width: calc(1920px * 0.42);
    flex-shrink: 0;
  }

  .ks-fv-right {
    width: auto;
    flex-grow: 1;
  }
}

@media screen and (max-width: 1500px) {
  .ks-fv-left {
    padding: 4rem 4rem 4rem 6rem;
  }

  .ks-fv-catch {
    font-size: 4rem;
  }

  .ks-fv-en {
    font-size: 9rem;
    right: 2%;
  }
}

@media screen and (max-width: 1100px) {

  .ks-fv-bg {
    background: url(../../img/konosaki/fv-bg-deco02.png) no-repeat left bottom / contain;
  }

  .ks-fv-left {
    padding: 4rem 3rem;
    width: 36%;
  }

  .ks-fv-catch {
    font-size: 3rem;
  }

  .ks-fv-logo-img {
    width: 50vw;
  }

  .ks-fv-right {
    width: 64%;
  }

  .ks-fv-en {
    font-size: 7rem;
  }
}

@media screen and (max-width: 768px) {
  .k-firstview {
    padding-top: 60px;
  }

  .ks-fv-corner {
    display: none;
  }

  .ks-fv-inner {
    flex-direction: column;
    min-height: auto;
    overflow: visible;
  }

  .ks-fv-bg {
    display: none;
  }

  .ks-fv-bg-full {
    margin-top: 20vw;
    display: block;
  }

  .ks-fv-left {
    order: 2;
    width: 100%;
    padding: 3.2rem 2rem;
    align-items: flex-start;
  }

  /* 写真エリアが上 */
  .ks-fv-right {
    order: 1;
    width: calc(100% - 2rem);
    margin-left: 2rem;
    height: auto;
  }

  .ks-fv-photo-wrap {
    border-radius: 0 0 0 30px;
  }

  .ks-fv-right-leaf {
    display: block;
    position: absolute;
    bottom: -60px;
    right: 0;
    width: 80px;
    height: auto;
    z-index: 4;
    pointer-events: none;
  }

  .ks-fv-en {
    font-size: 6.6rem;
    bottom: 6%;
  }

  .ks-fv-catch {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  .ks-fv-logo-img {
    width: 60vw;
  }
}

@media screen and (max-width: 450px) {
  .ks-fv-bg-full {
    background: url(../../img/konosaki/fv-bg-sp.png) no-repeat bottom center;
    background-size: 100%;
  }

  .ks-fv-en {
    font-size: 4.6rem;
    bottom: 4%;
  }

  .ks-fv-catch {
    font-size: 2.5rem;
  }

  .ks-fv-logo-img {
    width: 70vw;
  }

  .ks-fv-right-leaf {
    bottom: -32px;
    width: 50px;
  }
}



/* =============================
採用募集バナー
============================= */
.ks-bnr {
  padding: 15rem 0 0;
}

.ks-bnr__link {
  display: block;
  position: relative;
  background: linear-gradient(90deg, #FF7D43 0%, #FFAE89 100%);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 2.0rem 3.8rem;
  /* height: 16rem; */
  text-align: center;
  transition: 0.2s;
  overflow: visible;
}

.ks-bnr__link:hover {
  opacity: 0.9;
}

.ks-bnr__illust {
  position: absolute;
  bottom: 0;
  height: auto;
  width: 16rem;
  z-index: 2;
}

.ks-bnr__illust--left {
  left: 0;
}

.ks-bnr__illust--right {
  right: 0;
}

.ks-bnr__catch {
  color: #fff;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.ks-bnr__catch-big {
  font-size: 5rem;
}

.ks-bnr__sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  color: #F9FAE2;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 0;
  position: relative;
  z-index: 1;
  width: 100%;
}

.ks-bnr__sub-line {
  flex: 1 1 auto;
  height: 2px;
  background: #F9FAE2;
  min-width: 0;
}


@media screen and (max-width: 1500px) {

  .ks-bnr__link {
    max-width: 900px;
    margin: 0 auto;
  }

  .ks-bnr__catch {
    font-size: 2.8rem;
  }

  .ks-bnr__catch-big {
    font-size: 4rem;
  }

  .ks-bnr__illust {
    width: 13rem;
  }
}

@media screen and (max-width: 1100px) {

  .ks-bnr__link {
    max-width: 800px;
  }

  .ks-bnr {
    padding: 12rem 0 0;
  }

  .ks-bnr__catch {
    font-size: 2.2rem;
  }

  .ks-bnr__catch-big {
    font-size: 3rem;
  }

  .ks-bnr__illust {
    width: 11rem;
  }

  .ks-bnr__sub {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 768px) {

  .ks-bnr__link {
    max-width: 480px;
  }

  .ks-bnr__catch {
    font-size: 1.8rem;
  }

  .ks-bnr__catch-big {
    font-size: 2.4rem;
  }

  .ks-bnr__illust {
    width: 8rem;
  }

  .ks-bnr__sub {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 450px) {

  .ks-bnr {
    padding: 8rem 0 0;
  }

  .ks-bnr__link {
    max-width: 320px;
    padding: 3rem 2rem;
  }

  .ks-bnr__catch {
    line-height: 1.4;
  }

  .ks-bnr__catch-big {
    font-size: 2.2rem;
  }

  .ks-bnr__sub {
    line-height: 1.4;
    margin-top: 2rem;
  }

  .ks-bnr__illust {
    width: 7rem;
  }
}



/* =============================
アンカーナビ
============================= */
.ks-anchor-nav {
  padding: 14rem 0;
}

.ks-anchor-nav__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 3rem;
  list-style: none;
}

.ks-anchor-nav__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--green40);
  border-radius: 50px;
  padding: 1.4rem 2.4rem;
  font-size: 2rem;
  font-weight: bold;
  color: var(--green100);
  transition: 0.2s;
  box-shadow: var(--shadow);
  height: 100%;
}

.ks-anchor-nav__list a:hover {
  opacity: 0.9;
}

.ks-anchor-nav__arrow {
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../../img/konosaki/arrow_forward.svg) no-repeat center / contain;
  flex-shrink: 0;
}


@media screen and (max-width: 1100px) {

  .ks-anchor-nav {
    padding: 10rem 0;
  }

  .ks-anchor-nav__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .ks-anchor-nav__list a {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 768px) {

  .ks-anchor-nav {
    padding: 8rem 0;
  }

  .ks-anchor-nav__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2rem;
  }

  .ks-anchor-nav__list a {
    font-size: 1.6rem;
    padding: 1.4rem 2.0rem;
  }
}

@media screen and (max-width: 450px) {

  .ks-anchor-nav__list {
    gap: 1.2rem 1.2rem;
  }

  .ks-anchor-nav {
    padding: 6rem 0;
  }

  .ks-anchor-nav__list a {
    font-size: 1.5rem;
    line-height: 1.4;
    padding: 1.0rem 2.0rem;
  }

  .ks-anchor-nav__arrow {
    width: 1.4rem;
    height: 1.4rem;
  }
}



/* =============================
是咲ケア+の想い
============================= */
.ks-philosophy {
  position: relative;
}

.ks-philosophy__inner {
  background: linear-gradient(90deg, #FAF4E2 0%, #FFFEE3 100%);
  padding: 10rem 0;
}

.ks-philosophy__row {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.ks-philosophy__logo {
  flex-shrink: 0;
  width: 280px;
}

.ks-philosophy__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.ks-philosophy__txt .section-title {
  margin-bottom: 2rem;
}

.ks-philosophy__txt-body {
  font-size: 1.6rem;
  line-height: 2;
  color: var(--black);
}

/* 上下にはみ出す葉っぱ装飾 */
.ks-philosophy__leaf {
  position: absolute;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.ks-philosophy__leaf--top {
  width: 90px;
  top: -40px;
  left: 16%;
}

.ks-philosophy__leaf--bottom {
  width: 176px;
  bottom: -90px;
  right: 6%;
}


@media screen and (max-width: 1100px) {

  .ks-philosophy__inner {
    padding: 8rem 0;
  }

  .ks-philosophy__leaf--top {
    width: 80px;
    top: -30px;
    left: 8%;
  }

  .ks-philosophy__leaf--bottom {
    width: 140px;
    bottom: -70px;
  }

  .ks-philosophy__row {
    gap: 4rem;
  }

  .ks-philosophy__logo {
    width: 220px;
  }
}

@media screen and (max-width: 768px) {

  .ks-philosophy__leaf--bottom {
    width: 110px;
    bottom: -60px;
  }

  .ks-philosophy__inner {
    padding: 4rem 0 6rem;
  }

  .ks-philosophy__row {
    gap: 3rem;
    flex-direction: column;
  }
}

@media screen and (max-width: 450px) {

  .ks-philosophy__inner {
    padding: 3rem 0 4rem;
  }

  .ks-philosophy__leaf--top {
    width: 60px;
    top: -20px;
  }

  .ks-philosophy__leaf--bottom {
    width: 90px;
    bottom: -50px;
  }

  .ks-philosophy__row {
    gap: 2rem;
  }

  .ks-philosophy__logo {
    width: 200px;
  }
}



/* =============================
理念・Mission・行動指針
============================= */
.ks-rinen {
  position: relative;
  padding: 10rem 0 0;
}

.ks-rinen__clover {
  position: absolute;
  top: 32%;
  left: 4%;
  width: 90px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.ks-rinen__subtitle {
  color: var(--green80);
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}

/* 理念ボックス */
.ks-rinen__box {
  background: linear-gradient(90deg, #EEF7E9 0%, #F9FAE2 100%);
  border-radius: 100px;
  text-align: center;
  padding: 2.8rem 2rem;
  max-width: 800px;
  margin: 0 auto 6rem;
  box-shadow: var(--shadow);
}

.ks-rinen__box--title {
  font-size: 4rem;
  font-weight: bold;
  color: var(--green100);
  letter-spacing: 0.1em;
}

/* Mission */
.ks-rinen__mission {
  text-align: center;
  margin-bottom: 6rem;
}

.ks-rinen__mission--title {
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--green100);
  margin-top: 0.8rem;
}

/* 行動指針 */
.ks-rinen__shishin--list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 7rem;
  margin-top: 3rem;
}

.ks-rinen__shishin--item-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  font-weight: bold;
  color: var(--green100);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  background-image: radial-gradient(circle, #ABD894 2px, transparent 2px);
  background-size: 8px 4px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

.ks-rinen__shishin--item-title span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--green60);
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  font-family: "Sen", sans-serif;
  border-radius: 8px;
  flex-shrink: 0;
  line-height: 1;
  padding-left: 0.1rem;
}

.ks-rinen__shishin--item p {
  font-size: 1.6rem;
  line-height: 1.9;
  color: var(--black);
}


@media screen and (max-width: 1500px) {

  .ks-rinen__box--title {
    font-size: 3.6rem;
  }

  .ks-rinen__shishin--list {
    gap: 4rem 5rem;
  }
}

@media screen and (max-width: 1100px) {

  .ks-rinen__box {
    margin: 0 auto 5rem;
  }

  .ks-rinen__subtitle {
    font-size: 2.2rem;
  }

  .ks-rinen__box--title {
    font-size: 3.2rem;
  }

  .ks-rinen__shishin--list {
    gap: 4rem;
  }
}

@media screen and (max-width: 768px) {

  .ks-rinen {
    padding: 8rem 0 0;
  }

  .ks-rinen__clover {
    display: none;
  }

  .ks-rinen__box {
    margin: 0 auto 4rem;
  }

  .ks-rinen__subtitle {
    font-size: 2.0rem;
  }

  .ks-rinen__box--title {
    font-size: 2.4rem;
  }

  .ks-rinen__mission--title {
    font-size: 2.2rem;
  }

  .ks-rinen__mission {
    margin-bottom: 4rem;
  }

  .ks-rinen__shishin--list {
    gap: 3rem;
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
  }
}

@media screen and (max-width: 450px) {

  .ks-rinen {
    padding: 6rem 0 0;
  }

  .ks-rinen__box {
    padding: 2.0rem 2rem;
    margin: 0 auto 3rem;
  }

  .ks-rinen__box--title {
    font-size: 2.2rem;
  }

  .ks-rinen__mission {
    margin-bottom: 3rem;
  }

  .ks-rinen__mission--title {
    margin-top: 0.2rem;
  }

  .ks-rinen__shishin--list {
    margin-top: 1.6rem;
  }

  .ks-rinen__shishin--item-title span {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 2.0rem;
  }

  .ks-rinen__shishin--item-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    gap: 0.8rem;
  }
}



/* =============================
管理者ごあいさつ
============================= */
.ks-message {
  padding: 14rem 0 13rem;
  position: relative;
}

.ks-message__wrap {
  display: flex;
  align-items: center;
}

.ks-message__photo {
  flex-shrink: 0;
  width: 350px;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  z-index: 2;
  margin-right: -16rem;
}

.ks-message__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ks-message__card {
  flex-grow: 1;
  background: linear-gradient(180deg, #F9FAE2 0%, #EEF7E9 100%);
  border-radius: 20px;
  padding: 5rem 4.8rem 5rem 22rem;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow);
}

.ks-message__name {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 2rem 0;
}

.ks-message__name span {
  font-size: 1.6rem;
  font-weight: bold;
  margin-right: 1.6rem;
}

.ks-message__txt {
  font-size: 1.6rem;
  line-height: 1.9;
}

.ks-message__clover {
  position: absolute;
  bottom: 60px;
  right: 100px;
  width: 110px;
  height: auto;
  z-index: 3;
  pointer-events: none;
}


@media screen and (max-width: 1100px) {

  .ks-message {
    padding: 12rem 0 11rem;
  }

  .ks-message__card {
    padding: 5rem 4rem 5rem 19rem;
  }

  .ks-message__photo {
    width: 260px;
  }

  .ks-message__name {
    margin: 1.6rem 0;
  }

  .ks-message__clover {
    right: 80px;
    width: 90px;
  }
}

@media screen and (max-width: 768px) {

  .ks-message {
    padding: 8rem 0 9rem;
  }

  .ks-message__wrap {
    flex-direction: column;
  }

  .ks-message__card {
    padding: 13rem 3rem 4rem;
  }

  .ks-message__photo {
    margin: 0 auto -100px;
  }

  .ks-message__clover {
    right: 50px;
    bottom: 50px;
    width: 80px;
  }
}

@media screen and (max-width: 450px) {

  .ks-message {
    padding: 6rem 0 7rem;
  }

  .ks-message__card {
    padding: 12rem 3rem 4rem;
  }

  .ks-message__photo {
    width: 200px;
  }

  .ks-message__name {
    margin: 1.2rem 0;
    font-size: 2.0rem;
  }

  .ks-message__name span {
    font-size: 1.4rem;
    margin-right: 1.2rem;
  }

  .ks-message__clover {
    right: 40px;
    bottom: 30px;
    width: 60px;
  }
}



/* =============================
お悩みチェック
============================= */
.ks-worries {
  position: relative;
}

.ks-worries__gray {
  background: var(--gray20);
  padding: 8rem 0 7rem;
  position: relative;
}

.ks-worries__head {
  position: relative;
  text-align: center;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
  background-image: radial-gradient(circle, var(--green60) 2px, transparent 2px);
  background-size: 8px 4px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

.ks-worries__icon {
  position: absolute;
  bottom: 4px;
  width: 160px;
  height: auto;
}

.ks-worries__icon--left {
  left: 120px;
}

.ks-worries__icon--right {
  right: 120px;
}

.ks-worries__lead {
  font-size: 2rem;
  font-weight: 600;
}

.ks-worries__title {
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--green100);
}

.ks-worries__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin: 0 auto;
}

.ks-worries__list {
  list-style: none;
}

.ks-worries__list li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
}

.ks-worries__list li+li {
  margin-top: 1.2rem;
}

.ks-worries__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green60);
}

.ks-worries__strong {
  color: var(--orange80);
  font-weight: bold;
}

/* 下向き三角の区切り（吹き出しの先端） */
.ks-worries__triangle {
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 46px solid var(--gray20);
}

/* 「訪問介護の是咲ケア+にご相談ください」 */
.ks-worries__catch {
  text-align: center;
  margin: 5rem 0 0;
}

.ks-worries__catch span {
  display: inline;
  position: relative;
  font-size: 3.2rem;
  font-weight: bold;
  color: var(--green80);
  padding: 0 0.6rem;
  background: linear-gradient(#EFF2C0, #EFF2C0) no-repeat;
  background-size: 100% 1.6rem;
  background-position: 0 110%;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}


@media screen and (max-width: 1500px) {

  .ks-worries__gray {
    padding: 6rem 0 5rem;
  }

  .ks-worries__icon {
    width: 140px;
  }

  .ks-worries__cols {
    gap: 3rem;
  }

  .ks-worries__list li {
    font-size: 1.8rem;
  }

  .ks-worries__catch span {
    font-size: 3.0rem;
  }
}

@media screen and (max-width: 1100px) {

  .ks-worries__gray {
    padding: 4rem 0 4rem;
  }

  .ks-worries__triangle {
    bottom: -35px;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 36px solid var(--gray20);
  }

  .ks-worries__title {
    font-size: 2.6rem;
  }

  .ks-worries__icon {
    width: 120px;
  }

  .ks-worries__icon--left {
    left: 20px;
  }

  .ks-worries__icon--right {
    right: 20px;
  }

  .ks-worries__catch {
    margin: 4rem 0 0;
  }

  .ks-worries__catch span {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 768px) {

  .ks-worries .container {
    padding: 0 2rem;
    max-width: 520px;
  }

  .ks-worries__title {
    font-size: 2.6rem;
    line-height: 1.4;
  }

  .ks-worries__cols {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .ks-worries__list li+li {
    margin-top: 1.0rem;
  }

  .ks-worries__list li::before {
    top: 1.0rem;
  }

  .ks-worries__icon {
    width: 94px;
  }

  .ks-worries__icon--left {
    left: 0;
  }

  .ks-worries__icon--right {
    right: 0;
  }

  .ks-worries__catch span {
    line-height: 1.4;
  }

  .ks-worries__catch span::before {
    bottom: 0.2rem;
    height: 1.0rem;
  }
}

@media screen and (max-width: 450px) {

  .ks-worries__gray {
    padding: 3rem 0 3rem;
  }

  .ks-worries__triangle {
    bottom: -25px;
    border-left: 24px solid transparent;
    border-right: 24px solid transparent;
    border-top: 26px solid var(--gray20);
  }

  .ks-worries__head {
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }

  .ks-worries__lead {
    font-size: 1.8rem;
  }

  .ks-worries__title {
    font-size: 2.1rem;
  }

  .ks-worries__icon {
    width: 70px;
  }

  .ks-worries__list li {
    font-size: 1.6rem;
  }

  .ks-worries__list li::before {
    top: 0.85rem;
  }

  .ks-worries__catch {
    margin: 3rem 0 0;
  }

  .ks-worries__catch span {
    font-size: 2.2rem;
    background: linear-gradient(#EFF2C0, #EFF2C0) no-repeat;
    background-size: 100% 1.6rem;
    background-position: 0 130%;
  }
}



/* =============================
訪問介護とは
============================= */
.ks-homecare {
  position: relative;
  padding: 14rem 0 12rem;
  background: url(../../img/konosaki/homecare-lines.png) no-repeat center;
  background-size: 100% 100%;
}

.ks-homecare__row {
  z-index: 1;
}

.ks-homecare__card {
  position: relative;
  max-width: 790px;
  margin: 0 auto;
  background: linear-gradient(135deg, #EEF7E9 0%, #F9FAE2 100%);
  border-radius: 20px;
  padding: 5rem 6rem;
  z-index: 10;
  box-shadow: var(--shadow);
}

.ks-homecare__leaf {
  position: absolute;
  top: 80px;
  left: calc(50% - 390px - 70px);
  width: 140px;
  height: auto;
  z-index: 1;
}

.ks-homecare__txt {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 2.4rem;
}

.ks-homecare__photo {
  position: absolute;
  bottom: 50px;
  right: 0;
  width: 50%;
  z-index: 1;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}

.ks-homecare__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


@media screen and (max-width: 1100px) {

  .ks-homecare {
    padding: 10rem 0 16rem;
  }

  .ks-homecare__leaf {
    top: 40px;
    left: 10px;
    width: 120px;
  }

  .ks-homecare__card {
    padding: 4rem 5rem;
  }

  .ks-homecare__photo {
    bottom: 0;
    width: 70%;
  }
}

@media screen and (max-width: 768px) {

  .ks-homecare {
    padding: 8rem 0 20vw;
  }

  .ks-homecare__leaf {
    width: 80px;
  }

  .ks-homecare__card {
    padding: 4rem 3rem;
  }

  .ks-homecare__photo {
    width: 80%;
  }
}

@media screen and (max-width: 450px) {

  .ks-homecare {
    padding: 6rem 0 22vw;
  }

  .ks-homecare {
    background: none;
  }

  .ks-homecare__leaf {
    width: 60px;
    top: 30px;
    left: 5px;
  }

  .ks-homecare__card {
    padding: 3rem;
  }
}



/* =============================
是咲ケア＋でできること
============================= */
.ks-service {
  padding: 9rem 0 12rem;
}

.ks-service__lead {
  font-size: 1.8rem;
  line-height: 1.9;
  max-width: 990px;
  margin: 0 auto 4rem;
}

.ks-service__box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ks-service__box+.ks-service__box {
  margin-top: 4rem;
}

.ks-service__box-title {
  background: var(--green80);
  color: #fff;
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  padding: 1rem;
}

.ks-service__box--jihi .ks-service__box-title {
  background: var(--green60);
}

.ks-service__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #EAF8E9;
  padding: 3.2rem 4rem;
  row-gap: 2.4rem;
  gap: 2.4rem 3.5rem;
}

.ks-service__box--jihi .ks-service__list {
  background: #F9FAE2;
}

.ks-service__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ks-service__list li:nth-child(-n+3) {
  padding-bottom: 2.4rem;
  background-image: radial-gradient(circle, #9CD39A 2px, transparent 2px);
  background-size: 8px 4px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

.ks-service__box--jihi .ks-service__list li:nth-child(-n+3) {
  background-image: radial-gradient(circle, #E2E88F 2px, transparent 2px);
}

.ks-service__list img {
  width: 120px;
  height: auto;
  flex-shrink: 0;
}

.ks-service__list p {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
}


@media screen and (max-width: 1500px) {

  .ks-service__box-title {
    font-size: 2.6rem;
  }

  .ks-service__list img {
    width: 100px;
  }
}

@media screen and (max-width: 1100px) {

  .ks-service {
    padding: 9rem 0 10rem;
  }

  .ks-service__box-title {
    font-size: 2.4rem;
  }

  .ks-service__list {
    grid-template-columns: repeat(2, 1fr);
    padding: 3rem 6rem;
  }

  .ks-service__list li:nth-child(-n+3) {
    background-image: none;
    padding-bottom: 0;
  }

  .ks-service__list li:not(:nth-last-child(-n+2)) {
    padding-bottom: 2.4rem;
    background-image: radial-gradient(circle, #9CD39A 2px, transparent 2px);
    background-size: 8px 4px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }

  .ks-service__box--jihi .ks-service__list li:nth-child(-n+3) {
    background-image: none;
  }

  .ks-service__box--jihi .ks-service__list li:not(:nth-last-child(-n+2)) {
    padding-bottom: 2.4rem;
    background-image: radial-gradient(circle, #E2E88F 2px, transparent 2px);
  }
}

@media screen and (max-width: 768px) {

  .ks-service {
    padding: 8rem 0 7rem;
  }

  .ks-service__box-title {
    font-size: 2.0rem;
  }

  .ks-service__list {
    padding: 3rem 3rem;
    gap: 2.4rem 3rem;
  }

  .ks-service__list li {
    flex-direction: column;
  }

  .ks-service__list p {
    font-size: 1.8rem;
  }

  .ks-service__box+.ks-service__box {
    margin-top: 3rem;
  }
}

@media screen and (max-width: 450px) {

  .ks-service {
    padding: 8rem 0 6rem;
  }

  .ks-service__lead {
    margin: 0 auto 3rem;
  }

  .ks-service__list {
    grid-template-columns: repeat(1, 1fr);
    padding: 2rem 3rem;
    gap: 2rem 4rem;
  }

  .ks-service__list li {
    flex-direction: row;
    gap: 2rem;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .ks-service__list li:nth-child(-n+3),
  .ks-service__list li:not(:nth-last-child(-n+2)) {
    background-image: none;
    padding-bottom: 0;
  }

  .ks-service__list li:not(:last-child) {
    padding-bottom: 2rem;
    background-image: radial-gradient(circle, #9CD39A 2px, transparent 2px);
    background-size: 8px 4px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }

  .ks-service__box--jihi .ks-service__list li:not(:last-child) {
    background-image: radial-gradient(circle, #E2E88F 2px, transparent 2px);
  }

  .ks-service__list img {
    width: 80px;
  }

  .ks-service__list p {
    font-size: 1.6rem;
  }
}



/* =============================
対象の方
============================= */
.ks-eligible__row {
  display: flex;
  align-items: stretch;
}

.ks-eligible__photo {
  width: 42%;
  flex-shrink: 0;
}

.ks-eligible__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ks-eligible__txt {
  position: relative;
  flex-grow: 1;
  background: linear-gradient(90deg, #EAF8E9 0%, #F9FAE2 100%);
  overflow: hidden;
}

.ks-eligible__inner {
  padding: 8.8rem 0 8rem 12rem;
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.ks-eligible__item {
  margin-top: 2.2rem;
  padding-bottom: 2.2rem;
}

.ks-eligible__item--kaigo {
  background-image: radial-gradient(circle, #ABD894 2px, transparent 2px);
  background-size: 8px 4px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

.ks-eligible__item:first-of-type {
  margin-top: 4rem;
}

.ks-eligible__item:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}

.ks-eligible__tag {
  display: inline-block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0.1rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  width: 140px;
  text-align: center;
}

.ks-eligible__item--kaigo .ks-eligible__tag {
  background: var(--green80);
}

.ks-eligible__item--jihi .ks-eligible__tag {
  background: var(--green60);
}

.ks-eligible__item-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.ks-eligible__item-txt {
  font-size: 1.6rem;
  line-height: 1.9;
}

.ks-eligible__clover {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  width: 146px;
  height: auto;
  z-index: 0;
}


@media screen and (max-width: 1500px) {

  .ks-eligible__inner {
    padding: 6rem 4rem;
  }

  .ks-eligible__photo {
    width: 40%;
  }

  .ks-eligible__clover {
    bottom: 1rem;
    width: 100px;
  }
}

@media screen and (max-width: 1100px) {

  .ks-eligible__row {
    flex-direction: column;
  }

  .ks-eligible__inner {
    padding: 6rem 4rem 9rem;
    max-width: none;
  }

  .ks-eligible__photo {
    width: 42%;
    margin: 0 auto -100px;
    z-index: 10;
  }
}

@media screen and (max-width: 768px) {

  .ks-eligible__inner {
    padding: 12rem 4rem 9rem;
  }

  .ks-eligible__photo {
    width: 60%;
  }

  .ks-eligible__item:first-of-type {
    margin-top: 2rem;
  }

  .ks-eligible__item-title {
    font-size: 2.0rem;
  }
}

@media screen and (max-width: 450px) {

  .ks-eligible__inner {
    padding: 11rem 4rem 6rem;
  }

  .ks-eligible__item-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .ks-eligible__tag {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
  }

  .ks-eligible__clover {
    width: 80px;
  }
}



/* =============================
是咲ケア＋の特徴
============================= */
.ks-feature {
  padding: 12rem 0 0;
}

.ks-feature__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ks-feature__list li {
  display: flex;
  align-items: center;
  background: var(--green20);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ks-feature__txt {
  flex-grow: 1;
  padding: 3.5rem 4rem 3.2rem;
}

.ks-feature__title {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--green100);
  margin-bottom: 1.2rem;
}

.ks-feature__no {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: var(--green60);
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  font-family: "Sen", sans-serif;
  border-radius: 10px;
  flex-shrink: 0;
  padding-left: 0.1rem;
}

.ks-feature__body {
  font-size: 1.6rem;
  line-height: 1.9;
}

.ks-feature__photo {
  width: 240px;
  align-self: stretch;
  flex-shrink: 0;
  margin: 0;
  border-radius: 0 16px 16px 0;
  overflow: hidden;
}

.ks-feature__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


@media screen and (max-width: 1500px) {

  .ks-feature__photo {
    width: 300px;
  }
}

@media screen and (max-width: 1100px) {

  .ks-feature {
    padding: 8rem 0 0;
  }

  .ks-feature__list li {
    flex-direction: column;
    align-items: stretch;
  }

  .ks-feature__list li .ks-feature__photo {
    width: 100%;
    order: -1;
    height: 200px;
    border-radius: 16px 16px 0 0;
  }

  .ks-feature__no {
    width: 3.6rem;
    height: 3.6rem;
    font-size: 2.4rem;
  }

  .ks-feature__title {
    font-size: 2.0rem;
  }
}

@media screen and (max-width: 768px) {

  .ks-feature {
    padding: 7rem 0 0;
  }

  .ks-feature__txt {
    padding: 3rem;
  }
}

@media screen and (max-width: 450px) {

  .ks-feature {
    padding: 6rem 0 0;
  }

  .ks-feature__title {
    font-size: 1.8rem;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .ks-feature__no {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 2rem;
  }
}



/* =============================
スタッフ紹介
============================= */
.ks-staff {
  position: relative;
  padding: 14rem 0 0;
}

.ks-staff__leaf {
  position: absolute;
  bottom: 2rem;
  left: 20%;
  width: 120px;
  height: auto;
  z-index: 0;
}

.ks-staff__clover {
  position: absolute;
  top: 18rem;
  right: 12%;
  width: 114px;
  height: auto;
  z-index: 0;
}

.ks-staff .container {
  position: relative;
}

.swiper01-item {
  padding: 2rem 1rem;
  margin: 1.4rem 1rem;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  height: 80px;
  width: 80px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 80px;
  margin: auto;
  width: 80px;
}

.swiper-button-prev {
  left: -30px;
}

.swiper-button-prev::after {
  background: url(../../img/konosaki/swiper-prev.png);
}

.swiper-button-next {
  right: -30px;
}

.swiper-button-next::after {
  background: url(../../img/konosaki/swiper-next.png);
}

.ks-staff__photo {
  position: relative;
  cursor: default;
  margin-bottom: 1.6rem;
  border-radius: 20px;
  overflow: hidden;
}

.ks-staff__photo img {
  width: 100%;
  display: block;
}

.ks-staff__comingsoon {
  border-radius: 20px;
  overflow: hidden;
}

.ks-staff__comingsoon img {
  width: 100%;
  display: block;
}

.ks-staff__info {
  display: block;
  padding-left: 1.4rem;
  border-left: 2px solid var(--green60);
}

.ks-staff__position {
  display: block;
  font-size: 1.6rem;
}

.ks-staff__name {
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
}

.ks-staff__accent {
  color: var(--green60);
}

.ks-staff__yomi {
  font-size: 1.6rem;
  font-weight: normal;
  font-family: "Sen", sans-serif;
  margin-left: 1rem;
}


@media screen and (max-width: 1500px) {

  .ks-staff__clover {
    right: 4%;
  }

  .ks-staff__leaf {
    left: 2%;
  }
}

@media screen and (max-width: 1100px) {

  .ks-staff {
    padding: 10rem 0 0;
  }

  .ks-staff__clover {
    top: 11rem;
  }

  .ks-staff__leaf {
    bottom: 4rem;
  }
}

@media screen and (max-width: 768px) {

  .ks-staff {
    padding: 8rem 0 0;
  }

  .ks-staff__clover {
    width: 80px;
  }

  .ks-staff__leaf {
    bottom: 2rem;
    width: 100px;
  }

  .swiper01-item {
    padding: 0;
    margin: 1.4rem 1rem;
  }

  .swiper-button-prev {
    left: -10px;
  }

  .swiper-button-next {
    right: -10px;
  }

  .ks-staff__profiletxt.pc768 {
    display: none;
  }

  .ks-staff__profiletxt.sp768 {
    display: block;
    padding: 0.6rem 1rem;
    font-size: 1.3rem;
    gap: 0;
    height: 43%;
    top: auto;
    bottom: 0;
    border-radius: 0 0 20px 20px;
  }

  .ks-staff__position {
    font-size: 1.4rem;
  }

  .ks-staff__name {
    font-size: 2.2rem;
  }

  .ks-staff__yomi {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 450px) {

  .ks-staff {
    padding: 6rem 0 0;
  }

  .ks-staff__clover {
    width: 70px;
    top: 9rem;
  }

  .ks-staff__leaf {
    bottom: 3rem;
    width: 90px;
  }
}



/* =============================
対応エリア
============================= */
.ks-area {
  padding: 8rem 0 0;
}

.ks-area__wrap {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.ks-area__leaf {
  position: absolute;
  bottom: -8rem;
  right: -12rem;
  width: 284px;
  height: auto;
  z-index: 0;
}

.ks-area__card {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #EEF7E9 0%, #F9FAE2 100%);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 5rem 4rem 5rem 6rem;
  /* overflow: hidden; */
}

.ks-area__inner {
  position: relative;
  z-index: 1;
}

.ks-area__lead {
  font-size: 1.6rem;
  margin: 2.4rem 0 2rem;
}

.ks-area__tags {
  list-style: none;
  display: flex;
  gap: 0.8rem;
}

.ks-area__tags li {
  background: #fff;
  color: var(--orange80);
  font-weight: bold;
  font-size: 2rem;
  padding: 0.2rem 2rem;
  border-radius: 30px;
  width: 14rem;
  text-align: center;
}

.ks-area__map {
  position: relative;
  z-index: 1;
  width: 210px;
  flex-shrink: 0;
}

.ks-area__map img {
  width: 100%;
  height: auto;
  display: block;
}


@media screen and (max-width: 1100px) {

  .ks-area__card {
    padding: 5rem 3rem 5rem 4rem;
  }

  .ks-area__leaf {
    right: -2rem;
    width: 180px;
  }
}

@media screen and (max-width: 768px) {

  .ks-area {
    padding: 6rem 0 0;
  }

  .ks-area__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
    padding: 4rem 3rem 3rem;
    max-width: 500px;
    margin: 0 auto;
  }

  .ks-area__tags {
    justify-content: center;
  }

  .ks-area__tags li {
    font-size: 1.6rem;
    width: 11rem;
  }

  .ks-area__map {
    margin: 0 auto;
  }

  .ks-area__leaf {
    display: none;
  }
}

@media screen and (max-width: 450px) {

  .ks-area__tags {
    flex-direction: column;
  }

  .ks-area__tags li {
    width: 100%;
  }
}



/* =============================
サービス概要
============================= */
.ks-servicecontent {
  padding: 8rem 0 4rem;
}

.ks-servicecontent__lead {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.9;
  margin-bottom: 6rem;
}

.ks-servicecontent__block {
  border-radius: 20px;
  margin: 0 2rem;
  padding: 8rem 0;
}

.ks-servicecontent__block--kaigo {
  background: #EAF8E9;
}

.ks-servicecontent__block--jihi {
  background: #F9FAE2;
  margin-top: 2rem;
}

.ks-servicecontent__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ks-servicecontent__block-title {
  background: var(--green80);
  color: #fff;
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  padding: 0.2rem;
  border-radius: 50px;
  margin-bottom: 6rem;
}

.ks-servicecontent__block-title--jihi {
  background: var(--green60);
}

.ks-servicecontent__cols {
  display: flex;
  gap: 6rem;
}

.ks-servicecontent__left {
  flex: 1;
  min-width: 0;
}

.ks-servicecontent__right {
  width: 100%;
  max-width: 590px;
  flex-shrink: 0;
}

.ks-servicecontent__label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--green80);
  margin-bottom: 1.6rem;
}

.ks-servicecontent__label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: var(--orange80);
}

.ks-servicecontent__label--jihi::before {
  background: var(--orange80);
}

.ks-servicecontent__label:not(:first-child) {
  margin-top: 5rem;
}

.ks-servicecontent__txt {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.ks-servicecontent__note {
  font-size: 1.6rem;
  line-height: 1.6;
}

.ks-servicecontent__note span {
  display: block;
  font-size: 1.6rem;
  position: relative;
  padding-left: 1.6rem;
}

.ks-servicecontent__note span+span {
  margin-top: 1rem;
}

.ks-servicecontent__note span::before {
  position: absolute;
  content: "※";
  left: 0;
  top: 0;
}

/* 自費：利用料 価格表示 */
.ks-plan__price {
  display: flex;
  align-items: baseline;
}

.ks-plan__price-unit {
  font-size: 2rem;
}

.ks-plan__price-unit span {
  font-size: 36px;
  font-family: "Sen", sans-serif;
}

.ks-plan__price-num {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--orange80);
  margin-left: 2rem;
}

.ks-plan__price-num span {
  font-size: 4.4rem;
  font-family: "Sen", sans-serif;
}

.ks-plan__price-tax {
  font-size: 1.6rem;
  color: var(--orange80);
}

/* 自費：利用ケース */
.ks-plan__case {
  padding: 1.6rem 0;
}

.ks-plan__case:last-of-type {
  margin-bottom: 2rem;
}

.ks-plan__case-title {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  color: var(--green100);
  margin-bottom: 0.2rem;
}

.ks-plan__case-title::after {
  content: "";
  flex-grow: 1;
  border-bottom: 1px solid var(--green60);
}

.ks-plan__case-highlight {
  font-size: 2.2rem;
  font-weight: bold;
}

.ks-plan__case-highlight span {
  color: var(--orange80);
}

.ks-plan__case-txt {
  font-size: 1.6rem;
}

/* 自費：ダウンロードボタン */
.ks-plan__dl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  text-align: center;
  background: #ABD894;
  font-weight: bold;
  font-size: 1.8rem;
  padding: 2rem;
  border-radius: 50px;
  margin: 2rem 0;
  transition: 0.2s;
  line-height: 1.6;
}

.ks-plan__dl:hover {
  opacity: 0.8;
}

.ks-plan__dl-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

/* ご利用までの流れ */
.ks-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ks-flow__box {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 2rem 2rem 2.4rem;
}

.ks-flow__box-title {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1.6rem;
  text-align: center;
}

.ks-flow__box-txt {
  font-size: 1.6rem;
  line-height: 1.8;
}

.ks-servicecontent__block--jihi .ks-flow__box-txt {
  text-align: center;
}

.ks-flow__box-txt span {
  font-size: 1.5rem;
  position: relative;
  padding-left: 1.6rem;
}

.ks-flow__box-txt span::before {
  position: absolute;
  content: "※";
  left: 0px;
  top: -3px;
}

.ks-flow__box-highlight {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  color: var(--orange80);
  margin: 1.6rem 0 1.2rem;
}

.ks-flow__branch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}

.ks-flow__branch-item {
  background: var(--orange20);
  border-radius: 10px;
  padding: 1.6rem 2rem;
}

.ks-flow__branch-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--orange80);
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  text-align: center;
  border-bottom: 1px solid #FFAE89;
}

.ks-flow__branch-txt {
  font-size: 1.6rem;
  line-height: 1.4;
}

.ks-flow__branch-arrow {
  display: block;
  width: 18px;
  height: 16px;
  margin: 0.8rem auto;
  background: url(../../img/konosaki/flow-branch-arrow.svg) no-repeat center / contain;
}

.ks-flow__arrow {
  display: block;
  width: 28px;
  height: 24px;
  margin: 1rem auto;
  background: url(../../img/konosaki/flow-arrow.svg) no-repeat center / contain;
}

.ks-flow__pill {
  width: 100%;
  text-align: center;
  background: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  padding: 0.6rem;
  border-radius: 50px;
}

/* 自費：お問い合わせボックス */
.ks-flow__contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}

.ks-flow__contact-item {
  background: var(--gray20);
  border-radius: 10px;
  padding: 2.4rem 0 2.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.ks-flow__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  color: var(--orange80);
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0;
  border-radius: 0;
  margin-top: 2rem;
}

.ks-flow__contact-link-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
}

.ks-flow__contact-label {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--green100);
}

.ks-flow__contact-tel {
  display: block;
  font-size: 2.6rem;
  font-weight: bold;
  color: var(--orange80);
  font-family: "Sen", sans-serif;
}

.ks-flow__contact-note {
  font-size: 1.6rem;
  margin-top: -0.6rem;
}

@media screen and (max-width: 1500px) {
  .ks-servicecontent__lead {
    margin-bottom: 4rem;
  }

  .ks-servicecontent__block {
    padding: 6rem 0;
  }

  .ks-servicecontent__block-title {
    font-size: 2.6rem;
  }

  .ks-servicecontent__cols {
    gap: 4rem;
  }

  .ks-servicecontent__txt {
    font-size: 2.0rem;
  }

  .ks-servicecontent__right {
    max-width: 560px;
  }
}

@media screen and (max-width: 1100px) {
  .ks-servicecontent__block {
    padding: 4rem 0;
  }

  .ks-servicecontent__block-title {
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }

  .ks-servicecontent__cols {
    gap: 3rem;
  }

  .ks-servicecontent__label {
    font-size: 2.2rem;
    margin-bottom: 1.0rem;
  }

  .ks-servicecontent__txt {
    font-size: 1.8rem;
  }

  .ks-servicecontent__right {
    max-width: 360px;
  }

  .ks-flow__box-title {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
  }

  .ks-flow__branch {
    display: flex;
    flex-direction: column;
    gap: 1.0rem;
  }

  .ks-flow__pill {
    font-size: 1.8rem;
  }

  .ks-flow__contact {
    display: flex;
    flex-direction: column;
    gap: 1.0rem;
  }

  .ks-flow__contact-item {
    padding: 2rem 0;
  }

  .ks-flow__contact-link {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .ks-servicecontent__block {
    border-radius: 0;
    margin: 0;
  }

  .ks-servicecontent__block--jihi {
    margin-top: 0;
  }

  .ks-servicecontent__lead {
    text-align: left;
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .ks-servicecontent__block-title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }

  .ks-servicecontent__cols {
    gap: 2rem;
    flex-direction: column;
  }

  .ks-servicecontent__label {
    font-size: 2rem;
  }

  .ks-servicecontent__label:not(:first-child) {
    margin-top: 3rem;
  }

  .ks-servicecontent__right {
    max-width: none;
  }

  .ks-servicecontent__block--jihi .ks-flow__box-txt {
    text-align: left;
  }
}

@media screen and (max-width: 450px) {
  .ks-servicecontent {
    padding: 6rem 0 4rem;
  }

  .ks-servicecontent__block-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .ks-plan__dl {
    padding: 1rem;
  }

  .ks-plan__case {
    padding: 1rem 0;
  }

  .ks-plan__case:last-of-type {
    margin-bottom: 1rem;
  }

  .ks-plan__price-unit {
    font-size: 1.8rem;
  }

  .ks-plan__price-unit span {
    font-size: 32px;
  }

  .ks-plan__price-num {
    font-size: 2rem;
  }

  .ks-plan__price-num span {
    font-size: 4rem;
  }

  .ks-plan__case-title {
    gap: 1.0rem;
    font-size: 1.6rem;
  }

  .ks-plan__case-highlight {
    font-size: 2.0rem;
  }

  .ks-plan__case:last-of-type {
    margin-bottom: 0;
  }

  .ks-flow__pill {
    line-height: 1.4;
  }
}



/* =============================
お知らせ
============================= */
.ks-news {
  padding-block: 4rem;
}

.ks-news__item {
  padding: 1.6rem 1rem;
  border-bottom: #909090 1px solid;
}

.ks-news__item:first-child {
  border-top: #909090 1px solid;
}

.ks-news__date {
  font-family: Sen;
  font-size: 1.4rem;
  color: var(--green80);
  margin-bottom: 0.4rem;
}

.ks-news__link {
  color: #333;
  transition: .2s;
}

.ks-news__link:hover {
  color: var(--green80);
}

.ks-news__btn {
  text-align: center;
  margin-top: 40px;
}

.ks-news__btn-link {
  display: block;
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
  padding: 1.6rem;
  color: #333;
  background: #ABD894;
  border-radius: 40px;
  font-size: 1.8rem;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .ks-news {
    padding-block: 6rem 8rem;
  }

  .ks-news__list {
    margin-top: 4rem;
  }

  .ks-news__item {
    padding: 2rem;
  }

  .ks-news__date {
    margin-bottom: 0.2rem;
  }

  .ks-news__btn {
    margin-top: 6rem;
  }

  .ks-news__btn-link {
    max-width: 310px;
  }
}



/* =============================
資料ダウンロード
============================= */
.ks-material {
  padding: 6rem 0;
}

.ks-material__row {
  display: flex;
  gap: 4rem;
}

.ks-material__head {
  flex-shrink: 0;
  padding-right: 4rem;
  border-right: 2px solid var(--green60);
}

.ks-material__head .section-title {
  white-space: nowrap;
}

.ks-material__body {
  flex-grow: 1;
}

.ks-material__txt {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.ks-material__dl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: #ABD894;
  font-weight: bold;
  font-size: 1.8rem;
  padding: 1.6rem 4.6rem 1.6rem 6rem;
  border-radius: 50px;
  transition: 0.2s;
  max-width: 520px;
  text-align: center;
}

.ks-material__dl:hover {
  opacity: 0.8;
}

.ks-material__dl-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}


@media screen and (max-width: 1100px) {

  .ks-material__row {
    flex-direction: column;
    gap: 2.4rem;
  }

  .ks-material__head {
    padding-right: 0;
    border-right: 0;
    text-align: center;
    position: relative;
  }

  .ks-material__head .section-title {
    white-space: normal;
  }

  .ks-material__head::after {
    position: absolute;
    content: "";
    width: 40px;
    height: 2px;
    background: var(--green80);
    bottom: -1.6rem;
    left: 0;
    right: 0;
    margin: auto;
  }

  .ks-material__txt {
    margin-top: 2.4rem;
    text-align: center;
  }

  .ks-material__dl {
    padding: 1rem 2.4rem 1rem 5rem;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {

  .ks-material__txt {
    text-align: left;
  }

  .ks-material__dl {
    line-height: 1.4;
  }
}



/* =============================
お問い合わせ
============================= */
.ks-contact {
  padding: 8rem 0 10rem;
  background: #EEF7E9;
  background: linear-gradient(#F9FAE2 0%, #EEF7E9 100%);
}

.contact-topTxt {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-tel-info {
  text-align: center;
  margin-bottom: 8rem;
}

.info {
  font-size: 2.2rem;
  font-weight: bold;
}

.info span {
  font-size: 2.8rem;
  color: var(--orange80);
}

.contact-telLink {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 540px;
  padding: 1.4rem 0;
  background: var(--green60);
  border-radius: 100px;
  transition: 0.2s;
  margin: 0 auto 8rem;
}

.contact-telLink:hover {
  opacity: 0.7;
}

.contact-telLink span {
  display: inline-block;
  color: #fff;
  font-size: 6rem;
  font-weight: bold;
  font-family: Sen;
}

.contact-mail-info {
  text-align: center;
  margin-bottom: 2rem;
}

.form-content {
  max-width: 1110px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 5rem 9.5rem;
}

.form-title {
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--green60);
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--green60);
  text-align: center;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.contact-form dt,
.contact-form dd {
  border-bottom: 1px solid #909090;
  padding: 1.6rem 0;
}

.contact-form dt:last-of-type,
.contact-form dd:last-of-type {
  border-bottom: 0;
}

.contact-form dt {
  width: 30%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--gray80);
  padding-right: 3rem;
}

.contact-form dt:last-of-type {
  align-items: flex-start;
}

.contact-form dd {
  width: 70%;
}

.required {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  background: var(--orange80);
  border-radius: 20px;
  padding: 0.3rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

.contact-form dd input:not([type="checkbox"]),
.contact-form dd textarea {
  display: block;
  width: 100%;
  border: none;
  padding: 1.2rem 2rem;
  background: var(--gray20);
  border-radius: 6px;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif;
}

.contact-form dd input::placeholder,
.contact-form dd textarea::placeholder {
  color: #ccc;
}

.contact-form dd input:focus,
.contact-form dd textarea:focus {
  outline: none;
}

.form-privacy {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 4rem;
}

.form-privacy-link {
  text-decoration: underline;
  color: var(--orange80);
}

.form-submit input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  padding: 1.4rem;
  color: #4a4b4a;
  line-height: 1.5;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  background: var(--orange80);
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  transition: 0.2s;
}

.form-submit input[type="submit"]:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1100px) {
  .ks-contact {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .contact-topTxt {
    margin-bottom: 2.4rem;
  }

  .info {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
    line-height: 1.3;
  }

  .info span {
    font-size: 2.2rem;
  }

  .contact-tel-info {
    margin-bottom: 4rem;
  }

  .contact-telLink {
    padding: 1rem;
    margin-bottom: 4rem;
  }

  .contact-telLink span {
    font-size: 3.4rem;
  }

  .form-content {
    padding: 2rem;
  }

  .form-title {
    font-size: 2.2rem;
  }

  .contact-form {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .contact-form dt {
    width: 100%;
    border-bottom: 0;
    padding-bottom: 1rem;
    justify-content: flex-start;
    gap: 1rem;
  }

  .contact-form dd {
    width: 100%;
    padding-top: 0;
  }

  .required {
    display: inline-block;
    font-size: 1.2rem;
    padding-left: 1rem;
  }

  .form-privacy {
    font-size: 1.5rem;
    text-align: left;
    margin: 0 auto 2rem;
    width: fit-content;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 768px) {
  .contact-topTxt {
    font-size: 1.5rem;
  }
}



/* =============================
アクセス・事務所案内
============================= */
.access {
  padding-top: 9rem;
  position: relative;
}

.access::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 140px;
  height: 140px;
  background: url(../../img/konosaki/circle-orange.png) no-repeat;
  background-size: contain;
  top: 8rem;
  right: 16rem;
}

.access-inner {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  position: relative;
  z-index: +1;
}

.access-list {
  display: flex;
  width: 50%;
  flex-wrap: wrap;
  flex-grow: 1;
}

.access-list dt,
.access-list dd {
  padding: 1.2rem 0;
  border-bottom: 1px solid #909090;
}

.access-list dt {
  width: 30%;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--green60);
  padding-right: 2rem;
}

.access-list dd {
  width: 70%;
}

.access-list dd a {
  text-decoration: underline;
  color: var(--green60);
}

.map {
  width: 45%;
}

.map iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1100px) {
  .access {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .access::before {
    content: none;
  }

  .access .section-title {
    text-align: center;
  }

  .access-inner {
    flex-direction: column;
    margin-top: 2.4rem;
  }

  .access-list {
    width: 100%;
  }

  .access-list dt,
  .access-list dd {
    font-size: 1.6rem;
    letter-spacing: 0;
  }

  .access-list dd {
    white-space: nowrap;
  }

  .map.sp1100 {
    margin-top: 4rem;
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
  }

  .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}


/* =============================
インスタグラム
============================= */
.instagram {
  padding: 12rem 0;
  position: relative;
}

.instagram::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 100px;
  height: 100px;
  background: url(../../img/konosaki/circle.png) no-repeat;
  background-size: contain;
  bottom: 0;
  left: 16rem;
}

.insta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.insta-id {
  padding-left: 3rem;
  font-family: Sen;
  font-size: 2.8rem;
}

.insta-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 380px;
  gap: 2rem;
  padding: 1.4rem 0;
  background: #ABD894;
  border-radius: 100px;
  font-size: 1.8rem;
  font-weight: bold;
  transition: 0.2s;
}

.insta-link:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1100px) {
  .instagram {
    padding: 8rem 0 4rem;
  }

  .instagram::before {
    content: none;
  }

  .insta-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .insta-inner h2 {
    padding-right: 0;
    text-align: center;
    position: relative;
  }

  /* .insta-inner h2::after {
    position: absolute;
    content: "";
    width: 40px;
    height: 2px;
    background: var(--green80);
    bottom: -1rem;
    left: 0;
    right: 0;
    margin: auto;
  } */

  .insta-id {
    font-size: 2.2rem;
    padding-left: 0;
    border-left: 0;
    margin-top: 2rem;
  }

  .insta-link {
    padding: 0.8rem 1.4rem;
  }

  .insta-link span {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {

  .instagram {
    padding: 6rem 0 4rem;
  }
}

@media screen and (max-width: 450px) {

  .instagram {
    padding: 4rem 0 4rem;
  }
}



/* =============================
リンクコーナー
============================= */
.link-corner {
  padding: 12rem 0;
}

.link-corner-inner {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}

.link-corner-inner a {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.2s;
  box-shadow: var(--shadow);
}

.link-corner-inner a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1100px) {

  .link-corner {
    padding: 6rem 0 12rem;
  }
}

@media screen and (max-width: 768px) {
  .link-corner {
    padding: 4rem 0 8rem;
  }

  .link-corner-inner {
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 0;
    align-items: center;
  }

  .link-corner-inner a {
    max-width: 400px;
  }
}



/* =============================
採用情報
============================= */
.recruit {
  width: 100%;
}

.recruit-link {
  display: block;
}

.bnr-box_pc {
  width: fit-content;
  margin: auto;
}

.bnr-box_pc img:last-of-type {
  display: none;
}

.bnr-box_pc:hover img:first-of-type {
  display: none;
}

.bnr-box_pc:hover img:last-of-type {
  display: block;
}

.bnr-box_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .bnr-box_pc {
    display: none;
  }

  .bnr-box_sp {
    display: block;
  }
}




/* =============================
運営会社
============================= */
.operate {
  padding: 8rem 0;
  background: var(--gray20);
}

.operate-inner {
  display: flex;
  gap: 24rem;
}

.operate-inner .section-title {
  flex-shrink: 0;
  color: var(--black);
}

.operate-list {
  display: flex;
  flex-wrap: wrap;
}

.operate-list dt,
.operate-list dd {
  padding: 1.2rem 0;
  border-bottom: 1px solid #909090;
}

.operate-list dt {
  width: 28%;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--green60);
  padding-right: 2rem;
}

.operate-list dd {
  width: 72%;
}

.operate-list dd a {
  text-decoration: underline;
  color: var(--orange80);
}

@media screen and (max-width: 1100px) {
  .operate {
    padding: 4rem 0;
  }

  .operate-inner {
    flex-direction: column;
    gap: 0;
  }

  .operate-inner .section-title {
    text-align: center;
  }

  .operate-list dt,
  .operate-list dd {
    font-size: 1.6rem;
    letter-spacing: 0;
  }

  .operate-list dt {
    width: 35%;
  }

  .operate-list dd {
    width: 65%;
  }
}