@charset "UTF-8";
/*------------------------------------------------------------
font morisawa 設定
------------------------------------------------------------*/
/*------------------------------------------------------------
font size
------------------------------------------------------------*/
/*------------------------------------------------------------
共通サイズ
------------------------------------------------------------*/
/*------------------------------------------------------------
list dot
------------------------------------------------------------*/
/*====================================
animation
====================================*/
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");
@keyframes flt-01 {
  0% {
    transform: translateY(0) rotate(calc(var(--base-rotate))) scale(1);
  }
  50% {
    transform: translateY(calc(var(--jump) * -1)) rotate(calc(var(--base-rotate) + 5deg)) scale(1.5);
  }
  100% {
    transform: translateY(0) rotate(calc(var(--base-rotate))) scale(1);
  }
}
@keyframes lop-scr {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-25%);
  }
}
/*------------------------------------------------------------
Reset SCSS - 2025年向けモダンベース
------------------------------------------------------------*/
/* 1. 基本のリセット */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 2. HTML要素の初期化 */
html, body {
  height: 100%;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  font-size: 16px;
}

/* 3. リスト要素 */
ul, ol {
  list-style: none;
}

/* 4. aタグ */
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* 5. メディア要素 */
img,
picture,
video,
canvas,
svg:not(.svg-defs) {
  display: block;
  max-width: 100%;
  height: auto;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* 6. フォーム要素 */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
  appearance: none;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

/* 7. テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 8. その他 */
address {
  font-style: normal;
}

fieldset {
  border: none;
}

/* 9. Utility（任意） */
:where(:focus-visible) {
  outline: 2px solid #007acc;
  outline-offset: 2px;
}

/*------------------------------------------------------------
colors
------------------------------------------------------------*/
/*------------------------------------------------------------
font
------------------------------------------------------------*/
/*------------------------------------------------------------
setting
------------------------------------------------------------*/
body {
  width: 100%;
  background: #f5f3ed;
  font-family: "Jost", "MFW-PIshiiGothicStdN-B", "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: calc(clamp(0.8rem, 0.7091rem + 0.4545vw, 1rem));
  color: #1f2623;
  letter-spacing: 0.08rem;
}
body.is-fixed {
  position: fixed;
  width: 100%;
  left: 0;
  overflow: hidden;
}

/*html.is-fixed,
body.is-fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
}*/
main.main {
  margin-top: 120px;
}
@media (max-width: 767px) {
  main.main {
    margin-top: 60px;
  }
}

/*------------------------------------------------------------
news
------------------------------------------------------------*/
.l-news {
  max-width: 810px;
  width: 100%;
  margin: 0 auto;
  	/*------------------------------------------------------------
  	l-news-all
      ------------------------------------------------------------*/
  	/*------------------------------------------------------------
  	l-news-single
      ------------------------------------------------------------*/
}
.l-news-ttl {
  margin-bottom: 3rem;
  text-align: center;
}
.l-news-ttl .sub {
  color: #e8ad4f;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}
.l-news-ttl .main {
  font-family: "MFW-PIshiiGothicStdN-EB";
  font-size: 2.25rem;
}
.l-news-list {
  display: grid;
  margin: 0 auto;
}
.l-news-item > a {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px;
  border-radius: 10px;
  transition: .3s;
}
@media (max-width: 767px) {
  .l-news-item > a {
    gap: 5dvw;
  }
}
.l-news-item > a:hover {
  background: #f5edd5;
}
.l-news-item > a:hover .l-news-thumb img {
  transform: rotate(-1.5deg) scale(1.15);
}
.l-news-thumb {
  aspect-ratio: 210 / 130;
  max-width: 210px;
  width: 30dvw;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.l-news-thumb img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 1s;
}
.l-news-meta {
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.l-news-meta time {
  font-size: calc(clamp(0.6rem, 0.5425rem + 0.3285vw, 0.7rem));
  white-space: nowrap;
}
.l-news-tag {
  white-space: nowrap;
  padding: 0.2rem .5rem;
  border-radius: 100vmax;
  font-size: calc(clamp(0.6rem, 0.5425rem + 0.3285vw, 0.7rem));
  color: #fff;
  letter-spacing: 0;
  line-height: 1;
  background: #e8ad4f;
}
.l-news-txt {
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.l-news-btn-wrap {
  text-align: center;
  margin-top: 4rem;
}
.l-news-all {
  max-width: inherit;
  width: 80dvw;
  margin: 0 auto;
  width: 80dvw;
}
.l-news-all-ttl {
  margin: 0 auto 4rem;
  width: fit-content;
  text-align: center;
}
@media (max-width: 767px) {
  .l-news-all-ttl {
    margin-bottom: 2rem;
  }
}
.l-news-all-ttl .sub {
  margin: 0 auto;
  width: fit-content;
  color: #e8ad4f;
  font-size: calc(clamp(1rem, 0.8871rem + 0.6452vw, 1.3rem));
  letter-spacing: 0.1em;
}
.l-news-all-ttl .main {
  font-family: "MFW-PIshiiGothicStdN-EB";
  font-size: calc(clamp(2.4rem, 1.986rem + 2.3656vw, 3.5rem));
}
.l-news-all .l-news-list {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .l-news-all .l-news-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .l-news-all .l-news-list {
    gap: 2rem;
  }
}
@media (min-width: 1280px) {
  .l-news-all .l-news-list {
    gap: 1rem;
  }
}
.l-news-all .l-news-item {
  opacity: 1;
  transition: opacity 0.4s ease;
  display: block;
}
.l-news-all .l-news-item.is-hiding {
  opacity: 0;
}
.l-news-all .l-news-item.is-hidden {
  display: none;
}
.l-news-all .l-news-item > a {
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 1023px) {
  .l-news-all .l-news-item > a {
    gap: 1rem;
    padding: 0;
  }
}
.l-news-all .l-news-thumb {
  width: 100%;
  max-width: inherit;
}
.l-news-single {
  width: 80dvw;
  max-width: 700px;
  padding-top: 3rem;
}
.l-news-single .l-news-ttl {
  text-align: left;
}
.l-news-single .l-news-thumb {
  width: 100%;
  max-width: inherit;
  aspect-ratio: inherit;
  border-radius: 0;
  margin-bottom: 2rem;
}
.l-news-single .l-news-txt {
  display: inherit;
  line-height: 1.8;
}
.l-news-single .l-news-txt p {
  margin-bottom: 2rem;
}
.l-news-single .l-news-txt p a {
  transition: .3s;
  border-bottom: 1px solid #7d7d7d;
}
.l-news-single .l-news-txt p a:hover {
  color: #e8ad4f;
  border-bottom: none;
}

/*------------------------------------------------------------
toshoku 十人十食
------------------------------------------------------------*/
.l-toshoku {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 10rem 0;
  margin-bottom: 10rem;
}
@media (max-width: 767px) {
  .l-toshoku {
    margin-bottom: 0;
  }
}
@media (max-width: 1023px) {
  .l-toshoku {
    padding-top: 6rem;
  }
}
.l-toshoku-txt {
  font-family: "MFW-PIshiiGothicStdN-B";
  width: fit-content;
  margin: 0 auto;
  font-size: 1.5rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid;
}
@media (max-width: 599px) {
  .l-toshoku-txt {
    margin: 0 1rem;
  }
}
@media (min-width: 600px) {
  .l-toshoku-txt br {
    display: none;
  }
}
.l-toshoku-cnt {
  margin: 4rem auto 0;
  display: flex;
  align-items: center;
  gap: 100px;
  width: 900px;
}
@media (max-width: 767px) {
  .l-toshoku-cnt {
    margin-top: 3rem;
    flex-direction: column-reverse;
    width: 100%;
    gap: 3rem;
  }
}
.l-toshoku-logo {
  margin: 0 auto 1rem;
  width: 70dvw;
  max-width: 340px;
}
.l-toshoku-btn {
  margin-top: 2rem;
}
.l-toshoku-btn a {
  transition-delay: 1.2s;
}
.l-toshoku-img {
  width: 90dvw;
  max-width: 460px;
  aspect-ratio: 460 / 280;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}
.l-toshoku-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.l-toshoku .shape-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.l-toshoku .shape-bg .svg-shape {
  --base-rotate: 0deg;
  transform: rotate(var(--base-rotate));
  transform-origin: center center;
  fill: #f5edd5;
  opacity: 0.6;
  position: absolute;
  animation: flt-01 10s ease-in-out infinite;
}

/*------------------------------------------------------------
cf / children first
------------------------------------------------------------*/
.l-cf-ttl {
  width: 40dvw;
  max-width: 200px;
  margin: 0 auto 20px;
}
.l-cf-blk {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0 auto 60px;
  width: fit-content;
}
@media (max-width: 767px) {
  .l-cf-blk {
    gap: 4dvw;
  }
}
.l-cf-msg {
  font-family: "MFW-PIshiiGothicStdN-EB";
  font-size: 70px;
  text-align: right;
}
@media (max-width: 767px) {
  .l-cf-msg {
    font-size: calc(clamp(1rem, -0.0349rem + 5.9138vw, 2.8rem));
  }
}
.l-cf-img {
  width: 200px;
  height: auto;
  transition-delay: 1.4s !important;
}
@media (max-width: 767px) {
  .l-cf-img {
    width: 20dvw;
  }
}
.l-cf-sld {
  overflow-x: hidden;
  margin-bottom: 80px;
}
.l-cf-sld .trk {
  display: flex;
  will-change: transform;
}
.l-cf-sld .trk li {
  flex: 0 0 auto;
  margin-right: 40px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  height: fit-content;
}
@media (max-width: 767px) {
  .l-cf-sld .trk li {
    margin-right: 20px;
  }
}
.l-cf-sld .trk li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.l-cf-sld .trk li.typ-a {
  width: 32vw;
  aspect-ratio: 400 / 250;
  margin-top: 7%;
}
.l-cf-sld .trk li.typ-b {
  width: 40vw;
  aspect-ratio: 460 / 280;
}
.l-cf-btn {
  text-align: center;
}
.l-cf-btn a {
  transition-delay: .6s;
}

/*------------------------------------------------------------
sol 事業内容
------------------------------------------------------------*/
.l-sol {
  text-align: center;
  margin-bottom: 10rem;
}
@media (max-width: 1023px) {
  .l-sol {
    margin-bottom: 4rem;
  }
}
.l-sol-ttl {
  position: relative;
  z-index: 1;
  font-size: 2.25rem;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  padding-top: 10dvw;
  overflow: hidden;
}
@media (min-width: 768px) {
  .l-sol-ttl {
    padding-top: 3rem;
  }
}
@media (max-width: 1023px) {
  .l-sol-ttl {
    font-size: 2rem;
  }
}
.l-sol-ttl .sub {
  width: 100px;
  height: auto;
}
.l-sol-ttl .main {
  font-family: "MFW-PIshiiGothicStdN-EB";
  width: fit-content;
}
.l-sol-ttl:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 1 / 1;
  width: 80dvw;
  height: auto;
  background-color: #f5edd5;
  border-radius: 50%;
  z-index: -1;
}
.l-sol-cnt {
  border-radius: 10px;
  padding: 100px 5dvw;
  border: 40px solid #f5edd5;
  position: relative;
  z-index: 1;
  background: #f5f3ed;
}
@media (max-width: 1023px) {
  .l-sol-cnt {
    border-width: 5dvw;
    padding: 80px 5dvw;
  }
}
@media (max-width: 767px) {
  .l-sol-cnt {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.l-sol .sol-box {
  border-radius: 10px;
}
.l-sol .sol-box-hoiku {
  margin-bottom: 80px;
  position: relative;
}
@media (max-width: 767px) {
  .l-sol .sol-box-hoiku {
    margin-bottom: 60px;
  }
}
.l-sol .sol-box-hoiku:after {
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  background-image: url("../../assets/img/line_diagonal_01.svg");
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto 30%;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .l-sol .sol-box-hoiku:after {
    margin-top: 60px;
  }
}
.l-sol .sol-box .sol-label {
  font-family: "MFW-PIshiiGothicStdN-B";
  font-size: 1.5rem;
  display: inline-block;
  min-width: 160px;
  padding: 4px 0;
  border: 2px solid;
  border-radius: 100vmax;
  margin-bottom: 1.2rem;
}
@media (max-width: 1023px) {
  .l-sol .sol-box .sol-label {
    font-size: 1.3rem;
  }
}
.l-sol .sol-box .sol-desc {
  font-family: "MFW-PIshiiGothicStdN-B";
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
@media (max-width: 1023px) {
  .l-sol .sol-box .sol-desc {
    font-size: .9rem;
  }
}
.l-sol .sol-box .sol-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6dvw;
}
@media (max-width: 1023px) {
  .l-sol .sol-box .sol-items {
    gap: 5rem;
  }
}
.l-sol .sol-box .sol-item {
  max-width: 460px;
  width: 35dvw;
  text-align: center;
}
@media (max-width: 1023px) {
  .l-sol .sol-box .sol-item {
    margin: 0 auto;
    width: 100%;
  }
}
.l-sol .sol-box .sol-item .sol-img-wrap {
  aspect-ratio: 460 / 280;
  max-width: 460px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.l-sol .sol-box .sol-item .sol-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.l-sol .sol-box .sol-item .sol-cap {
  width: 100%;
  margin-bottom: 1.5rem;
}
.l-sol .sol-box .sol-item .sol-cap .sol-name {
  margin-bottom: 1rem;
}
.l-sol .sol-box .sol-item .sol-cap .sol-name img {
  height: 24px;
  width: 100%;
}
@media (max-width: 1023px) {
  .l-sol .sol-box .sol-item .sol-cap .sol-name img {
    height: 20px;
  }
}
.l-sol .sol-box .sol-item .sol-cap .sol-sub {
  font-size: .9rem;
}
@media (max-width: 1023px) {
  .l-sol .sol-box .sol-item .sol-cap .sol-sub {
    font-size: .8rem;
  }
}
.l-sol .sol-box.sol-box-ryoiku .sol-item .sol-cap .sol-name img {
  height: 24px;
}
@media (min-width: 1024px) {
  .l-sol .sol-box.sol-box-ryoiku .sol-item .sol-cap .sol-name img {
    height: 28px;
  }
}
.l-sol .sol-box-row {
  position: relative;
  display: flex;
  gap: 6dvw;
  justify-content: center;
}
@media (max-width: 1023px) {
  .l-sol .sol-box-row {
    flex-direction: column;
    align-items: center;
    gap: 80px;
  }
}
@media (max-width: 767px) {
  .l-sol .sol-box-row {
    gap: 60px;
  }
}
.l-sol .sol-box-row:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20px;
  background-image: url("../../assets/img/line_diagonal_01.svg");
  background-repeat: repeat-y;
  background-position: center;
  background-size: auto 9px;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 1023px) {
  .l-sol .sol-box-row:before {
    display: none;
  }
}
.l-sol .sol-box-row .sol-box {
  position: relative;
  z-index: 1;
}
@media (max-width: 1023px) {
  .l-sol .sol-box-row .sol-box {
    width: 100%;
  }
  .l-sol .sol-box-row .sol-box:first-child:after {
    content: "";
    display: block;
    width: 100%;
    height: 20px;
    background-image: url("../../assets/img/line_diagonal_01.svg");
    background-repeat: repeat-x;
    background-position: center bottom;
    background-size: auto 30%;
    margin-top: 80px;
  }
}
@media (max-width: 1023px) and (max-width: 767px) {
  .l-sol .sol-box-row .sol-box:first-child:after {
    margin-top: 60px;
  }
}

/*------------------------------------------------------------
サブページ KV 汎用レイアウト
------------------------------------------------------------*/
.l-kv-01 {
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .l-kv-01 {
    margin-bottom: 10dvw;
  }
}
.l-kv-01-hdr {
  display: flex;
  align-items: center;
}
.l-kv-01-hdr-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30dvw;
  gap: .5rem;
}
@media (min-width: 768px) {
  .l-kv-01-hdr-ttl {
    gap: 1rem;
  }
}
.l-kv-01-hdr-ttl .sub {
  color: #e8ad4f;
  font-size: calc(clamp(0.55rem, 0.4063rem + 0.8214vw, 0.8rem));
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.l-kv-01-hdr-ttl .main {
  font-family: "MFW-PIshiiGothicStdN-EB";
  writing-mode: vertical-rl;
  font-size: calc(clamp(1.25rem, 0.2438rem + 5.7495vw, 3rem));
  white-space: nowrap;
}
@media (min-width: 768px) {
  .l-kv-01-hdr-ttl .main {
    letter-spacing: .15em;
  }
}
.l-kv-01-hdr-img {
  flex: 1;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
  aspect-ratio: 224 / 200;
  max-height: 70dvh;
}
.l-kv-01-hdr-img img {
  will-change: transform;
  transition: transform 0.2s ease-out;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/*------------------------------------------------------------
table
------------------------------------------------------------*/
.l-tbl-01 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  row-gap: 1rem;
  margin: 0 auto;
  max-width: 700px;
}
@media (max-width: 767px) {
  .l-tbl-01 {
    column-gap: 0;
  }
}
.l-tbl-01 dt {
  padding: 2rem 0.75rem 1rem;
  align-self: start;
  border-top: 1px solid #d2c9ae;
}
.l-tbl-01 dd {
  margin: 0;
  padding: 2rem 0.75rem 1rem;
  border-top: 1px solid #e7e2d4;
}
.l-tbl-01 dd strong {
  display: block;
  margin-bottom: 0.5rem;
}
.l-tbl-01 dt.full,
.l-tbl-01 dd.full {
  grid-column: 1 / -1;
  border: none;
}
.l-tbl-01 dt.full {
  padding: 0;
}
.l-tbl-01 dd.full {
  padding-top: 0;
}

/*------------------------------------------------------------
    sidebar
------------------------------------------------------------*/
/*------------------------------------------------------------
    header
------------------------------------------------------------*/
.hdr {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: .5s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
}
.hdr.is-hidden {
  transform: translateY(-10vh);
}
@media (min-width: 1024px) {
  .hdr {
    height: 120px;
    padding: 40px 2dvw;
  }
  .hdr.is-hidden {
    transform: translateY(-15vh);
  }
}
.hdr .logo {
  will-change: transform;
  transition: .8s;
  max-width: 300px;
  width: 40dvw;
}
.hdr .logo.is-hidden {
  transform: translateY(-20vh);
}
@media (max-width: 1023px) {
  .hdr .logo {
    position: fixed;
    top: 5dvw;
    left: 3dvw;
  }
}
.hdr .gnav {
  will-change: transform;
  display: flex;
}
@media (max-width: 1023px) {
  .hdr .gnav {
    background: #f5f3ed;
    padding: 15dvw 10dvw;
    width: 100dvw;
    height: 100dvh;
    transform: translateX(100%);
    pointer-events: none;
    transition: .5s;
    position: absolute;
    top: 0;
    right: 0;
    overflow-y: auto;
    flex-direction: column;
    gap: 2rem;
  }
  .hdr .gnav.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }
}
@media (min-width: 1024px) {
  .hdr .gnav {
    transition: .8s;
    font-size: .78rem;
    gap: 1.5rem;
  }
  .hdr .gnav.is-hidden {
    transform: translateY(-20dvh);
  }
}
.hdr .gnav-blk {
  position: relative;
}
@media (min-width: 1024px) {
  .hdr .gnav-blk-01 .gnav-blk-sub {
    min-width: 220px;
  }
}
@media (min-width: 1024px) {
  .hdr .gnav-blk-02 .gnav-blk-sub {
    min-width: 320px;
  }
}
@media (max-width: 1023px) {
  .hdr .gnav-blk-03 .gnav-blk:first-child {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1024px) {
  .hdr .gnav-blk-03 {
    display: flex;
    gap: 1.5rem;
  }
}
.hdr .gnav-blk-sub {
  white-space: nowrap;
}
@media (max-width: 1023px) {
  .hdr .gnav-blk-sub {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .hdr .gnav-blk-sub ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
  }
}
@media (min-width: 1024px) {
  .hdr .gnav-blk-sub {
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    position: absolute;
    top: 2rem;
    left: 0;
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    transition: opacity 0.3s ease;
    z-index: 1001;
    font-size: .85rem;
    min-width: 180px;
  }
  .hdr .gnav-blk-sub.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .hdr .gnav-blk-sub-wrap {
    margin-bottom: 1rem;
  }
  .hdr .gnav-blk-sub-wrap:last-child {
    margin-bottom: 0;
  }
  .hdr .gnav-blk-sub li {
    margin-bottom: .5rem;
  }
  .hdr .gnav-blk-sub li:last-child {
    margin-bottom: 0;
  }
}
.hdr .gnav-blk-sub li a {
  position: relative;
  padding-left: 1em;
}
.hdr .gnav-blk-sub li a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  background-color: #1f2623;
  border-radius: 50%;
}
@media (max-width: 1023px) {
  .hdr .gnav-ttl {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1024px) {
  .hdr .gnav-ttl:hover {
    cursor: pointer;
  }
}
.hdr .gnav-ttl-sub {
  margin-bottom: 1rem;
}

/*------------------------------------------------------------
    footer
------------------------------------------------------------*/
.ftr {
  position: relative;
  padding: 10rem 5dvw 4rem;
}
@media (max-width: 1023px) {
  .ftr {
    padding: 7rem 5dvw 2rem;
  }
}
.ftr-inr {
  max-width: 1200px;
  margin: 0 auto;
}
.ftr .gnav {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .ftr .gnav {
    flex-direction: column;
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .ftr .gnav {
    font-size: 0.8125rem;
  }
}
.ftr .gnav-blk-02 .gnav-blk-sub {
  display: flex;
  gap: 120px;
}
@media (max-width: 767px) {
  .ftr .gnav-blk-02 .gnav-blk-sub {
    flex-direction: column;
  }
}
@media (max-width: 1023px) {
  .ftr .gnav-blk-02 .gnav-blk-sub {
    gap: 20px;
  }
}
.ftr .gnav-blk-03 .gnav-blk-sub {
  margin-bottom: 2rem;
}
.ftr .gnav-blk-sub ul li {
  margin-bottom: .8rem;
}
@media (max-width: 767px) {
  .ftr .gnav-blk-sub ul li {
    margin-bottom: .3rem;
  }
}
.ftr .gnav-blk-sub ul li a {
  position: relative;
  padding-left: 1em;
}
.ftr .gnav-blk-sub ul li a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  background-color: #1f2623;
  border-radius: 50%;
}
.ftr .gnav-ttl {
  font-family: "MFW-PIshiiGothicStdN-EB";
  font-size: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 1023px) {
  .ftr .gnav-ttl {
    font-size: .9rem;
  }
}
.ftr .gnav-ttl-sub {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
@media (max-width: 1023px) {
  .ftr .gnav-ttl-sub {
    font-size: .8rem;
  }
}
.ftr-info {
  font-size: 0.6875rem;
}
.ftr-info address {
  margin-bottom: 28px;
}
.ftr-logo {
  max-width: 160px;
  width: 50dvw;
  margin-bottom: 28px;
}

/*------------------------------------------------------------
btn
------------------------------------------------------------*/
.btn-01 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.875rem;
  padding: 0 1.5rem;
  border-radius: 100vmax;
  aspect-ratio: 249/51;
  width: 70dvw;
  max-width: 250px;
  height: auto;
  overflow: hidden;
}
.btn-01 .ico {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  pointer-events: none;
}
.btn-01 .ico-arw {
  right: 21px;
  width: .6rem;
}
.btn-01 .ico-bln {
  right: 19px;
  width: 0.8125rem;
}
.btn-01:before, .btn-01:after {
  content: "";
  position: absolute;
}
.btn-01:before {
  width: 100%;
  height: 100%;
  background-color: #1f2623;
  border-radius: 100vmax;
}
.btn-01:after {
  aspect-ratio: 1/1;
  width: 2rem;
  height: 2rem;
  border-radius: 100vmax;
  background: #e8ad4f;
  z-index: 0;
  top: calc(var(--after-y, 50%) - 1rem);
  left: calc(var(--after-x, 50%) - 1rem);
  transform-origin: 50% 50%;
  transform: scale(0);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.btn-01:hover:before {
  opacity: 0;
  transition-delay: .2s;
}
.btn-01:hover:after {
  transform: scale(40);
  transition: transform 2.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.btn-01 > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 1023px) {
  .l-sol .btn-01 {
    max-width: 200px;
  }
}
@media (min-width: 1024px) {
  .l-sol .btn-01 {
    max-width: 220px;
  }
}
.btn-02 {
  position: relative;
  background-color: #e8ad4f;
  color: #fff;
}

/*------------------------------------------------------------
title
------------------------------------------------------------*/
/*------------------------------------------------------------
   table
------------------------------------------------------------*/
/*------------------------------------------------------------
   Select, input,...
------------------------------------------------------------*/
/*------------------------------------------------------------
   Breadcrumb
------------------------------------------------------------*/
/*------------------------------------------------------------
リスト　汎用レイアウト
------------------------------------------------------------*/
.list-sty-01 {
  display: flex;
  flex-direction: column;
  gap: 12dvh;
}
@media (max-width: 767px) {
  .list-sty-01 {
    gap: 16dvw;
  }
}
.list-sty-01 .item {
  display: flex;
  gap: 5dvw;
  align-items: center;
  margin: 0 10dvw;
}
@media (max-width: 767px) {
  .list-sty-01 .item {
    flex-direction: column;
    gap: 2rem;
  }
}
.list-sty-01 .item .img {
  aspect-ratio: 240 / 240;
  width: 30%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .list-sty-01 .item .img {
    width: 80%;
  }
}
.list-sty-01 .item .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.list-sty-01 .item .img.circle {
  border-radius: 100vmax;
}
.list-sty-01 .item .img.triangle {
  width: 33%;
  clip-path: url(#rounded-triangle);
  -webkit-clip-path: url(#rounded-triangle);
}
@media (max-width: 767px) {
  .list-sty-01 .item .img.triangle {
    width: 80%;
  }
}
.list-sty-01 .item .txt {
  flex: 1;
}
.list-sty-01 .item .txt .ttl {
  font-family: "MFW-PIshiiGothicStdN-EB";
  font-size: calc(clamp(0.85rem, 0.1888rem + 3.7782vw, 2rem));
  margin-bottom: 2rem;
}
@media (max-width: 1023px) {
  .list-sty-01 .item .txt .ttl {
    margin-bottom: 1rem;
  }
}
.list-sty-01 .item .txt .desc {
  max-width: 700px;
  text-align: justify;
  line-height: 1.8;
}
.list-sty-01 .item:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .list-sty-01 .item:nth-child(even) {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .list-sty-01 .item:nth-child(even) .txt {
    text-align: right;
  }
}
.list-sty-01 .item:nth-child(even) .txt .desc {
  margin-left: auto;
}
.list-sty-02 {
  display: grid;
  gap: 2dvw;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .list-sty-02 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 599px) {
  .list-sty-02 {
    grid-template-columns: 1fr;
  }
}

/*------------------------------------------------------------
  Nav
------------------------------------------------------------*/
.gnav a, .gnav a:before, .gnav a svg {
  transition: .3s;
}
.gnav a:hover {
  color: #e8ad4f;
}
.gnav a:hover:before {
  background: #e8ad4f !important;
}
.gnav a:hover svg {
  fill: #e8ad4f;
}

.gnav-btn {
  will-change: transform;
  transition: .8s;
}
.gnav-btn.is-hidden {
  transform: translateY(-20vh);
}
@media (max-width: 1023px) {
  .gnav-btn {
    position: absolute;
    top: 2dvw;
    right: 3dvw;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    max-width: 44px;
    width: 15dvw;
    height: auto;
    border-radius: 100%;
    background: #e8ad4f;
    transition: all 0.3s ease;
  }
}
@media (min-width: 1024px) {
  .gnav-btn {
    display: none;
  }
}
.gnav-btn-ico {
  display: block;
  position: relative;
  width: 50%;
  height: 1px;
  background: #fff;
  transition: all 0.3s ease;
}
.gnav-btn-ico:before, .gnav-btn-ico:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: center center;
  width: 60%;
  height: 1px;
  background: #fff;
  transition: all 0.3s ease 0.1s;
  will-change: transform;
}
.gnav-btn-ico:before {
  transform: translateX(-50%) translateY(-6px) translateZ(0);
}
.gnav-btn-ico:after {
  transform: translateX(-50%) translateY(6px) translateZ(0);
}
.gnav-btn.is-open {
  background: transparent;
}
.gnav-btn.is-open .gnav-btn-ico {
  background: transparent;
}
.gnav-btn.is-open .gnav-btn-ico:before, .gnav-btn.is-open .gnav-btn-ico:after {
  top: 0;
  background: #e8ad4f;
  width: 160%;
}
.gnav-btn.is-open .gnav-btn-ico:before {
  transform: translateX(-50%) rotate(25deg);
}
.gnav-btn.is-open .gnav-btn-ico:after {
  transform: translateX(-50%) rotate(-25deg);
}

.nav-cat a {
  padding: .5rem 1rem;
  border-radius: 100vmax;
  transition: .3s ease;
}
.nav-cat a:hover, .nav-cat a.active {
  color: #fff;
  background: #e8ad4f;
}
.nav-cat ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem .5rem;
}
.nav-cat-news {
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .nav-cat-news {
    padding-left: 20px;
  }
}

/*------------------------------------------------------------
  paginate
------------------------------------------------------------*/
.wp-pagenavi {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  transition: .3s;
}
@media (min-width: 768px) {
  .wp-pagenavi {
    gap: 2rem;
  }
}
.wp-pagenavi .current {
  pointer-events: none;
  color: #e8ad4f;
  border-bottom: 2px solid #e8ad4f;
}
.wp-pagenavi a {
  transition: .3s;
}
.wp-pagenavi a:hover {
  color: #e8ad4f;
}
.pgr-02 .wp-pagenavi {
  justify-content: space-between;
  font-size: calc(clamp(0.6rem, 0.5425rem + 0.3285vw, 0.7rem));
}

/*------------------------------------------------------------
  loading
------------------------------------------------------------*/
.c-loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #f5f3ed;
  overflow: hidden;
  z-index: 99999999;
  opacity: 1;
  pointer-events: none;
}
.c-loading__content {
  width: 270px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
@media screen and (max-width: 834px) {
  .c-loading__content {
    width: 270px;
  }
}
.c-loading__content img {
  transition: all .8s ease-in;
  opacity: 0;
}
.c-loading__content .txt {
  width: 100%;
  height: 40px;
  background-color: #f6f4ed;
  position: absolute;
  bottom: 0;
  display: none;
}
@media screen and (max-width: 834px) {
  .c-loading__content .txt {
    height: 30px;
  }
}
.c-loading.logo {
  transition: all .8s ease-in;
}
.c-loading.logo .c-loading__content {
  transition: all .5s ease-in;
  opacity: 1;
}
.c-loading.logo .c-loading__content img {
  opacity: 1;
}

.completed .c-loading {
  opacity: 0;
}
.completed .c-loading .c-loading__content {
  transition: all .4s ease-in;
  opacity: 0;
}

/*------------------------------------------------------------
display
------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

.d-b {
  display: block;
}

.d-ib {
  display: inline-block;
}

.d-f {
  display: flex;
}

/*------------------------------------------------------------
margin
------------------------------------------------------------*/
.mb-h {
  margin-bottom: .5rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

/*------------------------------------------------------------
text
------------------------------------------------------------*/
.taj {
  text-align: justify;
}

/*------------------------------------------------------------
icon
------------------------------------------------------------*/
.blank {
  display: inline-flex;
  align-items: center;
  gap: .4em;
}
.blank .ico {
  width: 12px;
  height: auto;
  fill: #7d7d7d;
}

/*------------------------------------------------------------
fade/fadein variation
------------------------------------------------------------*/
.fade {
  position: relative;
}
.fade.fadein {
  opacity: 1;
}

.fade-01 {
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: all .6s ease-in-out .6s;
}

/*------------------------------------------------------------
duplicate text & animation マスクスライドアニメ
------------------------------------------------------------*/
.dup-line {
  display: block;
  position: relative;
}
@media (min-width: 768px) {
  .dup-line.is-rtl {
    text-align: right;
  }
}
.dup-line.is-rtl .mask {
  left: 0;
  right: 0;
}
.dup-line .base {
  opacity: 0.2;
}
.dup-line .mask {
  position: absolute;
  top: 0;
  left: 0;
  mask-image: linear-gradient(to right, black 100%, transparent 0%);
  -webkit-mask-image: linear-gradient(to right, black 100%, transparent 0%);
  mask-size: 0% 100%;
  -webkit-mask-size: 0% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  opacity: 0;
  transition: mask-size 1s cubic-bezier(0.33, 1, 0.68, 1) var(--delay, 0s), -webkit-mask-size 1s cubic-bezier(0.33, 1, 0.68, 1) var(--delay, 0s), opacity 0.3s ease-out var(--delay, 0s);
}

.dup-img {
  position: relative;
  display: block;
}
.dup-img .base {
  display: block;
  opacity: 0.2;
}
.dup-img .mask {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  mask-image: linear-gradient(to right, black 100%, transparent 0%);
  -webkit-mask-image: linear-gradient(to right, black 100%, transparent 0%);
  mask-size: 0% 100%;
  -webkit-mask-size: 0% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  opacity: 0;
  transition: mask-size 1s cubic-bezier(0.33, 1, 0.68, 1) var(--delay, 0s), -webkit-mask-size 1s cubic-bezier(0.33, 1, 0.68, 1) var(--delay, 0s), opacity 0.3s ease-out var(--delay, 0s);
}

.fadein .mask {
  opacity: 1;
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}

/*------------------------------------------------------------
follow-btn
------------------------------------------------------------*/
.hover-follow-cursor {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.2s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
}
.hover-follow-cursor[data-ready="true"].is-visible {
  opacity: 1;
  visibility: visible;
}
.hover-follow-cursor .hover-follow-button {
  pointer-events: auto;
  all: unset;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #e8ad4f;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 120px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  line-height: 1.5;
}
.hover-follow-cursor .hover-follow-button-ico-bln {
  width: 16px;
  height: auto;
  margin: .4rem auto 0;
}
@media screen and (max-width: 1024px) {
  .hover-follow-cursor {
    display: none;
  }
}

/*------------------------------------------------------------
loop text / footer
------------------------------------------------------------*/
.lop-txt {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  white-space: nowrap;
  pointer-events: none;
  will-change: transform;
  overflow-x: hidden;
}
.lop-txt p {
  display: inline-block;
  font-size: calc(clamp(5rem, 2.7419rem + 12.9032vw, 11rem));
  font-family: "MFW-PIshiiGothicStdN-EB";
  color: #f5edd5;
  letter-spacing: -0.5rem;
  animation: lop-scr 28s linear infinite;
}
.lop-txt p span {
  padding-right: 8rem;
}

/*------------------------------------------------------------
parallax
------------------------------------------------------------*/
.prx-02-txt {
  will-change: transform;
  transition: transform 0.2s ease-out;
}

/*------------------------------------------------------------
toppage
------------------------------------------------------------*/
@media (max-width: 767px) {
  .p-top main.main {
    margin-top: 36px;
  }
}
.p-top .sec-hero {
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .p-top .sec-hero {
    margin-bottom: 8rem;
  }
}
.p-top .sec-hero-kv {
  width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-top .sec-hero-kv {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .p-top .sec-hero-kv .kv-list {
    position: relative;
    height: 93dvw;
  }
}
@media (min-width: 768px) {
  .p-top .sec-hero-kv .kv-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
  }
}
.p-top .sec-hero-kv .kv-item {
  width: calc(100% / 3);
}
@media (max-width: 767px) {
  .p-top .sec-hero-kv .kv-item {
    position: absolute;
    width: 50dvw;
  }
}
.p-top .sec-hero-kv .kv-item-circle {
  margin: 0;
}
@media (max-width: 767px) {
  .p-top .sec-hero-kv .kv-item-circle {
    top: 0;
    left: 38%;
    z-index: 3;
  }
}
.p-top .sec-hero-kv .kv-item-square {
  margin: 0;
}
@media (max-width: 767px) {
  .p-top .sec-hero-kv .kv-item-square {
    top: 18dvw;
    left: 0;
    z-index: 1;
  }
}
@media (max-width: 767px) {
  .p-top .sec-hero-kv .kv-item-triangle {
    top: 39dvw;
    right: -5dvw;
    z-index: 2;
  }
}
@media (min-width: 768px) {
  .p-top .sec-hero-kv .kv-item-triangle {
    margin: 0 10px 0 -5dvw;
    transition-delay: .1s;
    transition-duration: .8s;
  }
}
.p-top .sec-hero-kv .kv-item img {
  display: block;
  width: 100%;
  height: auto;
}
.p-top .sec-hero-ttl {
  position: relative;
  width: 80dvw;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-top .sec-hero-ttl {
    width: 82dvw;
    margin-top: -21dvw;
    margin-left: 3dvw;
  }
  .p-top .sec-hero-ttl li {
    margin-top: -0.8rem;
  }
  .p-top .sec-hero-ttl li:first-child {
    margin-top: 0;
    width: 52dvw;
  }
}
.p-top .sec-hero-ttl img {
  display: block;
  width: 100%;
  height: auto;
}
.p-top .sec-hero-desc {
  font-family: "MFW-PIshiiGothicStdN-B";
  position: relative;
  width: 80dvw;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p-top .sec-hero-desc {
    width: 90dvw;
    font-size: calc(clamp(0.615rem, 0.1349rem + 2.7433vw, 1.45rem));
    line-height: 1.75;
    margin-top: -0.5rem;
  }
}
@media (min-width: 768px) {
  .p-top .sec-hero-desc {
    font-size: calc(clamp(0.1rem, -0.2859rem + 1.9294vw, 1.74rem));
  }
}
.p-top .sec-hero .txt-link {
  text-align: right;
  width: 90dvw;
  font-size: calc(clamp(0.615rem, 0.1349rem + 2.7433vw, 1.45rem));
  margin: 0.7rem auto 0 5dvw;
  border-bottom: 2px solid;
  width: fit-content;
  transition-delay: 1.6s;
}
@media (min-width: 768px) {
  .p-top .sec-hero .txt-link {
    font-size: calc(clamp(0.1rem, -0.2859rem + 1.9294vw, 1.74rem));
    margin-top: 1.5rem;
    margin-left: 10dvw;
  }
}
@media (min-width: 1025px) {
  .p-top .sec-hero .txt-link {
    display: none;
  }
}
@media (max-width: 1023px) {
  .p-top .l-sol {
    margin-bottom: 6rem;
  }
}
.p-top .l-news {
  margin-bottom: 10rem;
}
@media (max-width: 1023px) {
  .p-top .l-news {
    margin-bottom: 6rem;
  }
}

/*------------------------------------------------------------
hoiku / 小規模保育
------------------------------------------------------------*/
.p-hoiku .main,
.p-ryoiku .main {
  line-height: 1.8;
}
.p-hoiku .sec-01,
.p-ryoiku .sec-01 {
  margin: 0 auto 10rem;
}
@media (max-width: 1023px) {
  .p-hoiku .sec-01,
  .p-ryoiku .sec-01 {
    margin: 0 auto 4rem;
  }
}
.p-hoiku .sec-01-ttl,
.p-ryoiku .sec-01-ttl {
  width: 80dvw;
  margin: 0 auto;
  margin-bottom: 4rem;
}
.p-hoiku .sec-01-ttl h2,
.p-ryoiku .sec-01-ttl h2 {
  font-family: "MFW-PIshiiGothicStdN-EB";
  font-size: 5rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .p-hoiku .sec-01-ttl h2,
  .p-ryoiku .sec-01-ttl h2 {
    font-size: calc(clamp(1rem, -0.0349rem + 5.9138vw, 2.8rem));
  }
}
@media (max-width: 1023px) {
  .p-hoiku .sec-01 .l-cf-sld,
  .p-ryoiku .sec-01 .l-cf-sld {
    margin-bottom: 5dvw;
  }
}
.p-hoiku .sec-02,
.p-ryoiku .sec-02 {
  margin-bottom: 10rem;
}
@media (max-width: 1023px) {
  .p-hoiku .sec-02,
  .p-ryoiku .sec-02 {
    margin-bottom: 4rem;
  }
}
.p-hoiku .sec-02-ttl,
.p-ryoiku .sec-02-ttl {
  width: fit-content;
  margin: 0 auto 6rem;
  font-family: "MFW-PIshiiGothicStdN-EB";
  font-size: calc(clamp(0.8rem, 0.0727rem + 3.6364vw, 2.4rem));
}
@media (max-width: 767px) {
  .p-hoiku .sec-02-ttl,
  .p-ryoiku .sec-02-ttl {
    margin-bottom: 2rem;
  }
}
.p-hoiku .sec-03,
.p-ryoiku .sec-03 {
  margin-bottom: 0;
}
.p-hoiku .sec-03-ttl,
.p-ryoiku .sec-03-ttl {
  width: fit-content;
  margin: 0 auto 3rem;
  text-align: left;
}
.p-hoiku .sec-03-ttl h2,
.p-ryoiku .sec-03-ttl h2 {
  font-family: "MFW-PIshiiGothicStdN-EB";
  font-size: calc(clamp(1.5rem, 1.2125rem + 1.6427vw, 2rem));
  line-height: 1.6;
  margin-bottom: 1rem;
}
.p-hoiku .sec-03-logo,
.p-ryoiku .sec-03-logo {
  margin-bottom: 3rem;
}
@media (max-width: 1023px) {
  .p-hoiku .sec-03-logo,
  .p-ryoiku .sec-03-logo {
    margin-bottom: 5dvw;
  }
}
.p-hoiku .sec-03-logo img,
.p-ryoiku .sec-03-logo img {
  width: 80dvw;
  margin: 0 auto;
  max-width: 900px;
}
.p-hoiku .sec-03-logo img.brs,
.p-ryoiku .sec-03-logo img.brs {
  border-radius: 10px;
}
.p-hoiku .sec-03-list li img,
.p-ryoiku .sec-03-list li img {
  border-radius: 10px;
}

/*------------------------------------------------------------
philosophy / 企業理念
------------------------------------------------------------*/
.p-philosophy .sec-blk {
  width: 80dvw;
  margin: 0 auto;
  margin-bottom: 4rem;
  line-height: 1.8;
  max-width: 600px;
}
.p-philosophy .sec-blk p {
  margin-bottom: 2rem;
}
.p-philosophy .sec-blk p:last-child {
  margin-bottom: 0;
}
.p-philosophy .sec-ttl {
  width: 80dvw;
  margin: 0 auto;
  margin-bottom: 3dvw;
  font-family: "MFW-PIshiiGothicStdN-EB";
  font-size: calc(clamp(1rem, 0.0591rem + 5.3763vw, 3.5rem));
  text-align: justify;
}
@media (min-width: 850px) {
  .p-philosophy .sec-ttl {
    width: fit-content;
  }
}
.p-philosophy .sec-01 {
  margin-bottom: 10dvw;
}
.p-philosophy .sec-02-ttl {
  width: 80dvw;
  margin: 0 auto;
  text-align: left;
  margin-bottom: 8dvw;
}
@media (min-width: 1024px) {
  .p-philosophy .sec-02 .sol-box-row .sol-box {
    width: 50%;
  }
}
.p-philosophy .sec-02 .sol-box-row .sol-box .sol-label {
  font-size: calc(clamp(1rem, 0.8275rem + 0.9856vw, 1.3rem));
  padding: 4px 1rem;
}
.p-philosophy .sec-02 .sol-box-row .sol-box .sol-desc {
  font-size: inherit;
}
@media (max-width: 1023px) {
  .p-philosophy .sec-02 .sol-box-row .sol-box .sol-desc {
    text-align: left;
  }
}
.p-philosophy .sec-02 .sol-box-row .sol-box .sol-item {
  margin: 0 auto;
}
.p-philosophy .sec-02 .sol-box-row .sol-box .sol-item .sol-img-wrap {
  aspect-ratio: 460 / 229;
  border-radius: 0;
}

/*------------------------------------------------------------
message / 代表挨拶
------------------------------------------------------------*/
.p-message .sec-blk {
  width: 80dvw;
  margin: 0 auto;
  margin-bottom: 5rem;
  line-height: 1.8;
  max-width: 600px;
}
.p-message .sec-blk p {
  margin-bottom: 2rem;
}
.p-message .sec-blk p:last-child {
  margin-bottom: 0;
}
.p-message .sec-blk p.sign {
  text-align: right;
}
.p-message .sec-blk p.sign span {
  display: block;
}
.p-message .sec-ttl {
  width: 80dvw;
  margin: 0 auto;
  margin-bottom: 3dvw;
  font-family: "MFW-PIshiiGothicStdN-EB";
  font-size: calc(clamp(1rem, 0.0591rem + 5.3763vw, 3.5rem));
  text-align: justify;
  max-width: 800px;
}
@media (min-width: 850px) {
  .p-message .sec-ttl {
    width: fit-content;
  }
}

/*------------------------------------------------------------
profile / 会社概要
------------------------------------------------------------*/
.p-profile .sec-01 {
  margin-bottom: 10dvw;
  overflow-x: hidden;
}
.p-profile .sec-02-ttl {
  padding: 0 0.75rem;
  margin: 0 auto 1.5rem;
  max-width: 700px;
  font-size: calc(clamp(1rem, 0.8275rem + 0.9856vw, 1.3rem));
}
.p-profile .sec-02-ttl span {
  font-size: calc(clamp(0.7rem, 0.6425rem + 0.3285vw, 0.8rem));
}
.p-profile .map-wrap {
  width: 100dvw;
  height: 60dvh;
  margin: 0 calc(50% - 50dvw);
  position: relative;
}
@media (min-width: 768px) {
  .p-profile .map-wrap {
    width: 700px;
    margin: 0 calc(50% - 350px);
  }
}
.p-profile .map-wrap .map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/*------------------------------------------------------------
outline / 
------------------------------------------------------------*/
.p-outline .sec-01 {
  width: 80dvw;
  margin: 0 auto;
  max-width: 800px;
  margin-bottom: 5rem;
  line-height: 1.8;
}
.p-outline .sec-02.company-history {
  max-width: 800px;
  margin: auto;
}
.p-outline .sec-02.company-history .section-title {
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}
.p-outline .sec-02.company-history .history-list {
  position: relative;
  list-style: none;
  padding-left: 2rem;
  margin: 0;
}
.p-outline .sec-02.company-history .history-list::before {
  content: '';
  position: absolute;
  top: 0.5rem;
  bottom: 0;
  left: 1.2rem;
  width: 1px;
  background: #e8ad4f;
}
.p-outline .sec-02.company-history .history-list li {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 1rem;
}
@media (max-width: 767px) {
  .p-outline .sec-02.company-history .history-list li {
    padding-left: 2dvw;
  }
}
.p-outline .sec-02.company-history .history-list li::before {
  content: '';
  position: absolute;
  top: 0.3rem;
  left: -1rem;
  background: #e8ad4f;
  z-index: 1;
  border-radius: 100vmax;
  aspect-ratio: 1/1;
  width: .5rem;
  height: auto;
}
.p-outline .sec-02.company-history .history-list li time {
  font-size: .8rem;
  display: block;
  margin-bottom: 0.5rem;
}
.p-outline .sec-02.company-history .history-list li p {
  margin: 0.25rem 0;
}

/*------------------------------------------------------------
news / お知らせ一覧
------------------------------------------------------------*/
.p-news .sec-blk {
  width: 80dvw;
  margin: 0 auto;
  margin-bottom: 5rem;
  line-height: 1.8;
}
.p-news .sec-blk p {
  margin-bottom: 2rem;
}
.p-news .sec-blk p:last-child {
  margin-bottom: 0;
}
.p-news .sec-ttl {
  width: 80dvw;
  margin: 0 auto;
  margin-bottom: 3dvw;
  font-family: "MFW-PIshiiGothicStdN-EB";
  font-size: calc(clamp(1rem, 0.0591rem + 5.3763vw, 3.5rem));
  text-align: justify;
}
@media (min-width: 850px) {
  .p-news .sec-ttl {
    width: fit-content;
  }
}
