@charset "utf-8";

:root {
  /* color */
  --office-color-1: #ef7d36;
  --office-color-2: #f5b186;
  --office-color-3: #fdebe1;
  --office-color-beauty: #e95381;
  --text-color: #4c4c4c;
  --text-color-news: #231815;

  --housing-color-2: #e2c6c5;
  --realestate-color-2: #a1c5d8;

  /* font */
  --font-noto-sans: "Noto Sans JP", sans-serif;
  --font-open-sans: "Open Sans", sans-serif;

  /* animation */
  --hamburger-transition: 0.4s;
  --hover-transition: 0.5s;
  --hover-opacity: 0.7;
}

/* ------------------------------
  common(sp)
------------------------------ */
body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-color);
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.pc {
  display: none;
}

.sp {
  display: inline-block;
}

/* ------------------------------
  layout(sp)
------------------------------ */
html {
  /* scroll-behavior: smooth; */
  scroll-padding-top: 70px;
}

.main {
  position: relative;
  margin-top: 70px;
}

.container {
  padding: 0 8vw;
}

.home .main {
  margin-top: 0;
}

.section-title-main {
  display: block;
  font-family: var(--font-open-sans);
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--office-color-2);
}

.section-title-sub {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-top: 0.5em;
}

.section-bg {
  position: relative;
  padding-top: 120px;
}

.section-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 150px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.text-space {
  margin-left: 1em;
}

/* ------------------------------
  parts(sp)
------------------------------ */
.btn-arrow {
  position: relative;
  display: inline-block;
  width: 48px;
  aspect-ratio: 48 / 28;
  border-radius: 9999px;
  background-color: var(--office-color-1);
  margin-left: 0.8em;
}

.btn-arrow::before {
  content: "";
  display: block;
  position: absolute;
  left: 32%;
  bottom: 42%;
  width: 36.66%;
  aspect-ratio: 2.2;
  background: url("../images/office/icon_btn_arrow.svg") no-repeat center / 100%
    auto;
}

/* ------------------------------
  header(sp)
------------------------------ */
.header-nav-pc-wrap {
  display: none;
}

.header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
}

.home .header,
.page_about .header {
  background-color: #fff;
  transition: 0.8s;
}

.scrolled .header {
  background-color: transparent;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 12px;
}

.header-logo {
  width: 140px;
}

.header-btn-wrap-sp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 88px;
}

.header-tel-sp {
  width: 32px;
  margin-right: 20px;
}

.hamburger {
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
  position: relative;
  width: 36px;
  height: 36px;
}

.hamburger span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 34px;
  height: 2px;
  background-color: var(--office-color-1);
  border-radius: 1px;
  transition: var(--hamburger-transition);
}

.hamburger::before,
.hamburger::after {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background-color: var(--office-color-1);
  border-radius: 1px;
  transition: var(--hamburger-transition);
}

.hamburger::before {
  top: calc(50% - 10px);
}

.hamburger::after {
  top: calc(50% + 10px);
}

.nav-active .hamburger span {
  visibility: 0;
  opacity: 0;
  transition: var(--hamburger-transition);
}

.nav-active .hamburger::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: var(--hamburger-transition);
}

.nav-active .hamburger::after {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: var(--hamburger-transition);
}

.header-nav-sp-wrap {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  overscroll-behavior-y: contain;
  overflow-y: auto;
  padding: 90px 0 30px;
  background-color: #eae6de;
}

.nav-active .header-nav-sp-wrap {
  opacity: 1;
  visibility: visible;
}

.header-nav-sp {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 82vw;
  margin-inline: auto;
  font-size: 14px;
  line-height: 1.6;
}

.header-nav-sp a {
  display: block;
  width: fit-content;
}

.header-nav-sp dt,
.header-nav-sp a {
  padding: 0.3em 0.2em;
}

.header-nav-sp > li {
  width: 38vw;
}

.header-nav-sp > li:last-of-type {
  width: 100%;
  margin-top: 3em;
}

.header-nav-sp > li:last-of-type a {
  display: block;
  width: fit-content;
  margin: 0 auto 2em;
  font-weight: 700;
  color: var(--office-color-1);
}

.header-nav-sp > li:not(:last-of-type) {
  border-bottom: dashed 1px var(--text-color);
  padding: 1em 0;
}

.header-nav-sp > li:nth-of-type(1),
.header-nav-sp > li:nth-of-type(2) {
  border-top: dashed 1px var(--text-color);
}

.header-nav-sp dd {
  margin-top: 0.2em;
}

.header-nav-sp dl li {
  margin-left: 1em;
}

.header-nav-sp dl li:not(:first-of-type) {
  margin-top: 0.2em;
}

.header-nav-sp dt,
.header-nav-sp > li > a {
  font-weight: 700;
  color: var(--office-color-1);
}

.header-nav-sp dt::before,
.header-nav-sp > li:not(:first-of-type) > a::before {
  content: "●";
}

.header-nav-sp-wrap address {
  margin-top: 60px;
}

.header-nav-sp-wrap address p:nth-of-type(1) {
  display: block;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.header-nav-sp-wrap address p:nth-of-type(2) {
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 0.5em auto 0;
  font-size: 28px;
  font-weight: 700;
  transform: translateX(-8px);
}

.header-nav-sp-wrap address p:nth-of-type(2)::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("../images/office/icon_tel_gray.svg") no-repeat center / cover;
  margin-right: 10px;
}

.header-nav-sp-wrap > p {
  font-size: 14px;
  margin-top: 0.6em;
  text-align: center;
}

/* ------------------------------
  footer(sp)
------------------------------ */
.home .footer {
  margin-top: 0;
}

.home .footer-contact {
  border-top: none;
}

.footer {
  background-color: #fff;
  margin-top: 100px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 8vw;
  padding: 60px 0;
  border-top: solid 1px #afafaf;
}

.footer-contact-title {
  font-size: 30px;
  font-weight: 700;
}

.footer-contact-title span {
  display: block;
  margin-top: 1em;
  font-size: 16px;
  text-align: center;
}

.footer-contact-btn-list {
  margin-top: 36px;
  width: 100%;
  max-width: 300px;
}

.footer-contact-btn-mail {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  border: solid 1px #627782;
  background-color: #fff;
  border-radius: 35px;
  font-size: 15px;
  font-weight: 700;
}

.footer-contact-btn-tell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  border: solid 1px #627782;
  background-color: #fff;
  border-radius: 35px;
  margin-top: 25px;
}

.footer-contact-btn-tell span {
  display: flex;
  align-items: center;
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 8px;
  transform: translateX(-6px);
}

.footer-contact-btn-tell span::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 2px 6px 0 0;
  background: url("../images/office/icon_tel_gray.svg") no-repeat center / cover;
}

.footer-contact-btn-tell {
  font-size: 14px;
}

.footer-contact-privacy {
  margin-top: 30px;
}

.footer-contact-privacy a {
  font-size: 14px;
  font-weight: normal;
}

.footer-nav {
  padding: 30px 0 50px;
  background-color: var(--office-color-1);
}

.footer-nav-inner {
  padding: 0 8vw;
  color: #fff;
}

.footer-nav-inner address {
  font-size: 13px;
  line-height: 1.7;
}

.footer-nav-inner address > p:first-of-type {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0.5em;
}

.footer-nav-inner address div {
  display: flex;
}

.footer-nav-inner address div p:not(:first-of-type) {
  margin-left: 2em;
}

.footer-nav-inner nav {
  width: fit-content;
  min-width: 150px;
  margin-top: 40px;
  font-size: 14px;
}

.footer-nav-inner nav ul li:not(:first-of-type) {
  margin-top: 3em;
}

.footer-nav-inner nav ul li:nth-last-of-type(1),
.footer-nav-inner nav ul li:nth-last-of-type(2) {
  font-weight: bold;
}

.footer-nav-inner nav dt {
  font-weight: bold;
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: solid 1px #fff;
}

.footer-nav-inner nav dl dd {
  display: flex;
  line-height: 1.6;
}

.footer-nav-inner nav dl dd::before {
  content: "・";
  display: inline-block;
  flex-shrink: 0;
  width: 4px;
  height: 1px;
  margin: 0 12px 5px 0;
}

.footer-nav-inner nav dl dd:not(:first-of-type) {
  margin-top: 0.6em;
}

.footer-map {
  display: block;
  width: 100%;
  position: relative;
  padding-top: 133%;
}

.footer-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pagetop {
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
  position: relative;

  position: fixed;
  z-index: 11;
  right: 10px;
  bottom: 10px;
  display: block;
  width: 30px;
  height: 128px;
  background: url("../images/office/btn_pagetop.png") no-repeat center / 18px
    auto;
}

.pagetop {
  opacity: 0;
  visibility: hidden;
  transition: var(--hover-transition);
}

.pagetop.active {
  opacity: 1;
  visibility: visible;
}

/* ------------------------------
  フロントページ(sp)
------------------------------ */
.hero-slide {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100svh;
}

.hero-slide .swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero-slide-pic-1 {
  background-image: url("../images/office/hero_1_sp.jpg");
}

.hero-slide-pic-2 {
  background-image: url("../images/office/hero_2_sp.jpg");
}

.hero-slide-pic-3 {
  background-image: url("../images/office/hero_3_sp.jpg");
}

.hero-slide-pic-4 {
  background-image: url("../images/office/hero_4_sp.jpg");
}

