@charset "UTF-8";
/* Theme Name: ukisuen */
:root {
  --pcHeaderHeight: 90px;
  --spHeaderHeight: 18.4210526316vw;
  --ligthBlue: #7DAED8;
  --lighterBlue: #e2eeea;
  --spBaseWidth: var.spBaseWidth;
}

html {
  scroll-behavior: smooth;
}
html:has(body.home) {
  scroll-padding-top: calc(var(--pcHeaderHeight) + 30px);
}
@media screen and (max-width: 768px) {
  html:has(body.home) {
    scroll-padding-top: calc(var(--spHeaderHeight) + 30px);
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  background-color: #fffcf5;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
}
@media screen and (max-width: 768px) {
  body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 4.2105263158vw;
    line-height: 8.9473684211vw;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
  }
}

.spview {
  display: none;
}

@media screen and (max-width: 768px) {
  .pcview {
    display: none;
  }
  .spview {
    display: block;
  }
}
header {
  height: var(--pcHeaderHeight);
  background-color: rgba(255, 255, 255, 0.6);
  width: calc(100% - 30px);
  position: fixed;
  top: 0;
  left: 15px;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 48px;
  justify-content: space-between;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  translate: 0 -100%;
  transition: 0.3s;
}
header.active {
  translate: none;
}
header .logo {
  transition: 0.3s;
}
@media (any-hover: hover) {
  header .logo:hover {
    opacity: 0.5;
  }
}
header .logo img {
  height: 41px;
}
header .headerMenu {
  display: flex;
  align-items: center;
  font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 15px;
}
header .headerMenu li {
  display: flex;
  gap: 10px;
}
header .headerMenu li:not(.contact):not(.headerIcon):not(:nth-last-of-type(-n+3)) {
  margin-right: 10px;
}
header .headerMenu li:not(.contact):not(.headerIcon):not(:nth-last-of-type(-n+3))::after {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  translate: 0 2px;
  background-color: #000;
}
header .headerMenu li a {
  transition: 0.3s;
}
@media (any-hover: hover) {
  header .headerMenu li a:hover {
    opacity: 0.5;
  }
}
header .headerMenu li.contact {
  margin-left: 10px;
}
header .headerMenu li.contact a {
  width: 100px;
  height: 40px;
  background-color: var(--ligthBlue);
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: 24px;
}
header .headerMenu li.headerIcon{
  margin-left: 5px;
}
header .headerMenu li.headerIcon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
header .headerMenu li.headerIcon a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
@media screen and (max-width: 1130px) {
  header {
    height: var(--spHeaderHeight);
    width: 94.7%;
    left: 2.65%;
    padding: 0 5.2631578947vw;
    border-bottom-right-radius: calc(var(--spHeaderHeight) / 2);
    border-bottom-left-radius: calc(var(--spHeaderHeight) / 2);
  }
  header .logo {
    display: flex;
    align-items: center;
  }
  header .logo.pcview {
    display: none;
  }
  header .logo img {
    width: 7.8947368421vw;
    height: auto;
  }
  header .logo .siteTitle {
    font-size: 7.3684210526vw;
    margin: 0 2.6315789474vw 0 2.3684210526vw;
    letter-spacing: 0.02em;
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
  }
  header .logo .siteDesc {
    font-size: 2.6315789474vw;
    line-height: 3.6842105263vw;
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
  }
  header .headerMenu {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    scale: 0.95;
    transition: 0.3s;
  }
  header .headerMenu.active {
    opacity: 1;
    visibility: visible;
    scale: 1;
  }
  header .headerMenu li {
    display: block;
    text-align: center;
    font-size: 4.4736842105vw;
  }
  header .headerMenu li + li {
    margin-top: 9.2105263158vw;
  }
  header .headerMenu li.contact {
    width: max-content;
    margin-inline: auto;
  }
  header .headerMenu li.contact a {
    width: 55.2631578947vw;
    height: 12.6315789474vw;
    border-radius: 6.3157894737vw;
  }
  header .headerMenu li.headerIcon {
    display: inline-flex;
  }
  header .headerMenu li:not(.contact):not(.headerIcon):not(:nth-last-of-type(-n+3)) {
    margin-right: 0;
  }
  header .headerMenu li:not(.contact):not(.headerIcon):not(:nth-last-of-type(-n+3))::after {
    display: none;
  }
  header .globalMenuSp {
    width: 9.4736842105vw;
    height: 7.1052631579vw;
    margin-right: 2.6315789474vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 4;
  }
  header .globalMenuSp div {
    width: 100%;
    height: 1px;
    background-color: #565454;
    transition: 0.3s;
    transform-origin: left center;
  }
  header .globalMenuSp.active div:nth-of-type(1) {
    translate: 1.8421052632vw;
    rotate: 45deg;
  }
  header .globalMenuSp.active div:nth-of-type(2) {
    opacity: 0;
  }
  header .globalMenuSp.active div:nth-of-type(3) {
    translate: 1.8421052632vw;
    rotate: -45deg;
  }
}

