@charset "UTF-8";
.scrollanime {
  opacity: 0;
} /*一瞬表示されるのを防ぐ*/
.fadeInDown2 {
  animation-name: fadeInDown2;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes sub_main {
  0% {
    background-position: center top;
    opacity: 0;
  }
  100% {
    background-position: center bottom;
    opacity: 1;
  }
}
@keyframes fadeInDown2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
/*バウンドアニメーション*/
@keyframes fuwafuwa {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
/*上下の動きを指定*/
.updown {
  transform: translateY(-100px);
}

.downup {
  transform: translateY(100px);
}

/*左右の動きを指定*/
.sect02 {
  overflow: hidden;
} /*横スクロールバーを隠す*/
.slide-right {
  transform: translateX(200px);
}

.slide-left {
  transform: translateX(-200px);
}

.mb_10 {
  margin-bottom: 10px;
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mb_50 {
  margin-bottom: 50px;
}

.m0a {
  margin: 0 auto;
}

.fw_b {
  font-weight: bold;
}

.pb_50 {
  padding-bottom: 50px;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.bold {
  font-weight: bold;
}

.flex_bw {
  display: flex;
  justify-content: space-between;
}

/*下層ページタイトル*/
#page-title {
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  max-height: 300px;
}
#page-title .page-title-img {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}
#page-title .page-title-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
  min-height: 160px;
}
#page-title .key-text {
  position: absolute;
  top: 45%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -45%);
  background: rgba(255, 255, 255, 0.8);
  padding: 15px;
  width: 100%;
  margin: 0 auto;
}
#page-title .key-text h2 {
  color: #B79FCB;
  font-family: "ropa-sans-pro", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "Noto Sans JP", "ＭＳ Ｐゴシック", "Helvetica Neue", sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
}
#page-title .key-text h2 span {
  text-align: center;
  color: #2a2a2a;
  font-size: 16px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "Noto Sans JP", "ＭＳ Ｐゴシック", "Helvetica Neue", sans-serif;
  font-weight: 400;
  display: block;
}
@media screen and (max-width: 768px) {
  #page-title {
    margin-top: 70px;
    max-height: 200px;
  }
  #page-title .key-text {
    padding: 10px;
  }
  #page-title .key-text h2 {
    font-size: clamp(28px, 4.5vw, 44px);
    line-height: 1.3;
  }
  #page-title .key-text h2 span {
    font-size: 14px;
  }
}

.title-pink {
  position: relative;
  padding: 40px 15px 0 15px;
  margin-bottom: 10px;
  min-height: 22vw;
}
.title-pink:before {
  content: "";
  width: 100%;
  height: 22vw;
  background-color: #DEBECC;
  left: 0;
  top: 0;
  position: absolute;
  z-index: -10;
}
.title-pink:after {
  content: "";
  width: 90%;
  max-width: 1200px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  height: 22vw;
  background-color: #B79FCB;
  position: absolute;
  z-index: -9;
}
@media screen and (max-width: 768px) {
  .title-pink {
    min-height: 150px;
  }
  .title-pink:before, .title-pink:after {
    height: 150px;
  }
  .title-pink .h3-purple2 {
    margin-bottom: 15px;
  }
}

.h3-purple2 {
  font-size: clamp(16px, 2.5vw, 30px);
  text-align: center;
  color: #fff;
  margin: 0 auto 40px auto;
  padding: 0 15px;
}

.h3-purple3 {
  font-size: clamp(26px, 4vw, 50px);
  text-align: center;
  color: #fff;
  font-family: "ropa-sans-pro", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "Noto Sans JP", "ＭＳ Ｐゴシック", "Helvetica Neue", sans-serif;
  padding: 0 15px;
  line-height: 1.4;
}
.h3-purple3 span {
  font-size: clamp(16px, 2.5vw, 23px);
  text-align: center;
  display: block;
}

.title-inner {
  max-width: 1200px;
  position: relative;
  z-index: 3;
  text-align: center;
  margin: 0 auto;
  width: 90%;
}