.hero-slide-transparency {
  opacity: 0;
}

.hero-title-wrap {
  position: relative;
  width: 100%;
  height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
  max-width: 290px;
  aspect-ratio: 1;
  border: solid 2px rgba(255, 255, 255, 0.7);
  transform: translateY(-5%);
}

.hero-title img {
  width: 57%;
  max-width: 164px;
}

.hero-title {
  visibility: hidden;
  opacity: 0;
  transition: 1s;
  transition-delay: 0.5s;
}

.hero-title img {
  visibility: hidden;
  opacity: 0;
  transition: 1.5s;
  transition-delay: 2s;
  transform: translateY(22%);
}

.loaded.hero-title {
  visibility: visible;
  opacity: 1;
}

.loaded.hero-title img {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* 新着ニュース(sp) */
.home-news-new {
  position: absolute;
  z-index: 1;
  left: 0;
  width: 100%;
  bottom: 20px;
  padding: 0 30px;
  letter-spacing: 0.08em;
}

.home-news-new a {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  width: 100%;
  padding: 16px 12px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--text-color-news);
}

.home-news-new-title {
  flex-shrink: 0;
  display: block;
  font-size: 13px;
  white-space: nowrap;
}

.home-news-new a:not(:first-of-type) {
  margin-top: 10px;
}

.home-news-new .tag {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 20px;
  border-radius: 8px;
  font-size: 10px;
  color: #fff;
  white-space: nowrap;
  margin-left: 1.5em;
}

.tag.news {
  background-color: var(--office-color-2);
}

.tag.news_housing {
  background-color: var(--housing-color-2);
}

.tag.news_real_estate {
  background-color: var(--realestate-color-2);
}

.home-news-new .date {
  flex-shrink: 0;
  font-size: 13px;
  line-height: 18x;
  margin-left: 1em;
}

.home-news-new .title {
  width: 100%;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 0.5em;
}

.home-container {
  background-color: #fff;
}

/* 私たちのこと(sp) */
.home-about {
  background: url("../images/office/home_about_bg.png") no-repeat
    calc(50% - 105px) 20px / 378px auto;
  padding: 380px 0 60px;
}

.home-about-inner {
  padding: 0 8vw;
}

.home-about-inner p {
  font-size: 19px;
  line-height: 2;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 30px;
}

.home-about-link {
  display: flex;
  align-items: center;
  width: fit-content;
  font-size: 15px;
  font-weight: 700;
  color: var(--office-color-1);
  margin: 40px auto 0;
}

/* 事業内容(sp) */
.home-service {
  padding-top: 30px;
  background-color: var(--office-color-3);
}

.home-service-inner {
  padding: 0 8vw;
}

.home-service-inner p {
  font-size: 15px;
  line-height: 2;
  margin-top: 30px;
  margin-bottom: 30px;
}

.home-service-pic {
  pointer-events: none;
  width: 100%;
  max-width: 264px;
  aspect-ratio: 830 / 838;
  margin: 30px auto 30px;
  background: url("../images/office/home_service_pic.png") no-repeat center /
    100% auto;
}

.home-service-list-item-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 244px;
}

.home-service-list-item-btn.re {
  background: url("../images/office/home_service_btn_re_bg_sp.jpg") no-repeat
    center / cover;
}

.home-service-list-item-btn.exterior {
  background: url("../images/office/home_service_btn_exterior_bg_sp.jpg")
    no-repeat center / cover;
}

.home-service-list-item-btn.house {
  background: url("../images/office/home_service_btn_house_bg_sp.jpg") no-repeat
    center / cover;
}

 .home-service-list-item-btn.beauty {
    background: url("../images/office/home_service_btn_beauty_bg_sp.jpg")
      no-repeat center / cover;
  }

.home-service-list-item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 170px;
  background-color: rgba(162, 82, 15, 0.6);
  color: #fff;
	text-align:center;
}

.home-service-list-item-inner P:nth-of-type(1) {
  font-size: 23px;
  font-weight: bold;
  line-height: 1.25em;
}

.home-service-list-item-inner P:nth-of-type(2) {
  font-size: 14px;
  margin: 1.2em 0;
  margin-top: 8px;
}

.home-service-list-item-inner .btn-arrow {
  margin-left: 0;
}

/* 会社案内(sp) */
.home-overview {
  padding-top: 60px;
}

.home-overview-inner .section-title {
  padding: 0 8vw;
}

.home-overview-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.home-overview-contents-wrap {
  position: relative;
  margin-top: 30px;
  padding-top: 95.63vw;
}

.home-overview-contents-wrap::before {
  content: "";
  position: absolute;

  top: 11.86vw;
  left: 0;
  display: block;
  width: 100%;
  height: 72.53vw;
  background-color: var(--office-color-3);
}

.home-overview-contents-wrap::after {
  content: "";
  position: absolute;

  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 94.93vw;
  background: url("../images/office/home_overview_bg_sp.png") no-repeat 0 0 /
    100% auto;
}

.home-overview-contents {
  order: 3;
  margin-top: 30px;
  padding: 0 8vw;
}

.home-overview-contents p {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
}

.home-overview-btn-wrap {
  width: fit-content;
  margin: 40px auto 0;
}

.home-overview-btn-wrap li:not(:first-of-type) {
  margin-top: 30px;
}

.home-overview-btn-wrap a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  color: var(--office-color-1);
}

/* お知らせ(sp) */
.home-news {
  padding-top: 120px;
  background: url("../images/office/home_news_bg.png") no-repeat
    calc(50% + 274px) 20px / 548px auto;
}

.home-news-inner .section-title {
  padding: 0 8vw;
  margin-bottom: 20px;
}

.home-news-list-wrap {
  padding: 40px 8vw;
  background-color: rgba(253, 235, 225, 0.9);
}

.home-news-list li {
  padding: 20px 0;
  border-bottom: solid 1px #f9cec5;
}

.home-news-list a {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}

.home-news-list .tag {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 78px;
  height: 20px;
  border-radius: 9999px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  color: #fff;
}

.home-news-list .date {
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-left: 1em;
}

.home-news-list .title {
  width: 100%;
  margin-top: 1em;
  font-size: 15px;
  line-height: 1.6;
}

.home-news-link {
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 30px auto 0;
  font-size: 14px;
  font-weight: bold;
  color: var(--office-color-1);
}

/* 採用情報(sp) */
.home-recruit {
  padding: 60px 0 60px 0;
}

.home-recruit-inner {
  padding: 0 8vw 0 0 ;
}

.home-recruit-inner .section-title-wrap {
  position: relative;
  width: 56.53vw;
  background: url("../images/office/home_recruit_bg.jpg") no-repeat 0 0 /
    70vw auto;
  height: 30vw;
}

.home-recruit-inner .section-title {
  position: absolute;
  top: 15px;
  right: -122px;
  display: flex;
  flex-direction: column;
  width: fit-content;
}

.home-recruit-inner .section-title-main {
  /* order: 2; */
  font-size: 44px;
}

.home-recruit-inner .section-title-sub {
  /* order: 1; */
  width: fit-content;
  /* margin: 1em 0 0.5em auto;
  transform: translateX(1em); */
  margin: 0.8em 0.5em 0 auto;
}

.home-recruit-inner p {
  padding-top: 15px;
  font-size: 15px;
  line-height: 2;
	margin-left:30px;
}

.home-recruit-link {
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 30px auto 0;
  font-size: 14px;
  font-weight: bold;
  color: var(--office-color-1);
}


  /* KENJAリンク202406(sp) */
	.kenja_link{
	  padding: 0px 0 60px;}

	.kenja_inner{
		width: 100%;
		margin-inline: auto;
		padding: 0;
}
	.kenja_inner p{
		display:block;
		padding: 7px 1em 7px;
		background-color:#272221;
		text-align:center;
		color:white;
		font-size:14px;
		line-height:1.5em;
}

#top_message .kenja_link{
padding: 60px 0 0px;
}


/* スタッフブログ(sp) */
.home-blog {
  padding: 40px 0 50px;
  background-color: #f5f2ec;
}

.home-blog-inner {
  padding: 0 8vw;
}

.home-blog-slider {
  margin-left: auto;
  margin-right: auto;
  width: 84vw;
  position: relative;
  color: --text-color-news;
}

.home-blog-slider a {
  display: block;
}

.home-blog-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.home-blog-slider .swiper {
  width: 84vw;
}

.home-blog-slider .swiper-button-next,
.home-blog-slider .swiper-button-prev {
  position: absolute;
  z-index: 1;
  top: calc(84vw * 0.37);
  width: 38px;
  height: 38px;
  margin-top: 0;
  transform: translateY(-50%);
}

.home-blog-slider .swiper-button-prev {
  left: -19px;
  background: url("../images/office/home_blog_slide_btn_prev.png") no-repeat
    center / cover;
}

.home-blog-slider .swiper-button-next {
  right: -19px;
  background: url("../images/office/home_blog_slide_btn_next.png") no-repeat
    center / cover;
}

.home-blog-slider .swiper-button-next::after,
.home-blog-slider .swiper-button-prev::after {
  content: none;
}

