@charset "UTF-8";

/* DEBUG */
html { outline: 4px solid lime !important; }

/*
2024.05
【PC】960px〜1280px
【タブレット】768px〜960px
【スマホ】375px〜428px
*/
html {
  -webkit-box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  box-sizing: border-box;
  word-break: normal;
  tab-size: 4;
}

*,
::before,
::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  background-repeat: no-repeat;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  margin: 0;
  padding: 0;
}

/* General elements */
hr {
  height: 0;
  overflow: visible;
}

details,
main {
  display: block;
}

summary {
  display: list-item;
}

ol,
ul,
dl {
  list-style: none;
}

em {
  font-style: normal;
}

small {
  font-size: 0.875em;
}

[hidden] {
  display: none;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline-width: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace;
}

pre {
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms */
input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
}

optgroup {
  font-weight: bold;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  color: inherit;
  cursor: pointer;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button,
input,
select,
textarea {
  border-style: none;
  background-color: transparent;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  display: table;
  max-width: 100%;
  border: 0;
  color: inherit;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

/* Specify media element style */
img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

svg:not([fill]) {
  fill: currentColor;
}

/* Accessibility */
[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 0.7142857vw;
}

body {
  -webkit-text-size-adjust: 100%;
  background-color: #ffffff;
  color: #717171;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  font-family: "Noto Sans JP", sans-serif;
}

img {
  -webkit-backface-visibility: hidden;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  backface-visibility: hidden;
}

a {
  -webkit-transition: color 0.25s ease-out, border-color 0.25s ease-out, background-color 0.25s ease-out;
  color: #717171;
  text-decoration: none;
  transition: color 0.25s ease-out, border-color 0.25s ease-out, background-color 0.25s ease-out;
}

a img {
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
}

button {
  border: none;
  cursor: pointer;
}

/* ======================================================
▼header
========================================================= */
.header {
  position: relative;
  background-color: #E7D8EA;
}

.header-fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #E7D8EA;
  transform: translateY(-100%);
  transition: transform .5s cubic-bezier(0.25, 1, 0.5, 1);
}

.header-fixed.show {
  transform: translateY(0);
}

.header__logo {
  width: 78px;
}

.header__inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.header__menu {
  display: flex;
  gap: 40px;
}

.header__menu__list {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header__menu__list .menu+.menu {
  position: relative;
  margin-left: 28px;
}

.header__menu__list .menu {
  display: inline-flex;
}

.header__menu__list .menu a {
  -webkit-transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  color: #717171;
  font-size: 12px;
  font-family: "Junge", cursive;
  line-height: 1;
  transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.header__menu__list .menu a::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scale(0, 1);
  transform-origin: right top;
  background-color: #717171;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.header__menu__list .menu a:hover::before {
  transform: scale(1, 1);
  transform-origin: left top;
}

.header__menu__list .menu.-button a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: color 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  border: 1px solid #717171;
  transition: color 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.header__menu__list .menu.-button a::before {
  display: none;
}

.header__menu__list .menu.-button a .text {
  -webkit-transition: border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 4px 11px 5px 13px;
  border-right: 1px solid #717171;
  transition: border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.header__menu__list .menu.-button a .arrow {
  padding: 0 5px;
}

.header__menu__list .menu.-button a .arrow path {
  -webkit-transition: fill 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transition: fill 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.header__menu__list .menu.-button a:hover {
  background-color: #717171;
  color: #E7D8EA;
  opacity: 1;
}

.header__menu__list .menu.-button a:hover .text {
  border-color: #E7D8EA;
}

.header__menu__list .menu.-button a:hover .arrow path {
  fill: #E7D8EA;
}

/*--- snsアイコン
---------------------------------------------------- */
.header__sns {
  display: flex;
}

.header__sns .sns {
  width: 33px;
}

.header__sns .linkedin {
  margin-left: 5px;
}

.header__sns .x {
  margin-left: 1px;
}

.header__sns .sns.instagram img {
  width: 80%;
  height: auto;
  margin: 0 auto;
  display: block;
}


.header__sns .sns a img {
  -webkit-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header__sns .sns a:hover img {
  opacity: 0.5;
}


/* ======================================================
▼footer
========================================================= */
.footer {
  padding: 30px 0;
  text-align: center;
}

.footer .copyright {
  font-weight: 400;
  font-size: 10px;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.1em;
}

/*
* ここからトップページ
*/
/* ============================================
▼secArticle
===============================================*/
.c-secArticle--title {
  margin-bottom: 3%;
  color: #717171;
  font-weight: 400;
  font-size: 40px;
  font-family: "Junge", cursive;
}

.c-secArticle__name {
  margin: 0 0 0;
  padding-top: 12px;
  color: #717171;
  font-weight: 400;
  font-family: "Shippori Mincho B1", serif;
  letter-spacing: 0.1em;
}

.c-secArticle__name .post {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
}

.c-secArticle__name .name {
  font-size: 20px;
}

.c-secArticle__name .name .small {
  font-size: 0.7em;
  font-family: "Junge", cursive;
  letter-spacing: 0;
  margin-left: 15px;
}

.c-secArticle--text {
  width: 100%;
  font-weight: 200;
  font-size: 14px;
  line-height: 2.5;
  letter-spacing: 0.1em;
}



/*
* ここからトップページ
*/
/* ============================================
▼共通
===============================================*/
.wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 100px;
}

/* --- ▼全体表示アニメーション
--------------------------------------------- */

body {
  opacity: 0;
  transition: opacity 2s cubic-bezier(0.25, 1, 0.5, 1);
}

body.show {
  opacity: 1;
}

/* --- ▼スクロールしたら表示
--------------------------------------------- */

.js-hukidasiFadein-item {
  opacity: 0;
  transform: translate(0, 50px);
  transition: opacity 1.3s cubic-bezier(0.25, 1, 0.5, 1), transform 1.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* アクティブ */
.js-hukidasiFadein-item.active {
  opacity: 1;
  transform: translate(0, 0);
}


/* ============================================
▼fv
===============================================*/
.fv {
  padding-top: 110px;
  background-color: #E7D8EA;
}

.fv__logo {
  margin-bottom: 110px;
}

.fv__logo img {
  width: 330px;
}

.fv__image {
  position: relative;
  width: 100%;
  height: 70rem;
  background-image: url("../images/top/fv.webp");
  background-position: center;
  background-size: cover;
}

.fv__image__item {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 0;
  right: 10.5%;
  width: 158px;
  transform: translateY(-50%);
}

.fv__image__item img {
  -webkit-animation: rotation 10s linear infinite;
  animation: rotation 10s linear infinite;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }

  100% {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }

  100% {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

/* ============================================
▼works
===============================================*/
.works {
  margin: 110px 0 180px;
  overflow: hidden;
}

.works .c-secArticle--text {
  font-size: 18px;
  line-height: 1.9444;
  font-family: "Shippori Mincho B1", serif;
}

.works__feature {
  max-width: 1140px;
  margin-top: 60px;
}

.works__feature .works__feature__block {
  display: flex;
  align-items: center;
}

.works__feature .works__feature__block+.works__feature__block {
  margin-top: 27px;
}

.works__feature .works__feature__block__title {
  color: #717171;
  width: 330px;
  border-right: 1px solid #717171;
  padding: 13px 0;
}

.works__feature .works__feature__block__title .number {
  font-size: 30px;
  font-family: "Junge", cursive;
  display: block;
}

.works__feature .works__feature__block__title .title {
  font-size: 18px;
  letter-spacing: 0.1em;
  font-family: "Shippori Mincho B1", serif;
}

.works__feature .works__feature__block--text {
  color: #717171;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-weight: 200;
  width: calc(100% - 330px);
  padding-left: 24px;
}

.works__slide {
  width: 100%;
  height: 422px;
  max-width: 1140px;
  position: relative;
  margin: 80px auto;
}

.works__slide .works__slide__inner {
  position: absolute;
  top: 0;
  left: 100px;
}

.works__slide .splide-wrapper {
  overflow: hidden;
}

.works__slide .splide-wrapper__track {
  overflow: visible;
}

.works__slide .splide {
  width: calc(100vw - 100px);
}

.works__slide .splide__slide img {
  /* width: 100%;
  height: auto; */
  width: 456px;
  height: 342px;
  object-fit: cover;
}

.works__slide .splide-controller {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  /* 矢印のクリック範囲など */
}

.works__slide .splide-controller .splide__arrows {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: min(80%, 838px);
}

.works__slide .splide-controller .button {
  -webkit-transform: translate(0, 0);
  opacity: 1;
  position: initial;
  width: auto;
  height: auto;
  transform: translate(0, 0);
  border-radius: 0;
  background-color: transparent;
  transition: background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.works__slide .splide-controller .button:hover {
  background-color: #717171;
  opacity: 1;
}

.works__slide .splide-controller .button svg {
  -webkit-transform: none;
  width: 40px;
  height: 40px;
  transform: none;
}

.works__slide .splide-controller .button svg path {
  transition: fill 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.works__slide .splide-controller .button:hover svg path {
  fill: #fff;
}

.works__record {
  width: 100%;
  max-width: 1140px;
}

.works__record--title {
  margin-bottom: 4.6%;
  color: #717171;
  font-weight: 400;
  font-size: 20px;
  font-family: "Shippori Mincho B1", serif;
  letter-spacing: 0.1em;
}

.works__record__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 min(4rem, 40px) 1.9%;
  color: #717171;
  font-size: 16px;
  line-height: 2.185;
  font-family: "Junge", cursive;
}

.works__record__category .category {
  width: 150px;
}

.works__record__category .day {
  width: 140px;
  min-width: 125px;
  display: inline-block;
}

.works__record__category .title {
  width: calc(100% - (150px + 140px));
}

.works__record__list__item {
  padding: 1.87% min(4rem, 40px);
  border-top: 1px solid #717171;
  color: #717171;
}

.works__record__list__item:last-of-type {
  border-bottom: 1px solid #717171;
}

.works__record__list__item .category,
.works__record__list__item .day {
  line-height: 2.1875;
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.works__record__list__item .category {
  font-size: 13px;
  font-weight: 200;
  display: inline-block;
  width: 150px;
}

.works__record__list__item .day {
  display: inline-block;
  font-size: 14px;
  font-family: "Junge", cursive;
  width: 140px;
  min-width: 125px;
}

.works__record__list__item .title {
  width: calc(100% - (150px + 140px));
  display: block;
  font-weight: 200;
  font-size: 13px;
  line-height: 2.5;
  letter-spacing: 0.1em;
}

.works__record__list__item .title .border {
  background-image: linear-gradient(90deg, #717171, #717171);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 0 1px;
  text-decoration: none;
  transition: background-size 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.works__record__list__item a {
  width: 100%;
  color: #717171;
  display: flex;
}

.works__record__list__item a:hover .title .border {
  background-size: 100% 1px;
  background-position: left bottom;
}

/* ============================================
▼about
===============================================*/
.about {
  margin: 105px auto 148px;
}

.about__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 85rem;
  max-height: 850px;
  margin-top: 53px;
}

.about__layout__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
}

.about__layout__block {
  width: 44%;
  border-left: 1px solid #717171;
}

.about__layout__block.-block02,
.about__layout__block.-block04 {
  margin-left: 8%;
}

.about__layout__block.-block03 {
  margin-left: 4%;
}

.about__layout__block__inner {
  position: relative;
}

.about__layout__block--image {
  width: 100%;
}

.about__layout__block--text {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  position: absolute;
  left: 3%;
  color: #717171;
  font-size: 12px;
  font-family: "Junge", cursive;
  writing-mode: vertical-rl;
}

.about__layout__block.-block01 {
  padding-top: 20.75%;
}

.about__layout__block.-block01 .about__layout__block--text {
  -webkit-transform: rotate(180deg) translateY(-100%);
  bottom: -9%;
  transform: rotate(180deg) translateY(-100%);
}

.about__layout__block.-block02 {
  padding-top: 60%;
}

.about__layout__block.-block02 .about__layout__block--text {
  -webkit-transform: rotate(180deg) translateY(100%);
  top: -8.5%;
  transform: rotate(180deg) translateY(100%);
}

.about__layout__block.-block03 {
  padding-top: 28.2%;
}

.about__layout__block.-block03 .about__layout__block--text {
  -webkit-transform: rotate(180deg) translateY(-100%);
  bottom: -7.9%;
  transform: rotate(180deg) translateY(-100%);
}

.about__layout__block.-block04 {
  padding-top: 49.5%;
}

.about__layout__block.-block04 .about__layout__block--text {
  -webkit-transform: rotate(180deg) translateY(100%);
  top: -11.4%;
  transform: rotate(180deg) translateY(100%);
}

/* ============================================
▼company
.company {
  width: 100%;
  max-width: 1140px;
  margin-bottom: 312px;
}
.company__list {
  width: 100%;
  max-width: 940px;
}
===============================================*/
.company {
  width: 100%;
  max-width: 1400px;
  margin-bottom: 312px;
}

.company--title {
  margin-bottom: 4.4%;
  color: #717171;
  font-weight: 400;
  font-size: 20px;
  font-family: "Shippori Mincho B1", serif;
  letter-spacing: 0.1em;
}

.company__list {
  width: 100%;
  max-width: 1400px;
}

.company__list__block {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.7% 0 1.8% 0;
  gap: 11%;
  border-top: 1px solid #717171;
  color: #717171;
  font-weight: 200;
  letter-spacing: 0.1em;
}

.company__list__block:last-of-type {
  border-bottom: 1px solid #717171;
}

.company__list__block dt {
  -moz-text-align-last: justify;
  width: 3.3em;
  font-size: 16px;
  line-height: 2.1875;
  text-align: justify;
  text-align-last: justify;
}

.company__list__block dd {
  width: 10em;
  margin-right: 3.8em;
  font-size: 18px;
  line-height: 1.944;
}

.is-sp {
  display: none !important;
}

/* display */
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-i-block {
  display: inline-block !important;
}

.d-table {
  display: table !important;
}

.d-t-row {
  display: table-row !important;
}

.d-t-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-i-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

/* overflow */
.of-auto {
  overflow: auto;
}

.of-hidden {
  overflow: hidden;
}

/* visibility */
.hidden {
  visibility: hidden !important;
}

.visible {
  visibility: visible !important;
}

/* hover */
.hover-opacity {
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
}

.hover-opacity:hover {
  opacity: 0.8;
}

/* float */
.fl-left {
  float: left !important;
}

.fl-right {
  float: right !important;
}

.fl-none {
  float: none !important;
}

/* clearfix */
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.clear-both {
  clear: both !important;
}

/* font-weight */
.fw-normal {
  font-weight: normal !important;
}

.fw-bold {
  font-weight: bold !important;
}

/* font-size */
.fs-sm {
  font-size: 1.4rem !important;
}

.fs-md {
  font-size: 1.6rem !important;
}

.fs-lg {
  font-size: 1.8rem !important;
}

.fs-xl {
  font-size: 2rem !important;
}

.fs-xxl {
  font-size: 2.2rem !important;
}

/* margin */
.m-auto {
  margin: 0 auto !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.ml-35 {
  margin-left: 35px !important;
}

.mr-35 {
  margin-right: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.ml-45 {
  margin-left: 45px !important;
}

.mr-45 {
  margin-right: 45px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.mt-55 {
  margin-top: 55px !important;
}

.mb-55 {
  margin-bottom: 55px !important;
}

.ml-55 {
  margin-left: 55px !important;
}

.mr-55 {
  margin-right: 55px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.mt-65 {
  margin-top: 65px !important;
}

.mb-65 {
  margin-bottom: 65px !important;
}

.ml-65 {
  margin-left: 65px !important;
}

.mr-65 {
  margin-right: 65px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.mr-70 {
  margin-right: 70px !important;
}

.mt-75 {
  margin-top: 75px !important;
}

.mb-75 {
  margin-bottom: 75px !important;
}

.ml-75 {
  margin-left: 75px !important;
}

.mr-75 {
  margin-right: 75px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.mt-85 {
  margin-top: 85px !important;
}

.mb-85 {
  margin-bottom: 85px !important;
}

.ml-85 {
  margin-left: 85px !important;
}

.mr-85 {
  margin-right: 85px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.ml-90 {
  margin-left: 90px !important;
}

.mr-90 {
  margin-right: 90px !important;
}

.mt-95 {
  margin-top: 95px !important;
}

.mb-95 {
  margin-bottom: 95px !important;
}

.ml-95 {
  margin-left: 95px !important;
}

.mr-95 {
  margin-right: 95px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.ml-100 {
  margin-left: 100px !important;
}

.mr-100 {
  margin-right: 100px !important;
}

/* padding */
.pt-0 {
  padding-top: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pl-35 {
  padding-left: 35px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pt-45 {
  padding-top: 45px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.pl-45 {
  padding-left: 45px !important;
}

.pr-45 {
  padding-right: 45px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pt-55 {
  padding-top: 55px !important;
}

.pb-55 {
  padding-bottom: 55px !important;
}

.pl-55 {
  padding-left: 55px !important;
}

.pr-55 {
  padding-right: 55px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pt-65 {
  padding-top: 65px !important;
}

.pb-65 {
  padding-bottom: 65px !important;
}

.pl-65 {
  padding-left: 65px !important;
}

.pr-65 {
  padding-right: 65px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.pt-75 {
  padding-top: 75px !important;
}

.pb-75 {
  padding-bottom: 75px !important;
}

.pl-75 {
  padding-left: 75px !important;
}

.pr-75 {
  padding-right: 75px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.pt-85 {
  padding-top: 85px !important;
}

.pb-85 {
  padding-bottom: 85px !important;
}

.pl-85 {
  padding-left: 85px !important;
}

.pr-85 {
  padding-right: 85px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pl-90 {
  padding-left: 90px !important;
}

.pr-90 {
  padding-right: 90px !important;
}

.pt-95 {
  padding-top: 95px !important;
}

.pb-95 {
  padding-bottom: 95px !important;
}

.pl-95 {
  padding-left: 95px !important;
}

.pr-95 {
  padding-right: 95px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pl-100 {
  padding-left: 100px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

/* text-align */
.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

/* vertical-align */
.va-top {
  vertical-align: top !important;
}

.va-middle {
  vertical-align: middle !important;
}

.va-bottom {
  vertical-align: bottom !important;
}

/* white-space */
.ws-nowrap {
  white-space: nowrap !important;
}

/* width(px) 5-400 */
.w-5 {
  width: 5px !important;
}

.w-10 {
  width: 10px !important;
}

.w-15 {
  width: 15px !important;
}

.w-20 {
  width: 20px !important;
}

.w-25 {
  width: 25px !important;
}

.w-30 {
  width: 30px !important;
}

.w-35 {
  width: 35px !important;
}

.w-40 {
  width: 40px !important;
}

.w-45 {
  width: 45px !important;
}

.w-50 {
  width: 50px !important;
}

.w-55 {
  width: 55px !important;
}

.w-60 {
  width: 60px !important;
}

.w-65 {
  width: 65px !important;
}

.w-70 {
  width: 70px !important;
}

.w-75 {
  width: 75px !important;
}

.w-80 {
  width: 80px !important;
}

.w-85 {
  width: 85px !important;
}

.w-90 {
  width: 90px !important;
}

.w-95 {
  width: 95px !important;
}

.w-100 {
  width: 100px !important;
}

.w-105 {
  width: 105px !important;
}

.w-110 {
  width: 110px !important;
}

.w-115 {
  width: 115px !important;
}

.w-120 {
  width: 120px !important;
}

.w-125 {
  width: 125px !important;
}

.w-130 {
  width: 130px !important;
}

.w-135 {
  width: 135px !important;
}

.w-140 {
  width: 140px !important;
}

.w-145 {
  width: 145px !important;
}

.w-150 {
  width: 150px !important;
}

.w-155 {
  width: 155px !important;
}

.w-160 {
  width: 160px !important;
}

.w-165 {
  width: 165px !important;
}

.w-170 {
  width: 170px !important;
}

.w-175 {
  width: 175px !important;
}

.w-180 {
  width: 180px !important;
}

.w-185 {
  width: 185px !important;
}

.w-190 {
  width: 190px !important;
}

.w-195 {
  width: 195px !important;
}

.w-200 {
  width: 200px !important;
}

.w-205 {
  width: 205px !important;
}

.w-210 {
  width: 210px !important;
}

.w-215 {
  width: 215px !important;
}

.w-220 {
  width: 220px !important;
}

.w-225 {
  width: 225px !important;
}

.w-230 {
  width: 230px !important;
}

.w-235 {
  width: 235px !important;
}

.w-240 {
  width: 240px !important;
}

.w-245 {
  width: 245px !important;
}

.w-250 {
  width: 250px !important;
}

.w-255 {
  width: 255px !important;
}

.w-260 {
  width: 260px !important;
}

.w-265 {
  width: 265px !important;
}

.w-270 {
  width: 270px !important;
}

.w-275 {
  width: 275px !important;
}

.w-280 {
  width: 280px !important;
}

.w-285 {
  width: 285px !important;
}

.w-290 {
  width: 290px !important;
}

.w-295 {
  width: 295px !important;
}

.w-300 {
  width: 300px !important;
}

.w-305 {
  width: 305px !important;
}

.w-310 {
  width: 310px !important;
}

.w-315 {
  width: 315px !important;
}

.w-320 {
  width: 320px !important;
}

.w-325 {
  width: 325px !important;
}

.w-330 {
  width: 330px !important;
}

.w-335 {
  width: 335px !important;
}

.w-340 {
  width: 340px !important;
}

.w-345 {
  width: 345px !important;
}

.w-350 {
  width: 350px !important;
}

.w-355 {
  width: 355px !important;
}

.w-360 {
  width: 360px !important;
}

.w-365 {
  width: 365px !important;
}

.w-370 {
  width: 370px !important;
}

.w-375 {
  width: 375px !important;
}

.w-380 {
  width: 380px !important;
}

.w-385 {
  width: 385px !important;
}

.w-390 {
  width: 390px !important;
}

.w-395 {
  width: 395px !important;
}

.w-400 {
  width: 400px !important;
}

/* width(%) 5-100 */
.w-5per {
  width: 5% !important;
}

.w-10per {
  width: 10% !important;
}

.w-15per {
  width: 15% !important;
}

.w-20per {
  width: 20% !important;
}

.w-25per {
  width: 25% !important;
}

.w-30per {
  width: 30% !important;
}

.w-35per {
  width: 35% !important;
}

.w-40per {
  width: 40% !important;
}

.w-45per {
  width: 45% !important;
}

.w-50per {
  width: 50% !important;
}

.w-55per {
  width: 55% !important;
}

.w-60per {
  width: 60% !important;
}

.w-65per {
  width: 65% !important;
}

.w-70per {
  width: 70% !important;
}

.w-75per {
  width: 75% !important;
}

.w-80per {
  width: 80% !important;
}

.w-85per {
  width: 85% !important;
}

.w-90per {
  width: 90% !important;
}

.w-95per {
  width: 95% !important;
}

.w-100per {
  width: 100% !important;
}

/* width(em) 5-20 */
.w-1em {
  width: 1em !important;
}

.w-2em {
  width: 2em !important;
}

.w-3em {
  width: 3em !important;
}

.w-4em {
  width: 4em !important;
}

.w-5em {
  width: 5em !important;
}

.w-6em {
  width: 6em !important;
}

.w-7em {
  width: 7em !important;
}

.w-8em {
  width: 8em !important;
}

.w-9em {
  width: 9em !important;
}

.w-10em {
  width: 10em !important;
}

.w-11em {
  width: 11em !important;
}

.w-12em {
  width: 12em !important;
}

.w-13em {
  width: 13em !important;
}

.w-14em {
  width: 14em !important;
}

.w-15em {
  width: 15em !important;
}

.w-16em {
  width: 16em !important;
}

.w-17em {
  width: 17em !important;
}

.w-18em {
  width: 18em !important;
}

.w-19em {
  width: 19em !important;
}

.w-20em {
  width: 20em !important;
}

/* width auto*/
.w-auto {
  width: auto !important;
}

@media screen {
  [hidden~=screen] {
    display: inherit;
  }

  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    clip: rect(0 0 0 0) !important;
    position: absolute !important;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 2.6041vw;
  }

  body {
    font-size: 14px;
  }

  /* ======================================================
  ▼header（sp）
  ========================================================= */
  .header {
    z-index: 9999;
    position: relative;
  }

  .header__wrap.wrapper {
    padding: 0;
  }

  .header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(0);
  }

  .header__logo {
    width: 90px;
  }

  .header-fade {
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .header-fade.show {
    opacity: 1;
  }

  .header__inner {
    width: 100%;
    height: 74px;
    padding: 0 5.73%;
  }

  .header__drawerMenu {
    z-index: 9999;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #E7D8EA;
  }

  .header__drawerMenu__inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-right: 50px;
  }

  .header__drawerMenu__logo {
    width: 89px;
    margin-bottom: 45px;
  }

  .header__drawerMenu__list {
    padding-left: 50px;
  }

  .header__drawerMenu__list .menu+.menu {
    padding-top: 45px;
  }

  .header__drawerMenu__list .menu a {
    color: #717171;
    font-size: 16px;
    font-family: "Junge", cursive;
  }

  .header__drawerMenu__list .menu.-button a {
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    border: 1px solid #717171;
  }

  .header__drawerMenu__list .menu.-button a .text {
    padding: 7px 25px 7px 20px;
    border-right: 1px solid #717171;
  }

  .header__drawerMenu__list .menu.-button a .arrow {
    padding: 0 10px;
  }

  .header__drawerMenu__list .menu.-button a .arrow svg {
    width: 11px;
    height: 11px;
  }

  .header__drawerMenu__sns {
    display: flex;
    justify-content: space-between;
    width: 188px;
    padding-left: 44px;
    margin-top: 65px;
  }

  .header__drawerMenu__sns .sns {
    width: 33px;
  }

  .header__drawerMenu {
    -webkit-transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  }

  /* アクティブ後のcss */
  .header__drawerMenu.active {
    visibility: inherit;
    opacity: 1;
  }

  .header__hamburger {
    display: block;
    margin-left: auto;
  }

  .header__hamburger__button {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 9999;
  }

  .header__hamburger__button .header__hamburger__button__inner {
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
  }

  .header__hamburger__button .header__hamburger__button__inner span {
    display: block;
    position: relative;
    height: 1px;
    margin: 0 auto;
    background: #717171;
  }

  .header__hamburger__button .header__hamburger__button__inner {
    -webkit-transform: rotate(-45deg);
    margin-top: 18px;
    transform: rotate(-45deg);
  }

  .header__hamburger__button .header__hamburger__button__inner span {
    width: 35px;
    transition: transform .3s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .header__hamburger__button .header__hamburger__button__inner span:nth-child(2) {
    margin-top: 8px;
    margin-left: 12px;
  }

  .header__hamburger.active .header__hamburger__button__inner span {
    display: block;
    width: 34px;
  }

  .header__hamburger.active .header__hamburger__button__inner span:nth-child(1) {
    -webkit-transform: rotate(90deg);
    top: 4px;
    left: 5px;
    transform: rotate(90deg);
  }

  .header__hamburger.active .header__hamburger__button__inner span:nth-child(2) {
    -webkit-transform: rotate(-180deg);
    top: -5px;
    left: -3px;
    transform: rotate(-180deg);
  }

  /* ======================================================
  ▼footer（sp）
  ========================================================= */
  .footer {
    padding: 38px 0;
  }

  /* ============================================
  ▼secArticle（sp）
  ===============================================*/
  .c-secArticle--title {
    margin-bottom: 25px;
    font-size: 35px;
  }

  .c-secArticle--text {
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7857;
  }

  .c-secArticle__name {
    margin: 9.5% 0 6%;
  }

  /* ============================================
  ▼共通(sp)
  ===============================================*/
  .wrapper {
    padding: 0 5.5vw;
  }

  /* ============================================
  ▼fv（sp）
  ===============================================*/
  .fv {
    padding-top: 105px;
  }

  .fv__logo {
    width: 67.2%;
    margin-bottom: 105px;
    margin-left: 0;
  }

  .fv__logo img {
    width: 214px;
  }

  .fv__image {
    height: 510px;
    background-image: url("../images/top/fv_sp.webp");
  }

  .fv__image__item {
    right: 7%;
    width: 121px;
  }

  /* ============================================
  ▼works（sp）
  ===============================================*/
  .works {
    margin: 73px 0 110px;
  }

  .works .c-secArticle--text {
    font-size: 16px;
    line-height: 1.6875;
  }

  .works__feature {
    margin-top: 55px;
  }

  .works__feature .works__feature__block {
    flex-direction: column;
  }

  .works__feature .works__feature__block+.works__feature__block {
    margin-top: 40px;
  }

  .works__feature .works__feature__block__title {
    width: 100%;
    border-right: none;
    margin-bottom: 15px;
    padding: 0;
  }

  .works__feature .works__feature__block__title .number {
    font-size: 40px;
  }

  .works__feature .works__feature__block__title .title {
    font-size: 20px;
  }

  .works__feature .works__feature__block--text {
    font-size: 14px;
    font-weight: 300;
    width: 100%;
    border-left: 1px solid #717171;
    padding-left: 15px;
  }

  .works__slide {
    height: 320px;
    margin: 55px 0 60px;
    padding-left: inherit;
  }

  .works__slide .splide {
    width: calc(100vw - 5.5vw);
  }

  .works__slide .splide__slide img {
    width: 278px;
    height: 267px;
  }

  .works__slide .works__slide__inner {
    left: 5.5%;
  }

  .works__slide .splide-controller {
    justify-content: flex-end;
    margin-bottom: 13px;
    padding-left: 0;
    padding-right: 5%;
  }

  .works__slide .splide-controller .splide__arrows {
    gap: 18px;
    padding-left: 0;
  }

  .works__slide .splide-controller .button:hover {
    background-color: transparent;
  }

  .works__slide .splide-controller .button:hover svg path {
    fill: #5F5F5F;
  }

  .works__record--title {
    margin-bottom: 35px;
    text-align: center;
  }

  .works__record__list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-wrap: wrap;
    padding: 17px 20px 26px;
  }

  .works__record__list__item a {
    display: block;
  }

  .works__record__list__item .category {
    font-size: 12px;
    font-weight: 300;
    width: auto;
  }

  .works__record__list__item .day {
    margin-left: 16px;
    font-size: 13px;
    width: auto;
  }

  .works__record__list__item .title {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7857;
    display: block;
    width: 100%;
    margin-top: 4px;
    margin-left: 0;
    background: none;
  }

  /* ============================================
  ▼about（sp）
  ===============================================*/
  .about {
    margin: 90px auto 80px;
  }

  .about__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 80.5rem;
    max-height: initial;
    margin-top: 50px;
    padding: 0 2%;
  }

  .about__layout__column {
    width: 100%;
    height: 50%;
    gap: 8%;
  }

  .about__layout__inner {
    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
  }

  .about__layout__block {
    width: 100%;
    height: auto;
  }

  .about__layout__block.-block03 {
    margin-left: 0;
  }

  .about__layout__block.-block02,
  .about__layout__block.-block04 {
    margin-left: 28px;
  }

  .about__layout__block--text {
    left: 5px;
    font-size: 8px;
  }

  .about__layout__block+.about__layout__block {
    margin-left: 0;
  }

  .about__layout__block.-block01 {
    padding-top: 14%;
  }

  .about__layout__block.-block01 .about__layout__block--text {
    bottom: -7%;
  }

  .about__layout__block.-block02 {
    padding-top: 62.5%;
  }

  .about__layout__block.-block02 .about__layout__block--text {
    top: -4%;
  }

  .about__layout__block.-block03 {
    padding-top: 0.2%;
  }

  .about__layout__block.-block03 .about__layout__block--text {
    bottom: -6%;
  }

  .about__layout__block.-block04 {
    padding-top: 41%;
  }

  .about__layout__block.-block04 .about__layout__block--text {
    top: -5%;
  }

  /* ============================================
  ▼company（sp）
  ===============================================*/
  .company {
    margin-bottom: 85px;
  }

  .company--title {
    margin-bottom: 35px;
    text-align: center;
  }

  .company__list__block {
    font-weight: 300;
    padding: 23px 0 24px;
    gap: 45px;
  }

  .company__list__block dt {
    font-size: 12px;
    line-height: 2.9166;
  }

  .company__list__block dd {
    margin-right: 0;
    font-size: 16px;
    line-height: 2.1875;
  }

  .is-pc {
    display: none !important;
  }

  .is-sp {
    display: block !important;
  }

  .sp-fl-none-sp {
    float: none !important;
  }

  .sp-fl-clear-sp {
    clear: both !important;
  }

  .sp-fs-sm {
    font-size: 1.2rem !important;
  }

  .sp-fs-md {
    font-size: 1.4rem !important;
  }

  .sp-fs-lg {
    font-size: 1.6rem !important;
  }

  .sp-fs-xl {
    font-size: 1.8rem !important;
  }

  .sp-fs-xxl {
    font-size: 2rem !important;
  }

  .sp-mt-0 {
    margin-top: 0px !important;
  }

  .sp-mb-0 {
    margin-bottom: 0px !important;
  }

  .sp-ml-0 {
    margin-left: 0px !important;
  }

  .sp-mr-0 {
    margin-right: 0px !important;
  }

  .sp-mt-5 {
    margin-top: 5px !important;
  }

  .sp-mb-5 {
    margin-bottom: 5px !important;
  }

  .sp-ml-5 {
    margin-left: 5px !important;
  }

  .sp-mr-5 {
    margin-right: 5px !important;
  }

  .sp-mt-10 {
    margin-top: 10px !important;
  }

  .sp-mb-10 {
    margin-bottom: 10px !important;
  }

  .sp-ml-10 {
    margin-left: 10px !important;
  }

  .sp-mr-10 {
    margin-right: 10px !important;
  }

  .sp-mt-15 {
    margin-top: 15px !important;
  }

  .sp-mb-15 {
    margin-bottom: 15px !important;
  }

  .sp-ml-15 {
    margin-left: 15px !important;
  }

  .sp-mr-15 {
    margin-right: 15px !important;
  }

  .sp-mt-20 {
    margin-top: 20px !important;
  }

  .sp-mb-20 {
    margin-bottom: 20px !important;
  }

  .sp-ml-20 {
    margin-left: 20px !important;
  }

  .sp-mr-20 {
    margin-right: 20px !important;
  }

  .sp-mt-25 {
    margin-top: 25px !important;
  }

  .sp-mb-25 {
    margin-bottom: 25px !important;
  }

  .sp-ml-25 {
    margin-left: 25px !important;
  }

  .sp-mr-25 {
    margin-right: 25px !important;
  }

  .sp-mt-30 {
    margin-top: 30px !important;
  }

  .sp-mb-30 {
    margin-bottom: 30px !important;
  }

  .sp-ml-30 {
    margin-left: 30px !important;
  }

  .sp-mr-30 {
    margin-right: 30px !important;
  }

  .sp-mt-35 {
    margin-top: 35px !important;
  }

  .sp-mb-35 {
    margin-bottom: 35px !important;
  }

  .sp-ml-35 {
    margin-left: 35px !important;
  }

  .sp-mr-35 {
    margin-right: 35px !important;
  }

  .sp-mt-40 {
    margin-top: 40px !important;
  }

  .sp-mb-40 {
    margin-bottom: 40px !important;
  }

  .sp-ml-40 {
    margin-left: 40px !important;
  }

  .sp-mr-40 {
    margin-right: 40px !important;
  }

  .sp-mt-45 {
    margin-top: 45px !important;
  }

  .sp-mb-45 {
    margin-bottom: 45px !important;
  }

  .sp-ml-45 {
    margin-left: 45px !important;
  }

  .sp-mr-45 {
    margin-right: 45px !important;
  }

  .sp-mt-50 {
    margin-top: 50px !important;
  }

  .sp-mb-50 {
    margin-bottom: 50px !important;
  }

  .sp-ml-50 {
    margin-left: 50px !important;
  }

  .sp-mr-50 {
    margin-right: 50px !important;
  }

  .sp-mt-55 {
    margin-top: 55px !important;
  }

  .sp-mb-55 {
    margin-bottom: 55px !important;
  }

  .sp-ml-55 {
    margin-left: 55px !important;
  }

  .sp-mr-55 {
    margin-right: 55px !important;
  }

  .sp-mt-60 {
    margin-top: 60px !important;
  }

  .sp-mb-60 {
    margin-bottom: 60px !important;
  }

  .sp-ml-60 {
    margin-left: 60px !important;
  }

  .sp-mr-60 {
    margin-right: 60px !important;
  }

  .sp-mt-65 {
    margin-top: 65px !important;
  }

  .sp-mb-65 {
    margin-bottom: 65px !important;
  }

  .sp-ml-65 {
    margin-left: 65px !important;
  }

  .sp-mr-65 {
    margin-right: 65px !important;
  }

  .sp-mt-70 {
    margin-top: 70px !important;
  }

  .sp-mb-70 {
    margin-bottom: 70px !important;
  }

  .sp-ml-70 {
    margin-left: 70px !important;
  }

  .sp-mr-70 {
    margin-right: 70px !important;
  }

  .sp-mt-75 {
    margin-top: 75px !important;
  }

  .sp-mb-75 {
    margin-bottom: 75px !important;
  }

  .sp-ml-75 {
    margin-left: 75px !important;
  }

  .sp-mr-75 {
    margin-right: 75px !important;
  }

  .sp-mt-80 {
    margin-top: 80px !important;
  }

  .sp-mb-80 {
    margin-bottom: 80px !important;
  }

  .sp-ml-80 {
    margin-left: 80px !important;
  }

  .sp-mr-80 {
    margin-right: 80px !important;
  }

  .sp-mt-85 {
    margin-top: 85px !important;
  }

  .sp-mb-85 {
    margin-bottom: 85px !important;
  }

  .sp-ml-85 {
    margin-left: 85px !important;
  }

  .sp-mr-85 {
    margin-right: 85px !important;
  }

  .sp-mt-90 {
    margin-top: 90px !important;
  }

  .sp-mb-90 {
    margin-bottom: 90px !important;
  }

  .sp-ml-90 {
    margin-left: 90px !important;
  }

  .sp-mr-90 {
    margin-right: 90px !important;
  }

  .sp-mt-95 {
    margin-top: 95px !important;
  }

  .sp-mb-95 {
    margin-bottom: 95px !important;
  }

  .sp-ml-95 {
    margin-left: 95px !important;
  }

  .sp-mr-95 {
    margin-right: 95px !important;
  }

  .sp-mt-100 {
    margin-top: 100px !important;
  }

  .sp-mb-100 {
    margin-bottom: 100px !important;
  }

  .sp-ml-100 {
    margin-left: 100px !important;
  }

  .sp-mr-100 {
    margin-right: 100px !important;
  }

  .sp-pt-0 {
    padding-top: 0px !important;
  }

  .sp-pb-0 {
    padding-bottom: 0px !important;
  }

  .sp-pl-0 {
    padding-left: 0px !important;
  }

  .sp-pr-0 {
    padding-right: 0px !important;
  }

  .sp-pt-5 {
    padding-top: 5px !important;
  }

  .sp-pb-5 {
    padding-bottom: 5px !important;
  }

  .sp-pl-5 {
    padding-left: 5px !important;
  }

  .sp-pr-5 {
    padding-right: 5px !important;
  }

  .sp-pt-10 {
    padding-top: 10px !important;
  }

  .sp-pb-10 {
    padding-bottom: 10px !important;
  }

  .sp-pl-10 {
    padding-left: 10px !important;
  }

  .sp-pr-10 {
    padding-right: 10px !important;
  }

  .sp-pt-15 {
    padding-top: 15px !important;
  }

  .sp-pb-15 {
    padding-bottom: 15px !important;
  }

  .sp-pl-15 {
    padding-left: 15px !important;
  }

  .sp-pr-15 {
    padding-right: 15px !important;
  }

  .sp-pt-20 {
    padding-top: 20px !important;
  }

  .sp-pb-20 {
    padding-bottom: 20px !important;
  }

  .sp-pl-20 {
    padding-left: 20px !important;
  }

  .sp-pr-20 {
    padding-right: 20px !important;
  }

  .sp-pt-25 {
    padding-top: 25px !important;
  }

  .sp-pb-25 {
    padding-bottom: 25px !important;
  }

  .sp-pl-25 {
    padding-left: 25px !important;
  }

  .sp-pr-25 {
    padding-right: 25px !important;
  }

  .sp-pt-30 {
    padding-top: 30px !important;
  }

  .sp-pb-30 {
    padding-bottom: 30px !important;
  }

  .sp-pl-30 {
    padding-left: 30px !important;
  }

  .sp-pr-30 {
    padding-right: 30px !important;
  }

  .sp-pt-35 {
    padding-top: 35px !important;
  }

  .sp-pb-35 {
    padding-bottom: 35px !important;
  }

  .sp-pl-35 {
    padding-left: 35px !important;
  }

  .sp-pr-35 {
    padding-right: 35px !important;
  }

  .sp-pt-40 {
    padding-top: 40px !important;
  }

  .sp-pb-40 {
    padding-bottom: 40px !important;
  }

  .sp-pl-40 {
    padding-left: 40px !important;
  }

  .sp-pr-40 {
    padding-right: 40px !important;
  }

  .sp-pt-45 {
    padding-top: 45px !important;
  }

  .sp-pb-45 {
    padding-bottom: 45px !important;
  }

  .sp-pl-45 {
    padding-left: 45px !important;
  }

  .sp-pr-45 {
    padding-right: 45px !important;
  }

  .sp-pt-50 {
    padding-top: 50px !important;
  }

  .sp-pb-50 {
    padding-bottom: 50px !important;
  }

  .sp-pl-50 {
    padding-left: 50px !important;
  }

  .sp-pr-50 {
    padding-right: 50px !important;
  }

  .sp-pt-55 {
    padding-top: 55px !important;
  }

  .sp-pb-55 {
    padding-bottom: 55px !important;
  }

  .sp-pl-55 {
    padding-left: 55px !important;
  }

  .sp-pr-55 {
    padding-right: 55px !important;
  }

  .sp-pt-60 {
    padding-top: 60px !important;
  }

  .sp-pb-60 {
    padding-bottom: 60px !important;
  }

  .sp-pl-60 {
    padding-left: 60px !important;
  }

  .sp-pr-60 {
    padding-right: 60px !important;
  }

  .sp-pt-65 {
    padding-top: 65px !important;
  }

  .sp-pb-65 {
    padding-bottom: 65px !important;
  }

  .sp-pl-65 {
    padding-left: 65px !important;
  }

  .sp-pr-65 {
    padding-right: 65px !important;
  }

  .sp-pt-70 {
    padding-top: 70px !important;
  }

  .sp-pb-70 {
    padding-bottom: 70px !important;
  }

  .sp-pl-70 {
    padding-left: 70px !important;
  }

  .sp-pr-70 {
    padding-right: 70px !important;
  }

  .sp-pt-75 {
    padding-top: 75px !important;
  }

  .sp-pb-75 {
    padding-bottom: 75px !important;
  }

  .sp-pl-75 {
    padding-left: 75px !important;
  }

  .sp-pr-75 {
    padding-right: 75px !important;
  }

  .sp-pt-80 {
    padding-top: 80px !important;
  }

  .sp-pb-80 {
    padding-bottom: 80px !important;
  }

  .sp-pl-80 {
    padding-left: 80px !important;
  }

  .sp-pr-80 {
    padding-right: 80px !important;
  }

  .sp-pt-85 {
    padding-top: 85px !important;
  }

  .sp-pb-85 {
    padding-bottom: 85px !important;
  }

  .sp-pl-85 {
    padding-left: 85px !important;
  }

  .sp-pr-85 {
    padding-right: 85px !important;
  }

  .sp-pt-90 {
    padding-top: 90px !important;
  }

  .sp-pb-90 {
    padding-bottom: 90px !important;
  }

  .sp-pl-90 {
    padding-left: 90px !important;
  }

  .sp-pr-90 {
    padding-right: 90px !important;
  }

  .sp-pt-95 {
    padding-top: 95px !important;
  }

  .sp-pb-95 {
    padding-bottom: 95px !important;
  }

  .sp-pl-95 {
    padding-left: 95px !important;
  }

  .sp-pr-95 {
    padding-right: 95px !important;
  }

  .sp-pt-100 {
    padding-top: 100px !important;
  }

  .sp-pb-100 {
    padding-bottom: 100px !important;
  }

  .sp-pl-100 {
    padding-left: 100px !important;
  }

  .sp-pr-100 {
    padding-right: 100px !important;
  }

  .sp-text-center {
    text-align: center !important;
  }

  .sp-text-left {
    text-align: left !important;
  }

  .sp-text-right {
    text-align: right !important;
  }

  .sp-va-top {
    vertical-align: top !important;
  }

  .sp-va-middle {
    vertical-align: middle !important;
  }

  .sp-va-bottom {
    vertical-align: bottom !important;
  }

  .sp-w-5 {
    width: 5px !important;
  }

  .sp-w-10 {
    width: 10px !important;
  }

  .sp-w-15 {
    width: 15px !important;
  }

  .sp-w-20 {
    width: 20px !important;
  }

  .sp-w-25 {
    width: 25px !important;
  }

  .sp-w-30 {
    width: 30px !important;
  }

  .sp-w-35 {
    width: 35px !important;
  }

  .sp-w-40 {
    width: 40px !important;
  }

  .sp-w-45 {
    width: 45px !important;
  }

  .sp-w-50 {
    width: 50px !important;
  }

  .sp-w-55 {
    width: 55px !important;
  }

  .sp-w-60 {
    width: 60px !important;
  }

  .sp-w-65 {
    width: 65px !important;
  }

  .sp-w-70 {
    width: 70px !important;
  }

  .sp-w-75 {
    width: 75px !important;
  }

  .sp-w-80 {
    width: 80px !important;
  }

  .sp-w-85 {
    width: 85px !important;
  }

  .sp-w-90 {
    width: 90px !important;
  }

  .sp-w-95 {
    width: 95px !important;
  }

  .sp-w-100 {
    width: 100px !important;
  }

  .sp-w-105 {
    width: 105px !important;
  }

  .sp-w-110 {
    width: 110px !important;
  }

  .sp-w-115 {
    width: 115px !important;
  }

  .sp-w-120 {
    width: 120px !important;
  }

  .sp-w-125 {
    width: 125px !important;
  }

  .sp-w-130 {
    width: 130px !important;
  }

  .sp-w-135 {
    width: 135px !important;
  }

  .sp-w-140 {
    width: 140px !important;
  }

  .sp-w-145 {
    width: 145px !important;
  }

  .sp-w-150 {
    width: 150px !important;
  }

  .sp-w-155 {
    width: 155px !important;
  }

  .sp-w-160 {
    width: 160px !important;
  }

  .sp-w-165 {
    width: 165px !important;
  }

  .sp-w-170 {
    width: 170px !important;
  }

  .sp-w-175 {
    width: 175px !important;
  }

  .sp-w-180 {
    width: 180px !important;
  }

  .sp-w-185 {
    width: 185px !important;
  }

  .sp-w-190 {
    width: 190px !important;
  }

  .sp-w-195 {
    width: 195px !important;
  }

  .sp-w-200 {
    width: 200px !important;
  }

  .sp-w-205 {
    width: 205px !important;
  }

  .sp-w-210 {
    width: 210px !important;
  }

  .sp-w-215 {
    width: 215px !important;
  }

  .sp-w-220 {
    width: 220px !important;
  }

  .sp-w-225 {
    width: 225px !important;
  }

  .sp-w-230 {
    width: 230px !important;
  }

  .sp-w-235 {
    width: 235px !important;
  }

  .sp-w-240 {
    width: 240px !important;
  }

  .sp-w-245 {
    width: 245px !important;
  }

  .sp-w-250 {
    width: 250px !important;
  }

  .sp-w-255 {
    width: 255px !important;
  }

  .sp-w-260 {
    width: 260px !important;
  }

  .sp-w-265 {
    width: 265px !important;
  }

  .sp-w-270 {
    width: 270px !important;
  }

  .sp-w-275 {
    width: 275px !important;
  }

  .sp-w-280 {
    width: 280px !important;
  }

  .sp-w-285 {
    width: 285px !important;
  }

  .sp-w-290 {
    width: 290px !important;
  }

  .sp-w-295 {
    width: 295px !important;
  }

  .sp-w-300 {
    width: 300px !important;
  }

  .sp-w-305 {
    width: 305px !important;
  }

  .sp-w-310 {
    width: 310px !important;
  }

  .sp-w-315 {
    width: 315px !important;
  }

  .sp-w-320 {
    width: 320px !important;
  }

  .sp-w-325 {
    width: 325px !important;
  }

  .sp-w-330 {
    width: 330px !important;
  }

  .sp-w-335 {
    width: 335px !important;
  }

  .sp-w-340 {
    width: 340px !important;
  }

  .sp-w-345 {
    width: 345px !important;
  }

  .sp-w-350 {
    width: 350px !important;
  }

  .sp-w-355 {
    width: 355px !important;
  }

  .sp-w-360 {
    width: 360px !important;
  }

  .sp-w-365 {
    width: 365px !important;
  }

  .sp-w-370 {
    width: 370px !important;
  }

  .sp-w-375 {
    width: 375px !important;
  }

  .sp-w-380 {
    width: 380px !important;
  }

  .sp-w-385 {
    width: 385px !important;
  }

  .sp-w-390 {
    width: 390px !important;
  }

  .sp-w-395 {
    width: 395px !important;
  }

  .sp-w-400 {
    width: 400px !important;
  }

  .sp-w-5per {
    width: 5% !important;
  }

  .sp-w-10per {
    width: 10% !important;
  }

  .sp-w-15per {
    width: 15% !important;
  }

  .sp-w-20per {
    width: 20% !important;
  }

  .sp-w-25per {
    width: 25% !important;
  }

  .sp-w-30per {
    width: 30% !important;
  }

  .sp-w-35per {
    width: 35% !important;
  }

  .sp-w-40per {
    width: 40% !important;
  }

  .sp-w-45per {
    width: 45% !important;
  }

  .sp-w-50per {
    width: 50% !important;
  }

  .sp-w-55per {
    width: 55% !important;
  }

  .sp-w-60per {
    width: 60% !important;
  }

  .sp-w-65per {
    width: 65% !important;
  }

  .sp-w-70per {
    width: 70% !important;
  }

  .sp-w-75per {
    width: 75% !important;
  }

  .sp-w-80per {
    width: 80% !important;
  }

  .sp-w-85per {
    width: 85% !important;
  }

  .sp-w-90per {
    width: 90% !important;
  }

  .sp-w-95per {
    width: 95% !important;
  }

  .sp-w-100per {
    width: 100% !important;
  }

  .sp-w-1em {
    width: 1em !important;
  }

  .sp-w-2em {
    width: 2em !important;
  }

  .sp-w-3em {
    width: 3em !important;
  }

  .sp-w-4em {
    width: 4em !important;
  }

  .sp-w-5em {
    width: 5em !important;
  }

  .sp-w-6em {
    width: 6em !important;
  }

  .sp-w-7em {
    width: 7em !important;
  }

  .sp-w-8em {
    width: 8em !important;
  }

  .sp-w-9em {
    width: 9em !important;
  }

  .sp-w-10em {
    width: 10em !important;
  }

  .sp-w-11em {
    width: 11em !important;
  }

  .sp-w-12em {
    width: 12em !important;
  }

  .sp-w-13em {
    width: 13em !important;
  }

  .sp-w-14em {
    width: 14em !important;
  }

  .sp-w-15em {
    width: 15em !important;
  }

  .sp-w-16em {
    width: 16em !important;
  }

  .sp-w-17em {
    width: 17em !important;
  }

  .sp-w-18em {
    width: 18em !important;
  }

  .sp-w-19em {
    width: 19em !important;
  }

  .sp-w-20em {
    width: 20em !important;
  }

  .sp-w-auto {
    width: auto !important;
  }
}






/* ===== 実績：一覧リンクの見た目調整 ===== */
.works__record .records-more{
  text-align: center !important;         /* 中央寄せ */
  margin-top: 16px;
}

.works__record .records-more__btn{
  display: inline-block;
  padding: 6px 8px;
  text-decoration: none;
  color: inherit !important;
  font: inherit !important;              /* まずはサイトのデフォルト(=Noto Sans)に揃える */
  transition: text-shadow .18s ease, transform .12s ease;
}

.works__record .records-more__btn:hover,
.works__record .records-more__btn:focus-visible{
  text-shadow: 0 2px 8px rgba(0,0,0,.18); /* ほんのり影 */
  transform: translateY(-1px);
  outline: none;
}

/* もし見出しと同じ明朝体にしたい場合は ↑の font: inherit を外して、こちらを有効化 */
// .works__record .records-more__btn{ font-family:"Shippori Mincho B1", serif !important; }