@charset "UTF-8";
html {
  scroll-behavior: smooth;
}
body {
  background: #EFEDE3;
}
.wrap {
  background: #fff;
}
/* フォント */
body {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
}
.kiwi-maru-regular {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}
.kiwi-maru-medium {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
}
/*sp改行*/
@media only screen and (min-width: 768px) {
  .spbr {
    display: none;
  }
}

/* フローティングボタン */
.floating-btn {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 99;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  gap: 0;
  width: 100%;
  transition: opacity 0.3s ease;
}
.floating-btn--hidden {
  opacity: 0;
  pointer-events: none;
}
.floating-btn .palette__btn-inner {
  gap: 5px;
}
.floating-btn .palette__btn {
  width: 50%;
  height: 50px;
  border-radius: 10px 10px 0 0;
}
.floating-btn .palette__btn-sub-wrap {
  padding: 3px 0 4px;
}
.floating-btn .palette__btn-sub {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 158px;
}
.floating-btn .palette__btn-main {
  font-size: clamp(14px, 14.064px + 0.52vw, 20px);
}
.floating-btn .palette__btn-txt {
  font-size: clamp(12px, 10.544px + 0.39vw, 16px);
}
.floating-btn .palette__btn-icon {
  position: absolute;
  right: 7px;
  top: 50%;
  width: 5px;
  height: auto;
  transform: translateY(-50%);
  transition: right .5s ease;
}
@media screen and (min-width: 768px) {
  .floating-btn {
    left: auto;
    right: 0;
    bottom: 40px;
    transform: none;
    flex-direction: column;
    gap: 8px;
    width: auto;
  }
  .floating-btn .palette__btn {
    width: 260px;
    height: 80px;
    border-radius: 10px 0 0 10px;
  }
  .floating-btn .palette__btn-inner {
    gap: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .floating-btn .palette__btn-sub-wrap {
    padding: 0;
  }
  .floating-btn .palette__btn-sub {
    width: clamp(158px, 44.336px + 10.97vw, 223px);
  }
  .floating-btn .palette__btn-icon {
    right: clamp(7px, 0.336px + 0.56vw, 11px);
    width: clamp(5px, 1.664px + 0.28vw, 7px);
  }
  .floating-btn .palette__btn::before {
    position: absolute;
    bottom: clamp(12px, 3.664px + 0.69vw, 10px);
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
    display: block;
    width: clamp(158px, 44.336px + 10.97vw, 223px);
    height: clamp(17px, 1vw, 24px);
    background-color: #DF8D43;
    border-radius: 100px;
    content: '';
    transition: .5s ease;
  } 
}
@media screen and (min-width: 1801px) {
  .floating-btn--hidden {
    opacity: 1;
    pointer-events: auto;
  }
}
@media screen and (min-width: 1920px) {
  .floating-btn .palette__btn-main {
    font-size: 20px;
  }
  .floating-btn .palette__btn-sub {
    width: 223px;
    padding: 4px 0;
  }
  .floating-btn .palette__btn-txt {
    font-size: 16px;
  }
  .floating-btn .palette__btn-icon {
    right: 11px;
    width: 7px;
  }
  .floating-btn .palette__btn::before {
    height: 24px;
  }
}
/* セクション共通 */
.sec__ttl {
  text-align: center;
}
.l-inner {
  padding: 0 35px;
}
@media (min-width: 1350px) {
  .l-inner {
    padding: 0;
  }
}
/* ボタン */
.page-nav-btn__list  {
  margin: 29px 0 0;
}
.palette__btn {
  position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	background-color: #DF5E43;
	border-radius: 10px;
	padding: 12px 0 12px 0;
}
.palette__btn--recruit {
	background-color: #DF8D43;
}
.palette__btn-inner {
	display: flex;
  flex-direction: column;
  align-items: center;
	gap: 10px;
}
.palette__btn-main {
  position: relative;
  z-index: 2;
	font-size: clamp(16px, 14.064px + 0.52vw, 24px);
	line-height: 1;
}
.palette__btn-sub-wrap {
	background-color: #DF8D43;
	border-radius: 100px;
	padding: 3px 0 4px;
	transition: right 0.3s ease;
}
.palette__btn-sub-wrap-recruit {
	background-color: #E2AF57;
}
.palette__btn-sub {
  position: relative;
  z-index: 2;
	display: flex;
  align-items: center;
  justify-content: center;
	position: relative;
  width: 176px;
}
.palette__btn-txt {
	font-size: clamp(12px, 10.544px + 0.39vw, 18px);
	line-height: 1;
}
.palette__btn-icon {
	position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: auto;
  transition: right .5s ease;
}
.page-nav-btn__list .palette__btn + .palette__btn {
  margin: 9px 0 0;
}
@media screen and (min-width: 1200px) {
	.palette__btn {
		padding: clamp(12px, 3.664px + 0.69vw, 17px) 0 clamp(12px, 3.664px + 0.69vw, 17px) 0;
    overflow: hidden;
	}
  .palette__btn::before {
    position: absolute;
    bottom: clamp(12px, 3.664px + 0.69vw, 17px);
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
    display: block;
    width: clamp(176px, 44.336px + 10.97vw, 255px);
    height: clamp(22px, 1vw, 34px);
    background-color: #DF8D43;
    border-radius: 100px;
    content: '';
    transition: .5s ease;
  } 
  .palette__btn.palette__btn--recruit::before {
    background-color: #E2AF57;
  }
  .palette__btn:hover::before {
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
	.palette__btn-inner {
		gap: clamp(10px, 3.328px + 0.56vw, 14px);
	}
	.palette__btn-sub {
		width: clamp(176px, 44.336px + 10.97vw, 255px);
	}
	.palette__btn-icon {
		right: clamp(7px, 0.336px + 0.56vw, 11px);
		width: clamp(5px, 1.664px + 0.28vw, 7px);
	}
  .palette__btn:hover 
  .palette__btn-icon {
    right: 0;
  }
}
@media screen and (min-width: 1920px) {
	.palette__btn {
		padding: 17px 0 17px 0;
	}
  .palette__btn::before {
    height: 34px;
  } 
	.palette__btn-inner {
		gap: 14px;
	}
	.palette__btn-main {
		font-size: 24px;
	}
	.palette__btn-sub {
		width: 255px;
		padding: 4px 0 5px 0;
	}
	.palette__btn-txt {
		font-size: 18px;
	}
	.palette__btn-icon {
		right: 11px;
		width: 7px;
	}
}
/* h1 */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
/* ページナビ */
.page-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 103;
  width: 100%;
  height: 100%;
  padding: 0 0 50px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: scroll;
}
.page-nav.is-open {
  opacity: 1;
  visibility: visible;
}
.page-nav__inner {
  padding: 80px 36px 79px;
  background-image: url(../images/mv__bg-bottom.webp), url(../images/mv__bg-head.webp), url(../images/mv__bg-body.webp);
  background-repeat: no-repeat, no-repeat, repeat;
  background-position: bottom, top, center;
  background-size: 100%, 100%, 40%;
}
.page-nav__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.page-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.page-nav__icon {
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  content: url(../images/icon_arrow_right.svg);
}
.page-nav__txt {
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: #6A3906;
}
.page-nav__tel-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1;
	gap: 12px;
	margin: 26px 0 0 0;
}
.page-nav__tel-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.page-nav__tel-icon {
	width: 20px;
	height: auto;
	transform: translateY(2px);
}
.page-nav__tel-num {
	color: #6A3906;
	font-size: 28px;
}
.page-nav__reception {
	color: #6A3906;
  font-size: 14px;
}
.page-nav__link-bnr {
  margin: 25px 0 0;
  text-align: center;
}
@media (min-width: 769px) {
  .page-nav {
    position: absolute;
    top: 4%;
    right: 6%;
    left: auto;
    z-index: 99;
    width: auto;
    height: auto;
    padding: 0;
    background: none;
    opacity: 1;
    visibility: visible;
    transition: none;
    overflow: auto;
  }
  .page-nav__inner {
    padding: 0;
    background: none;
  }
  .page-nav__list {
    flex-direction: row;
    gap: 45px;
  }
  .page-nav__icon {
    width: 20px;
    height: 20px;
    content: url(../images/icon_arrow_down.svg);
  }
  .page-nav__txt {
    font-size: clamp(16px, 1.66vw, 24px);
  }
  .page-nav-btn__list,
  .page-nav__tel-container,
  .page-nav__link-bnr {
    display: none;
  }
  .page-nav__item:nth-child(1) {
    display: none;
  }
}
@media (min-width: 1280px) {
  .page-nav {
    top: 5.5%;
    right: 13.7%;
  }
  .page-nav__list {
    gap: 66px;
  }
  .page-nav__container {
    margin: clamp(24px, -49.328px + 6.11vw, 68px) 0 0 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(55px, -36.672px + 7.64vw, 110px);
  }
}
@media (min-width: 1440px) {
  .page-nav__txt {
    font-size: 24px;
  }
}
@media (min-width: 1920px) {
  .page-nav__tel-icon {
    width: 29px;
  }
  .page-nav__tel-num {
    font-size: 40px;
  }
}
/* ハンバーガーボタン */
.hamburger {
  position: fixed;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  z-index: 104;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #6A3906;
  border-radius: 50%;
  border: none;
}
.hamburger.gnav_open {
  background: #6A3906;
}
.hamburger_bar {
  position: absolute;
  top: 21px;
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #fff;
}
.hamburger_bar:after,
.hamburger_bar:before {
  position: absolute;
  display: inline-block;
  content: " ";
  width: 100%;
  height: 2px;
  background: #fff;
}
.hamburger_bar:after {
  top: -6px;
  transition: transform 600ms cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}