.home-blog-title {
  color: var(--text-color);
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.home-blog-title-main {
  display: block;
  font-size: 30px;
  letter-spacing: 0.06em;
  text-indent: 0.06em;
}

.home-blog-title-sub {
  display: block;
  font-size: 18px;
  margin-top: 1em;
}

.home-blog .more-wrap {
  margin-top: 40px;
}

.home-blog .more {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-inline: auto;
}

.home-blog .more span {
  font-size: 14px;
  font-weight: 700;
}

.home-blog .date-wrap {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.blog-tag-new {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 20px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  background-color: var(--office-color-1);
  border-radius: 9999px;
  margin-left: 1em;
}

.home-blog .date {
  display: block;
  font-size: 14px;
}

.home-blog .title {
  margin-top: 0.5em;
  font-size: 15px;
  line-height: 1.6;
}

/* insta feed(sp) */
.home-instafeed-list-wrap {
  margin-top: 30px;
  padding-top: 3.5dvb;
  border-top: solid 1px #afafaf;
}

.home-instafeed-list-wrap .home-blog-title{
align-items: center;
margin-bottom: 20px;
}

.home-instafeed-list-wrap img.instagram{
  width: 40px;
  height: auto;
  
}

.home-instafeed-list-wrap .home-blog-title-sub{
  font-size: 20px;
   margin: 10px 0 0 0;
}

/* sns(sp) */
.home-sns-list-wrap {
  margin-top: 30px;
  padding-top: 20px;
  border-top: solid 1px #afafaf;
}

.home-sns-list {
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  margin-inline: auto;
}

.home-sns-list li {
  width: 50%;
}

.home-sns-list li:nth-of-type(n + 3) {
  margin-top: 35px;
}

.home-sns-list li:nth-of-type(odd) {
  padding-right: 25px;
}

.home-sns-list li:nth-of-type(even) {
  padding-left: 25px;
}

.home-sns-list li:nth-of-type(odd) a {
  margin-left: auto;
}

.home-sns-list li:nth-of-type(even) a {
  margin-right: auto;
}

.home-sns-list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
}

.home-sns-list li span {
  display: flex;
  height: 70px;
  align-items: center;
  justify-content: center;
}

.home-sns-list li p {
  font-size: 14px;
}

.home-sns-list .instagram {
  width: 38px;
}

.home-sns-list .line {
  width: 42px;
}

.home-sns-list .youtube {
  width: 50px;
}

/* ------------------------------
  私たちのこと(sp)
------------------------------ */
.about.main {
  margin-top: 0;
}

.about {
  background: url("../images/office/home_about_bg.png") no-repeat
    calc(50% - 88px) -52px / 378px auto;
  padding-top: 330px;
}

.about-inner {
  padding: 0 8vw;
}

.about-copy {
  margin: 2em 0;
  font-size: 19px;
  line-height: 2;
  font-weight: 700;
}

.about-text {
  font-size: 14px;
  line-height: 2.5;
  letter-spacing: 0.1em;
}

/* トップメッセージ(sp) */
.top-message {
  margin-top: 100px;
}

.top-message-title {
  width: fit-content;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  text-align: center;
}

.top-message-title-main {
  font-size: 30px;
  letter-spacing: 0.04em;
  text-indent: 0.04em;
}

.top-message-title-sub {
  margin-top: 1em;
  font-size: 16px;
}

.top-message-pic {
  margin: 40px 0 30px;
}

.top-message-pic img {
  width: 100%;
}

.top-message-text-wrap {
  padding: 0 8vw;
}

.top-message-text-title {
  font-size: 17px;
  line-height: 2;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.top-message-text-wrap p {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.08em;
  margin-top: 2em;
}

.top-message-text-wrap p:last-of-type {
  width: fit-content;
  margin: 3em 0 0 auto;
}

.top-message-text-wrap .top-message-text-title:not(:first-of-type) {
  margin-top: 3em;
}

.about-btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 185px;
  margin: 60px auto 0;
}

.about-btn-wrap a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  color: var(--office-color-1);
}

/* ------------------------------
  会社概要、スタッフ紹介(sp)
------------------------------ */
.overview.section-bg::before {
  background-image: url("../images/office/overview_bg_sp.jpg");
}

.overview-title {
  font-size: 24px;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-align: center;
  margin: 60px 0 0 0;
}

.overview-list {
  font-size: 14px;
  line-height: 2;
  margin-top: 2em;
  border-bottom: dashed 1px var(--text-color);
}

div.group_list{
border-bottom: dashed 1px var(--text-color);
padding-bottom:1em;
margin-bottom:1em;
}

.overview-list dt {
  font-weight: 400;
}

.overview-list > div > dt {
  border-top: dashed 1px var(--text-color);
  border-bottom: none 1px var(--text-color);
  background-color: #f5f5f5;
  padding: 1em;
}

.overview-list > div > dd {
  padding: 1em;
}

.overview-list dl div:not(:first-of-type) {
  margin-top: 1em;
}

.overview-list dl dt::before {
  content: "■";
}

.overview-list dl dt.group::before {
  content: "□";
}

.overview-list dl dd{
margin-left:1em;}


.overview-list div.ma_gigyo{
display: flex;
align-items: center;
}

.ma_gigyo div:first-child{
margin-right:15px;
}

.ma_gigyo .btn-arrow{
margin-left:0px;
}
.ma_logo{
  display: block;
  width: 100px ;
}



.overview-list .map {
  display: inline-block;
}

.overview-list .map::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 14px;
  background: url("../images/office/icon_map.svg") no-repeat center bottom / 8px
    auto;
  margin: 0 0.5em 0 1em;
  transform: translateY(2px);
}

.staff.section-bg {
  margin-top: 100px;
}

.staff.section-bg::before {
  background-image: url("../images/office/staff_bg_sp.jpg");
}

.acctess-map {
  display: block;
  width: 100%;
  margin-top: 40px;
  padding-right:20px;
  padding-left:20px;
}

/* モーダル(sp) */
.modal-overlay {
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

.modal-container {
  background-color: #fdf2eb;
  max-height: 100svh;
  max-width: 500px;
  overflow-y: auto;
  padding: 20px 8vw 40px;
  width: 100%;
}

.modal-close {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background: url("../images/office/btn_modal_close.svg") no-repeat center /
    cover;
  outline: none;
  margin-left: auto;
}

.modal-content-pic-wrap {
  position: relative;
  width: 90%;
  margin: 20px auto 30px;
}

.modal-content-pic {
  width: 100%;
}

.modal-content-pic-sub {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 37.5%;
  transform: translate(20%, 20%);
}

.modal-content-job {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 0.6em;
}

.modal-content-name {
  font-size: 26px;
  text-align: center;
}

.modal-content dl {
  font-size: 14px;
  line-height: 2;
  margin-top: 2em;
}

.modal-content dl div:not(:first-of-type) {
  margin-top: 2em;
}

.modal-content dt {
  font-weight: 400;
}

.modal-content dt::before {
  content: "■";
}

/* モーダルアニメーション */
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal-overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal-container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal-overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal-container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal-container,
.micromodal-slide .modal-overlay {
  will-change: transform;
}

.staff-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 6vw;
  margin-top: 50px;
}

.staff-list-item {
  width: calc(50% - 3vw);
}

.modal-open {
  display: block;
  outline: none;
}

.modal-open img {
  display: block;
  width: 100%;
  margin-bottom: 20px;

}

.modal-open-job {
  display: block;
  font-size: 11.5px;
  line-height: 1.6;
  text-align: center;
  margin: 0 0 0.5em;
}

.modal-open-name {
  display: block;
  font-size: 16px;
  text-align: center;
}

.modal-open .btn-arrow {
  display: block;
  width: 38px;
  margin: 20px auto 0;
}

.staff-list-item .getting-ready {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 2;
  background-color: #eeefef;
  text-align: center;
  padding-top: 1.5em;
}

.staff .more {
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 60px auto 0;
  font-size: 13px;
  font-weight: bold;
  color: var(--office-color-1);
}

.staff .more .btn-arrow {
  width: 38px;
}

.staff-list-item .modal-open img{
  background-image: url("../images/office/staff-bk01.svg");
}

.staff-list-item:nth-child(even) .modal-open img{
  background-image: url("../images/office/staff-bk02.svg");
}


/* ------------------------------
  採用情報(sp)
------------------------------ */
.recruit.section-bg::before {
  background-image: url("../images/office/recruit_bg_sp.jpg");
}

.recruit-text {
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.04em;
  margin: 3em 0 4em;
}

.recruit-type-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.recruit-type-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 305px;
  margin: 50px auto;
}

.recruit-type-list a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  font-size: 16px;
  color: var(--office-color-1);
  border: solid 1px var(--office-color-1);
}

.recruit-type-item {
  padding: 8vw 0;
  background-color: #f7f5f1;
}

.recruit-type-item + .recruit-type-item {
  margin-top: 8vw;
}

.recruit-type-item-inner {
  padding: 0 8vw;
}

.recruit-type-item-title {
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  padding: 0.8em;
  background-color: #f7be9b;
}

.recruit-type-item-list {
  font-size: 14px;
  line-height: 2;
}

.recruit-type-item-list div {
  margin-top: 10px;
}

.recruit-type-item-list div:not(:first-of-type) {
  margin-top: 0px;
}

.recruit-type-item-list dt {
  letter-spacing: 0.04em;
  font-weight: bold;
  padding: 1em 1.5em;
  background-color: #eceae4;
}

.recruit-type-item-list dd {
  padding: 1em 1.5em;
  background-color: #fff;
}

.recruit-type-item-contact-wrap {
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  line-height: 2;
}