.width1200-90 {
  width: 90%;
}

@media screen and (max-width: 680px) {
  .width1200-95 {
    width: 95%;
  }
}

.top-works {
  text-align: center;
  margin: 0 auto;
}

.concept2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 10px auto;
}
.concept2 img {
  width: clamp(150px, 25%, 221px);
}
@media screen and (max-width: 1100px) {
  .concept2 img {
    width: calc(50% - 8px);
    max-width: 320px;
    min-width: 150px;
  }
}
@media screen and (max-width: 430px) {
  .concept2 img {
    width: 221px;
    min-width: 150px;
  }
}

.title-pink2 {
  padding: 30px 15px 30px 15px;
  min-height: auto;
}
.title-pink2:before {
  content: "";
  width: 100%;
  height: 100%;
}
.title-pink2:after {
  height: 100%;
}

.l-height2 {
  line-height: 2;
}

.ul-case li {
  background-color: #f1f1f1;
  border-radius: 50px;
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}
.ul-case li p {
  width: 50px;
  height: 50px;
  background-color: #000;
  border-radius: 50%;
  padding: 5px;
  color: #fff;
  font-size: 14px;
  text-align: center;
}
.ul-case li p span {
  display: inline-block;
  margin-bottom: 0;
}
.ul-case li figure {
  width: calc(100% - 50px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .ul-case li {
    flex-direction: column;
    border-radius: 30px;
  }
  .ul-case li figure {
    flex-direction: column;
  }
}
@media screen and (max-width: 430px) {
  .ul-case li {
    padding: 20px 0;
    row-gap: 10px;
    border-radius: 20px figure;
    border-radius-row-gap: 10px;
  }
}

.title-pink3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 15px;
}
.title-pink3 .h3-purple2 {
  margin-bottom: 0;
}

.img-box1 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 15px;
}