body.home main {
  overflow-x: hidden;
  max-width: 100vw;
}
body.home .fv {
  position: relative;
}
body.home .fv .copy {
  font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 120px;
  translate: -50% 0;
  font-size: 80px;
  white-space: nowrap;
  color: #fff;
}
body.home .fv::after {
  content: "";
  display: block;
  background-color: rgba(217, 217, 217, 0.25);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
body.home .fv video {
  width: 100%;
  max-height: 100vh;
  aspect-ratio: 16/9;
  object-fit: cover;
}
body.home .about {
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
}
body.home .about .inner {
  max-width: 1000px;
  margin-inline: auto;
  position: relative;
}
body.home .about .inner::before {
  content: "";
  display: block;
  position: absolute;
  top: -20%;
  left: -15%;
  translate: none;
  width: 1250px;
  height: 414px;
  border-radius: 207px;
  background-color: rgba(246, 245, 182, 0.5);
  filter: blur(150px);
  z-index: -1;
  will-change: filter;
}
body.home .about .inner .aboutTitle {
  position: absolute;
  left: 130px;
  top: -90px;
  z-index: -1;
  width: 400px;
  pointer-events: none;
}
body.home .about .inner h2 {
  font-size: 38px;
  margin-bottom: 45px;
  letter-spacing: 0.1em;
}
body.home .about .inner p {
  color: #000;
  font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px;
  width: 62.9%;
}
body.home .about .inner .more {
  transition: 0.3s;
}
@media (any-hover: hover) {
  body.home .about .inner .more:hover {
    opacity: 0.5;
  }
}
body.home .about .inner .more {
  display: block;
  width: max-content;
  margin-top: 30px;
}
body.home .about .inner .more img {
  width: 200px;
}
body.home .about .inner .aboutImg {
  width: 44.59%;
  position: absolute;
  top: 0;
  right: calc(50% - 640px);
  translate: -25px -30px;
}
@media screen and (max-width: 1280px) {
  body.home .about .inner .aboutImg {
    right: calc((100vw - 1000px) / -2);
  }
}
@media screen and (max-width: 1180px) {
  body.home .about .inner .aboutImg {
    width: 30vw;
  }
}
@media screen and (max-width: 900px) {
  body.home .about .inner .aboutImg {
    right: 20px;
  }
}
body.home .about .inner .aboutImgBottom {
  margin-top: 150px;
  width: 63.2%;
  translate: -135px 0;
}
@media screen and (max-width: 1250px) {
  body.home .about .inner .aboutImgBottom {
    translate: 0 0;
    margin-left: calc((100vw - 1000px) / -2);
    margin-top: 50px;
  }
}
body.home .service {
  max-width: 1000px;
  margin-inline: auto;
  margin-top: 80px;
}
body.home .service h2 {
  letter-spacing: 0.1em;
  text-align: right;
  font-size: 38px;
  position: relative;
}
body.home .service h2 img {
  width: 330px;
  position: absolute;
  bottom: 0;
  right: 80px;
  z-index: 1;
}
body.home .service .serviceList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 20px;
  margin-top: 40px;
}
body.home .service .serviceList li {
  width: 25%;
}
body.home .service .serviceList li a {
  display: block;
  transition: 0.3s;
}
@media (any-hover: hover) {
  body.home .service .serviceList li a:hover {
    opacity: 0.5;
  }
}
body.home .service .serviceList li a img {
  width: 100%;
  scale: 1.15;
}
@media screen and (max-width: 768px) {
  body.home .service .serviceList {
    gap: 0;
    margin-top: 1.3157894737vw;
  }
  body.home .service .serviceList li {
    width: 50%;
  }
}
body.home .recruit {
  max-width: 1000px;
  margin-inline: auto;
  margin-top: 150px;
  position: relative;
}
body.home .recruit::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 1976px;
  height: 517px;
  border-radius: 258.5px;
  background-color: rgba(255, 227, 202, 0.7);
  filter: blur(150px);
  z-index: -1;
  will-change: filter;
}
body.home .recruit h2 {
  letter-spacing: 0.1em;
  font-size: 38px;
  position: relative;
  margin-bottom: 70px;
}
body.home .recruit h2 img {
  width: 320px;
  position: absolute;
  bottom: -10px;
  left: 170px;
  z-index: -1;
}
body.home .recruit .recruitList {
  display: flex;
  justify-content: center;
}
body.home .recruit .recruitList li {
  background-color: #fff;
  box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.05);
  padding-bottom: 30px;
  width: 55.5%;
}
body.home .recruit .recruitList li > img {
  width: 100%;
  aspect-ratio: 460/268;
  object-fit: cover;
}
body.home .recruit .recruitList li h3 {
  font-size: 30px;
  line-height: 45px;
  margin-top: 13px;
  text-align: center;
}
body.home .recruit .recruitList li .en {
  font-family: "Kumbh Sans", sans-serif;
  font-size: 12px;
  margin-top: 16px;
  text-align: center;
  color: #83b4dc;
}
body.home .recruit .recruitList li .more {
  transition: 0.3s;
}
@media (any-hover: hover) {
  body.home .recruit .recruitList li .more:hover {
    opacity: 0.5;
  }
}
body.home .recruit .recruitList li .more {
  margin: 23px auto 0;
  display: block;
  width: max-content;
}
body.home .recruit .recruitList li .more img {
  width: 200px;
}
body.home .recruit .recruitList li.newGraduate .en {
  color: #83b4dc;
}
body.home .recruit .recruitList li.midCareer .en {
  color: #7ebfad;
}
body.home .recruit .entry {
  transition: 0.3s;
}
@media (any-hover: hover) {
  body.home .recruit .entry:hover {
    opacity: 0.5;
  }
}
body.home .recruit .entry {
  margin: 86px auto 0;
  width: max-content;
  display: block;
}
body.home .recruit .entry img {
  width: 316px;
}
body.home .news {
  max-width: 1000px;
  margin-inline: auto;
}
body.home .news .categories {
  display: flex;
  justify-content: center;
  gap: 6px;
  font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
}
body.home .news .categories li {
  transition: 0.3s;
}
@media (any-hover: hover) {
  body.home .news .categories li:hover {
    opacity: 0.5;
  }
}
body.home .news .categories li {
  cursor: pointer;
  padding: 6px 10px 7px;
}
body.home .news .newsList {
  display: none;
  margin-top: 22px;
}
body.home .news .newsList.active {
  display: block;
}
body.home .news .newsList li {
  border-top: 1px dotted #d3d3d3;
  padding: 39px 0;
  font-family: "Noto Sans JP", sans-serif;
}
body.home .news .newsList li:last-of-type {
  border-bottom: 1px dotted #d3d3d3;
}
body.home .news .newsList li a {
  transition: 0.3s;
}
@media (any-hover: hover) {
  body.home .news .newsList li a:hover {
    opacity: 0.5;
  }
}
body.home .news .newsList li a {
  display: flex;
  align-items: center;
  gap: 20px;
}
body.home .news .newsList li a time {
  display: block;
  min-width: max-content;
  font-size: 18px;
  font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
}
body.home .news .newsList li a .cat {
  text-align: center;
  font-size: 14px;
  background-color: #e9d8a8;
  padding: 6px 10px 7px;
  font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
}
body.home .news .newsList li a h3 {
  width: auto;
  max-width: 100%;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 17px;
  font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
}
@media screen and (max-width: 768px) {
  body.home .news .categories li {
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 4.2105263158vw;
    padding: 1.0526315789vw 1.3157894737vw 1.3157894737vw;
  }
  body.home .news .newsList li {
    padding: 5.2631578947vw 0;
  }
  body.home .news .newsList li a {
    display: grid;
    grid-template-columns: max-content 1fr;
    justify-content: start;
    gap: 3.9473684211vw;
  }
  body.home .news .newsList li a time {
    font-size: 4.7368421053vw;
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
  }
  body.home .news .newsList li a .cat {
    min-width: 0;
    max-width: max-content;
    font-size: 3.6842105263vw;
    padding: 1.5789473684vw 2.6315789474vw 1.8421052632vw;
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
  }
  body.home .news .newsList li a h3 {
    grid-column: 1/3;
    font-size: 4.4736842105vw;
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
  }
}
body.home .news {
  margin-top: 120px;
  position: relative;
}
body.home .news::before {
  content: "";
  display: block;
  position: absolute;
  top: -200px;
  left: 50%;
  translate: -50% 0;
  width: 1995px;
  height: 408px;
  border-radius: 204px;
  background-color: rgba(190, 237, 253, 0.4);
  filter: blur(150px);
  z-index: -1;
  will-change: filter;
}
body.home .news h2 {
  letter-spacing: 0.1em;
  font-size: 38px;
  position: relative;
  margin-bottom: 40px;
  text-align: center;
}
body.home .news h2 img {
  width: 246px;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: 23% 8%;
}
body.home .news .more {
  transition: 0.3s;
}
@media (any-hover: hover) {
  body.home .news .more:hover {
    opacity: 0.5;
  }
}
body.home .news .more {
  display: block;
  width: 224px;
  margin: 30px auto 0;
}
body.home .news .more img {
  width: 100%;
}
body.home .instagram {
  max-width: 1000px;
  margin-inline: auto;
  margin-top: 140px;
}
body.home .instagram h2 {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
body.home .instagram h2::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -30%;
  width: 365px;
  height: 408px;
  border-radius: 204px;
  background-color: rgba(244, 197, 214, 0.7);
  filter: blur(150px);
  z-index: -1;
  will-change: filter;
}
body.home .instagram h2 img {
  width: 129px;
}
body.home .instagram #sb_instagram .sbi_item.sbi_type_image {
  border-radius: 20px;
  overflow: hidden;
}
body.home .instagram .instagramAccount {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
  color: #f372c4;
}
body.home .instagram .more {
  transition: 0.3s;
}
@media (any-hover: hover) {
  body.home .instagram .more:hover {
    opacity: 0.5;
  }
}
body.home .instagram .more {
  margin: 25px auto 0;
  display: block;
  width: max-content;
}
body.home .instagram .more img {
  width: 200px;
}
body.home .access {
  max-width: 1000px;
  margin-inline: auto;
  margin-top: 225px;
  position: relative;
  padding-bottom: 155px;
}
body.home .access::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -30%;
  width: 1650px;
  height: 455px;
  border-radius: 227.5px;
  background-color: rgba(254, 254, 222, 0.6);
  filter: blur(150px);
  z-index: -1;
  will-change: filter;
}
body.home .access h2 {
  margin-bottom: 30px;
  font-size: 38px;
  position: relative;
  letter-spacing: 0.1em;
}
body.home .access h2 img {
  width: 310px;
  position: absolute;
  bottom: -20px;
  left: 135px;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  body.home .about .inner h2,
  body.home .service h2,
  body.home .recruit h2,
  body.home .news h2,
  body.home .news h2 span,
  body.home .access h2 {
    color: #000;
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 38px;
    font-style: normal;
    font-weight: 500;
    line-height: 87px;
  }
}
body.home .access .inner {
  display: flex;
  gap: 35px;
}
body.home .access .inner .map {
  width: 42%;
  aspect-ratio: 410/330;
}
body.home .access .inner .content table {
  width: 100%;
  margin-top: -12px;
  font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
}
body.home .access .inner .content table tr th, body.home .access .inner .content table tr td {
  font-size: 17px;
  line-height: 28px;
  padding: 8px 12px;
}
body.home .access .inner .content table tr th {
  width: max-content;
  font-weight: bold;
  text-align: right;
}
body.home .access .inner .contact {
  transition: 0.3s;
}
@media (any-hover: hover) {
  body.home .access .inner .contact:hover {
    opacity: 0.5;
  }
}
body.home .access .inner .contact {
  display: block;
  width: max-content;
  margin-top: 10px;
}
body.home .access .inner .contact img {
  width: 200px;
}
@media screen and (max-width: 768px) {
  body.home .fv {
    height: 100vh;
  }
  body.home .fv .copy {
    width: auto;
    max-width: none;
    white-space: normal;
    font-size: 13.1578947368vw;
    line-height: 15.7894736842vw;
    bottom: 26.3157894737vw;
    left: 2.6315789474vw;
    translate: none;
  }
  body.home .fv video {
    height: 100%;
    aspect-ratio: auto;
  }
  body.home .about {
    padding-top: 0;
    padding-bottom: 0;
  }
  body.home .about .inner {
    max-width: 92.1%;
    margin-inline: auto;
    display: grid;
  }
  body.home .about .inner::before {
    width: 166.5789473684vw;
    height: 80.7894736842vw;
    top: 75vw;
    left: 50%;
    translate: -50% 0;
  }
  body.home .about .inner .aboutTitle {
    width: 61.5789473684vw;
    top: 76.3157894737vw;
    left: 28.9473684211vw;
  }
  body.home .about .inner h2 {
    margin-top: 17.1052631579vw;
    margin-bottom: 7.8947368421vw;
    font-size: 9.2105263158vw;
  }
  body.home .about .inner p {
    color: #000;
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 45px;
    width: 100%;
  }
  body.home .about .inner .aboutImg {
    display: block;
    margin-top: 4.4736842105vw;
    margin-right: 2.6315789474vw;
    margin-left: auto;
    order: -1;
    width: 62.1%;
    position: static;
    translate: none;
  }
  body.home .about .inner .more {
    margin-inline: auto;
    margin-top: 13.1578947368vw;
  }
  body.home .about .inner .more img {
    width: 52.6315789474vw;
  }
  body.home .about .inner .aboutImgBottom {
    width: 100%;
    position: static;
    translate: none;
    margin-top: 17.1052631579vw;
  }
  body.home .service {
    max-width: 92.1%;
    margin-inline: auto;
    margin-top: 18.4210526316vw;
  }
  body.home .service h2 {
    font-size: 9.2105263158vw;
  }
  body.home .service h2 img {
    width: 57.8947368421vw;
    right: 34.2105263158vw;
  }
  body.home .recruit {
    max-width: 92.1%;
    margin-inline: auto;
    margin-top: 47.3684210526vw;
  }
  body.home .recruit::before {
    width: 183.6842105263vw;
    height: 80.7894736842vw;
    translate: -50% -40%;
  }
  body.home .recruit h2 {
    font-size: 9.2105263158vw;
    margin-bottom: 13.1578947368vw;
  }
  body.home .recruit h2 img {
    width: 52.6315789474vw;
    bottom: 6.5789473684vw;
    left: 34.2105263158vw;
  }
  body.home .recruit .recruitList {
    display: grid;
    gap: 7.1052631579vw;
  }
  body.home .recruit .recruitList li {
    width: 100%;
    box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.05);
    padding-bottom: 7.8947368421vw;
  }
  body.home .recruit .recruitList li > img {
    aspect-ratio: 350/247;
  }
  body.home .recruit .recruitList li h3 {
    margin-top: 6.8421052632vw;
    font-size: 7.8947368421vw;
    line-height: 1;
  }
  body.home .recruit .recruitList li .en {
    font-size: 3.1578947368vw;
    margin-top: 4.2105263158vw;
  }
  body.home .recruit .recruitList li .more {
    margin-top: 4.2105263158vw;
  }
  body.home .recruit .recruitList li .more img {
    width: 52.6315789474vw;
  }
  body.home .recruit .entry {
    margin-top: 10.7894736842vw;
  }
  body.home .recruit .entry img {
    width: 78.9473684211vw;
  }
  body.home .news {
    max-width: 92.1%;
    margin-inline: auto;
    margin-top: 36.8421052632vw;
  }
  body.home .news::before {
    width: 256.0526315789vw;
    height: 70vw;
    top: 0;
    translate: -50% -30%;
  }
  body.home .news h2 {
    font-size: 9.2105263158vw;
    margin-bottom: 10.5263157895vw;
    text-align: center;
  }
  body.home .news h2 span {
    position: relative;
    z-index: 1;
  }
  body.home .news h2 img {
    width: 36.8421052632vw;
    bottom: 9.2105263158vw;
    translate: 18% 8%;
  }
  body.home .news .more {
    margin-top: 5.7894736842vw;
  }
  body.home .news .more img {
    width: 58.9473684211vw;
  }
  body.home .instagram {
    max-width: 92.1%;
    margin-inline: auto;
    margin-top: 22.8947368421vw;
  }
  body.home .instagram h2 {
    margin-bottom: 1.3157894737vw;
  }
  body.home .instagram h2::before {
    width: 149.2105263158vw;
    height: 147.8947368421vw;
    top: 5.2631578947vw;
    translate: -50% 0;
  }
  body.home .instagram h2 img {
    width: 33.9473684211vw;
  }
  body.home .instagram #sb_instagram .sbi_item.sbi_type_image {
    border-radius: 5.2631578947vw;
  }
  body.home .instagram #sbi_images {
    gap: 4.7368421053vw !important;
  }
  body.home .instagram .instagramAccount {
    margin-top: 0;
    font-size: 5.2631578947vw;
    margin-top: 2.6315789474vw;
  }
  body.home .instagram .more {
    margin-top: 6.5789473684vw;
  }
  body.home .instagram .more img {
    width: 52.6315789474vw;
  }
  body.home .access {
    max-width: 92.1%;
    margin-inline: auto;
    margin-top: 32.8947368421vw;
    padding-bottom: 35.2631578947vw;
  }
  body.home .access::before {
    width: 81.3157894737vw;
    height: 80.7894736842vw;
    top: 0;
    left: 0;
    translate: -20% -20%;
  }
  body.home .access h2 {
    margin-bottom: 6.5789473684vw;
    font-size: 9.2105263158vw;
  }
  body.home .access h2 img {
    width: 47.3684210526vw;
    bottom: 5.7894736842vw;
    left: 26.3157894737vw;
  }
  body.home .access .inner {
    display: grid;
    gap: 2.6315789474vw;
  }
  body.home .access .inner .map {
    width: 100%;
    aspect-ratio: 350/275;
  }
  body.home .access .inner .content table {
    margin-top: 0;
  }
  body.home .access .inner .content table tr th, body.home .access .inner .content table tr td {
    font-size: 4.4736842105vw;
    padding: 1.8421052632vw 2.1052631579vw;
    line-height: 5.7894736842vw;
  }
  body.home .access .inner .content table tr th {
    white-space: nowrap;
  }
  body.home .access .inner .contact {
    margin: 6.5789473684vw auto 0;
  }
  body.home .access .inner .contact img {
    width: 52.6315789474vw;
  }
}