.recruit-type-item-contact-title {
  font-size: 18px;
  font-weight: bold;
  margin: 2em 0 0.5em;
}

.recruit-type-item-contact-text {
  font-size: 14px;
}

.recruit-type-item-contact-tel {
  font-size: 18px;
}

  /* -----------------------------
    美容生活(sp)
  ------------------------------ */
  .beauty.section-bg::before {
    background-image: url("../images/beauty-life/beauty_bg_sp.jpg");
  }

  .business_title{
    text-align: center;
    margin-top: 80px;
  }
  .business_title .bis_name {
    display: flex;
    justify-content: center; /* 水平方向中央揃え */
    align-items: center; /* 垂直方向中央揃え */
    width: 300px; /* 枠の幅 */
    min-height: 50px; /* 枠の高さ */
    border: 1px solid var(--office-color-beauty); /* 枠線 */
    padding: 1em;
    margin: auto;
    font-size: 20px;
    color: var(--office-color-beauty);
  }

  .bis_logo{
    margin-top: 20px;
    margin-bottom: 100px;
  }

  .bis_logo img{width: 200px;margin-bottom: 10px;} 

  .bland_container{
    font-size: 15px;
    line-height: 2em;
    background-color: #fdf4f7;
    padding: 60px 8vw 60px;
  }

  .bland_container:last-child{
    padding-top: 50px;
  }

  .bland_name{
    text-align: center;
    width: 100%;
    margin: 0px auto 40px;  
  }
  .bland_logo p{
    border-top: #231815 solid 1px;
    margin-top: 0.8em;
    padding-top: 0.5em;
  }
  .bland_logo img{width: 200px;} 

  .bland_wrapper .block01{
    position: relative;
  }

  .bland_wrapper .block01 > div:first-child{
    width: calc(100% + 16vw);
    margin: 0 -8vw 30px;
  }

  .bland_wrapper .block01 .txtbox > h3{
    font-size: 24px;
    margin-top: 1em;
    line-height: 1.5em;
  }

  .bland_wrapper .block01 .txtbox > p{
    font-size: 15px;
    line-height: 2em;
    margin-top: 1.5em;
  }

  .bland_wrapper .block02{
    margin: 60px auto;
  }

  .bland_wrapper .add{
    margin-top: 1em;
  }

  .bland_wrapper .add p:first-child{
    font-size: 16px;
    font-weight: bold;
  }

  .bland_wrapper .add p.oval-button {
    display: inline-block; /* インラインブロック要素にする */
    padding: 10px 30px; /* パディングを設定 */
    
    color: #231815; /* 文字色を設定 */
    text-align: center; /* 文字を中央揃えにする */
    text-decoration: none; /* 下線を消す */

    border-radius: 25px; /* 角を丸くする */
    border: solid 1px #627782;
    font-size: 15px; /* 文字サイズを設定 */
    cursor: pointer; /* カーソルをポインターにする */
    margin-top: 20px;
  }
  .bland_wrapper .add p.insta{
    display: inline-block;
    width: 38px;
    margin-left: 20px;

  }

  .bland_wrapper .add.waen{margin-top: 2em;}

/* ------------------------------
  お知らせ(sp)
------------------------------ */
.news-archive.section-bg::before,
.news-single.section-bg::before {
  background-image: url("../images/office/news_bg_sp.jpg");
}

/* お知らせ_一覧(sp) */
.news-archive-list {
  margin-top: 40px;
  border-top: solid 1px #afbabf;
}

.news-archive-list-item {
  padding: 20px 0;
  border-bottom: solid 1px #afbabf;
}

.news-archive-list-item a {
  display: block;
  width: fit-content;
  color: var(--text-color-news);
}

.news-archive-list-item .date-wrap,
.news-single .date-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.home-news-list .tag,
.news-archive-list-item .tag,
.news-single .tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 20px;
  border-radius: 9999px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  color: #fff;
}

.news-archive-list-item .date,
.news-single .date {
  font-size: 12px;
  letter-spacing: 0.1em;
  padding-left: 1em;
}

.news-archive-list-item .title {
  font-size: 14px;
  line-height: 2;
  margin-top: 1em;
}

/* ページネーション(sp) */
.news-archive .pagination {
  margin-top: 40px;
}

.pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  margin-inline: auto;
  font-size: 14px;
}

.pagination .page-numbers li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: #e6e6e6;
  transition: var(--hover-transition);
}

.pagination .page-numbers .current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 32px;
  padding: 0 0.2em;
}

.pagination .page-numbers .dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 32px;
}

.pagination .page-numbers li:not(:first-of-type) {
  margin-left: 10px;
}

/* お知らせ_詳細(sp) */
.news-single .date-wrap {
  display: flex;
  align-items: baseline;
  margin-top: 40px;
}

.news-single .title {
  font-size: 16px;
  line-height: 1.8;
  padding: 1em 0 1em;
  margin-bottom: 30px;
  border-bottom: solid 1px #afbabf;
}

.news-single .contents {
  font-size: 14px;
  line-height: 2;
}

.news-single .contents p{margin-bottom:1em;}

.single-btn-return {
  display: block;
  width: fit-content;
  margin-inline: auto;
  font-size: 14px;
  color: #627782;
  padding: 0.5em 1.5em;
  border-radius: 9999px;
  background-color: #e6e6e6;
  margin-top: 60px;
}

/* ------------------------------
  スタッフブログ(sp)
------------------------------ */
.blog-archive.section-bg::before,
.blog-single.section-bg::before {
  background-image: url("../images/office/blog_bg_sp.jpg");
}

/* スタッフブログ_一覧(sp) */
.blog-archive .container-inner {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.blog-archive-list-wrap {
  order: 1;
}

.blog-archive-side {
  order: 3;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #c0c1c1;
  line-height: 1.6;
}

.blog-archive .pagination {
  order: 2;
  margin: 40px -8vw 0;
}

.blog-archive-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-archive-list-item a {
  display: block;
  color: var(--text-color-news);
}

.blog-archive-list-item-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.blog-archive-list-item .date-wrap {
  display: flex;
  align-items: baseline;
  margin-top: 15px;
}

.blog-archive-list-item .date {
  font-size: 13px;
}

.blog-archive-list-item .title {
  font-size: 15px;
  line-height: 1.6;
  margin-top: 0.5em;
}

.blog-category {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0.6em;
}

.blog-category li {
  display: inline;
  width: fit-content;
  font-size: 12px;
  line-height: 1.4;
  padding: 0.2em 0.5em;
  background-color: #e4e4e4;
  color: var(--text-color);
}

.blog-category li a {
  color: var(--text-color-news);
}

.blog-archive-side .title {
  margin-bottom: 1em;
  font-size: 16px;
  font-weight: 700;
  color: var(--office-color-1);
}

.blog-archive-side .title:not(:first-of-type) {
  margin-top: 3em;
}

.blog-archive-side ul li {
  display: flex;
  align-items: baseline;
  font-size: 15px;
}

.blog-archive-side ul li::before {
  content: "●";
  color: #c9c9c9;
  padding-right: 0.2em;
}

.blog-archive-side ul li:not(:first-of-type) {
  margin-top: 0.8em;
}

.blog-archive-side a {
  color: var(--text-color-news);
}

/* スタッフブログ_詳細(sp) */
.blog-single {
  overflow: hidden;
}

.blog-single-title {
  margin: 40px calc(50% - 50vw) 0;
  padding: 30px 0;
  width: 100vw;
  background-color: var(--office-color-3);
  color: var(--text-color-news);
}

.blog-single-title .date-wrap {
  display: flex;
  align-items: baseline;
}

.blog-single-title .date {
  font-size: 14px;
}

.blog-single-title .title {
  font-size: 16px;
  line-height: 1.8;
  margin: 1em 0;
}

.blog-single .container-inner {
  margin-top: 40px;
}

.blog-single-contents {
  font-size: 15px;
  line-height: 2;
}

.blog-single-contents p{margin-bottom:1em;}


/* ------------------------------
  お問い合わせ(sp)
------------------------------ */
.contact.section-bg::before {
  background-image: url("../images/office/contact_bg_sp.jpg");
}

.contact-text {
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.04em;
  margin: 40px 0 50px;
}

.contact-privacy-title {
  font-size: 13px;
  line-height: 2.2;
  margin-top: 60px;
  font-weight: 700;
}

.contact-privacy-title + p {
  font-size: 13px;
  line-height: 2.2;
  margin-top: 1em;
}

.contact-privacy-title + p a {
  text-decoration: underline;
}

.contact-form {
  font-size: 14px;
  line-height: 1.8;
  border-top: solid 1px #d1d2d2;
  border-bottom: solid 1px #d1d2d2;
  padding: 30px 0 40px;
}

.contact-form > div:not(:first-of-type) {
  margin-top: 2em;
}

.contact-form .border {
  border-top: solid 1px #d1d2d2;
  padding-top: 2em;
}

.contact-form dt {
  display: flex;
  align-items: baseline;
  font-weight: 700;
  margin-bottom: 1.5em;
}

.contact-form .tag-required {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3em;
  height: 1.8em;
  margin-right: 0.5em;
  font-size: 13px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  background-color: var(--office-color-2);
}

.contact-form .checkbox label {
  display: flex;
}

.contact-form .checkbox input {
  flex-shrink: 0;
}

.contact-form .checkbox label:not(:first-of-type) {
  margin-top: 0.8em;
}

.contact-form .address div:not(:first-of-type) {
  margin-top: 0.8em;
}

/* チェックボックスデザイン(sp) */
input[type="checkbox"] {
  cursor: pointer;
  margin-right: 0.8em;
  width: 24px;
  height: 24px;
  position: relative;
}

input[type="checkbox"]::before,
input[type="checkbox"]::after {
  content: "";
  display: block;
  position: absolute;
}

input[type="checkbox"]::before {
  background-color: #fff;
  border-radius: 0%;
  border: 1px solid #929292;
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
}

input[type="checkbox"]::after {
  border-bottom: 2px solid var(--text-color);
  border-left: 2px solid var(--text-color);
  opacity: 0;
  height: 8px;
  width: 12px;
  transform: translate(-50%, -50%) rotate(-45deg);
  top: calc(50% - 2px);
  left: calc(50%);
}

input[type="checkbox"]:checked::after {
  opacity: 1;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.5em;
  border: solid 1px #929292;
  font-size: 16px;
  line-height: 1.8;
  background-color: #fff;
}

input::placeholder {
  opacity: 0.7;
}

input[type="text"].post-code {
  width: 10em;
}

textarea {
  height: 230px;
  resize: vertical;
}

.address {
  display: block;
}

span[data-name="your-address-1"],
span[data-name="your-address-2"] {
  display: block;
}

span[data-name="your-address-2"] {
  margin-top: 1em;
}

.form-btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  margin-top: 40px;
}