.hamburger_bar:before {
  bottom: -6px;
  transition: transform 600ms cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}
.hamburger_bar.animate {
  width: 20px;
  background: rgba(0, 0, 0, 0);
}
.hamburger_bar.animate:after {
  transform: translateY(4px) rotate(45deg);
  transition: transform 600ms cubic-bezier(0.23, 1, 0.32, 1);
  background: #fff;
}
.hamburger_bar.animate:before {
  width: 100%;
  transform: translateY(-8px) rotate(-45deg);
  transition: transform 600ms cubic-bezier(0.23, 1, 0.32, 1);
  background: #fff;
}
.hamburger_txt {
  margin: 19px 0 0;
  color: #fff;
  font-size: 10px;
}
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}
/* MV */
.mv {
  position: relative;
  padding: 0 0 103px;
  background-image: url(../images/mv__bg-bottom.webp), url(../images/mv__bg-head.webp), url(../images/mv__bg-body.webp);
  background-repeat: no-repeat, no-repeat, repeat;
  background-position: left 0 bottom -1px, top, center;
  background-size: 100%, 100%, 40%;
}
.mv picture {
  display: block;
  text-align: center;
}
.mv__logo-main {
  padding: 94px 0 0;
}
.mv__photo-main {
  margin: 15px 0 0;
}
.mv__photo {
  width: 323px;
}
.mv__logo {
  width: 304px;
}
.mv__obj-red {
  position: absolute;
  right: 21px;
  top: 0;
  width: 32.7%;
}
.mv__obj-yellow {
  position: absolute;
  top: 78px;
  left: 0;
  width: 16.3%;
}
.mv__obj-blue {
  position: absolute;
  left: 0;
  bottom: -70px;
  width: 34%;
}
.mv__obj-blue-green {
  position: absolute;
  bottom: -24px;
  right: 0;
  width: 54%;
}
/* キャッチコピー */
.catch {
  position: absolute;
  left: 0;
  bottom: 80px;
}
.catch__txt {
  margin: 0;
}
.catch__line {
  display: inline;
  padding: 4px 10px 4px 24px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.4;
  color: #6A3906;
  background: #fff linear-gradient(#DF8D43, #DF8D43) 0 100% / 100% 1px no-repeat;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.catch__line-br {
  display: block;
}
@media (min-width: 490px) {
  .mv__photo {
    width: 55%;
  }
  .mv__logo {
    width: 55%;
  }
  .mv__obj-red {
    width: 20%;
  }
  .mv__obj-yellow {
    width: 10%;
  }
  .mv__obj-blue {
    bottom: -100px;
    width: 20%;
  }
  .mv__obj-blue-green {
    bottom: -44px;
    width: 37%;
  }
}
@media (min-width: 769px) {
  .mv {
    aspect-ratio: 1920 / 1212;
    padding: 0;
  }
  .mv picture {
    display: inline-block;
  }
  .mv__logo-main {
    padding: 94px 0 0;
  }
  .mv__photo-main {
    margin: 0;
  }
  .mv__photo {
    position: absolute;
    top: 12.3%;
    left: auto;
    right: 10.9%;
    width: 57.9%;
    transform: translateX(0);
  }
  .mv__logo {
    position: absolute;
    top: 21.9%;
    left: 9.4%;
    width: 15.3%;
  }
  .mv__obj-red {
    right: 0;
    width: 13.3%;
  }
  .mv__obj-yellow {
    top: 148px;
    width: 6.6%;
  }
  .mv__obj-blue-green {
    bottom: 113px;
    width: 21.6%;
  }
  .mv__obj-blue {
    bottom: -60px;
    width: 13.4%;
  }
  .catch {
    left: 90px;
    top: 57.5%;
  }
  .catch__line {
    font-size: clamp(18px, 2vw, 30px);
  }
  .catch__line-br {
    display: none;
  }
  .catch__line-bottom {
    margin: 0 0 0 80px;
  }
}
@media (min-width: 1280px) {
  .catch {
    left: 180px;
  }
  .catch__line {
    font-size: 30px;
  }
  .catch__line-bottom {
    margin: 0 0 0 114px;
  }
}
/* 
相談支援事業所とは
*/
.about {
	color: #6A3906;
  line-height: 2;
	font-size: clamp(14px, 12.544px + 0.39vw, 20px);
  margin: 0 0 58px 0;
}
.about__lead {
	text-align: center;
	margin: clamp(26px, 22.608px + 0.91vw, 40px) 0 0 0;
}
.about-illustration {
	text-align: center;
	margin: clamp(40px, 32.72px + 1.94vw, 70px) 0 0 0;
}
@media screen and (min-width: 768px) {
  .about {
    margin: 0 0 clamp(58px, 43.328px + 1.91vw, 80px) 0;
	}
	.line-break1 {
		display: none;
	}
}
@media screen and (min-width: 1920px) {
	.about {
		font-size: 20px;
    margin: 0 0 80px 0;
	}
	.about__lead {
		margin: 40px 0 0 0;
	}
	.about-illustration {
		margin: 70px 0 0 0;
	}
}
/* 主な役割 */
.roles {
  margin: 0 19px;
  padding: 60px 20px;
  background: #F4F2EA;
  border-radius: 10px;
}
.roles__inner {
  max-width: 1280px;
  margin: 0 auto;
}
/* --- タイトル --- */
.roles__ttl-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.roles__ttl {
  margin: 0;
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: #6A3906;
  text-align: center;
}
.roles__ttl-wave {
  display: block;
  width: 73px;
  height: 8px;
  background: url(../images/wave.svg) center / contain no-repeat;
}
@media (min-width: 768px) {
  .roles__ttl-wave {
    width: 128px;
    height: 14px;
  }
}
/* --- リスト --- */
.roles__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  gap: 28px 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.roles__item {
  width: 100%;
  max-width: 400px;
}
/* --- カード --- */
.roles__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 63px 0 0;
  background: center / 100% auto no-repeat;
  aspect-ratio: 1 / 1;
}
.roles__item:nth-child(1) .roles__card { background-image: url(../images/roles_bg_blob_01.svg); }
.roles__item:nth-child(2) .roles__card { background-image: url(../images/roles_bg_blob_02.svg); }
.roles__item:nth-child(3) .roles__card { background-image: url(../images/roles_bg_blob_03.svg); }
.roles__item:nth-child(4) .roles__card { background-image: url(../images/roles_bg_blob_04.svg); }
.roles__item:nth-child(5) .roles__card { background-image: url(../images/roles_bg_blob_05.svg); }
/* --- ナンバーラベル --- */
.roles__num {
  position: absolute;
  top: 0;
  left: 0;
  width: 73px;
  height: auto;
  z-index: 1;
}
/* --- テキスト --- */
.roles__txt {
  display: flex;
  align-items: flex-end;
  font-size: clamp(14px, 1.4vw, 20px);
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: #6A3906;
  text-align: center;
}
.roles__item:nth-child(1) .roles__txt {
  margin: 0;
  padding: 0 0 10px;
}
/* --- イラストエリア --- */
.roles__illust-wrap {
  width: 100%;
  margin: 8px 0 0;
  text-align: center;
}
.roles__item:nth-child(1) .roles__illust-wrap img { width: 65%; }
.roles__item:nth-child(2) .roles__illust-wrap img { width: 71%; }
.roles__item:nth-child(3) .roles__illust-wrap img { width: 38.25%; }
.roles__item:nth-child(4) .roles__illust-wrap img { width: 42%; }
.roles__item:nth-child(5) .roles__illust-wrap img { width: 47.5%; }
/* --- SP: 567px以下で1列 --- */
@media (max-width: 567px) {
  .roles__list {
    gap: 28px;
    justify-items: stretch;
  }
}
@media (min-width: 480px) {
  .roles__item {
    width: 60%;
  }
}
@media (min-width: 568px) {
  .roles__card {
    padding: 40px 0 0;
  }
  .roles__txt {
    margin: 0 0 12px;
  }
}
@media (min-width: 640px) {
  .roles {
    padding: clamp(60px, 6vw, 100px) clamp(20px, 4vw, 60px);
  }
  .roles__ttl-block {
    margin: 0 0 clamp(48px, 5vw, 72px);
  }
  .roles__list {
    gap: 22px 40px;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    width: 90%;
    margin: auto;
  }
  .roles__item {
    width: calc(50% - 40px / 2);
  }
  .roles__card {
    padding: 40px 0 0;
  }
  .roles__num {
    width: 60px;
  }
  .roles__illust-wrap {
    margin: 0;
  }
}
@media (min-width: 768px) {
  .roles__num {
    width: clamp(73px, 6.5vw, 105px);
  }
}
@media (min-width: 900px) {
  .roles__list {
    width: 70%;
  }
}
@media (min-width: 1024px) {
  .roles__list {
    width: auto;
  }
  .roles__item {
    width: calc(33.333% - 40px * 2 / 3);
  }
  .roles__card {
    padding: 62px 0 0;
  }
}
@media (min-width: 1280px) {
  .roles {
    margin: 0 40px;
    padding: 100px 60px;
    border-radius: 20px;
  }
  .roles__list {
    margin: 74px 0 0;
  }
  .roles__card {
    padding: 77px 0 0;
  }
  .roles__ttl {
    font-size: 30px;
  }
  .roles__num {
    width: 105px;
  }
  .roles__txt {
    font-size: 20px;
  }
}
/* message */
.message {
  position: relative;
  padding: 60px 0 42px;
}
.message__inner {
  max-width: 1060px;
  margin: 26px auto 0;
}
.message .sec__ttl img {
  width: 246px;
}
@media (min-width: 768px) {
  .message .sec__ttl img {
    width: 440px;
  }
}
/* --- キャッチコピー --- */
.message__catch {
  position: relative;
  text-align: center;
}
.message__catch-txt {
  display: inline-block;
  margin: 0;
  padding: 0 23px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #8B4513;
  text-align: center;
  background:
    url(../images/message_bracket_left.svg) left top / 29px auto no-repeat,
    url(../images/message_bracket_right.svg) right bottom / 29px auto no-repeat;
}
/* --- ドット付き文字群 --- */
.message__catch-chars {
  display: inline;
}
.message__catch-char {
  position: relative;
  display: inline-block;
}
.message__catch-char::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  line-height: 1;
  background: #DF8D43;
}
/* --- ブロック --- */
.message__block {
  margin: 40px 0 0;
  position: relative;
  z-index: 2;
}
/* --- ブロックボディ（SP：縦積み） --- */
.message__block-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* --- イラスト --- */
.message__illust-wrap {
  width: 214px;
  margin: 0 auto;
  flex-shrink: 0;
  text-align: center;
}
.message__block--palette .message__illust-wrap img {
  width: 125px;
}
/* --- ブロックヘッド（タイトル） --- */
.message__block-head {
  padding: 0 0 9px;
  border-bottom: 1px solid #DF8D43;
}
.message__ttl {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: clamp(18px, 2.2vw, 36px);
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: #6A3906;
}
.message__ttl::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 18px;
  margin: -24px 0 0;
  background: url(../images/message_icon_plus.svg) center / contain no-repeat;
}
/* --- テキスト --- */
.message__block-txt {
  margin: 20px 0 0;
}
.message__txt {
  font-size: clamp(14px, 1.5vw, 20px);
  line-height: 2;
  color: #6A3906;
}
.message__txt + .message__txt {
  margin: 20px 0 0;
}
.message-obj-01 {
  position: absolute;
  top: -4%;
  left: 0;
  z-index: 1;
  width: 71px;
}
.message-obj-02 {
  position: absolute;
  top: -2%;
  right: 0;
  z-index: 1;
  width: 91px;
}
@media (min-width: 768px) {
  .message {
    padding: clamp(60px, 6vw, 100px) clamp(20px, 4vw, 60px);
  }
  .message__catch-txt {
    letter-spacing: 0.08em;
    font-size: clamp(16px, 2.34vw, 30px);
    background:
      url(../images/message_bracket_left.svg) left top / clamp(29px, 5vw, 48px) auto no-repeat,
      url(../images/message_bracket_right.svg) right bottom / clamp(29px, 5vw, 48px) auto no-repeat;
  }
  .message__block {
    margin: clamp(40px, 5.5vw, 100px) 0 0;
  }
  /*
   * PC時 Grid レイアウト
   * HTML順：head → illust → txt
   * 視覚順：illust（左・2行占有） / head（右上） / txt（右下）
   */
  .message__block-body {
    display: grid;
    grid-template-columns: clamp(214px, 19vw, 290px) 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
      "illust head"
      "illust txt";
    gap: 0 clamp(24px, 3vw, 48px);
  }
  .message__illust-wrap {
    grid-area: illust;
    width: 100%;
    margin: 0;
    align-self: center;
  }
  .message__block-head {
    grid-area: head;
    align-self: end;
  }
  .message__block-txt {
    grid-area: txt;
    margin: 20px 0 0;
    align-self: start;
  }
  .message__txt {
    letter-spacing: 0.02em;
  }
  .message-obj-01 {
    width: 105px;
  }
  .message-obj-02 {
    width: 130px;
  }
}
@media (min-width: 1280px) {
  .message {
    padding: 120px 0;
  }
  .message__inner {
    margin: 62px auto 0;
  }
  .message__catch-txt {
    padding: 0 73px;
    font-size: 30px;
  }
  .message__catch-char::before {
    width: 6px;
    height: 6px;
  }
  .message__block {
    margin: 100px 0 0;
  }
  .message__block-body {
    grid-template-columns: 290px 1fr;
    gap: 0 40px;
  }
  .message__illust-wrap {
    width: 290px;
    padding: 48px 0 0;
  }
  .message__block--palette .message__illust-wrap img {
    width: auto;
  }
  .message__block-head {
    padding: 0 0 20px;
  }
  .message__ttl {
    font-size: 36px;
  }
  .message__ttl::before {
    width: 23px;
    height: 26px;
    margin: -20px 0 0;
  }
  .message__block-txt {
    margin: 40px 0 0;
  }
  .message__txt {
    font-size: 20px;
  }
  .message__txt + .message__txt {
    margin: 30px 0 0;
  }
  .message-obj-01 {
    top: 16%;
    width: 144px;
  }
  .message-obj-02 {
    top: 43%;
    width: 187px;
  }
}
/* 
事業所概要
*/
.profile {
	color: #6A3906;
	font-size: clamp(14px, 12.544px + 0.39vw, 20px);
  background-image: url("../images/profile/bg_white-wave.webp"), url("../images/profile/bg_texture.webp");
  background-repeat: no-repeat, repeat;
  background-position: top center, left top;
  background-size: 100% auto, auto;
	padding: 60px 0 60px 0;
	max-width: 1920px;
	margin: 0 auto;
}
.pallet-section__inner {
	width: clamp(304px, 67.104px + 63.17vw, 1280px);
	max-width: 1280px;
	margin: 0 auto;
}
.palette__section-ttl {
	text-align: center;
}
.palette__section-ttl-img {
	width: clamp(246px, 198.912px + 12.56vw, 440px);
	height: auto;
}
.profile__container {
	margin: 24px 0 0 0;
	display: flex;
	flex-direction: column;
	gap: 36px;
}
.profile__list {
	background-color: #fff;
  border-radius: 10px;
	overflow: hidden;
	border: 2px solid #EFEDE3;
}
.profile__item {
	display: flex;
	line-height: 1.5;
}
.profile__term {
	background-color: #EFEDE3;
  width: 24%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-bottom: 1px solid #ffffff;
}
.profile__data {
	background-color: #ffffff;
  margin: 0;
  padding: 9px 17px 9px 17px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #EFEDE3;
}
.profile__item:last-child .profile__term,
.profile__item:last-child .profile__data {
  border-bottom: none;
}
.profile__lead {
	line-height: 2;
}
.profile__contact-box {
	margin: 30px 0 0 0;
}
.profile__contact-ttl {
	font-size: clamp(16px, 14.064px + 0.52vw, 24px);
	color: #DF8D43;
	border-bottom: 1px solid #DF8D43;
	padding: 0 0 10px 0;
}
.palette__btn-container {
	margin: 20px 0 0 0;
}
.profile__tel-box {
	margin: 46px 0 0 0;
}
.profile__tel-ttl {
	font-size: clamp(16px, 14.064px + 0.52vw, 24px);
	color: #DF8D43;
	border-bottom: 1px solid #DF8D43;
	padding: 0 0 10px 0;
}
.profile__tel-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1;
	gap: 12px;
	margin: 26px 0 0 0;
}
.profile__tel-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.profile__tel-icon {
	width: 20px;
	height: auto;
	transform: translateY(2px);
}
.profile__tel-num {
	color: #6A3906;
	font-size: clamp(28px, 25.088px + 0.78vw, 40px);
}
@media screen and (min-width: 768px) {
	.profile {
		background-size: 1920px auto, auto;
		padding: 200px 0 160px 0;
	}
}
@media screen and (min-width: 1200px) {
	.profile__container {
		margin: clamp(24px, -49.328px + 6.11vw, 68px) 0 0 0;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		gap: clamp(55px, -36.672px + 7.64vw, 110px);
	}
	.profile__list {
		flex: 1;
		border-radius: 20px;
	}
	.profile__lead {
    white-space: nowrap;
  }
	.profile__term {
		width: 30%;
	}
	.profile__data {
		padding: clamp(16px, 1.008px + 1.25vw, 25px) 38px clamp(16px, 1.008px + 1.25vw, 25px) 38px;
	}
	.profile__item:first-child 
	.profile__data {
    padding: 10px 38px 10px 38px;
  }
	.profile__contact-box {
		margin: clamp(41px, 22.672px + 1.53vw, 52px) 0 0 0;
	}
	.profile__tel-icon {
		width: clamp(20px, 5.008px + 1.25vw, 29px);
	}
}
@media screen and (min-width: 1920px) {
	.profile {
		font-size: 20px;
	}
	.palette__section-ttl-img {
		width: 440px;
	}
	.profile__container {
		margin: 68px 0 0 0;
		gap: 110px;
	}
	.profile__list {
		flex: 0 1 730px;
	}
	.profile__data {
		padding: 25px 38px 25px 38px;
	}
	.profile__action {
		flex: 0 0 440px;
	}
	.profile__contact-box {
		margin: 52px 0 0 0;
	}
	.profile__contact-ttl {
		font-size: 24px;
	}
	.profile__tel-ttl {
		font-size: 24px;
	}
	.profile__tel-icon {
		width: 29px;
	}
	.profile__tel-num {
		font-size: 40px;
	}
}
/* 
RECRUIT
*/
.recruit {
	background-color: #EFEDE3;
	padding: 64px 0 105px 0;
	color: #6A3906;
	font-size: clamp(14px, 12.544px + 0.39vw, 20px);
	max-width: 1920px;
	margin: 0 auto;
}
.recruit-txt {
	margin: 26px 0 0 0;
}
.recruit-txt__catch {
	font-size: clamp(18px, 15.088px + 0.78vw, 30px);
	line-height: 2;
	text-align: center;
}
.recruit-txt__lead {
  line-height: 2;
	margin: 24px 0 0 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.recruit-txt__txt {
	text-align: center;
}
.recruit-illustration {
	margin: 34px 0 0 0;
	text-align: center;
}
.recruit__btn-group {
	margin: 28px 0 0 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
@media screen and (min-width: 768px) {
	.recruit {
		padding: clamp(64px, 26.672px + 4.86vw, 120px) 0 clamp(105px, 68.336px + 4.77vw, 160px) 0;
	}
	.recruit-txt {
		margin: clamp(8px, 38px + -1.56vw, 26px) 0 0 0;
	}
	.recruit-txt__lead {
		margin: clamp(24px, 20px + 0.52vw, 30px) 0 0 0;
		gap: clamp(12px, 6.672px + 0.69vw, 20px);
	}
	.line-break1 {
		display: none;
	}
	.recruit__btn-group {
		flex-direction: row;
		justify-content: center;
		gap: 10px;
	}
	.palette__btn--recruit {
		width: 100%;
		max-width: 440px;
	}
	.recruit-illustration {
		margin: clamp(34px, 28.672px + 0.69vw, 42px) 0 0 0;
	}
	.recruit__btn-group {
		margin: clamp(28px, 6.672px + 2.78vw, 60px) 0 0 0;
	}
}
@media screen and (min-width: 1000px) {
	.line-break2 {
		display: none;
	}
}
@media screen and (min-width: 1920px) {
	.recruit {
		padding: 120px 0 160px 0;
		font-size: 20px;
	}
	.recruit-txt {
		margin: 8px 0 0 0;
	}
	.recruit-txt__lead {
		margin: 30px 0 0 0;
		gap: 20px;
	}
	.recruit-illustration {
		margin: 42px 0 0 0;
	}
	.recruit__btn-group {
		margin: 60px 0 0 0;
	}
}
/* フッター */
#palette_footer {
  padding: 53px 20px 80px;
  background-color: #6A3906;
  color: #FFFFFF;
  border-radius: 25px 25px 0 0;
}
#palette_footer .footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
}
#palette_footer .footer__logo {
  width: 280px;
}
#palette_footer .footer__logo-link {
  display: block;
}
#palette_footer .footer__logo-img {
  width: 100%;
  height: auto;
}
#palette_footer .footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 35px 0 0;
}
#palette_footer .footer__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 275px;
  padding: 3px 9px 11px 12px;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  text-decoration: none;
  transition: none;
}
#palette_footer .footer__btn-ruby {
  font-size: 11px;
  letter-spacing: 0.1em;
}
#palette_footer .footer__btn-ttl {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
#palette_footer .footer__btn-arrow {
  display: block;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin: 8px 0 0 12px;
  background: url('../images/footer__btn-arrow.svg') center/7px 12px no-repeat;
}
#palette_footer .footer__copyright {
  width: 100%;
  margin: 26px 0 0;
  line-height: 1;
  text-align: center;
}
#palette_footer .footer__copyright small {
  font-size: 11px;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  #palette_footer {
     padding: clamp(32px, 4vw, 48px) 40px;
  }
  #palette_footer .footer__inner {
     flex-direction: row;
     justify-content: space-between;
     align-items: flex-end;
  }
  #palette_footer .footer__logo {
     width: clamp(280px, 22vw, 400px);
  }
  #palette_footer .footer__content {
     align-items: flex-end;
     margin: 0;
  }
  #palette_footer .footer__btn {
     margin: 0;
  }
  #palette_footer .footer__copyright {
     margin: 27px 0 0;
     text-align: right;
  }
  #palette_footer .footer__copyright small {
    font-size: clamp(11px, 0.85vw, 16px);
  }
}

@media (min-width: 1280px) {
  #palette_footer {
     padding: 76px 20px 43px;
  }
  #palette_footer .footer__logo {
     width: 400px;
  }
  #palette_footer .footer__copyright small {
    font-size: 16px;
  }
}
/* ページトップ */
.pagetop {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border: 2px solid #6A3906;
  border-radius: 50%;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.pagetop.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.pagetop__img {
  width: 26px;
  height: auto;
  transition: transform 0.3s ease;
}
.pagetop:hover .pagetop__img {
  transform: translateY(-8px);
}
@media (min-width: 768px) {
  .pagetop {
    bottom: 230px;
    width: 80px;
    height: 80px;
    border: 3px solid #6A3906;
  }
  .pagetop__img {
    width: 37px;
  }
}