body.home footer {
  height: 445px;
  display: grid;
  align-items: end;
}
body.home footer::before {
  content: "";
  display: block;
  background-color: rgba(246, 246, 242, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
body.home footer video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.home footer .inner {
  background-color: #fff;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  height: 230px;
  padding-top: 60px;
}
body.home footer .toTop {
  bottom: 20px;
  top: auto;
}
@media screen and (max-width: 768px) {
  body.home footer {
    height: auto;
    min-height: 111.3157894737vw;
  }
  body.home footer .inner {
    height: auto;
    min-height: 77.6315789474vw;
    padding-top: 5.2631578947vw;
    padding-bottom: 5.2631578947vw;
  }
  body.home footer .toTop {
    right: 4%;
    bottom: auto;
    top: 32.8947368421vw;
  }
}

footer {
  position: relative;
  background-color: #fff;
}
footer .inner {
  max-width: 1000px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 250px;
  padding: 50px 75px 0;
  display: flex;
  justify-content: space-between;
  font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
}
footer .inner .info {
  width: 31%;
}
footer .inner .info .logo {
  transition: 0.3s;
}
@media (any-hover: hover) {
  footer .inner .info .logo:hover {
    opacity: 0.5;
  }
}
footer .inner .info .logo img {
  width: 176px;
}
footer .inner .info address {
  display: block;
  margin: 15px 0;
  font-size: 14px;
}
footer .inner .info .phone {
  font-size: 14px;
}
footer .inner .info .phone b {
  font-weight: normal;
}
footer .inner .menu {
  width: 64.3%;
}
footer .inner .menu ul {
  display: flex;
  flex-wrap: wrap;
}
footer .inner .menu ul:not(.partners) {
  margin-bottom: 10px;
}
footer .inner .menu ul li {
  font-size: 13px;
  line-height: 30px;
}
footer .inner .menu ul li:not(:last-of-type)::after {
  content: "|";
  margin: 0 0.5em;
}
footer .inner .menu ul a {
  transition: 0.3s;
}
@media (any-hover: hover) {
  footer .inner .menu ul a:hover {
    opacity: 0.5;
  }
}
footer .inner .menu ul.partners {
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
footer .inner .menu ul.partners li {
  line-height: 1;
}
footer .inner .menu ul.partners li::after {
  content: none;
}
footer .inner .menu ul.partners a {
  display: block;
}
footer .inner .menu ul.partners img {
  display: block;
  height: 50px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
footer .inner .menu .info {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer .inner .menu .info small {
  margin-top: 4px;
  color: #d9d9d9;
}
footer .inner .menu .info a {
  transition: 0.3s;
}
@media (any-hover: hover) {
  footer .inner .menu .info a:hover {
    opacity: 0.5;
  }
}
footer .inner .menu .info a img {
  width: 32px;
}
footer .toTop {
  transition: 0.3s;
}
@media (any-hover: hover) {
  footer .toTop:hover {
    opacity: 0.5;
  }
}
footer .toTop {
  position: absolute;
  z-index: 1;
  right: 20px;
  top: 0;
  width: 104px;
  cursor: pointer;
  translate: 0 -50%;
}
footer .toTop img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  footer .inner {
    display: grid;
    padding: 5.7894736842vw 0 5.2631578947vw;
    height: auto;
    min-height: 79.4736842105vw;
    background-color: #fff;
    border-top-left-radius: 13.1578947368vw;
    border-top-right-radius: 13.1578947368vw;
  }
  footer .inner .info {
    width: 100%;
  }
  footer .inner .info .logo {
    display: block;
    width: max-content;
    margin-inline: auto;
  }
  footer .inner .info address {
    text-align: center;
    margin: 2.6315789474vw 0;
    font-size: 3.6842105263vw;
  }
  footer .inner .info .phone {
    text-align: center;
    font-size: 3.6842105263vw;
  }
  footer .inner .menu {
    width: 100%;
  }
  footer .inner .menu ul {
    margin-inline: auto;
    width: 85%;
    justify-content: center;
  }
  footer .inner .menu ul:not(.partners) {
    margin-bottom: 1.5789473684vw;
  }
  footer .inner .menu ul li {
    font-size: 3.4210526316vw;
    line-height: 6.8421052632vw;
  }
  footer .inner .menu ul li.recruitLink::after, footer .inner .menu ul li.infoLink::after {
    display: none;
  }
  footer .inner .menu ul li.newsLink {
    padding-left: 3em;
  }
  footer .inner .menu ul li.infoLink {
    padding-right: 3em;
  }
  footer .inner .menu ul.partners {
    justify-content: center;
    gap: 3.1578947368vw;
    margin-bottom: 1.5789473684vw;
  }
  footer .inner .menu ul.partners img {
    height: 10.5263157895vw;
    max-width: 42.1052631579vw;
  }
  footer .inner .menu .info {
    flex-direction: column-reverse;
    align-items: center;
  }
  footer .inner .menu .info a {
    display: block;
    width: max-content;
  }
  footer .inner .menu .info a img {
    width: 8.4210526316vw;
  }
  footer .inner .menu .info small {
    font-size: 3.1578947368vw;
    text-align: center;
    margin-top: 1.5789473684vw;
  }
  footer .toTop {
    width: 23.1578947368vw;
    right: 2.6315789474vw;
  }
}

body.page .splide .splide__track .splide__list .splide__slide img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  body.company.page main {
    overflow-x: hidden;
  }
  body.company.page .splide {
    overflow: hidden;
  }
}

@media screen and (min-width: 769px) {
  body.company.page .sectionHeader {
    height: 200px;
  }
}
body.company.page .sectionHeader .sectionHeaderBg {
  background-color: #eeeee2;
}
body.company.page .sectionHeader img {
  width: 310px;
  left: 130px;
}
body.company .philosophy {
  position: relative;
  padding-bottom: 60px;
  overflow-x: clip;
}
body.company .philosophy::before {
  content: "";
  display: block;
  position: absolute;
  top: 80px;
  left: 50%;
  translate: -50% 0;
  width: 1113px;
  height: 649px;
  border-radius: 324.5px;
  background-color: rgb(255, 245, 228);
  filter: blur(150px);
  z-index: -1;
  will-change: filter;
  pointer-events: none;
}
body.company .philosophy .content {
  position: relative;
  box-sizing: border-box;
}
body.company .philosophy .content h3.subpageCatchHeading {
  text-align: center;
  margin-bottom: 20px;
}
body.company .philosophy .content h3:not(.subpageCatchHeading) {
  color: #000;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
body.company .philosophy .content h4 {
  color: #000;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 20px;
}
body.company .philosophy .content p {
  font-size: 18px;
  line-height: 45px;
  max-width: 1000px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto 80px;
}
@media screen and (max-width: 1080px) {
  body.company .philosophy .content {
    padding-inline: 40px;
  }
}
body.company .overview {
  background-color: #fff;
  padding: 1px 0;
}
body.company .overview table {
  width: 100%;
  max-width: 700px;
  margin: 50px auto 0;
  font-family: "Noto Sans JP", sans-serif;
}
body.company .overview table tr {
  border-top: 1px solid #d9d9d9;
}
body.company .overview table tr th, body.company .overview table tr td {
  padding: 22px 0;
  vertical-align: middle;
}
body.company .overview table tr th {
  width: 35%;
  font-weight: bold;
  font-size: 18px;
}
body.company .overview table tr td {
  font-size: 17px;
}
body.company .overview table tr:last-of-type {
  border-bottom: 1px solid #d9d9d9;
}
body.company .history {
  max-width: 1000px;
  margin-inline: auto;
  padding-bottom: 140px;
}
body.company .history img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  body.company.page .sectionHeader img {
    width: 45.5263157895vw;
    left: 46.0526315789vw;
  }
  body.company .philosophy {
    padding-bottom: 15.7894736842vw;
  }
  body.company .philosophy .content {
    max-width: none;
    width: 100%;
    margin-inline: 0;
    padding-inline: 3.9473684211vw;
  }
  body.company .philosophy::before {
    top: 10.5263157895vw;
    width: 292.8947368421vw;
    height: 170.7894736842vw;
  }
  body.company .philosophy .content h3.subpageCatchHeading {
    margin-bottom: 20px;
  }
  body.company .philosophy .content p {
    width: 100%;
    font-size: 4.2105263158vw;
    line-height: 8.9473684211vw;
  }
  body.company .overview table {
    max-width: 92.1%;
    margin-inline: auto;
    margin-top: 7.8947368421vw;
  }
  body.company .overview table tr th, body.company .overview table tr td {
    padding: 5.7894736842vw 0;
    line-height: 7.8947368421vw;
  }
  body.company .overview table tr th {
    width: 30%;
    font-size: 4.7368421053vw;
    padding-left: 1.8421052632vw;
  }
  body.company .overview table tr td {
    font-size: 4.4736842105vw;
  }
  body.company .history {
    padding-top: 10.5263157895vw;
    padding-bottom: 36.8421052632vw;
  }
  body.company .history img {
    max-width: 92.1%;
    margin-inline: auto;
  }
}

body.service .sectionHeader .sectionHeaderBg {
  background-color: #e6f2c5;
}
body.service .sectionHeader img {
  width: 283px;
  left: 150px;
}
body.service .services {
  padding-bottom: 120px;
}
body.service .services .serviceList {
  max-width: 1000px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 20px;
}
body.service .services .serviceList li {
  width: 25%;
}
body.service .services .serviceList li a {
  display: block;
  transition: 0.3s;
}
@media (any-hover: hover) {
  body.service .services .serviceList li a:hover {
    opacity: 0.5;
  }
}
body.service .services .serviceList li a img {
  width: 100%;
  scale: 1.15;
}
@media screen and (max-width: 768px) {
  body.service .services .serviceList {
    gap: 0;
    margin-top: 1.3157894737vw;
  }
  body.service .services .serviceList li {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  body.service .sectionHeader img {
    width: 45.5263157895vw;
    left: 46.0526315789vw;
  }
  body.service .services {
    padding-bottom: 11.8421052632vw;
  }
  body.service .services .titles {
    margin-bottom: 5.2631578947vw;
  }
}

body.page .sectionHeader,
body.single-service .sectionHeader,
body.archive .sectionHeader,
body.single.post-template-default .sectionHeader {
  max-width: 1000px;
  margin-inline: auto;
  height: 158.5px;
  position: relative;
}
body.page .sectionHeader .sectionHeaderBg,
body.single-service .sectionHeader .sectionHeaderBg,
body.archive .sectionHeader .sectionHeaderBg,
body.single.post-template-default .sectionHeader .sectionHeaderBg {
  --left: calc((100vw - 1000px) / -2);
  width: calc(100% + var(--left) * -1);
  height: 100%;
  position: absolute;
  top: 0;
  left: var(--left);
  z-index: -1;
  border-bottom-right-radius: 50px;
}
@media screen and (max-width: 1000px) {
  body.page .sectionHeader .sectionHeaderBg,
  body.single-service .sectionHeader .sectionHeaderBg,
  body.archive .sectionHeader .sectionHeaderBg,
  body.single.post-template-default .sectionHeader .sectionHeaderBg {
    width: 100%;
    left: 0;
  }
}
body.page .sectionHeader h1,
body.single-service .sectionHeader h1,
body.archive .sectionHeader h1,
body.single.post-template-default .sectionHeader h1 {
  font-weight: bold;
  font-size: 30px;
  display: flex;
  align-items: center;
  padding-top: 0;
  height: 100%;
  position: relative;
  z-index: 1;
}
body.page .sectionHeader img,
body.single-service .sectionHeader img,
body.archive .sectionHeader img,
body.single.post-template-default .sectionHeader img {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
body.page ol,
body.single-service ol,
body.archive ol,
body.single.post-template-default ol {
  max-width: 1000px;
  margin-inline: auto;
  display: flex;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 20px;
  margin-bottom: 75px;
}
body.page ol li,
body.single-service ol li,
body.archive ol li,
body.single.post-template-default ol li {
  font-size: 12px;
}
body.page ol li:has(a)::after,
body.single-service ol li:has(a)::after,
body.archive ol li:has(a)::after,
body.single.post-template-default ol li:has(a)::after {
  content: "|";
  margin: 0 1em;
  color: #858383;
}
body.page ol li a,
body.single-service ol li a,
body.archive ol li a,
body.single.post-template-default ol li a {
  transition: 0.3s;
}
@media (any-hover: hover) {
  body.page ol li a:hover,
  body.single-service ol li a:hover,
  body.archive ol li a:hover,
  body.single.post-template-default ol li a:hover {
    opacity: 0.5;
  }
}
body.page ol li a,
body.single-service ol li a,
body.archive ol li a,
body.single.post-template-default ol li a {
  color: #858383;
}
body.page main > section .titles,
body.page main > .serviceCommonContent .titles,
body.single-service main > section .titles,
body.single-service main > .serviceCommonContent .titles,
body.archive main > section .titles,
body.archive main > .serviceCommonContent .titles,
body.single.post-template-default main > section .titles,
body.single.post-template-default main > .serviceCommonContent .titles {
  position: relative;
  margin: 60px auto 80px;
}
body.page main > section .titles::before,
body.page main > .serviceCommonContent .titles::before,
body.single-service main > section .titles::before,
body.single-service main > .serviceCommonContent .titles::before,
body.archive main > section .titles::before,
body.archive main > .serviceCommonContent .titles::before,
body.single.post-template-default main > section .titles::before,
body.single.post-template-default main > .serviceCommonContent .titles::before {
  content: "";
  display: block;
  width: 193px;
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% 60%;
  aspect-ratio: 193/40;
  background-image: url("img/sectionTitleBgPath.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
body.page main > section .titles > h2,
body.page main > .serviceCommonContent .titles > h2,
body.single-service main > section .titles > h2,
body.single-service main > .serviceCommonContent .titles > h2,
body.archive main > section .titles > h2,
body.archive main > .serviceCommonContent .titles > h2,
body.single.post-template-default main > section .titles > h2,
body.single.post-template-default main > .serviceCommonContent .titles > h2 {
  color: #0b0b0b;
  text-align: center;
  font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 35px;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
body.page main > section .titles .titleJp,
body.page main > .serviceCommonContent .titles .titleJp,
body.single-service main > section .titles .titleJp,
body.single-service main > .serviceCommonContent .titles .titleJp,
body.archive main > section .titles .titleJp,
body.archive main > .serviceCommonContent .titles .titleJp,
body.single.post-template-default main > section .titles .titleJp,
body.single.post-template-default main > .serviceCommonContent .titles .titleJp {
  text-align: center;
  color: #0b0b0b;
  font-size: 16px;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 768px) {
  body.page main > section .titles,
  body.page main > .serviceCommonContent .titles,
  body.single-service main > section .titles,
  body.single-service main > .serviceCommonContent .titles,
  body.archive main > section .titles,
  body.archive main > .serviceCommonContent .titles,
  body.single.post-template-default main > section .titles,
  body.single.post-template-default main > .serviceCommonContent .titles {
    margin: 10.5263157895vw auto;
  }
  body.page main > section .titles > h2,
  body.page main > .serviceCommonContent .titles > h2,
  body.single-service main > section .titles > h2,
  body.single-service main > .serviceCommonContent .titles > h2,
  body.archive main > section .titles > h2,
  body.archive main > .serviceCommonContent .titles > h2,
  body.single.post-template-default main > section .titles > h2,
  body.single.post-template-default main > .serviceCommonContent .titles > h2 {
    color: #0b0b0b;
    text-align: center;
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 35px;
    margin-bottom: 5.2631578947vw;
  }
  body.page main > section .titles::before,
  body.page main > .serviceCommonContent .titles::before,
  body.single-service main > section .titles::before,
  body.single-service main > .serviceCommonContent .titles::before,
  body.archive main > section .titles::before,
  body.archive main > .serviceCommonContent .titles::before,
  body.single.post-template-default main > section .titles::before,
  body.single.post-template-default main > .serviceCommonContent .titles::before {
    width: 50.7894736842vw;
  }
  body.page main > section .titles .titleJp,
  body.page main > .serviceCommonContent .titles .titleJp,
  body.single-service main > section .titles .titleJp,
  body.single-service main > .serviceCommonContent .titles .titleJp,
  body.archive main > section .titles .titleJp,
  body.archive main > .serviceCommonContent .titles .titleJp,
  body.single.post-template-default main > section .titles .titleJp,
  body.single.post-template-default main > .serviceCommonContent .titles .titleJp {
    font-size: 4.2105263158vw;
  }
  body.page .sectionHeader,
  body.single-service .sectionHeader,
  body.archive .sectionHeader,
  body.single.post-template-default .sectionHeader {
    height: 29.2105263158vw;
  }
  body.page .sectionHeader .sectionHeaderBg,
  body.single-service .sectionHeader .sectionHeaderBg,
  body.archive .sectionHeader .sectionHeaderBg,
  body.single.post-template-default .sectionHeader .sectionHeaderBg {
    width: 96%;
    left: 0;
    border-bottom-right-radius: 6.5789473684vw;
  }
  body.page .sectionHeader h1,
  body.single-service .sectionHeader h1,
  body.archive .sectionHeader h1,
  body.single.post-template-default .sectionHeader h1 {
    max-width: 92.1%;
    margin-inline: auto;
    font-size: 6.5789473684vw;
    padding-top: 0;
  }
  body.page .sectionHeader img,
  body.single-service .sectionHeader img,
  body.archive .sectionHeader img,
  body.single.post-template-default .sectionHeader img {
    width: 50vw;
  }
  body.page ol,
  body.single-service ol,
  body.archive ol,
  body.single.post-template-default ol {
    max-width: 92.1%;
    margin-inline: auto;
    margin-top: 5.2631578947vw;
    margin-bottom: 13.1578947368vw;
  }
}

body.single-service .sectionHeader img {
  width: 270px;
  left: 345px;
}
body.single-service .switchTabs {
  max-width: 1000px;
  margin-inline: auto;
  display: flex;
  gap: 20px;
  margin-bottom: 4px;
}
body.single-service .switchTabs li {
  cursor: pointer;
  flex: 1;
  opacity: 0.7;
  transition: 0.3s;
  height: 65px;
  display: grid;
  place-items: center;
  position: relative;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  color: #000;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 35px;
}
body.single-service .switchTabs li::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url("img/downArrowIcon.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 22px;
  aspect-ratio: 1;
  right: 20px;
  top: 50%;
  translate: 0 -50%;
}
body.single-service .switchTabs li.active {
  opacity: 1;
}
body.single-service .switchTabs li:nth-of-type(1) {
  background-color: #e5ded2;
}
body.single-service .switchTabs li:nth-of-type(2) {
  background-color: #dbe5d2;
}
@media (any-hover: hover) {
  body.single-service .switchTabs li:not(.active):hover {
    opacity: 0.4;
  }
}
body.single-service .serviceContent {
  max-width: 1000px;
  margin-inline: auto;
  padding: 45px;
  background-color: #fff;
}
body.single-service .serviceContent .specialNusingHomeTitles .title {
  display: none;
  color: #000;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 35px;
  border-bottom: 1px solid #000;
  padding-bottom: 16px;
  margin-bottom: 45px;
}
body.single-service .serviceContent .specialNusingHomeTitles .title.active {
  display: block;
}
body.single-service .serviceContent .serviceHeader {
  display: none;
}
body.single-service .serviceContent .serviceHeader.active {
  display: block;
}
body.single-service .serviceContent .splide {
  margin-bottom: 50px;
}
body.single-service .serviceContent .splide .splide__list img {
  width: 100%;
  aspect-ratio: 32/22;
  object-fit: cover;
}
body.single-service .serviceContent > section, body.single-service .serviceContent .serviceHeader {
  font-family: "Noto Sans JP", sans-serif;
}
body.single-service .serviceContent > section h2, body.single-service .serviceContent .serviceHeader h2 {
  color: #000;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  background-color: #f3efe7;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 18px;
}
body.single-service .serviceContent > section h2::before, body.single-service .serviceContent .serviceHeader h2::before {
  content: "";
  display: block;
  width: 0.8em;
  aspect-ratio: 1;
  background-color: #b3b3b3;
  margin-right: 5px;
}
body.single-service .serviceContent > section .topDescription, body.single-service .serviceContent .serviceHeader .topDescription {
  font-size: 17px;
  line-height: 35px;
  margin: 30px 0;
}
body.single-service .serviceContent .usageGuide table {
  width: 100%;
  margin: 10px 0 120px;
  font-family: "Noto Sans JP", sans-serif;
}
body.single-service .serviceContent .usageGuide table th, body.single-service .serviceContent .usageGuide table td {
  padding: 20px 10px;
  border-bottom: 1px solid #d9d9d9;
}
body.single-service .serviceContent .usageGuide table th {
  white-space: nowrap;
  font-size: 18px;
  width: 200px;
  font-weight: 500;
}
body.single-service .serviceContent .usageGuide table td {
  font-size: 17px;
  line-height: 35px;
  padding-top: 14px;
}
body.single-service .serviceContent .usageGuide table td .attention {
  font-size: 14px;
}
body.single-service .serviceContent .usageGuide table td span.attention.attention--spaced {
  margin-left: 10px;
}
body.single-service .serviceContent .usageGuide table td a {
  transition: 0.3s;
}
@media (any-hover: hover) {
  body.single-service .serviceContent .usageGuide table td a:hover {
    opacity: 0.5;
  }
}
body.single-service .serviceContent .usageGuide table td a {
  height: 40px;
  min-width: 140px;
  border-radius: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: #f3efe7;
  padding: 0 27px;
}
body.single-service .serviceContent .usageGuide table td a img {
  width: 17px;
}
body.single-service .serviceContent .usageGuide table td a + a {
  margin-left: 10px;
}
body.single-service .serviceContent .usageGuide table .hasPdf th {
  vertical-align: middle;
}
body.single-service .serviceContent .usageGuide table .hasPdf td {
  padding-top: 20px;
}
body.single-service .serviceContent .schedule {
  padding-bottom: 140px;
}
body.single-service .serviceContent .schedule img {
  display: block;
  width: 90%;
  margin: 25px auto 0;
}
body.single-service .serviceContent .facilityIntroduction ul {
  font-family: "Noto Sans JP", sans-serif;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 37px;
  margin-top: 30px;
}
body.single-service .serviceContent .facilityIntroduction ul li img {
  width: 100%;
  aspect-ratio: 27/19;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 7px;
}
body.single-service .serviceContent .facilityIntroduction ul li h3 {
  color: #000;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 5px;
}
body.single-service .serviceContent .facilityIntroduction ul li p {
  font-size: 17px;
  line-height: 35px;
  font-weight: 400;
}
body.single-service .serviceCommonContent .contact {
  margin-bottom: 155px;
}
body.single-service .serviceCommonContent .contact .titles {
  margin-bottom: 35px;
}
body.single-service .serviceCommonContent .contact .desc {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-size: 17px;
  line-height: 35px;
  margin-bottom: 70px;
  font-weight: 400;
}
body.single-service .serviceCommonContent .contact .contacts {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-family: "Noto Sans JP", sans-serif;
}
body.single-service .serviceCommonContent .contact .contacts li a {
  transition: 0.3s;
}
@media (any-hover: hover) {
  body.single-service .serviceCommonContent .contact .contacts li a:hover {
    opacity: 0.5;
  }
}
body.single-service .serviceCommonContent .contact .contacts li a {
  display: grid;
  place-content: center;
  width: 360px;
  height: 128px;
  border-radius: 64px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(188, 188, 169, 0.2);
}
body.single-service .serviceCommonContent .contact .contacts li.tel .number {
  font-size: 33px;
  font-weight: 500;
  position: relative;
}
body.single-service .serviceCommonContent .contact .contacts li.tel .number img {
  width: 10px;
  position: absolute;
  left: -7px;
  top: 5px;
  translate: -100% 0;
}
body.single-service .serviceCommonContent .contact .contacts li.tel .contactPerson {
  font-size: 17px;
  margin-top: 7px;
}
body.single-service .serviceCommonContent .contact .contacts li.contactForm {
  font-size: 25px;
}
body.single-service .serviceCommonContent .contact .contacts li.contactForm a {
  display: flex;
  align-items: center;
  gap: 9px;
}
body.single-service .serviceCommonContent .contact .contacts li.contactForm a img {
  width: 31px;
}
body.single-service .serviceCommonContent .access .overview, body.single-service .serviceCommonContent .access .accessInfo {
  max-width: 800px;
  margin: 0 auto;
}
body.single-service .serviceCommonContent .access .overview {
  margin-bottom: 35px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: "Noto Sans JP", sans-serif;
}
body.single-service .serviceCommonContent .access .overview .mapImage {
  width: 52%;
  aspect-ratio: 416/260;
}
body.single-service .serviceCommonContent .access .overview .content {
  width: 43.75%;
}
body.single-service .serviceCommonContent .access .overview .content h3 {
  font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}
body.single-service .serviceCommonContent .access .overview .content p {
  font-size: 17px;
  line-height: 35px;
  font-weight: 400;
}
body.single-service .serviceCommonContent .access .overview .content p .addressWrap .addressText {
  white-space: nowrap;
}
body.single-service .serviceCommonContent .access .accessInfo h3 {
  display: grid;
  place-items: center;
  font-size: 18px;
  width: 185px;
  height: 39px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  background-color: #e8e5de;
  font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
  margin-bottom: 7px;
}
body.single-service .serviceCommonContent .access .accessInfo .accessInfoInner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: "Noto Sans JP", sans-serif;
}
body.single-service .serviceCommonContent .access .accessInfo .accessInfoInner .map {
  width: 52%;
  aspect-ratio: 416/260;
  border-radius: 30px;
}
body.single-service .serviceCommonContent .access .accessInfo .accessInfoInner ul {
  width: 43.75%;
}
body.single-service .serviceCommonContent .access .accessInfo .accessInfoInner ul li {
  font-size: 17px;
  line-height: 35px;
}
body.single-service .serviceCommonContent .access .accessInfo .accessInfoInner ul li h4 {
  font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 600;
  font-size: 18px;
}
body.single-service .serviceCommonContent .access .accessInfo .accessInfoInner ul li h4::before {
  content: "・";
}
body.single-service .serviceCommonContent .access .accessInfo .accessInfoInner ul li p {
  padding-left: 1em;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 35px;
}
body.single-service .serviceCommonContent .service {
  margin-top: 80px;
  padding-bottom: 60px;
}
body.single-service .serviceCommonContent .service .titles {
  margin-bottom: 60px;
}
body.single-service .serviceCommonContent .service .serviceList {
  max-width: 1000px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 20px;
}
body.single-service .serviceCommonContent .service .serviceList li {
  width: 25%;
}
body.single-service .serviceCommonContent .service .serviceList li a {
  display: block;
  transition: 0.3s;
}
@media (any-hover: hover) {
  body.single-service .serviceCommonContent .service .serviceList li a:hover {
    opacity: 0.5;
  }
}
body.single-service .serviceCommonContent .service .serviceList li a img {
  width: 100%;
  scale: 1.15;
}
@media screen and (max-width: 768px) {
  body.single-service .serviceCommonContent .service .serviceList {
    gap: 0;
    margin-top: 1.3157894737vw;
  }
  body.single-service .serviceCommonContent .service .serviceList li {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  body.single-service .sectionHeader img {
    right: 5vw;
    left: auto;
    width: 44.7368421053vw;
  }
  body.single-service .switchTabs {
    max-width: 92.1%;
    margin-inline: auto;
    gap: 4.2105263158vw;
    margin-bottom: 0vw;
  }
  body.single-service .switchTabs li {
    color: #000;
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 35px;
    height: 17.1052631579vw;
    border-top-right-radius: 5.2631578947vw;
    border-top-left-radius: 5.2631578947vw;
    padding-right: 2.6315789474vw;
  }
  body.single-service .switchTabs li::after {
    width: 5.7894736842vw;
    right: 2.6315789474vw;
  }
  body.single-service .serviceContent {
    max-width: 92.1%;
    margin-inline: auto;
    padding: 2.6315789474vw;
    padding-bottom: 13.1578947368vw;
  }
  body.single-service .serviceContent .specialNusingHomeTitles .title {
    color: #000;
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 35px;
    margin-top: 3.9473684211vw;
    margin-bottom: 2.6315789474vw;
    padding-bottom: 4.7368421053vw;
  }
  body.single-service .serviceContent .splide {
    margin-bottom: 4.7368421053vw;
  }
  body.single-service .serviceContent > section h2, body.single-service .serviceContent .serviceHeader h2 {
    color: #000;
    font-family: "Shippori Mincho", serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    height: auto;
    min-height: 13.1578947368vw;
    padding-left: 4.7368421053vw;
    padding-block: 2.6315789474vw;
  }
  body.single-service .serviceContent > section h2::before, body.single-service .serviceContent .serviceHeader h2::before {
    margin-right: 1.8421052632vw;
  }
  body.single-service .serviceContent .usageGuide table {
    margin: 2.6315789474vw 0 15.7894736842vw;
  }
  body.single-service .serviceContent .usageGuide table th {
    width: 26.3157894737vw;
    font-size: 4.4736842105vw;
    padding: 3.9473684211vw 0;
  }
  body.single-service .serviceContent .usageGuide table td {
    line-height: 6.5789473684vw;
    padding-top: 3.1578947368vw;
  }
  body.single-service .serviceContent .usageGuide table td .attention {
    font-size: 3.1578947368vw;
  }
  body.single-service .serviceContent .usageGuide table td span.attention.attention--spaced {
    margin-left: 2.6315789474vw;
  }
  body.single-service .serviceContent .usageGuide table td a {
    height: 10.5263157895vw;
    min-width: 36.8421052632vw;
    border-radius: 5.2631578947vw;
    gap: 2.1052631579vw;
    padding: 0 7.1052631579vw;
  }
  body.single-service .serviceContent .usageGuide table td a img {
    width: 4.4736842105vw;
  }
  body.single-service .serviceContent .usageGuide table td a + a {
    margin-top: 2.6315789474vw;
    margin-left: 0;
  }
  body.single-service .serviceContent .usageGuide table .hasPdf th {
    vertical-align: top;
    padding: 6.5789473684vw 0;
  }
  body.single-service .serviceContent .usageGuide table .hasPdf td {
    padding-top: 4.4736842105vw;
    vertical-align: middle;
  }
  body.single-service .serviceContent .schedule {
    padding-bottom: 0;
    margin-bottom: 6.5789473684vw;
  }
  body.single-service .serviceContent .schedule img {
    width: 100%;
    margin: 6.5789473684vw auto 0;
  }
  body.single-service .serviceContent .facilityIntroduction ul {
    grid-template-columns: auto;
    width: 82%;
    margin-top: 6.0526315789vw;
    margin-inline: auto;
    gap: 5.2631578947vw;
  }
  body.single-service .serviceContent .facilityIntroduction ul li img {
    border-radius: 5.2631578947vw;
  }
  body.single-service .serviceContent .facilityIntroduction ul li h3 {
    color: #000;
    font-family: "Shippori Mincho", serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin: 1.8421052632vw 0 1.3157894737vw;
  }
  body.single-service .serviceContent .facilityIntroduction ul li p {
    font-size: 4.4736842105vw;
    line-height: 6.5789473684vw;
  }
  body.single-service .serviceCommonContent {
    max-width: 92.1%;
    margin-inline: auto;
  }
  body.single-service .serviceCommonContent .contact {
    margin-bottom: 19.7368421053vw;
  }
  body.single-service .serviceCommonContent .contact .titles {
    margin-bottom: 9.2105263158vw;
  }
  body.single-service .serviceCommonContent .contact .desc {
    font-size: 4.4736842105vw;
    line-height: 7.8947368421vw;
    max-width: 86.8421052632vw;
    margin-inline: auto;
    margin-bottom: 3.9473684211vw;
  }
  body.single-service .serviceCommonContent .contact .contacts {
    display: grid;
    justify-content: normal;
    gap: 5.2631578947vw;
  }
  body.single-service .serviceCommonContent .contact .contacts li {
    width: 100%;
  }
  body.single-service .serviceCommonContent .contact .contacts li a {
    width: 100%;
    height: 26.3157894737vw;
    border-radius: 13.1578947368vw;
    box-shadow: 0 0 5.2631578947vw rgba(188, 188, 169, 0.2);
  }
  body.single-service .serviceCommonContent .contact .contacts li.tel .number {
    font-size: 8.6842105263vw;
  }
  body.single-service .serviceCommonContent .contact .contacts li.tel .number img {
    width: 2.6315789474vw;
    left: -1.8421052632vw;
    top: 1.3157894737vw;
  }
  body.single-service .serviceCommonContent .contact .contacts li.tel .contactPerson {
    font-size: 4.4736842105vw;
    margin-top: 1.8421052632vw;
  }
  body.single-service .serviceCommonContent .contact .contacts li.contactForm {
    font-size: 5.7894736842vw;
  }
  body.single-service .serviceCommonContent .contact .contacts li.contactForm a {
    gap: 1.8421052632vw;
  }
  body.single-service .serviceCommonContent .contact .contacts li.contactForm a img {
    width: 8.6842105263vw;
  }
  body.single-service .serviceCommonContent .access .overview {
    display: grid;
    margin-bottom: 10.5263157895vw;
  }
  body.single-service .serviceCommonContent .access .overview .mapImage {
    width: 100%;
  }
  body.single-service .serviceCommonContent .access .overview .content {
    width: 100%;
  }
  body.single-service .serviceCommonContent .access .overview .content h3 {
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 4.7368421053vw;
    margin-top: 5.2631578947vw;
    margin-bottom: 5.2631578947vw;
  }
  body.single-service .serviceCommonContent .access .overview .content p {
    font-size: 4.4736842105vw;
    line-height: 9.2105263158vw;
  }
  body.single-service .serviceCommonContent .access .overview .content p .addressWrap {
    display: inline;
    position: static;
    padding-left: 0;
  }
  body.single-service .serviceCommonContent .access .overview .content p .addressWrap .addressTitle {
    position: static;
  }
  body.single-service .serviceCommonContent .access .accessInfo h3 {
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
    width: 48.6842105263vw;
    height: 10.2631578947vw;
    font-size: 4.7368421053vw;
    margin-bottom: 1.8421052632vw;
    border-top-right-radius: 5.2631578947vw;
    border-top-left-radius: 5.2631578947vw;
  }
  body.single-service .serviceCommonContent .access .accessInfo .accessInfoInner {
    display: grid;
  }
  body.single-service .serviceCommonContent .access .accessInfo .accessInfoInner .map {
    width: 100%;
  }
  body.single-service .serviceCommonContent .access .accessInfo .accessInfoInner ul {
    width: 100%;
    margin-top: 10px;
  }
  body.single-service .serviceCommonContent .access .accessInfo .accessInfoInner ul li {
    font-size: 4.4736842105vw;
    line-height: 9.2105263158vw;
  }
  body.single-service .serviceCommonContent .access .accessInfo .accessInfoInner ul li h4 {
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 4.7368421053vw;
    font-weight: 600;
  }
  body.single-service .serviceCommonContent .access .accessInfo .accessInfoInner ul li p {
    font-size: 4.4736842105vw;
    line-height: 9.2105263158vw;
  }
  body.single-service .serviceCommonContent .service {
    margin-top: 21.0526315789vw;
    padding-bottom: 15.7894736842vw;
  }
  body.single-service .serviceCommonContent .service .titles {
    margin-bottom: 2.6315789474vw;
  }
  body.single-service .serviceCommonContent .service .serviceList {
    margin-top: 0;
  }
}

body.privacy .sectionHeader .sectionHeaderBg {
  background-color: var(--lighterBlue);
}
body.privacy .sectionHeader img {
  width: 371px;
  left: 340px;
  top: 50%;
}
body.privacy .content {
  max-width: 1000px;
  margin-inline: auto;
  padding-bottom: 80px;
}
body.privacy .content h2 {
  display: grid;
  align-items: center;
  height: 51px;
  background-color: var(--lighterBlue);
  border-left: 9px solid #c5d0cc;
  padding-left: 10px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
}
body.privacy .content h2:not(:first-of-type) {
  margin-top: 80px;
}
body.privacy .content > ul {
  display: grid;
  gap: 35px;
}
body.privacy .content > ul > li h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 35px;
}
body.privacy .content > ul > li p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
}
body.privacy .content > ul > li p + p {
  margin-top: 1.5em;
}
@media screen and (max-width: 768px) {
  body.privacy .sectionHeader img {
    width: 39.4736842105vw;
    left: 52.6315789474vw;
  }
  body.privacy .content {
    max-width: 92.1%;
    margin-inline: auto;
    padding-bottom: 13.1578947368vw;
  }
  body.privacy .content h2 {
    height: 13.4210526316vw;
    border-left-width: 0.7894736842vw;
    padding-left: 1.3157894737vw;
    font-size: 5.7894736842vw;
    margin-bottom: 7.8947368421vw;
  }
  body.privacy .content h2:not(:first-of-type) {
    margin-top: 13.1578947368vw;
  }
  body.privacy .content > ul {
    gap: 9.2105263158vw;
  }
  body.privacy .content > ul > li h3 {
    font-size: 4.7368421053vw;
    line-height: 9.2105263158vw;
  }
  body.privacy .content > ul > li p {
    font-size: 4.2105263158vw;
    line-height: 7.8947368421vw;
  }
}

body.archive .sectionHeader .sectionHeaderBg {
  background-color: #f5e7ae;
}
body.archive .sectionHeader img {
  width: 205px;
  left: 100px;
}
body.archive .newsContents {
  max-width: 1000px;
  margin-inline: auto;
}
body.archive .newsContents .categories {
  display: flex;
  justify-content: center;
  gap: 6px;
  font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
}
body.archive .newsContents .categories li {
  transition: 0.3s;
}
@media (any-hover: hover) {
  body.archive .newsContents .categories li:hover {
    opacity: 0.5;
  }
}
body.archive .newsContents .categories li {
  cursor: pointer;
  padding: 6px 10px 7px;
}
body.archive .newsContents .newsList {
  display: none;
  margin-top: 22px;
}
body.archive .newsContents .newsList.active {
  display: block;
}
body.archive .newsContents .newsList li {
  border-top: 1px dotted #d3d3d3;
  padding: 39px 0;
  font-family: "Noto Sans JP", sans-serif;
}
body.archive .newsContents .newsList li:last-of-type {
  border-bottom: 1px dotted #d3d3d3;
}
body.archive .newsContents .newsList li a {
  transition: 0.3s;
}
@media (any-hover: hover) {
  body.archive .newsContents .newsList li a:hover {
    opacity: 0.5;
  }
}
body.archive .newsContents .newsList li a {
  display: flex;
  align-items: center;
  gap: 20px;
}
body.archive .newsContents .newsList li a time {
  display: block;
  min-width: max-content;
  font-size: 18px;
  font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
}
body.archive .newsContents .newsList li a .cat {
  text-align: center;
  font-size: 14px;
  background-color: #e9d8a8;
  padding: 6px 10px 7px;
  font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
}
body.archive .newsContents .newsList li a h3 {
  width: auto;
  max-width: 100%;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 17px;
  font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
}
@media screen and (max-width: 768px) {
  body.archive .newsContents .categories li {
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 4.2105263158vw;
    padding: 1.0526315789vw 1.3157894737vw 1.3157894737vw;
  }
  body.archive .newsContents .newsList li {
    padding: 5.2631578947vw 0;
  }
  body.archive .newsContents .newsList li a {
    display: grid;
    grid-template-columns: max-content 1fr;
    justify-content: start;
    gap: 3.9473684211vw;
  }
  body.archive .newsContents .newsList li a time {
    font-size: 4.7368421053vw;
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
  }
  body.archive .newsContents .newsList li a .cat {
    min-width: 0;
    max-width: max-content;
    font-size: 3.6842105263vw;
    padding: 1.5789473684vw 2.6315789474vw 1.8421052632vw;
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
  }
  body.archive .newsContents .newsList li a h3 {
    grid-column: 1/3;
    font-size: 4.4736842105vw;
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
  }
}
body.archive .newsContents {
  display: flex;
  gap: 45px;
  margin-bottom: 33px;
}
body.archive .newsContents .newsListContainer {
  width: calc(100% - 120px - 45px);
}
body.archive .newsContents .newsListContainer .newsList {
  display: block;
}
body.archive .newsContents .yearArchive {
  width: 120px;
}
body.archive .newsContents .yearArchive h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 19px;
  display: flex;
  align-items: center;
  gap: 3px;
}
body.archive .newsContents .yearArchive ul,
body.archive .newsContents .yearArchive ul li,
body.archive .newsContents .yearArchive ul li a {
  font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
}
body.archive .newsContents .yearArchive h2::before {
  content: "";
  display: block;
  width: 0.8em;
  aspect-ratio: 1;
  background-color: #fedaa1;
}
body.archive .newsContents .yearArchive ul {
  margin-top: 20px;
  display: grid;
  gap: 15px;
}
body.archive .newsContents .yearArchive ul li {
  padding-left: 1.3em;
}
body.archive ul.page-numbers {
  display: flex;
  justify-content: center;
  margin-bottom: 90px;
  font-family: "Noto Sans JP", sans-serif;
}
body.archive ul.page-numbers li {
  border: 1px solid #d9d9d9;
}
body.archive ul.page-numbers li + li {
  border-left: 0;
}
body.archive ul.page-numbers li:has(a:empty) {
  display: none;
}
body.archive ul.page-numbers li a, body.archive ul.page-numbers li span {
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
}
body.archive ul.page-numbers li a {
  transition: 0.3s;
}
@media (any-hover: hover) {
  body.archive ul.page-numbers li a:hover {
    opacity: 0.5;
  }
}
body.archive ul.page-numbers li a {
  color: #858383;
}
body.archive ul.page-numbers li:has(.current) {
  background-color: #7daed8;
  color: #fff;
}
body.archive ul.page-numbers li:has(a.prev) + li {
  border-left: 1px solid #d9d9d9;
}
@media screen and (max-width: 768px) {
  body.archive main {
    display: grid;
  }
  body.archive .sectionHeader {
    width: 100%;
  }
  body.archive .sectionHeader img {
    width: 34.2105263158vw;
    left: 28.9473684211vw;
    top: 50%;
  }
  body.archive ol {
    width: 100%;
  }
  body.archive .newsContents {
    display: contents;
  }
  body.archive .newsContents .newsListContainer {
    max-width: 92.1%;
    margin-inline: auto;
    width: 100%;
  }
  body.archive .newsContents .newsListContainer .categories {
    margin-bottom: 13.1578947368vw;
  }
  body.archive .newsContents .yearArchive {
    max-width: 92.1%;
    margin-inline: auto;
    width: 100%;
    order: 1;
    margin-top: 16.3157894737vw;
    margin-bottom: 13.1578947368vw;
  }
  body.archive .newsContents .yearArchive h2 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 5.2631578947vw;
    gap: 0.7894736842vw;
  }
  body.archive .newsContents .yearArchive ul {
    margin-top: 5.2631578947vw;
    gap: 3.9473684211vw;
  }
  body.archive ul.page-numbers {
    margin-top: 5vw;
    margin-bottom: 15.7894736842vw;
  }
  body.archive ul.page-numbers li a, body.archive ul.page-numbers li span {
    width: 8.9473684211vw;
  }
}

body.single.post-template-default .sectionHeader .sectionHeaderBg {
  background-color: #f5e7ae;
}
body.single.post-template-default .sectionHeader img {
  width: 205px;
  left: 100px;
}
body.single.post-template-default .newsWrapper {
  max-width: 1000px;
  margin-inline: auto;
  display: flex;
  gap: 45px;
}
body.single.post-template-default .newsWrapper article {
  width: calc(100% - 120px - 45px);
  font-family: "Noto Sans JP", sans-serif;
}
body.single.post-template-default .newsWrapper article .info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
body.single.post-template-default .newsWrapper article .info time {
  font-size: 18px;
}
body.single.post-template-default .newsWrapper article .info .cat {
  font-size: 14px;
  background-color: #e9d8a8;
  padding: 6px 10px 7px;
}
body.single.post-template-default .newsWrapper article h1 {
  font-size: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #d3d3d3;
}
body.single.post-template-default .newsWrapper article .content p {
  font-size: 16px;
  line-height: 30px;
  margin: 1.5em 0;
}
body.single.post-template-default .newsWrapper article .content figure {
  margin: 1.5em 0;
}
body.single.post-template-default .newsWrapper .yearArchive {
  width: 120px;
  font-family: "Noto Sans JP", sans-serif;
}
body.single.post-template-default .newsWrapper .yearArchive h2 {
  font-size: 19px;
  display: flex;
  align-items: center;
  gap: 3px;
}
body.single.post-template-default .newsWrapper .yearArchive h2::before {
  content: "";
  display: block;
  width: 0.8em;
  aspect-ratio: 1;
  background-color: #fedaa1;
}
body.single.post-template-default .newsWrapper .yearArchive ul {
  margin-top: 20px;
  display: grid;
  gap: 15px;
}
body.single.post-template-default .newsWrapper .yearArchive ul li {
  padding-left: 1.3em;
}
body.single.post-template-default .toNews {
  transition: 0.3s;
}
@media (any-hover: hover) {
  body.single.post-template-default .toNews:hover {
    opacity: 0.5;
  }
}
body.single.post-template-default .toNews {
  display: block;
  text-align: center;
  width: 224px;
  margin: 70px auto 60px;
}
body.single.post-template-default .toNews img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  body.single.post-template-default main {
    display: grid;
  }
  body.single.post-template-default .sectionHeader {
    width: 100%;
  }
  body.single.post-template-default .sectionHeader img {
    width: 34.2105263158vw;
    left: 28.9473684211vw;
    top: 50%;
  }
  body.single.post-template-default ol {
    width: 100%;
  }
  body.single.post-template-default .newsWrapper {
    display: contents;
  }
  body.single.post-template-default .newsWrapper article {
    max-width: 92.1%;
    margin-inline: auto;
    width: 100%;
  }
  body.single.post-template-default .newsWrapper article .info {
    gap: 5.2631578947vw;
    margin-bottom: 5.2631578947vw;
  }
  body.single.post-template-default .newsWrapper article .info time {
    font-size: 4.7368421053vw;
  }
  body.single.post-template-default .newsWrapper article .info .cat {
    font-size: 3.6842105263vw;
    padding: 1.5789473684vw 2.6315789474vw 1.8421052632vw;
  }
  body.single.post-template-default .newsWrapper article h1 {
    font-size: 5.2631578947vw;
    padding-bottom: 5.2631578947vw;
    line-height: 1.4;
  }
  body.single.post-template-default .newsWrapper article .content p {
    font-size: 4.2105263158vw;
    line-height: 30px;
  }
  body.single.post-template-default .newsWrapper .yearArchive {
    max-width: 92.1%;
    margin-inline: auto;
    width: 100%;
    order: 1;
    margin-bottom: 21.0526315789vw;
  }
  body.single.post-template-default .newsWrapper .yearArchive h2 {
    font-size: 5.2631578947vw;
    gap: 0.7894736842vw;
  }
  body.single.post-template-default .newsWrapper .yearArchive ul {
    margin-top: 5.2631578947vw;
    gap: 3.9473684211vw;
  }
  body.single.post-template-default .toNews {
    width: 58.9473684211vw;
    margin-top: 2.6315789474vw;
    margin-bottom: 15.7894736842vw;
  }
}

body.contact .sectionHeader .sectionHeaderBg {
  background-color: #d1dfe3;
}
body.contact .sectionHeader img {
  width: 264px;
  left: 180px;
}
body.contact main > section {
  font-family: "Noto Sans JP", sans-serif;
}
body.contact main > section .desc {
  font-size: 17px;
  text-align: center;
  margin-bottom: 35px;
}
body.contact main > section .formWrapper {
  max-width: 1000px;
  margin-inline: auto;
  background-color: #fff;
  padding: 45px 0 90px;
  margin-bottom: 200px;
}
body.contact main > section .formWrapper .inner {
  width: 63.67%;
  margin-inline: auto;
}
body.contact main > section .formWrapper .inner dl dt {
  font-weight: 400;
  font-size: 17px;
  margin-bottom: 15px;
}
body.contact main > section .formWrapper .inner dl dt:not(:first-of-type) {
  margin-top: 20px;
}
body.contact main > section .formWrapper .inner dl dt.required {
  display: flex;
  align-items: center;
  gap: 10px;
}
body.contact main > section .formWrapper .inner dl dt.required::after {
  content: "必須";
  width: 47px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #f3bb61;
  border-radius: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 1;
  color: #fff;
}
body.contact main > section .formWrapper .inner dl dd .postcode {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
body.contact main > section .formWrapper .inner dl dd .postcode input {
  width: 125px;
}
body.contact main > section .formWrapper .inner dl dd .postcode .description {
  font-size: 14px;
  color: #6a6a6a;
}
body.contact main > section .formWrapper .inner dl dd .address {
  display: grid;
  gap: 10px;
}
body.contact main > section .formWrapper .inner dl dd .address input {
  max-width: 410px;
}
body.contact main > section .formWrapper .inner dl dd .wpcf7-radio {
  display: grid;
  gap: 18px;
}
body.contact main > section .formWrapper .inner dl dd .wpcf7-radio .wpcf7-list-item {
  margin-left: 0;
}
body.contact main > section .formWrapper .inner dl dd .wpcf7-radio label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
body.contact main > section .formWrapper .inner dl dd .wpcf7-radio label input {
  width: max-content;
  accent-color: #777;
  width: 18px;
}
body.contact main > section .formWrapper .inner dl dd .wpcf7-radio label span {
  font-size: 16px;
  display: block;
  margin-left: 5px;
}
body.contact main > section .formWrapper .inner dl input, body.contact main > section .formWrapper .inner dl textarea {
  appearance: auto;
  background-color: #f6f6f6;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  padding: 5px 14px;
  width: 100%;
  line-height: 35px;
  font-size: 14px;
  outline: none;
}
body.contact main > section .formWrapper .inner dl input::placeholder, body.contact main > section .formWrapper .inner dl textarea::placeholder {
  color: #d9d9d9;
}
body.contact main > section .formWrapper .inner dl textarea {
  margin-top: 16px;
  resize: vertical;
}
body.contact main > section .formWrapper .inner dl select {
  appearance: auto;
  background-color: #f6f6f6;
  border: 1px solid #d9d9d9;
  height: 47px;
  padding: 0 14px;
  border-radius: 5px;
  line-height: 35px;
  font-size: 14px;
  outline: none;
}
body.contact main > section .formWrapper .inner .privacy {
  font-size: 16px;
  line-height: 35px;
  text-align: center;
  margin: 10px auto 45px;
}
body.contact main > section .formWrapper .inner .privacy a {
  color: #3c96da;
  text-decoration: underline;
}
body.contact main > section .formWrapper .inner .privacy label {
  display: flex;
  align-items: center;
  gap: 3px;
}
body.contact main > section .formWrapper .inner .privacy label input {
  appearance: auto;
  background-color: #f6f6f6;
  border: 1px solid #d9d9d9;
  width: 18px;
  border-radius: 5px;
  accent-color: #777;
}
body.contact main > section .formWrapper .inner input[type=submit] {
  display: none;
}
body.contact main > section .formWrapper .inner .submitButton {
  transition: 0.3s;
}
@media (any-hover: hover) {
  body.contact main > section .formWrapper .inner .submitButton:hover {
    opacity: 0.5;
  }
}
body.contact main > section .formWrapper .inner .submitButton {
  display: block;
  width: 224px;
  margin: 0 auto;
}
body.contact main > section .formWrapper .inner .submitButton img {
  width: 100%;
}
body.contact main > section .formWrapper .inner .submitButton:has(+ input[type=submit]:disabled) {
  opacity: 0.5;
  cursor: not-allowed;
}
@media screen and (max-width: 768px) {
  body.contact .sectionHeader img {
    width: 48.6842105263vw;
    left: 40.7894736842vw;
  }
  body.contact main > section .desc {
    font-size: 3.9473684211vw;
    margin-bottom: 2.6315789474vw;
  }
  body.contact main > section .formWrapper {
    max-width: 92.1%;
    margin-inline: auto;
    padding: 7.8947368421vw 5.2631578947vw 23.6842105263vw;
    margin-bottom: 31.5789473684vw;
  }
  body.contact main > section .formWrapper .inner {
    width: 100%;
  }
  body.contact main > section .formWrapper .inner dl dt {
    font-size: 4.4736842105vw;
    margin-bottom: 3.9473684211vw;
  }
  body.contact main > section .formWrapper .inner dl dt:not(:first-of-type) {
    margin-top: 5.2631578947vw;
  }
  body.contact main > section .formWrapper .inner dl dt.required {
    gap: 2.6315789474vw;
  }
  body.contact main > section .formWrapper .inner dl dt.required::after {
    width: 12.3684210526vw;
    height: 4.4736842105vw;
    font-size: 3.1578947368vw;
    line-height: 1;
    border-radius: 1.3157894737vw;
  }
  body.contact main > section .formWrapper .inner dl dd .postcode {
    flex-wrap: wrap;
    gap: 2.1052631579vw;
    margin-bottom: 2.6315789474vw;
  }
  body.contact main > section .formWrapper .inner dl dd .postcode input {
    width: 32.8947368421vw;
  }
  body.contact main > section .formWrapper .inner dl dd .postcode .description {
    font-size: 3.4210526316vw;
  }
  body.contact main > section .formWrapper .inner dl dd .address {
    gap: 2.6315789474vw;
  }
  body.contact main > section .formWrapper .inner dl dd .address input {
    max-width: none;
  }
  body.contact main > section .formWrapper .inner dl dd .wpcf7-radio {
    gap: 4.7368421053vw;
  }
  body.contact main > section .formWrapper .inner dl dd .wpcf7-radio .wpcf7-list-item {
    margin-left: 0;
  }
  body.contact main > section .formWrapper .inner dl dd .wpcf7-radio label input {
    width: 4.7368421053vw;
  }
  body.contact main > section .formWrapper .inner dl dd .wpcf7-radio label span {
    font-size: 4.2105263158vw;
    margin-left: 1.3157894737vw;
  }
  body.contact main > section .formWrapper .inner dl input, body.contact main > section .formWrapper .inner dl textarea {
    font-size: 3.4210526316vw;
    line-height: 9.2105263158vw;
    padding: 1.3157894737vw 3.6842105263vw;
    border-radius: 1.3157894737vw;
  }
  body.contact main > section .formWrapper .inner dl textarea {
    margin-top: 4.2105263158vw;
  }
  body.contact main > section .formWrapper .inner dl select {
    height: 12.3684210526vw;
    padding: 0 3.6842105263vw;
    border-radius: 1.3157894737vw;
    line-height: 9.2105263158vw;
    font-size: 3.6842105263vw;
  }
  body.contact main > section .formWrapper .inner .privacy {
    font-size: 4.2105263158vw;
    line-height: 9.2105263158vw;
    margin: 2.6315789474vw auto 0;
  }
  body.contact main > section .formWrapper .inner .privacy a {
    color: #3c96da;
  }
  body.contact main > section .formWrapper .inner .privacy span[data-name^=acceptance] {
    display: block;
    margin: 7.8947368421vw 0;
  }
  body.contact main > section .formWrapper .inner .privacy label {
    gap: 0.7894736842vw;
  }
  body.contact main > section .formWrapper .inner .privacy label input {
    width: 4.7368421053vw;
    border-radius: 1.3157894737vw;
    accent-color: #777;
  }
  body.contact main > section .formWrapper .inner .submitButton {
    width: 58.9473684211vw;
  }
}

body.recruit .sectionHeader .sectionHeaderBg {
  background-color: #edd6d6;
}
body.recruit .sectionHeader img {
  width: 263px;
  left: 180px;
}
body.recruit .content .message {
  position: relative;
  overflow-x: hidden;
  padding-top: 200px;
  padding-bottom: 70px;
}
body.recruit .content .message::before {
  content: "";
  display: block;
  position: absolute;
  top: 100px;
  left: -20px;
  translate: none;
  width: 531px;
  height: 513px;
  border-radius: 256.5px;
  background-color: rgba(251, 239, 213, 0.6);
  filter: blur(150px);
  z-index: -1;
  will-change: filter;
}
body.recruit .content .message::after {
  content: "";
  display: block;
  position: absolute;
  top: 135px;
  left: 60%;
  translate: none;
  width: 696px;
  height: 672px;
  border-radius: 336px;
  background-color: rgba(251, 213, 213, 0.5);
  filter: blur(150px);
  z-index: -1;
  will-change: filter;
}
body.recruit .content .message .titleImage {
  width: 373px;
  position: absolute;
  top: 200px;
  left: 50%;
  translate: -50% 0;
}
body.recruit .content .message .messageHeader {
  max-width: 1980px;
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
body.recruit .content .message .messageHeader .content .title {
  color: #836e6c;
  font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 33px;
  font-style: normal;
  font-weight: 600;
  line-height: 87px;
  letter-spacing: 6.6px;
  background-color: #fff;
  width: 608px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 32px;
}
body.recruit .content .message .messageHeader .content p {
  font-size: 17px;
  line-height: 45px;
  letter-spacing: 0.05em;
  padding-left: 140px;
  margin-top: 30px;
}
body.recruit .content .message .messageHeader img {
  height: 400px;
}
body.recruit .content .message .messageBottom {
  max-width: 1980px;
  margin-top: 50px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 100px;
}
body.recruit .content .message .messageBottom img {
  height: 400px;
}
body.recruit .content .message .messageBottom p {
  color: #000;
  font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
body.recruit .content .strengths .strengthsTitles {
  color: #836e6c;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 55px;
}
body.recruit .content .strengths .strengthsTitles > img {
  width: 53px;
}
body.recruit .content .strengths .strengthsTitles h2 {
  font-size: 33px;
  margin-block: 10px;
}
body.recruit .content .strengths .strengthsTitles .en {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  body.recruit .content .strengths .strengthsTitles {
    margin-bottom: 10.5263157895vw;
  }
  body.recruit .content .strengths .strengthsTitles > img {
    width: 13.9473684211vw;
  }
  body.recruit .content .strengths .strengthsTitles h2 {
    font-size: 8.6842105263vw;
    margin-block: 2.6315789474vw;
  }
  body.recruit .content .strengths .strengthsTitles .en {
    font-size: 3.9473684211vw;
  }
}
body.recruit .content .strengths .strengthsList {
  max-width: 1000px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
body.recruit .content .strengths .strengthsList li {
  font-family: "Noto Sans JP", sans-serif;
}
body.recruit .content .strengths .strengthsList li img {
  width: 100%;
}
body.recruit .content .strengths .strengthsList li h3 {
  color: #000;
  font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 35px;
  margin: 15px 0 10px;
}
body.recruit .content .strengths .strengthsList li h4 {
  color: #000;
  font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 35px;
}
body.recruit .content .strengths .strengthsList li p {
  font-weight: 400;
  font-size: 17px;
  line-height: 33px;
}
body.recruit .content .job {
  max-width: 1000px;
  margin-inline: auto;
  margin-top: 150px;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 80px;
}
body.recruit .content .job .strengthsTitles {
  color: #836e6c;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 55px;
}
body.recruit .content .job .strengthsTitles > img {
  width: 53px;
}
body.recruit .content .job .strengthsTitles h2 {
  font-size: 33px;
  margin-block: 10px;
}
body.recruit .content .job .strengthsTitles .en {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  body.recruit .content .job .strengthsTitles {
    margin-bottom: 10.5263157895vw;
  }
  body.recruit .content .job .strengthsTitles > img {
    width: 13.9473684211vw;
  }
  body.recruit .content .job .strengthsTitles h2 {
    font-size: 8.6842105263vw;
    margin-block: 2.6315789474vw;
  }
  body.recruit .content .job .strengthsTitles .en {
    font-size: 3.9473684211vw;
  }
}
body.recruit .content .job .jobList {
  display: grid;
  gap: 30px;
}
body.recruit .content .job .jobList li {
  --transitionTime: .5s;
}
body.recruit .content .job .jobList li h3 {
  transition: 0.3s;
}
@media (any-hover: hover) {
  body.recruit .content .job .jobList li h3:hover {
    opacity: 0.5;
  }
}
body.recruit .content .job .jobList li h3 {
  position: relative;
  background-color: #ede0df;
  font-size: 23px;
  height: 60px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
body.recruit .content .job .jobList li h3::after {
  content: "";
  display: block;
  background-image: url(img/recruitInterViewTitleArrowUp.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 35px;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
  rotate: 180deg;
  transition: 0.5s;
}
body.recruit .content .job .jobList li h3.active::after {
  rotate: 0deg;
}
body.recruit .content .job .jobList li .interviewWrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: var(--transitionTime) grid-template-rows;
}
body.recruit .content .job .jobList li .interviewWrapper.active {
  grid-template-rows: 1fr;
}
body.recruit .content .job .jobList li .interviewWrapper.active .interviewInner {
  padding-block: 20px;
}
body.recruit .content .job .jobList li .interviewWrapper .interviewInner {
  overflow: hidden;
  transition: var(--transitionTime);
  padding: 0 10px;
  will-change: padding;
}
body.recruit .content .job .jobList li .interviewWrapper .interviewInner .intro {
  display: flex;
  gap: 40px;
}
body.recruit .content .job .jobList li .interviewWrapper .interviewInner .intro img {
  width: 45.6%;
}
body.recruit .content .job .jobList li .interviewWrapper .interviewInner .intro .description {
  width: 51.4%;
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
}
body.recruit .content .job .jobList li .interviewWrapper .interviewInner .intro .description b, body.recruit .content .job .jobList li .interviewWrapper .interviewInner .intro .description strong {
  font-weight: 600;
}
body.recruit .content .job .jobList li .interviewWrapper .interviewInner .intro.no-image .description {
  width: 100%;
}
body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview {
  margin-top: 50px;
  --pink: #d99591;
}
body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview .interviewTitle {
  border-bottom: 1px solid var(--pink);
  display: flex;
  align-items: center;
  gap: 17px;
  padding-left: 17px;
  padding-bottom: 17px;
  margin-bottom: 30px;
  font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
}
body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview .interviewTitle .en {
  font-size: 25px;
  font-weight: 500;
  color: var(--pink);
}
body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview .jobInfo {
  font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview .jobInfo .jobName {
  color: #fff;
  background-color: var(--pink);
  height: 35px;
  display: grid;
  place-items: center;
  padding: 0 15px;
}
body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview .jobInfo .experience {
  margin-left: 14px;
  margin-right: 20px;
  font-weight: 600;
}
body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview .jobInfo .name {
  font-size: 25px;
  font-weight: 600;
}
body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview .jobInfo .jobLocation {
  font-size: 18px;
  margin-left: 25px;
}
body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview .interviewListTitle {
  font-size: 20px;
  font-weight: bold;
  line-height: 32px;
  margin-bottom: 10px;
}
body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview .interviewContents {
  display: grid;
  gap: 30px;
}
body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview .interviewContents li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview .interviewContents li img {
  width: 50%;
}
body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview .interviewContents li p {
  font-size: 16px;
  line-height: 35px;
  width: 48%;
}
body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview .interviewContents li:nth-of-type(odd) {
  flex-direction: row-reverse;
}
body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview .interviewContents li.no-image {
  flex-direction: row;
}
body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview .interviewContents li.no-image p {
  width: 100%;
}
body.recruit .content .recruitmentInfo {
  max-width: 1000px;
  margin-inline: auto;
  transition: 0.3s;
}
@media (any-hover: hover) {
  body.recruit .content .recruitmentInfo:hover {
    opacity: 0.5;
  }
}
body.recruit .content .recruitmentInfo {
  display: block;
  margin: 0 auto 70px;
}
body.recruit .content .recruitmentInfo img {
  width: 100%;
  scale: 1.03;
}
body.recruit .content .toContact {
  transition: 0.3s;
}
@media (any-hover: hover) {
  body.recruit .content .toContact:hover {
    opacity: 0.5;
  }
}
body.recruit .content .toContact {
  display: block;
  width: 300px;
  margin: 0 auto 120px;
}
/* 2つのボタン間だけ詰める（recruitmentInfoの直後＝1つ目のtoContactのみ） */
body.recruit .content .recruitmentInfo + .toContact {
  margin-bottom: 24px;
}
body.recruit .content .toContact img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  body.recruit .sectionHeader img {
    width: 50vw;
    left: 43.4210526316vw;
  }
  body.recruit .content .message {
    padding-top: 30.5263157895vw;
    padding-bottom: 21.5789473684vw;
    overflow-x: hidden;
  }
  body.recruit .content .message::before {
    width: 139.7368421053vw;
    height: 135vw;
    top: 23.6842105263vw;
    left: 13.1578947368vw;
    translate: -50% 0;
  }
  body.recruit .content .message::after {
    width: 146.8421052632vw;
    height: 141.8421052632vw;
    top: 144.7368421053vw;
    left: auto;
    right: 0;
    translate: 50% 0;
    background-color: rgba(251, 213, 213, 0.6);
  }
  body.recruit .content .message .titleImage {
    width: 70.2631578947vw;
    top: 0vw;
    left: auto;
    right: -5.2631578947vw;
    translate: none;
  }
  body.recruit .content .message .messageHeader {
    display: grid;
  }
  body.recruit .content .message .messageHeader .content .title {
    color: #836e6c;
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 45px;
    letter-spacing: 5px;
    justify-content: center;
    width: 91%;
    height: 17.1052631579vw;
    padding-right: 0;
  }
  body.recruit .content .message .messageHeader .content p {
    width: 91%;
    font-size: 4.2105263158vw;
    line-height: 9.2105263158vw;
    padding-left: 5.2631578947vw;
    margin-top: 3.1578947368vw;
  }
  body.recruit .content .message .messageHeader img {
    display: block;
    margin-left: auto;
    margin-top: 10.5263157895vw;
    height: 73.4210526316vw;
  }
  body.recruit .content .message .messageBottom {
    display: grid;
    margin-top: 13.1578947368vw;
    gap: 15.7894736842vw;
  }
  body.recruit .content .message .messageBottom img {
    height: 62.1052631579vw;
  }
  body.recruit .content .message .messageBottom p {
    order: -1;
    color: #000;
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    padding-left: 2.6315789474vw;
  }
  body.recruit .content .strengths .strengthsList {
    max-width: 92.1%;
    margin-inline: auto;
    grid-template-columns: auto;
    gap: 7.8947368421vw;
  }
  body.recruit .content .strengths .strengthsList li h3 {
    color: #000;
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 35px;
    margin: 2.6315789474vw 0;
  }
  body.recruit .content .strengths .strengthsList li h4 {
    color: #000;
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 35px;
  }
  body.recruit .content .strengths .strengthsList li p {
    font-size: 4.4736842105vw;
    line-height: 7.8947368421vw;
  }
  body.recruit .content .job {
    max-width: 92.1%;
    margin-inline: auto;
    margin-top: 15.7894736842vw;
    margin-bottom: 15.7894736842vw;
  }
  body.recruit .content .job .jobList {
    gap: 5.2631578947vw;
  }
  body.recruit .content .job .jobList li h3 {
    font-size: 4.2105263158vw;
    min-height: 15.7894736842vw;
    height: auto;
    padding: 2.6315789474vw 13.1578947368vw 2.6315789474vw 2.6315789474vw;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }
  body.recruit .content .job .jobList li h3::after {
    height: 9.2105263158vw;
    right: 1.8421052632vw;
  }
  body.recruit .content .job .jobList li .interviewWrapper.active .interviewInner {
    padding: 4.2105263158vw 0;
    overflow: visible;
  }
  body.recruit .content .job .jobList li .interviewWrapper .interviewInner {
    padding: 0;
    min-width: 0;
  }
  body.recruit .content .job .jobList li .interviewWrapper .interviewInner .intro {
    display: grid;
    gap: 5.2631578947vw;
  }
  body.recruit .content .job .jobList li .interviewWrapper .interviewInner .intro img {
    width: 100%;
  }
  body.recruit .content .job .jobList li .interviewWrapper .interviewInner .intro .description {
    width: 100%;
    font-size: 4.2105263158vw;
    line-height: 7.8947368421vw;
  }
  body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview {
    width: 100%;
    min-width: 0;
    margin-top: 13.1578947368vw;
  }
  body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview .interviewTitle {
    padding-left: 4.4736842105vw;
    padding-bottom: 4.4736842105vw;
    margin-bottom: 5.2631578947vw;
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
  }
  body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview .interviewTitle .en {
    font-size: 6.5789473684vw;
  }
  body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview .jobInfo {
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: 100%;
    min-width: 0;
    margin-bottom: 3.9473684211vw;
  }
  body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview .jobInfo .jobName {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 9.2105263158vw;
    height: auto;
    padding: 2.1052631579vw 3.9473684211vw;
    font-size: 3.6842105263vw;
    line-height: 1.5;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-align: center;
    box-sizing: border-box;
    display: block;
    grid-column: 1 / -1;
    margin-bottom: 3.9473684211vw;
  }
  body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview .jobInfo .experience {
    margin-left: 0;
    margin-right: 2.6315789474vw;
  }
  body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview .jobInfo .name {
    font-size: 6.5789473684vw;
  }
  body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview .jobInfo .jobLocation {
    grid-column: 1 / -1;
    min-width: 0;
    font-size: 4.7368421053vw;
    margin-left: 0;
    margin-top: 2.6315789474vw;
  }
  body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview .interviewListTitle {
    font-size: 5.2631578947vw;
    line-height: 8.4210526316vw;
    margin-bottom: 2.6315789474vw;
  }
  body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview .interviewContents {
    gap: 7.8947368421vw;
  }
  body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview .interviewContents li {
    display: grid;
  }
  body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview .interviewContents li img {
    width: 100%;
  }
  body.recruit .content .job .jobList li .interviewWrapper .interviewInner .interview .interviewContents li p {
    width: 100%;
    font-size: 4.2105263158vw;
    line-height: 9.2105263158vw;
    margin-top: 2.6315789474vw;
  }
  body.recruit .content .recruitmentInfo {
    margin-bottom: 11.0526315789vw;
  }
  body.recruit .content .recruitmentInfo img {
    scale: 1;
  }
  body.recruit .content .toContact {
    width: 78.9473684211vw;
    margin-bottom: 22.3684210526vw;
  }
  body.recruit .content .recruitmentInfo + .toContact {
    margin-bottom: 6vw;
  }
}

body.info .sectionHeader .sectionHeaderBg {
  background-color: var(--lighterBlue);
}
body.info .sectionHeader img {
  width: 394px;
  left: 113px;
}
body.info .content {
  font-family: "Noto Sans JP", sans-serif;
  padding-bottom: 98px;
  max-width: 1000px;
  margin-inline: auto;
}
body.info .content .infoList {
  display: grid;
  grid-template-columns: max-content 1fr;
}
body.info .content .infoList + .infoList {
  margin-top: 72px;
  border-bottom: 1px solid #d9d9d9;
}
body.info .content .infoList.firstInfos > div {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1/-1;
  gap: 70px;
}
body.info .content .infoList.firstInfos > div:last-of-type {
  border-bottom: 1px solid #d9d9d9;
}
body.info .content .infoList > div {
  border-top: 1px solid #d9d9d9;
}
body.info .content .infoList > div dt, body.info .content .infoList > div dd {
  padding: 20px 0;
}
body.info .content .infoList > div dt {
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
}
body.info .content .infoList > div dt::before {
  content: "";
  display: inline-block;
  background-color: #7dd0d8;
  width: 0.8em;
  aspect-ratio: 1;
  margin-right: 3px;
  translate: 0 1px;
}
body.info .content .infoList > div dd {
  font-size: 17px;
  line-height: 35px;
  font-weight: 300;
}
body.info .content .infoList > div dd a {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: underline;
  transition: 0.3s;
}
@media (any-hover: hover) {
  body.info .content .infoList > div dd a:hover {
    opacity: 0.5;
  }
}
body.info .content .infoList.eachYear {
  display: block;
  border-bottom: 0;
}
body.info .content .infoList.eachYear > div {
  border-top: 0;
}
body.info .content .infoList.eachYear > div + div {
  margin-top: 20px;
}
body.info .content .infoList.eachYear > div dt {
  display: flex;
  align-items: center;
  background-color: var(--lighterBlue);
  padding: 0 20px;
  height: 48px;
}
body.info .content .infoList.eachYear > div dd .eachYearContents {
  display: flex;
  gap: 38px;
}
@media screen and (max-width: 768px) {
  body.info .sectionHeader img {
    left: 31.5789473684vw;
    width: 63.1578947368vw;
    top: 50%;
  }
  body.info .content {
    padding-bottom: 21.0526315789vw;
    max-width: 92.1%;
    margin-inline: auto;
  }
  body.info .content .infoList {
    grid-template-columns: auto;
  }
  body.info .content .infoList + .infoList {
    margin-top: 21.5789473684vw;
  }
  body.info .content .infoList.firstInfos > div {
    display: block;
  }
  body.info .content .infoList.firstInfos > div:last-of-type {
    border-bottom: 0;
  }
  body.info .content .infoList.firstInfos > div dd {
    border-top: 0;
  }
  body.info .content .infoList.firstInfos > div dd .infoContent + .infoContent {
    margin-top: 3.9473684211vw;
  }
  body.info .content .infoList.eachYear > div + div {
    margin-top: 3.9473684211vw;
  }
  body.info .content .infoList.eachYear > div dt {
    padding: 0 2.6315789474vw;
    height: 12.6315789474vw;
  }
  body.info .content .infoList.eachYear > div dd .eachYearContents {
    display: grid;
    gap: 1.3157894737vw;
    padding: 0;
    padding-top: 10px;
  }
  body.info .content .infoList > div {
    grid-template-columns: auto;
    padding: 2.6315789474vw 0;
  }
  body.info .content .infoList > div dt, body.info .content .infoList > div dd {
    padding: 0;
  }
  body.info .content .infoList > div dt {
    font-size: 4.7368421053vw;
    line-height: 9.2105263158vw;
  }
  body.info .content .infoList > div dd {
    font-size: 4.4736842105vw;
    line-height: 9.2105263158vw;
    padding-left: 1em;
  }
  body.info .content .infoList > div dd a {
    gap: 3.6842105263vw;
  }
  body.info .content .infoList > div dd a::after {
    min-width: 5.2631578947vw;
    height: 6.5789473684vw;
  }
}

/* 20260323 hgr追記 body.home .about を参照 一部編集有 */
body.home .recruit.hg-renew {
  padding-top: 64px;
  position: relative;
}
body.home .recruit.hg-renew .inner {
  max-width: 1000px;
  margin-inline: auto;
  position: relative;
}
body.home .recruit.hg-renew .inner h2 {
  font-size: 38px;
  margin-bottom: 45px;
  letter-spacing: 0.1em;
}
body.home .recruit.hg-renew .inner p {
  color: #000;
  font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px;
  width: 62.9%;
}
body.home .recruit.hg-renew .inner p strong {
  color: #000;
  font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px;
}
body.home .recruit.hg-renew .inner .more {
  transition: 0.3s;
}
@media (any-hover: hover) {
  body.home .recruit.hg-renew .inner .more:hover {
    opacity: 0.5;
  }
}
body.home .recruit.hg-renew .inner .more {
  display: block;
  width: max-content;
  margin-top: 30px;
}
body.home .recruit.hg-renew .inner .more img {
  width: 200px;
}
body.home .recruit.hg-renew .inner .recruitImg {
  width: 44.59%;
  position: absolute;
  top: 0;
  right: calc(50% - 640px);
  translate: -25px -30px;
}
@media screen and (max-width: 1280px) {
  body.home .recruit.hg-renew .inner .recruitImg {
    right: calc((100vw - 1000px) / -2);
  }
}
@media screen and (max-width: 1180px) {
  body.home .recruit.hg-renew .inner .recruitImg {
    width: 30vw;
  }
}
@media screen and (max-width: 900px) {
  body.home .recruit.hg-renew .inner .recruitImg {
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  body.home .recruit.hg-renew {
    padding-top: 5.2631578947vw;
  }
  body.home .recruit.hg-renew .inner {
    max-width: 92.1%;
    margin-inline: auto;
    display: grid;
  }
  body.home .recruit.hg-renew .inner .recruitTitle {
    width: 61.5789473684vw;
    top: 76.3157894737vw;
    left: 28.9473684211vw;
  }
  body.home .recruit.hg-renew .inner h2 {
    margin-bottom: 7.8947368421vw;
    font-size: 9.2105263158vw;
  }
  body.home .recruit.hg-renew .inner p {
    color: #000;
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 45px;
    width: 100%;
  }
  body.home .recruit.hg-renew .inner p strong {
    color: #000;
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 45px;
  }
  body.home .recruit.hg-renew .inner .recruitImg {
    display: block;
    margin-bottom: 4.4736842105vw;
    margin-right: 2.6315789474vw;
    margin-left: auto;
    width: 62.1%;
    position: static;
    translate: none;
  }
  body.home .recruit.hg-renew .inner .more {
    margin-inline: auto;
    margin-top: 13.1578947368vw;
  }
  body.home .recruit.hg-renew .inner .more img {
    width: 52.6315789474vw;
  }
}

/* 20260323 hgr追記 ヘッダー改修 */
header .headerMenu li.sns {
  margin-left: 12px;
}
header .headerMenu li.sns ul.headerIconWrap {
  display: flex;
  align-items: center;
}
header .headerMenu li.headerIcon {
  margin-left: 0;
}
header .headerMenu li.headerIcon.insta a img {
  width: 24px;
  height: auto;
}
header .headerMenu li.headerIcon.phone a img {
  width: 20px;
  height: auto;
}
@media screen and (max-width: 1130px) {
  header .headerMenu li.sns {
    margin-left: 0;
  }
  header .headerMenu li.sns ul.headerIconWrap {
    gap: 7.8947368421vw;/* 30 / 380 * 100 */
  }
  header .headerMenu li.sns ul.headerIconWrap li {
    margin-top: 0;
  }
  header .headerMenu li.headerIcon a {
    width: auto;
    height: auto;
  }
  header .headerMenu li.headerIcon.insta a img {
    width: 10.5263158vw;/* 40 / 380 * 100 */
  }
  header .headerMenu li.headerIcon.phone a img {
    width: 7.8947368421vw;/* 30 / 380 * 100 */
  }
}

/* 20260323 hgr追記 body.home 左右余白 微調整 */
@media screen and (min-width: 769px) and (max-width: 1020px) {
  body.home main > section {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  body.home .about .inner .aboutImg {
    right: 0;
    translate: 0px -30px;
  }
  body.home .about .inner .aboutImgBottom {
    margin-left: -20px;
  }
  body.home .recruit.hg-renew .inner .recruitImg {
    right: 0;
    translate: 0px -30px;
  }
}

/* 20260408 全体の見出し/本文行間を統一 */
main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  line-height: 1.4;
}

main p,
main li,
main dt,
main dd,
main th,
main td {
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  main h1,
  main h2,
  main h3,
  main h4,
  main h5,
  main h6 {
    line-height: 1.45;
  }

  main p,
  main li,
  main dt,
  main dd,
  main th,
  main td {
    line-height: 1.75;
  }
}

/* 下層ページ キャッチ見出し（法人理念） */
@media screen and (min-width: 769px) {
  body.company .philosophy .content h3.subpageCatchHeading {
    color: #000;
    font-family: "Shippori Mincho", serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 70px;
    letter-spacing: 3px;
  }
}
@media screen and (max-width: 768px) {
  body.company .philosophy .content h3.subpageCatchHeading {
    color: #000;
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 5vw;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }
}
/* single-service サービス詳細の h3（本文トーンとは別） */
body.single-service .serviceContent :is(h3) {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 35px;
}
@media screen and (max-width: 768px) {
  body.single-service .serviceContent :is(h3) {
    font-size: 4.7368421053vw;
    line-height: 6.5789473684vw;
  }
}

/* 下層ページ 本文統一（body.home 除外） */
@media screen and (min-width: 769px) {
  body:not(.home) main p,
  body:not(.home) main dt,
  body:not(.home) main dd,
  body:not(.home) main td,
  body:not(.home) main th,
  body:not(.home) main .serviceContent :is(p, li, dt, dd, td, th),
  body:not(.home) main .serviceCommonContent :is(p, li, dt, dd, td, th),
  body.single-service:not(.home) main .serviceContent .usageGuide :is(td, th),
  body.single-service:not(.home) main .serviceContent .facilityIntroduction ul li p,
  body.single-service:not(.home) main .serviceCommonContent .contact p.desc,
  body.single-service:not(.home) main .serviceCommonContent .access .overview .content p,
  body.single-service:not(.home) main .serviceCommonContent .access .accessInfo .accessInfoInner ul li p,
  body:not(.home) main .newsWrapper article .content :is(p, li, dt, dd, td, th),
  body.company:not(.home) .philosophy .content p,
  body.company:not(.home) .overview table tr th,
  body.company:not(.home) .overview table tr td,
  body.privacy:not(.home) .content > ul > li p,
  body.single.post-template-default:not(.home) .newsWrapper article .content :is(p, li, dt, dd, td, th),
  body.recruit:not(.home) .content .message .messageHeader .content p,
  body.recruit:not(.home) .content .message .messageBottom p,
  body.recruit:not(.home) .content .strengths .strengthsList li p,
  body.recruit:not(.home) .content .job .jobList li .interviewWrapper .interviewInner .interview .interviewContents li p,
  body.info:not(.home) .content .infoList > div dt,
  body.info:not(.home) .content .infoList > div dd,
  body.info:not(.home) .content .infoList > div dd a,
  body.contact:not(.home) main > section .formWrapper .inner dl dt,
  body.contact:not(.home) main > section .formWrapper .inner dl dd {
    color: #000;
    font-family: "Shippori Mincho", serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
  }
}
@media screen and (max-width: 768px) {
  body:not(.home) main p,
  body:not(.home) main dt,
  body:not(.home) main dd,
  body:not(.home) main td,
  body:not(.home) main th,
  body:not(.home) main .serviceContent :is(p, li, dt, dd, td, th),
  body:not(.home) main .serviceCommonContent :is(p, li, dt, dd, td, th),
  body.single-service:not(.home) main .serviceContent .usageGuide :is(td, th),
  body.single-service:not(.home) main .serviceContent .facilityIntroduction ul li p,
  body.single-service:not(.home) main .serviceCommonContent .contact p.desc,
  body.single-service:not(.home) main .serviceCommonContent .access .overview .content p,
  body.single-service:not(.home) main .serviceCommonContent .access .accessInfo .accessInfoInner ul li p,
  body:not(.home) main .newsWrapper article .content :is(p, li, dt, dd, td, th),
  body.company:not(.home) .philosophy .content p,
  body.company:not(.home) .overview table tr th,
  body.company:not(.home) .overview table tr td,
  body.privacy:not(.home) .content > ul > li p,
  body.single.post-template-default:not(.home) .newsWrapper article .content :is(p, li, dt, dd, td, th),
  body.recruit:not(.home) .content .message .messageHeader .content p,
  body.recruit:not(.home) .content .message .messageBottom p,
  body.recruit:not(.home) .content .strengths .strengthsList li p,
  body.recruit:not(.home) .content .job .jobList li .interviewWrapper .interviewInner .interview .interviewContents li p,
  body.info:not(.home) .content .infoList > div dt,
  body.info:not(.home) .content .infoList > div dd,
  body.info:not(.home) .content .infoList > div dd a,
  body.contact:not(.home) main > section .formWrapper .inner dl dt,
  body.contact:not(.home) main > section .formWrapper .inner dl dd {
    color: #000;
    font-family: "Shippori Mincho", serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
  }
}

/* 法人案内：セクション見出し（法人理念／法人概要／沿革の日本語のみ） */
@media screen and (min-width: 769px) {
  body.company.page .philosophy .titles .titleJp,
  body.company.page .overview .titles .titleJp,
  body.company.page .history .titles .titleJp {
    color: #0b0b0b;
    text-align: center;
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 35px;
  }
}
@media screen and (max-width: 768px) {
  body.company.page .philosophy .titles .titleJp,
  body.company.page .overview .titles .titleJp,
  body.company.page .history .titles .titleJp {
    color: #0b0b0b;
    text-align: center;
    font-family: "Shippori Mincho", "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 35px;
  }
}

/* パンくず（main 直下 ol）は従来のゴシックのまま */
body:not(.home) main > ol li,
body:not(.home) main > ol li a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 1.5;
}
body:not(.home) main > ol li a {
  color: #858383;
}