.form-btn-confirm,
.form-btn-return,
.form-btn-submit {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
  height: 66px;
  font-size: 18px;
  color: #fff;
  background-color: #5cc0bf;
}

.form-btn-return {
  background-color: var(--office-color-2);
}

/* お問い合わせ_確認(sp) */
.page_contact_confirm dd {
  padding: 0.5em;
}

.contact-confirm-title {
  margin: 60px 0 40px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}

/* お問い合わせ_完了(sp) */
.contact-thanks-title {
  margin: 60px 0 40px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1em;
  text-indent: 1em;
  text-align: center;
}

.contact-thanks-text {
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.04em;
}

.contact-thanks-btn-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: fit-content;
  margin: 60px auto 0;
}

.contact-thanks-btn-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  color: var(--office-color-1);
}

.contact-thanks-btn-list a .btn-arrow {
  width: 38px;
  margin-left: 1em;
}

/* ------------------------------
  プライバシーポリシー(sp)
------------------------------ */
.privacy {
  padding: 30px 8vw 0;
  color: var(--text-color);
  word-break: break-all;
}

.privacy-title {
  margin-bottom: 1em;
  font-size: 22px;
  line-height: 1.8;
  font-weight: 700;
  border-bottom: solid 2px var(--office-color-1);
}

.privacy p {
  font-size: 14px;
  line-height: 2.5;
}

.privacy p + p {
  margin-top: 2em;
  width: fit-content;
}

.privacy p + p span {
  display: block;
  text-align: right;
}

.privacy-item {
  margin-top: 50px;
}

.privacy-item-title {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.8em;
  padding-bottom: 0.2em;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
  border-bottom: solid 1px #a6a6a6;
}

.privacy-item-title span {
  display: inline-block;
  flex-shrink: 0;
}

.privacy-item ol {
  font-size: 14px;
  line-height: 2.4;
}

.privacy-item > ol > li {
  counter-increment: cnt;
  position: relative;
  padding-left: 2.2em;
}

.privacy-item > ol > li:before {
  content: "（" counter(cnt) "）";
  display: inline-block;
  margin-left: -0.5em;
  position: absolute;
  top: 0;
  left: 0;
}

.privacy-item > ol > li > ol > li {
  display: flex;
  align-items: baseline;
}

.privacy-item > ol > li > ol > li span {
  display: inline-block;
  margin-right: 0.5em;
}

.privacy-note-wrap {
  margin-top: 100px;
}

.privacy-note-wrap section:not(:first-of-type) {
  margin-top: 50px;
}

.privacy-note-title {
  margin-bottom: 0.6em;
  font-size: 18px;
  line-height: 1.8;
  font-weight: bold;
}

.privacy-note-title::before {
  content: "■";
}

/* ------------------------------
  404(sp)
------------------------------ */
.page_404_title {
  padding-top: 80px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.page_404_text {
  margin-top: 40px;
  font-size: 14px;
  text-align: center;
}

@media (min-width: 1000px) {
  /* ------------------------------
    common(pc)
  ------------------------------ */
  .pc {
    display: inline-block;
  }

  .sp {
    display: none;
  }

  /* ------------------------------
    layout(pc)
  ------------------------------ */
  html {
    scroll-padding-top: 100px;
  }

  body {
    min-width: 1000px;
    overflow-x: hidden;
  }

  .main {
    margin-top: 100px;
  }

  .container {
    padding: 0;
    width: 1000px;
    margin-inline: auto;
  }

  .section-title-main {
    font-size: 100px;
    color: var(--office-color-2);
  }

  .section-title-sub {
    font-size: 22px;
  }

  .section-bg {
    padding-top: 250px;
  }

  .section-bg::before {
    height: 310px;
  }

  /* ------------------------------
    parts(pc)
  ------------------------------ */

  /* ------------------------------
    header(pc)
  ------------------------------ */
  .header-btn-wrap-sp {
    display: none !important;
  }

  .header-nav-sp-wrap {
    display: none !important;
  }

  .header {
    height: 100px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    height: 100px;
    padding: 40px 10px 30px 40px;
  }

  .header-inner {
    transition: 0.5s;
  }

  .header-inner:hover {
    background-color: #fff;
  }

  .header-logo {
    width: 200px;
  }

  .header-nav-pc-wrap {
    display: block;
  }

  .header-nav-pc {
    display: flex;
    justify-content: space-between;
    width: 750px;
  }

  .header-nav-pc > li {
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
    font-size: 14px;
  }

  .header-nav-pc dl {
    padding: 0 1em;
  }

  .header-nav-pc dt {
    display: flex;
    align-items: center;
    cursor: default;
    font-weight: 400;
  }

  .header-nav-pc dt::after {
    content: "";
    display: block;
    width: 11px;
    height: 7px;
    background: url("../images/office/nav_bg.png") no-repeat center / 11px auto;
    margin: 4px 0 0 8px;
  }

  .header-nav-pc dd {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 5px;
    background-color: #fff;
  }

  .header-nav-pc dl a {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 1em;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
    background-color: #f5f5f5;
  }

  .header-nav-pc dl li:not(:first-of-type) {
    margin-top: 2px;
  }

  .header-nav-pc > li > a {
    height: 40px;
    padding: 1em;
    display: flex;
    align-items: center;
    transition: var(--hover-transition);
  }

  .header-nav-pc dl a {
    transition: var(--hover-transition);
  }

  .header-nav-pc dd {
    visibility: hidden;
    opacity: 0;
    transition: var(--hover-transition);
  }

  .header-nav-pc li:hover dd {
    visibility: visible;
    opacity: 1;
  }



  /* ------------------------------
    footer(pc)
  ------------------------------ */
  .footer {
    margin-top: 150px;
  }

  .footer-contact {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    max-width: initial;
    width: 1000px;
    margin: 0 auto;
    padding: 100px 0;
    border-top: solid 1px #afafaf;
  }

  .footer-contact-title {
    font-size: 40px;
  }

  .footer-contact-title span {
    text-align: left;
  }

  .footer-contact-btn-list {
    display: flex;
    justify-content: space-between;
    margin-top: 0;
    max-width: initial;
    width: 625px;
  }

  .footer-contact-btn-mail {
    width: 300px;
  }

  .footer-contact-btn-tell {
    width: 300px;
    margin-top: 0;
  }

  .footer-contact-privacy {
    width: 100%;
    margin-top: 30px;
    padding-left: 620px;
  }

  .footer-nav {
    padding: 40px 0 50px;
  }

  .footer-nav-inner {
    display: flex;
    justify-content: space-between;
    width: 1000px;
    margin-inline: auto;
    padding: 0;
  }

  .footer-nav-inner nav {
    min-width: initial;
    margin-top: 0;
    width: 540px;
  }

  .footer-nav-inner nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-nav-inner nav li {
    width: 150px;
  }

  .footer-nav-inner nav li a {
    white-space: nowrap;
  }

  /* .footer-nav-inner nav li:nth-of-type(2) {
    background-color: tomato;
    will-change: 170px;
  } */

  .footer-nav-inner nav ul li:not(:first-of-type) {
    margin-top: 0;
  }

  .footer-nav-inner nav ul li:nth-of-type(n + 4) {
    margin-top: 3em;
  }

  .footer-map {
    padding-top: 32%;
  }

  .pagetop {
    right: 20px;
    bottom: 120px;
  }

  /* ------------------------------
    フロントページ(pc)
  ------------------------------ */
  .hero-slide-pic-1 {
    background-image: url("../images/office/hero_1_pc.jpg");
  }

  .hero-slide-pic-2 {
    background-image: url("../images/office/hero_2_pc.jpg");
  }

  .hero-slide-pic-3 {
    background-image: url("../images/office/hero_3_pc.jpg");
  }

  .hero-slide-pic-4 {
    background-image: url("../images/office/hero_4_pc.jpg");
  }

  .hero-title {
    width: 23%;
    max-width: 400px;
    min-width: 290px;
    transform: translateY(0);
  }

  .hero-title img {
    max-width: initial;
    min-width: 164px;
  }

  /* 新着ニュース(pc) */
  .home-news-new {
    padding: 0;
  }

  .home-news-new a {
    width: 920px;
    flex-wrap: nowrap;
    margin-inline: auto;
  }

  .home-news-new-title {
    flex-shrink: 0;
    display: block;
    font-size: 15px;
    white-space: nowrap;
  }

  .home-news-new .tag {
    width: 98px;
    height: 26px;
    border-radius: 13px;
    font-size: 13px;
  }

  .home-news-new .date {
    font-size: 15px;
    line-height: 26px;
    margin-left: 1.5em;
  }

  .home-news-new .title {
    width: auto;
    font-size: 15px;
    margin: 0 0 0 1.5em;
  }

  /* 私たちのこと(pc) */
  .home .section-title-main {
    font-size: 90px;
  }

  .home-about {
    min-height: 816px;
    background: url("../images/office/home_about_bg.png") no-repeat
      calc(50% - 420px) 66px / 650px auto;
    padding: 200px 0 0 0;
  }

  .home-about-inner {
    padding: 0;
    width: 520px;
    margin-left: calc(50% - 20px);
  }

  .home-about-inner p {
    font-size: 30px;
    margin-top: 50px;
  }

  .home-about-link {
    font-size: 18px;
    margin: 50px 0 0 auto;
  }

  /* 事業内容(pc) */
  .home-service {
    padding-top: 80px;
  }

  .home-service-inner {
    position: relative;
    width: 1000px;
    padding: 0;
    margin-inline: auto;
  }

  .home-service-inner p {
    font-size: 16px;
    line-height: 2;
    margin: 40px 0 90px;
  }

  .home-service-pic {
    position: absolute;
    z-index: 1;
    top: -20px;
    right: 0;
    right: -18px;
    width: 415px;
    max-width: initial;
    margin: 0;
  }

  .home-service-list {
    display: flex;
    max-width: 100%;
    margin-inline: auto;
	flex-wrap: wrap;
  }

  .home-service-list-item {
    width: calc(100% / 2);
  }

  .home-service-list-item-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 380px;
    opacity: 1 !important;
  }

  .home-service-list-item-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 380px;
    background-color: rgba(0, 0, 0, 0);
    transition: var(--hover-transition);
  }

  .home-service-list-item-btn.re {
    background: url("../images/office/home_service_btn_re_bg_pc.jpg") no-repeat
      center / cover;
  }