.soudan-list {
  width: 87%;
  max-width: 1100px;
  margin-bottom: 80px;
}
.soudan-list .soudan-item {
  margin-bottom: 20px;
}
.soudan-list .soudan-item dt {
  background-color: #000;
  padding: 15px 30px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  color: #fff;
  font-weight: 500;
}
.soudan-list .soudan-item dd {
  background-color: #f1f1f1;
  padding: 20px 30px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
@media screen and (max-width: 768px) {
  .soudan-list .soudan-item dt {
    padding: 15px 20px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
  .soudan-list .soudan-item dd {
    padding: 20px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
}
@media screen and (max-width: 430px) {
  .soudan-list .soudan-item dt {
    padding: 15px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .soudan-list .soudan-item dd {
    padding: 15px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}

.company-inner {
  margin: 50px auto;
}

.company-dl {
  display: flex;
  border-top: 1px solid #969696;
}
.company-dl:last-of-type {
  border-bottom: 1px solid #969696;
}
.company-dl dt {
  text-align: center;
  background-color: #4d4c4c;
  padding: 12px;
  width: 30%;
  display: grid;
  place-items: center;
  color: #fff;
}
.company-dl dd {
  padding: 15px 20px;
  text-align: left;
  width: 70%;
}
@media screen and (max-width: 768px) {
  .company-dl {
    flex-direction: column;
    border: 1px solid #969696;
    margin-bottom: 10px;
  }
  .company-dl dt, .company-dl dd {
    width: 100%;
    padding: 10px 15px;
  }
}

.brand-list {
  margin-bottom: 20px;
  background-color: #f1f1f1;
  border-radius: 50px;
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .brand-list {
    padding: 20px;
    border-radius: 30px;
  }
}
@media screen and (max-width: 430px) {
  .brand-list {
    padding: 15px;
    border-radius: 20px;
  }
}
.brand-list dt {
  display: flex;
  align-items: center;
}
.brand-list dt img {
  margin-right: 10px;
}
.brand-list dd {
  width: 80%;
}
.brand-list dd .brand-ul {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 10px;
}
.brand-list dd .brand-ul li {
  padding-left: 25px;
  position: relative;
  width: calc(50% - 15px);
}
.brand-list dd .brand-ul li:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "●";
  color: #B79FCB;
}
@media screen and (max-width: 768px) {
  .brand-list {
    flex-direction: column;
    gap: 15px;
  }
  .brand-list dt {
    flex-direction: column;
    gap: 8px;
  }
  .brand-list dt img {
    margin-right: 0;
    margin-bottom: 0;
  }
  .brand-list dd {
    width: 100%;
  }
  .brand-list dd .brand-ul {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .brand-list dd .brand-ul li {
    padding-left: 20px;
    width: 100%;
  }
}

.maru_purple {
  padding-left: 30px;
  position: relative;
}
.maru_purple:before {
  position: absolute;
  left: 0;
  top: -5px;
  content: "●";
  color: #84416F;
  font-size: 22px;
}
@media screen and (max-width: 430px) {
  .maru_purple {
    padding-left: 20px;
  }
  .maru_purple:before {
    font-size: 16px;
    top: -3px;
  }
}

.maru_purple2 {
  color: #84416F;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 430px) {
  .maru_purple2 {
    font-size: 14px;
  }
  .maru_purple2:before {
    top: -2px;
  }
}

.contact-inner {
  margin: 50px auto;
}

.contact-dl {
  display: flex;
  border: 1px solid #84416F;
}
.contact-dl dt {
  border-right: 1px solid #84416F;
  background-color: #F2E3E9;
  padding: 30px 20px;
  width: 30%;
  text-align: center;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
}
.contact-dl dd {
  width: 70%;
  background-color: #f1f1f1;
  padding: 30px 20px;
}
@media screen and (max-width: 768px) {
  .contact-dl {
    flex-direction: column;
  }
  .contact-dl dt {
    border-right: none;
    border-bottom: 1px solid #84416F;
    width: 100%;
    padding: 20px 10px;
  }
  .contact-dl dd {
    width: 100%;
    padding: 20px 10px;
  }
}

.contact-link {
  transition: 0.5s;
  color: #84416F;
  font-size: clamp(25px, 2.5vw, 40px);
  text-align: center;
  margin-bottom: 10px;
  font-family: "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
}
.contact-link:hover {
  color: #666;
}

.title-p {
  position: relative;
  color: #fff;
  font-size: clamp(18px, 2.5vw, 27px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 0 auto;
  padding: 0 30px;
}
.title-p:before, .title-p:after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #fff;
}
.title-p:before {
  margin-right: 25px;
}
.title-p:after {
  margin-left: 25px;
}
@media screen and (max-width: 768px) {
  .title-p {
    padding: 0 5px;
  }
}

.h3-purple4 {
  color: #fff;
  opacity: 0.6;
  font-family: "ropa-sans-pro", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "Noto Sans JP", "ＭＳ Ｐゴシック", "Helvetica Neue", sans-serif;
  font-size: clamp(45px, 8vw, 110px);
  line-height: 1.3;
}

.title-box {
  margin-top: -60px;
}
@media screen and (max-width: 768px) {
  .title-box {
    margin-top: -30px;
  }
}
@media screen and (max-width: 430px) {
  .title-box {
    margin-top: -25px;
  }
}

.greeting-img {
  margin-bottom: 20px;
}

.title-p2 {
  font-family: "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(18px, 2.5vw, 28px);
  margin-bottom: 20px;
}

.title-profile {
  margin-bottom: 0;
}

.bg-black {
  background-color: #000;
  margin-bottom: 60px;
}

.profile-black {
  color: #fff;
  text-align: center;
  padding: 60px 0;
}
.profile-black img {
  margin-bottom: 30px;
}

.profile-name-big {
  font-family: "ropa-sans-pro", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "Noto Sans JP", "ＭＳ Ｐゴシック", "Helvetica Neue", sans-serif;
  font-size: clamp(40px, 12vw, 70px);
  line-height: 1;
}

.profile-post {
  font-size: clamp(16px, 3vw, 18px);
  margin-bottom: 0;
  text-align: center;
}

.profile-name-small {
  font-weight: bold;
  font-size: clamp(20px, 4vw, 30px);
  text-align: center;
  margin-bottom: 40px;
}
.profile-name-small span {
  font-size: 16px;
  margin-right: 15px;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .profile-black img {
    width: calc(100% - 40px);
    margin-bottom: 20px;
  }
  .profile-name-big {
    font-size: clamp(28px, 6vw, 30px);
    line-height: 1.4;
  }
  .profile-post {
    font-size: clamp(12px, 2vw, 14px);
  }
  .profile-name-small {
    font-size: clamp(16px, 3.5vw, 25px);
  }
  .profile-name-small span {
    font-size: clamp(12px, 2vw, 14px);
  }
}
.profile-text {
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.profile-link {
  color: #DEBECC;
  text-decoration: underline;
  text-underline-offset: 10px;
  display: block;
  margin-top: 20px;
  transition: 0.5s;
  line-height: 2.5;
}
.profile-link:hover {
  transform: translateX(10px);
}

.profile-inner {
  margin-bottom: 80px;
}
.profile-inner .img-box1 {
  flex-wrap: nowrap;
}
@media screen and (max-width: 600px) {
  .profile-inner .img-box1 {
    gap: 10px;
  }
}
.profile-inner .img-box1 img {
  width: 28%;
}

.profile-box {
  background-color: #f1f1f1;
  padding: 40px 30px;
}
.profile-box h4 {
  font-family: "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(18px, 2.5vw, 28px);
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .profile-box {
    padding: 30px 20px;
  }
}

.profile1 {
  margin-top: -50px;
  padding-top: 80px;
}

.profile-inner2 {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
}
.profile-inner2 .profile-box {
  width: 75%;
  padding-right: 120px;
}
.profile-inner2 img {
  margin-left: -100px;
  width: 45%;
}
@media screen and (max-width: 960px) {
  .profile-inner2 {
    flex-direction: column;
  }
  .profile-inner2 .profile-box {
    width: 100%;
    padding-right: 30px;
    padding-bottom: 90px;
  }
  .profile-inner2 img {
    margin-left: 0;
    width: 90%;
    max-width: 525px;
    margin-top: -60px;
  }
}

.profile-inner3 {
  display: flex;
}
@media screen and (max-width: 960px) {
  .profile-inner3 {
    flex-direction: column;
    justify-content: center;
  }
  .profile-inner3 img {
    width: 100%;
    max-width: 396px;
    margin: 0 auto;
  }
  .profile-inner3 .profile-box {
    margin-top: -60px;
    padding-top: 90px;
    z-index: -1;
  }
}

.profile-works-ul {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 40px;
  justify-content: space-between;
}
.profile-works-ul li {
  width: calc((100% - 60px) / 3);
}
.profile-works-ul li figure {
  margin-bottom: 10px;
}
.profile-works-ul li figure figcaption {
  background-color: #000;
  padding: 8px 15px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}
.profile-works-ul li figure img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .profile-works-ul li {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 600px) {
  .profile-works-ul {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .profile-works-ul li {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 480px) {
  .profile-works-ul {
    flex-direction: column;
  }
  .profile-works-ul li {
    width: 100%;
  }
}

.h3-system span {
  font-size: clamp(14px, 2.2vw, 20px);
}
@media screen and (max-width: 768px) {
  .h3-system {
    margin-bottom: 10px;
  }
}

.system-link-box {
  text-align: center;
}

.system-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 20px;
  margin: 30px 0;
}
.system-links li {
  text-align: left;
}
.system-links li a {
  color: #84416F;
  font-size: clamp(18px, 2.4vw, 24px);
  position: relative;
  padding-left: 30px;
  white-space: nowrap;
  text-align: left;
}
.system-links li a:hover {
  color: #707070;
}
.system-links li a:before {
  position: absolute;
  content: "";
  width: 22px;
  height: 34px;
  background-image: url(../img/page/system/sankaku_purple.png);
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: -2px;
  transition: 0.5s;
}
.system-links li a:hover:before {
  left: 7px;
}
@media screen and (max-width: 768px) {
  .system-links li a:before {
    top: -5px;
    width: 20px;
    height: 30px;
  }
}
@media screen and (max-width: 1080px) {
  .system-links {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .system-links li {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 480px) {
  .system-links {
    row-gap: 8px;
    margin: 20px auto 0 auto;
  }
  .system-links li a {
    font-size: 13px;
    padding-left: 15px;
  }
  .system-links li a:before {
    top: auto;
    bottom: 0;
    width: 10px;
    height: 14px;
  }
}

.system-tab {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 10px;
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .system-tab {
    width: 90%;
  }
}
@media screen and (max-width: 460px) {
  .system-tab {
    align-items: stretch;
  }
  .system-tab li a {
    padding: 15px 5px;
    font-size: 12px;
  }
}
.system-tab li {
  width: 50%;
}
.system-tab a {
  padding: 15px 20px;
  background-color: #f1f1f1;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: clamp(16px, 2.5vw, 22px);
}
.system-tab a.active {
  background-color: #F2E3E9;
}

.system_box {
  display: none;
  background-color: #F2E3E9;
}

.system-flow {
  padding: 60px 30px 40px 30px;
}
.system-flow li {
  background-color: #fff;
  padding: 30px;
  position: relative;
  margin-bottom: 60px;
  counter-increment: step-counter;
}
.system-flow li span {
  position: absolute;
  background-image: url(../img/page/system/step.png);
  background-size: cover;
  width: 93px;
  height: 109px;
  left: 20px;
  top: -17px;
  background-size: cover;
  color: #fff;
  font-size: 35px;
  font-family: "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  padding-top: 38px;
  padding-left: 43px;
}
.system-flow li:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #FFF transparent transparent transparent;
  border-width: 20px 20px 0 20px;
}
.system-flow li:last-of-type:after {
  display: none;
}
.system-flow li h4 {
  color: #84416F;
  font-family: "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-weight: bold;
  font-size: clamp(16px, 3.5vw, 27px);
  margin-bottom: 40px;
  padding-left: 110px;
  line-height: 1.6;
}
.system-flow li .system-flex {
  display: flex;
  align-items: flex-start;
  gap: 3vw;
}
.system-flow li .system-flex .system-flex-left {
  width: 67%;
}
.system-flow li .system-flex img {
  margin: 0 auto;
  max-width: 338px;
  width: 33%;
}
@media screen and (max-width: 960px) {
  .system-flow li .system-flex {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .system-flow li .system-flex .system-flex-left, .system-flow li .system-flex img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .system-flow {
    padding: 60px 0 30px 0;
  }
  .system-flow li {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 768px) and (max-width: 510px) {
  .system-flow li {
    padding-top: 20px;
  }
  .system-flow li span {
    position: absolute;
    background-image: url(../img/page/system/step.png);
    background-size: cover;
    width: 61px;
    height: 71px;
    left: 20px;
    top: -11px;
    background-size: cover;
    color: #fff;
    font-size: 22px;
    font-family: "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
    padding-top: 25px;
    padding-left: 28px;
  }
  .system-flow li h4 {
    padding-left: 75px;
    margin-bottom: 30px;
    line-height: 1.3;
  }
}

.system-small {
  padding-top: 10px;
  border-top: 1px solid #707070;
  font-size: 14px;
}
@media screen and (max-width: 430px) {
  .system-small {
    font-size: 12px;
  }
}

.gray-box {
  background-color: #F1F1F1;
  padding: 10px 20px;
}

.system-flow li .system-flex .system-flex-left .gray-box {
  background-color: #F1F1F1;
  padding: 10px 20px;
}
.system-flow li .system-flex .system-flex-left .gray-box .img-box1 {
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
}
.system-flow li .system-flex .system-flex-left .gray-box .img-box1 img {
  width: 30%;
  height: auto;
  max-width: 100%;
  min-width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.system-flow li .system-flex .system-flex-left .gray-box .img-planning img {
  width: calc(50% - 10px);
  min-width: 180px;
}
@media screen and (max-width: 768px) {
  .system-flow li .system-flex .system-flex-left .gray-box {
    padding: 10px;
  }
}

.system-box2 h4 {
  font-family: "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(18px, 4.5vw, 32px);
  text-align: center;
  position: relative;
  margin-bottom: 38px;
}
.system-box2 h4:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  background-color: #DEBECC;
  bottom: -10px;
  left: 0;
}
.system-box2 h4:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 10px;
  background-color: #B79FCB;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.system-box2 .system-text {
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .system-box2 .system-text {
    padding: 0 20px;
  }
}
@media screen and (max-width: 430px) {
  .system-box2 .system-text {
    padding: 0 10px;
  }
}

.blog-latest {
  position: relative;
  display: inline-block;
  width: 90%;
  margin-bottom: 50px;
}
.blog-latest img {
  width: 100%;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.blog-latest .blog-link-img img {
  transition: 0.5s;
}
.blog-latest .blog-link-img img:hover {
  opacity: 0.9;
}
.blog-latest .blog-link {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(242, 227, 233, 0.8);
  padding: 10px 15px;
  font-size: clamp(14px, 2.5vw, 20px);
  font-family: "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-weight: 500;
  transition: 0.5s;
  display: inline-block;
  cursor: pointer;
}
.blog-latest .blog-link:hover {
  background-color: #F2E3E9;
}
.blog-latest .blog-link time {
  color: #84416F;
  padding-right: 20px;
}
@media screen and (max-width: 600px) {
  .blog-latest {
    width: 100%;
  }
  .blog-latest img {
    max-height: 300px;
  }
  .blog-latest a {
    position: relative;
    background-color: #F2E3E9;
  }
  .blog-latest a time {
    display: block;
    margin-bottom: 2px;
  }
  .blog-latest a:hover {
    background-color: #DEBECC;
  }
}

.blog-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.blog-inner dl {
  width: calc(50% - 20px);
}
.blog-inner dl dt {
  background-color: #000;
  color: #fff;
}
.blog-inner dl dt h4 {
  padding: 20px 30px;
  font-size: clamp(16px, 1.4vw, 18px);
}
.blog-inner dl dt h4 span {
  font-family: "ropa-sans-pro", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "Noto Sans JP", "ＭＳ Ｐゴシック", "Helvetica Neue", sans-serif;
  font-size: clamp(24px, 2.5vw, 30px);
  display: block;
  line-height: 1.2;
}
.blog-inner dl dd {
  position: relative;
  display: inline-block;
  width: 100%;
}
.blog-inner dl dd .blog-link-img {
  transition: 0.5s;
}
.blog-inner dl dd .blog-link-img:hover {
  opacity: 0.8;
}
.blog-inner dl dd img {
  display: block;
  width: 100%;
  height: auto;
}
.blog-inner dl dd .blog-link {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(242, 227, 233, 0.8);
  padding: 10px 15px;
  font-size: clamp(14px, 2.5vw, 16px);
  font-family: "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-weight: 500;
  transition: 0.5s;
  display: inline-block;
  cursor: pointer;
  text-align: center;
}
.blog-inner dl dd .blog-link:hover {
  background-color: #F2E3E9;
}
.blog-inner dl dd .blog-link time {
  color: #84416F;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .blog-inner {
    flex-direction: column;
  }
  .blog-inner dl {
    width: 100%;
  }
  .blog-inner dl dt h4 {
    padding: 20px 30px;
    font-size: 16px;
  }
  .blog-inner dl dt h4 span {
    line-height: 1.5;
  }
}
@media screen and (max-width: 600px) {
  .blog-inner dl dt h4 {
    padding: 20px;
    font-size: 16px;
  }
  .blog-inner dl dt h4 span {
    line-height: 1.5;
  }
  .blog-inner dl dd .blog-link {
    position: relative;
    background-color: #F2E3E9;
  }
  .blog-inner dl dd .blog-link:hover {
    background-color: #DEBECC;
  }
  .blog-inner dl dd .blog-link time {
    display: block;
    margin-bottom: 2px;
  }
}

.blog-writer {
  background-color: #000;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
  color: #fff;
}
.blog-writer .blog-left {
  width: 30%;
  text-align: center;
}
.blog-writer .blog-left img {
  min-width: 180px;
}
.blog-writer .blog-right {
  width: 66%;
}
.blog-writer .blog-right h3 {
  font-family: "ropa-sans-pro", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "Noto Sans JP", "ＭＳ Ｐゴシック", "Helvetica Neue", sans-serif;
  font-size: clamp(30px, 7vw, 75px);
  line-height: 1;
  color: #aeaeae;
  margin-bottom: 3px;
}
.blog-writer .blog-right .blog-name {
  font-size: clamp(18px, 3.5vw, 32px);
  font-weight: bold;
  line-height: 1.1;
}
.blog-writer .blog-right .blog-name span {
  font-size: clamp(15px, 2.2vw, 20px);
  font-weight: normal;
  padding-left: 15px;
}
.blog-writer .blog-right .blog-text {
  border-top: 1px solid #707070;
  margin-top: 10px;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .blog-writer {
    padding: 30px 20px;
    flex-direction: column;
    gap: 20px;
  }
  .blog-writer h3 {
    text-align: center;
  }
  .blog-writer .blog-right .blog-name {
    text-align: center;
  }
  .blog-writer .blog-right .blog-name span {
    padding-left: 10px;
  }
  .blog-writer .blog-left {
    width: 100%;
  }
  .blog-writer .blog-left img {
    max-width: 190px;
  }
  .blog-writer .blog-right {
    width: 100%;
  }
}

.h3-pink {
  font-family: "ropa-sans-pro", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "Noto Sans JP", "ＭＳ Ｐゴシック", "Helvetica Neue", sans-serif;
  font-size: clamp(32px, 8vw, 100px);
  color: #DEBECC;
  line-height: 1;
  margin-bottom: 10px;
}
.h3-pink span {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "Noto Sans JP", "ＭＳ Ｐゴシック", "Helvetica Neue", sans-serif;
  font-size: clamp(14px, 2.5vw, 23px);
  color: #2a2a2a;
  padding-left: 20px;
  text-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .h3-pink {
    text-align: center;
    line-height: 1.3;
  }
  .h3-pink span {
    display: block;
    padding-left: 0;
    text-wrap: wrap;
  }
}

.works-category {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 20px;
}
.works-category li {
  width: calc(33.333% - 20px);
  position: relative;
}
.works-category li a {
  display: block;
  transition: 0.5s;
}
.works-category li a:hover .works-img-wrap .img-area .works-title {
  transform: translateX(10px);
}
.works-category li a .works-img-wrap .img-area {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.works-category li a .works-img-wrap .img-area .works-img {
  width: 100%;
  height: auto;
  display: block;
}
.works-category li a .works-img-wrap .img-area .works-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  padding: 0 15px;
  font-family: "ropa-sans-pro", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "Noto Sans JP", "ＭＳ Ｐゴシック", "Helvetica Neue", sans-serif;
  font-size: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  transition: 0.5s;
}
.works-category li a .works-img-wrap .img-area .category-title {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: bold;
  margin-bottom: 10px;
}
.works-category li a .works-img-wrap .img-area .category-title img {
  padding-bottom: 5px;
}
.works-category li a .works-img-wrap .works-text {
  background-color: #B79FCB;
  color: #fff;
  padding: 10px 15px;
  font-size: clamp(13.5px, 1.5vw, 16px);
  height: 68px;
}
@media screen and (max-width: 768px) {
  .works-category {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .works-category li {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 500px) {
  .works-category {
    flex-direction: column;
    row-gap: 50px;
  }
  .works-category li {
    width: 100%;
  }
  .works-category li a .works-img-wrap .works-text {
    font-size: 14px;
    height: 58px;
  }
}

.works-ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 35px;
       column-gap: 35px;
  row-gap: 40px;
  margin: 0 auto 60px auto;
}
.works-ul li {
  height: 100%;
}
.works-ul li a {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 768px) {
  .works-ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .works-ul {
    display: block;
  }
  .works-ul li {
    width: 100%;
    margin-bottom: 50px;
  }
}

.works-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.works-item .thumb-wrap {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f8f8f8;
}
.works-item .thumb-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: 0.5s;
}
.works-item .thumb-wrap img:hover {
  opacity: 0.8;
}
.works-item .works-title2 {
  font-size: 16px;
  margin-top: 8px;
  font-weight: bold;
  text-align: left;
  transition: 0.5s;
}
.works-item .works-title2:hover {
  color: #7c7b7b;
}
.works-item .link-more {
  display: block;
  margin-top: 8px;
  padding: 5px 15px;
  width: 100%;
  background-color: #bbbbbb;
  color: #fff;
  font-size: clamp(18px, 2vw, 22px);
  font-family: "ropa-sans-pro", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "Noto Sans JP", "ＭＳ Ｐゴシック", "Helvetica Neue", sans-serif;
  text-align: center;
  transition: 0.5s;
}
.works-item .link-more:hover {
  background-color: #000;
}
.works-item time {
  text-align: left;
  color: #84416F;
  margin: 5px 0;
}
.works-item .blog-title {
  margin-top: 0;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  margin-bottom: 5px;
}
.works-item .blog-short-text {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* ← 表示したい行数を指定 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* single.php */
.blog-time {
  text-align: left;
  color: #84416F;
  margin-bottom: 10px;
}

.blog-content {
  text-align: left;
  margin-bottom: 50px;
}
.blog-content img {
  width: auto;       /* 元画像の幅を維持 */
  max-width: 100%;   /* 画面幅を超えないように調整 */
  max-width: 700px;  /* 700px 以上にはならない */
  height: auto;      /* 縦横比を維持 */
  display: block;    /* 下に余白ができるのを防ぐ */
  margin: 0 auto;    /* 中央寄せ */
}
.evn-content img {
  width: 100%;
  max-width: 700px;
  height: auto; /* 縦横比を維持 */
  display: block; /* 下に余白ができるのを防ぐ */
  margin: 0 auto;
}

.blog-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.eyecatch {
  margin-bottom: 20px;
  text-align: center;
}
.eyecatch img {
  width: 100%;
  max-width: 700px;
  height: auto; /* 縦横比を維持 */
  display: block; /* 下に余白ができるのを防ぐ */
  max-width: 700px;
  margin: 0 auto;
}

.works-taxonomy {
  white-space: normal; /* 折り返し可 */
  word-wrap: break-word;
  font-size: 14px;
  margin-bottom: 20px;
  padding: 5px 10px;
  background-color: #F2E3E9;
  width: -moz-fit-content;
  width: fit-content;
}

.blog-ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.blog-ul li {
  width: calc((100% - 70px) / 3);
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .blog-ul li {
    width: calc((100% - 35px) / 2);
  }
}
@media screen and (max-width: 500px) {
  .blog-ul {
    display: block;
  }
  .blog-ul li {
    width: 100%;
    margin-bottom: 50px;
  }
}
.title-evn {
  font-size: clamp(16px, 3vw, 30px);
  text-align: center;
  margin-bottom: 30px;
}
.blog-content p {
  margin-top: 10px;
  margin-bottom: 10px;
}
.width960 {  
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}
.blog-content2 p + p {
  margin-top: 2em; /* 調整用 */
}
.blog-content figure {
  margin-bottom: 20px;
}
.blog-content p a img {
  display: inline-block;
}