/*  .home-service-list-item-btn.re .home-service-list-item-inner {
    background: url("../images/office/home_service_btn_re_bg_pc.jpg") no-repeat
      center / auto 400px;
  }*/

  .home-service-list-item-btn.exterior {
    background: url("../images/office/home_service_btn_exterior_bg_pc.jpg")
      no-repeat center / cover;
  }

/*  .home-service-list-item-btn.exterior .home-service-list-item-inner {
    background: url("../images/office/home_service_btn_exterior_bg_pc.jpg")
      no-repeat center / auto 400px;
  }*/

 .home-service-list-item-btn.house {
    background: url("../images/office/home_service_btn_house_bg_pc.jpg")
      no-repeat center / cover;
  }

/*  .home-service-list-item-btn.house .home-service-list-item-inner {
    background: url("../images/office/home_service_btn_house_bg_pc.jpg")
      no-repeat center / auto 400px;
  }*/

 .home-service-list-item-btn.beauty {
    background: url("../images/office/home_service_btn_beauty_bg_pc.jpg")
      no-repeat center / cover;
  }

  .home-service-list-item-inner {
    position: relative;
    width: 250px;
    height: 250px;
background-color: rgba(162, 82, 15, 0.6);
  }

  .home-service-list-item-inner::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    display: block;
    width: 250px;
    height: 250px;
    
  }

  .home-service-list-item:hover .home-service-list-item-inner{
background-color: rgba(0, 0, 0, 0);
transition: var(--hover-transition);
}

  .home-service-list-item-inner P:nth-of-type(1) {
    z-index: 1;
    font-size: 27px;
    font-weight: bold;
    text-align: center;

  }

  .home-service-list-item-inner P:nth-of-type(2) {
    z-index: 1;
    font-size: 16px;
    margin: 1.2em 0;
    margin-top: 10px;
  }

  .home-service-list-item-inner .btn-arrow {
    z-index: 1;
  }

  /* 会社案内(pc) */
  .home-overview {
    position: relative;
    min-height: 774px;
    padding-top: 0;
  }

  .home-overview::before {
    content: "";
    display: block;
    position: absolute;
    top: 300px;
    left: 0;
    right: calc(50% + 187px);
    width: auto;
    height: 425px;
    background-color: var(--office-color-3);
  }

  .home-overview::after {
    content: "";
    display: block;
    position: absolute;
    top: 160px;
    left: calc(50% - 584px);
    width: 520px;
    height: 614px;
    background: url("../images/office/home_overview_bg_pc.png") no-repeat center /
      520px auto;
  }

  .home-overview-inner {
    display: block;
    width: 1000px;
    margin-inline: auto;
  }

  .home-overview-inner .section-title {
    width: 500px;
    margin: 0 0 0 auto;
    padding: 230px 0 0 0;
  }

  .home-overview-contents-wrap {
    position: static;
    margin-top: 0;
    padding-top: 0;
    background: none;
  }

  .home-overview-contents-wrap::before {
    content: none;
  }

  .home-overview-contents-wrap::after {
    content: none;
  }

  .home-overview-contents {
    width: 500px;
    margin: 50px 0 0 auto;
    padding: 0;
  }

  .home-overview-contents p {
    font-size: 16px;
  }

  .home-overview-btn-wrap {
    display: flex;
    width: auto;
    margin: 60px 0 0 0;
  }

  .home-overview-btn-wrap li:not(:first-of-type) {
    margin: 0 0 0 80px;
  }

  .home-overview-btn-wrap a {
    font-size: 18px;
  }

  /* お知らせ(pc) */
  .home-news {
    min-height: 956px;
    padding: 70px 0 0 0;
    background: url("../images/office/home_news_bg.png") no-repeat
      calc(50% + 507px) 70px / 934px auto;
  }

  .home-news-inner {
    width: 1000px;
    padding-top: 80px;
    margin-inline: auto;
  }

  .home-news-inner .section-title {
    height: 90px;
    width: fit-content;
    position: relative;
    padding: 0;
    margin-bottom: 30px;
  }

  .home-news-inner .section-title .section-title-main {
    height: 90px;
  }

  .home-news-inner .section-title .section-title-sub {
    position: absolute;
    right: -150px;
    top: 30px;
    margin: 0;
  }

  .home-news-list-wrap {
    padding: 60px 40px;
  }

  .home-news-list li {
    padding: 30px 20px;
    border-bottom: solid 1px #fff;
  }

  .home-news-list .tag {
    flex-shrink: 0;
    width: 98px;
    height: 26px;
    font-size: 14px;
  }

  .home-news-list .date {
    flex-shrink: 0;
    width: 140px;
    margin: 0;
    padding-left: 38px;
    font-size: 12px;
  }

  .home-news-list .title {
    flex-shrink: 0;
    margin: 0;
    width: 642px;
    font-size: 16px;
  }

  .home-news-link {
    margin: 50px auto 0;
    font-size: 16px;
  }

  /* 採用情報(pc) */
  .home-recruit {
    padding: 60px 0 140px;
    background: url("../images/office/home_recruit_bg.jpg") no-repeat
      calc(50% - 167px) 60px / 480px auto;
  }

  .home-recruit-inner {
    width: 1000px;
    padding: 0;
    margin-inline: auto;
  }

  .home-recruit-inner .section-title-wrap {
    position: static;
    width: auto;
    height: auto;
    background: none;
  }

  .home-recruit-inner .section-title {
    position: static;
    top: auto;
    right: auto;
    display: flex;
    flex-direction: column;
    padding-left: 500px;
    margin-top: 10px;
  }

  .home-recruit-inner .section-title-main {
    font-size: 90px;
  }

  .home-recruit-inner p {
    padding: 30px 105px 0 0;
    text-align: right;
  }

  .home-recruit-link {
    margin: 40px 120px 0 auto;
    font-size: 18px;
  }

  /* KENJAリンク202406(pc) */
	.kenja_link{padding: 0px 0 140px;}

	.kenja_inner{
		width: 800px;
		margin-inline: auto;
		padding: 0;
}
	.kenja_inner p{
		display:block;
		padding: 13px 23px 13px;
		background-color:#272221;
		text-align:center;
		color:white;
}

#top_message .kenja_inner{
		width: 610px;

}


  /* スタッフブログ(pc) */
  .home-blog {
    padding: 50px 0 60px;
    background-color: #f5f2ec;
  }

  .home-blog-title {
    display: flex;
    align-items: baseline;
    margin-bottom: 40px;
  }

  .home-blog-title-main {
    font-size: 40px;
  }

  .home-blog-title-sub {
    font-size: 20px;
    margin: 0 0 0 1.8em;
  }

  .home-blog-inner {
    width: 1000px;
    margin-inline: auto;
    padding: 0;
  }

  .home-blog-slide-wrap {
    display: flex;
    width: 1000px;
    margin-inline: auto;
  }

  .home-blog-slider {
    width: 880px;
    margin: 0;
    padding: 0;
  }

  .home-blog-slider .swiper {
    width: 880px;
  }

  .home-blog-slider .swiper-button-next,
  .home-blog-slider .swiper-button-prev {
    display: none;
  }

  .home-blog-slider .swiper-wrapper {
    display: flex;
  }

  .home-blog-slider .swiper-slide {
    flex-shrink: 0;
    width: 270px;
  }

  .home-blog-slider .swiper-slide:not(:first-of-type) {
    margin-left: 35px;
  }

  .home-blog .more-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 120px;
    padding: 0 0 0 20px;
    margin: 0;
  }

  .home-blog .more {
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin: 84px 0 0 0;
    font-size: 14px;
    font-weight: 700;
  }

  .home-blog .more span {
    order: 2;
    display: block;
  }

  .home-blog .more .btn-arrow {
    order: 1;
    margin: 0 0 1em 0;
  }

  .home-blog .date {
    display: block;
    font-size: 14px;
  }

  .home-blog .title {
    font-size: 15px;
  }

  /* insta feed(pc) */
  .home-instafeed-list-wrap {
    margin-top: 40px;
    padding-top: 30px;
    border-top: solid 1px #afafaf;
  }

.home-instafeed-list-wrap .home-blog-title{
  align-items: center;
  margin-bottom: 20px;
}

  .home-instafeed-list-wrap img.instagram{
    width: 40px;
    height: auto;
    margin-right: 10px;
  }

  .home-instafeed-list-wrap .home-blog-title-sub{
    font-size: 20px;
     margin: 0 0 0 0.2em;
  }


  /* sns(pc) */
  .home-sns-list-wrap {
    margin-top: 40px;
    padding-top: 30px;
  }

  .home-sns-list li {
    width: auto;
  }

  .home-sns-list li:nth-of-type(n + 3) {
    margin-top: 0;
  }

  .home-sns-list li:nth-of-type(odd) {
    padding-right: 0;
  }

  .home-sns-list li:nth-of-type(even) {
    padding-left: 0;
  }

  .home-sns-list li:nth-of-type(odd) a {
    margin-left: 0;
  }

  .home-sns-list li:nth-of-type(even) a {
    margin-right: 0;
  }

  .home-sns-list li:nth-of-type(1) {
    order: 2;
    margin-left: 60px;
  }

  .home-sns-list li:nth-of-type(2) {
    order: 3;
    margin-left: 60px;
  }

  .home-sns-list li:nth-of-type(3) {
    order: 1;
  }

  .home-sns-list li:nth-of-type(4) {
    order: 4;
    margin-left: 70px;
  }

  /* ------------------------------
    私たちのこと(pc)
  ------------------------------ */
  .about {
    background: url("../images/office/home_about_bg.png") no-repeat
      calc(50% - 310px) -80px / 842px auto;
    padding-top: 520px;
  }

  .about-inner {
    width: 1000px;
    margin-inline: auto;
    padding: 0;
  }

  .about .section-title {
    margin-left: 440px;
  }

  .about .section-title-main {
    font-size: 100px;
  }

  .about .section-title-sub {
    font-size: 27px;
    margin-top: 0.8em;
  }

  .about-text-wrap {
    width: fit-content;
    margin-inline: auto;
  }

  .about-copy {
    font-size: 35px;
    line-height: 1.8;
  }

  .about-text {
    font-size: 16px;
    line-height: 3;
  }

  /* トップメッセージ(pc) */
  .top-message {
    margin-top: 160px;
  }

  .top-message-title-main {
    font-size: 50px;
  }

  .top-message-title-sub {
    font-size: 20px;
  }

  .top-message-pic {
    width: 1000px;
    margin: 50px auto 80px;
  }

  .top-message-text-wrap {
    width: 610px;
    margin-inline: auto;
    padding: 0;
  }

  .top-message-text-wrap .top-message-text-title:not(:first-of-type) {
    margin-top: 4em;
  }

  .about-btn-wrap {
    display: flex;
    flex-direction: row;
    gap: 90px;
    max-width: initial;
    width: fit-content;
    margin: 100px auto 0;
  }

  /* ------------------------------
    会社概要、スタッフ紹介(pc)
  ------------------------------ */
  .overview.section-bg::before {
    background-image: url("../images/office/overview_bg_pc.jpg");
  }

  .overview-title {
    font-size: 30px;
    margin: 100px 0 0 0;
  }

  .overview-list {
    width: 730px;
    margin-inline: auto;
    font-size: 16px;
  }

  .overview-list > div {
    display: flex;
    border-top: dashed 1px var(--text-color);
  }

  .overview-list > div > dt {
    width: 150px;
    flex-shrink: 0;
    text-align: left;
    border-top: none;
    border-bottom: none;
    background-color: transparent;
  }

  .overview-list .map::before {
    width: 10px;
    height: 17px;
    background-size: 10px auto;
    transform: translateY(2px);
  }

  .staff.section-bg {
    margin-top: 150px;
  }

  .staff.section-bg::before {
    background-image: url("../images/office/staff_bg_pc.jpg");
  }

  .acctess-map {
    width: 492px;
    margin: 60px auto 0;
  }

  /* モーダル(pc) */
  .modal-container {
    max-width: initial;
    width: 750px;
    padding: 20px 20px 70px;
  }

  .modal-content-pic-wrap {
    width: 400px;
    margin: 20px auto 40px;
  }

  .modal-content-job {
    font-size: 15px;
  }

  .modal-content-name {
    font-size: 28px;
  }

  .modal-content dl {
    font-size: 14px;
    padding: 0 80px;
    margin-top: 3em;
  }

  .modal-content div {
    display: flex;
  }

  .modal-content dt {
    flex-shrink: 0;
    width: 170px;
  }

  .staff-list {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 164px;
    margin-top: 90px;
  }

  .staff-list-item {
    width: 224px;
  }

  /*  .staff-list > .staff-list-item:last-of-type {
    margin-inline: auto;
  }
*/
  .modal-open-job {
    font-size: 13px;
    margin: 0 0 0.6em;
  }

  .modal-open-name {
    font-size: 16px;
  }

  .modal-open .btn-arrow {
    display: block;
    width: 38px;
    margin: 20px auto 0;
  }

  .staff-list-item .getting-ready {
    font-size: 14px;
  }

  .staff .more {
    font-size: 16px;
    margin: 100px auto 0;
  }

  .staff .more .btn-arrow {
    width: 48px;
  }

  /* -----------------------------
    採用情報(pc)
  ------------------------------ */
  .recruit.section-bg::before {
    background-image: url("../images/office/recruit_bg_pc.jpg");
  }

  .recruit .section-title {
    margin-left: 60px;
  }

  .recruit-text {
    width: fit-content;
    font-size: 15px;
    margin: 4em auto 5em;
  }

  .recruit-type-title {
    font-size: 30px;
  }

  .recruit-type-list {
    flex-direction: row;
    gap: 40px;
    max-width: initial;
    width: fit-content;
    margin: 60px auto 100px;
  }

  .recruit-type-list a {
    width: 340px;
    height: 64px;
    font-size: 20px;
  }

  .recruit-type-item {
    padding: 100px 0 50px;
  }

  .recruit-type-item + .recruit-type-item {
    margin-top: 60px;
  }

  .recruit-type-item-inner {
    padding: 0;
    width: 1000px;
    margin-inline: auto;
  }

  .recruit-type-item-title {
    font-size: 20px;
  }

  .recruit-type-item-list {
    font-size: 15px;
  }

  .recruit-type-item-list div {
    display: flex;
    align-items: center;
    background-color: #fff;
  }

  .recruit-type-item-list div:not(:first-of-type) {
    margin-top: 3px;
  }

  .recruit-type-item-list dt {
    flex-shrink: 0;
    width: 160px;
    padding: 1em 2em;
    background-color: transparent;
  }

  .recruit-type-item-list dd {
    padding: 1em 2em;
    background-color: transparent;
  }

  .recruit-type-item-contact-title {
    font-size: 23px;
  }

  .recruit-type-item-contact-text {
    font-size: 15px;
  }

  .recruit-type-item-contact-tel {
    font-size: 20px;
  }

  /* -----------------------------
    美容生活(pc)
  ------------------------------ */
  .beauty.section-bg::before {
    background-image: url("../images/beauty-life/beauty_bg_pc.jpg");
  }

  .business_title{
    text-align: center;
    margin-top: 80px;
  }
  .business_title .bis_name {
    display: flex;
    justify-content: center; /* 水平方向中央揃え */
    align-items: center; /* 垂直方向中央揃え */
    width: 300px; /* 枠の幅 */
    min-height: 50px; /* 枠の高さ */
    border: 1px solid var(--office-color-beauty); /* 枠線 */
    padding: 1em;
    margin: auto;
    font-size: 24px;
    color: var(--office-color-beauty);
  }

  .bis_logo{
    margin-top: 20px;
    margin-bottom: 100px;
  }

  .bis_logo img{width: 235px;
	margin-bottom: 10px;} 

  .bland_container{
    font-size: 15px;
    line-height: 2em;
    background-color: #fdf4f7;
    padding: 60px 0 60px;
  }

  .bland_container:last-child{
    padding-top: 150px;
  }

  .bland_name{
    text-align: center;
    width: 600px;
    margin: 0px auto 80px;  
  }
  .bland_logo p{
    border-top: #231815 solid 1px;
    margin-top: 0.8em;
    padding-top: 0.5em;
  }
  .bland_logo img{width: 235px;} 



  .bland_wrapper .block01{
    display: flex;
    gap: 50px; /* 子要素間に20pxの間隔を設定 */
    margin-bottom: 80px;
  }

  .bland_wrapper .block01 > div:first-child{
    margin: 0;
  }
  .bland_wrapper .block01 div{
    flex-basis: 50%;
  }

  .bland_wrapper .block01 .txtbox > h3{
    font-size: 30px;
    margin-top: 1em;
    line-height: 1.5em;
  }

  .bland_wrapper .block01 .txtbox > p{
    width: 500px;
    font-size: 15px;
    line-height: 2em;
    margin-top: 2em;
  }

  .bland_wrapper .block01 div img.shopimg{
    display: block;
    height: 400px;
    object-fit: cover;
    width: 100%;
  }

  .bland_wrapper .block02{
    display: flex;
    gap: 50px;
    width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
  }

  .bland_wrapper .shoplist img{
    width: 300px;
  }
  
  .bland_wrapper .add p:first-child{
    font-size: 18px;
    font-weight: bold;
  }

  .bland_wrapper .add p.oval-button {
    display: inline-block; /* インラインブロック要素にする */
    padding: 10px 30px; /* パディングを設定 */
    
    color: #231815; /* 文字色を設定 */
    text-align: center; /* 文字を中央揃えにする */
    text-decoration: none; /* 下線を消す */

    border-radius: 25px; /* 角を丸くする */
    border: solid 1px #627782;
    font-size: 15px; /* 文字サイズを設定 */
    cursor: pointer; /* カーソルをポインターにする */
    margin-top: 20px;
  }


  .bland_wrapper .add p.insta{
    display: inline-block;
    width: 38px;
    margin-left: 20px;

  }

  .bland_wrapper .add.waen{margin-top: 2em;}


  /* ------------------------------
    お知らせ(pc)
  ------------------------------ */
  .news-archive.section-bg::before,
  .news-single.section-bg::before {
    background-image: url("../images/office/news_bg_pc.jpg");
  }

  /* お知らせ_一覧(pc) */
  .news-archive .container {
    padding: 0;
    width: 920px;
    margin-inline: auto;
  }

  .news-archive-list {
    margin-top: 60px;
  }

  .news-archive-list-item {
    padding: 30px 0;
  }

  .news-archive-list-item a {
    display: flex;
    align-items: baseline;
    margin: 0 20px;
  }

  .news-archive-list-item .date-wrap,
  .news-single .date-wrap {
    flex-shrink: 0;
  }

  .home-news-list .tag,
  .news-archive-list-item .tag,
  .news-single .tag {
    width: 98px;
    height: 26px;
    font-size: 14px;
  }

  .news-archive-list-item .date,
  .news-single .date {
    flex-shrink: 0;
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .news-archive-list-item .date {
    padding: 0 3em;
  }

  .news-archive-list-item .title {
    font-size: 16px;
    margin-top: 0;
  }

  /* ページネーション(pc) */
  .news-archive .pagination {
    margin-top: 70px;
  }

  /* お知らせ_詳細(pc) */
  .news-single .date-wrap {
    display: flex;
    align-items: baseline;
    margin-top: 50px;
  }

  .news-single .date {
    margin-left: 0.8em;
  }

  .news-single .title {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .news-single .contents {
    font-size: 15px;
  }

  .single-btn-return {
    font-size: 16px;
    margin-top: 80px;
  }

  /* ------------------------------
    スタッフブログ(pc)
  ------------------------------ */
  .blog-archive.section-bg::before,
  .blog-single.section-bg::before {
    background-image: url("../images/office/blog_bg_pc.jpg");
  }

  /* スタッフブログ_一覧(sp) */
  .blog-archive .container-inner {
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 90px;
  }

  .blog-archive-list-wrap {
    order: 1;
    flex-shrink: 0;
    width: 670px;
  }

  .blog-archive-side {
    order: 2;
    align-self: flex-start;
    flex-shrink: 0;
    width: 250px;
    margin: 0 0 0 80px;
    padding: 10px 0 10px 20px;
    border-top: none;
    border-left: 1px solid #c0c1c1;
  }

  .blog-archive .pagination {
    order: 3;
    width: 100%;
    margin: 70px 0 0 0;
  }

  .blog-archive-side a {
    color: var(--text-color);
    transition: var(--hover-transition);
  }

  .blog-archive-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px 70px;
  }

  .blog-archive-list-item {
    flex-shrink: 0;
    width: 300px;
  }

  .blog-archive-list-item .date {
    font-size: 14px;
  }

  .blog-archive-list-item .title {
    font-size: 16px;
  }

  /* スタッフブログ_詳細(pc) */
  .blog-single-title {
    padding: 60px 0;
    margin: 60px calc(50% - 50vw) 0;
  }

  .blog-single .date {
    font-size: 15px;
  }

  .blog-single-title .title {
    font-size: 20px;
  }

  .blog-single .container-inner {
    display: flex;
    flex-direction: row;
    margin-top: 90px;
  }

  .blog-single-contents {
    flex-shrink: 0;
    width: 680px;
    font-size: 14px;
  }

  /* ------------------------------
    お問い合わせ(pc)
  ------------------------------ */
  .contact.section-bg::before {
    background-image: url("../images/office/contact_bg_pc.jpg");
  }

  .contact .section-title {
    margin-left: 60px;
  }

  .contact-inner {
    width: 750px;
    margin-inline: auto;
  }

  .contact-text {
    font-size: 15px;
    line-height: 2.2;
    letter-spacing: 0.04em;
    margin: 60px 0 60px;
  }

  .contact-privacy-title {
    font-size: 14px;
    margin-top: 100px;
  }

  .contact-privacy-title + p {
    font-size: 14px;
  }

  .contact-form {
    width: 750px;
    margin-inline: auto;
    padding: 40px 0 60px;
    font-size: 15px;
  }

  .contact-form > div:not(:first-of-type) {
    margin-top: 2.5em;
  }

  .contact-form .border {
    padding-top: 2.5em;
  }

  .contact-form > div {
    display: flex;
  }

  .contact-form dt {
    flex-shrink: 0;
    width: 200px;
    margin: 0 2em 0 0;
    padding: 0.5em 0;
  }

  .contact-form dt::before {
    content: "";
    display: inline-block;
    font-size: 13px;
    width: 3.5em;
  }
  .contact-form .required::before {
    content: none;
  }

  .contact-form dd {
    width: calc(550px - 2em);
  }

  .contact-form .checkbox label:first-of-type {
    margin-top: 0.5em;
  }

  /* チェックボックス(pc) */
  input[type="checkbox"] {
    margin: 2px 0.8em 0 0;
  }

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  textarea {
    font-size: 15px;
  }

  .form-btn-wrap {
    width: 452px;
    margin-inline: auto;
    margin-top: 60px;
  }

  .form-btn-confirm,
  .form-btn-return,
  .form-btn-submit {
    font-size: 20px;
  }

  /* お問い合わせ_確認(pc) */
  .contact-confirm-title {
    margin: 80px 0 60px;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
  }

  /* お問い合わせ_完了(pc) */
  .contact-thanks-title {
    margin: 120px 0 60px;
  }

  .contact-thanks-text {
    font-size: 15px;
    width: 740px;
    margin-inline: auto;
  }

  .contact-thanks-btn-list {
    gap: 50px;
    margin: 80px auto 0;
  }

  .contact-thanks-btn-list a {
    font-size: 18px;
  }

  .contact-thanks-btn-list a .btn-arrow {
    width: 48px;
    margin-left: 1em;
  }

  /* ------------------------------
    プライバシーポリシー(pc)
  ------------------------------ */
  .privacy {
    padding: 50px 0 0;
    width: 1000px;
    margin-inline: auto;
  }

  .privacy-title {
    font-size: 30px;
  }

  .privacy-item-title {
    font-size: 20px;
  }

  .privacy-note-title {
    font-size: 20px;
  }

  /* ------------------------------
    404(pc)
  ------------------------------ */
  .page_404_title {
    padding-top: 120px;
    font-size: 20px;
  }

  .page_404_text {
    font-size: 16px;
  }
}

/* ------------------------------
  animation
------------------------------ */
/* hover */
@media (any-hover: hover) {
  .hover {
    transition: var(--hover-transition);
  }

  .hover:hover {
    opacity: var(--hover-opacity);
  }

  .pagination .page-numbers li a:hover {
    opacity: var(--hover-opacity);
  }

  .btn-arrow::before {
    transition: 0.2s;
  }

  a:hover > .btn-arrow::before,
  button:hover > .btn-arrow::before {
    transform: translateX(20%);
  }

  .header-nav-pc > li > a:hover {
    opacity: var(--hover-opacity);
  }

  .header-nav-pc dl a:hover {
    background-color: #fff;
  }

  .footer-nav a {
    transition: var(--hover-transition);
  }

  .footer-nav a:hover {
    opacity: var(--hover-opacity);
  }

  .home-service-list-item-btn:hover .btn-arrow::before {
    transform: translateX(20%);
  }

  .home-service-list-item-btn:hover::before {
    background-color: rgba(0, 0, 0, 0.6);
  }

  .blog-archive-side a:hover {
    opacity: var(--hover-opacity);
  }
}
