@charset "UTF-8";
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}

html {
  color: #4D4242;
  background: #FFF7E0;
  font-size: 16px;
  line-height: 1.6;
  overflow-wrap: break-word;
}

body {
  background: #FFF7E0;
  margin: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
select,
textarea,
button {
  color: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

#wrapper {
  position: relative;
}

.inner-block {
  margin: 0 auto;
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

.ib {
  display: inline-block;
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-header
----------------------------------- */
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}
.c-header.is-scroll {
  background: #FFFDF6;
}
.c-header .inner-block {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 100%;
  padding: 15px 30px 15px 40px;
}
.c-header .logo img {
  max-width: 194px;
}
.c-header .c-menu-wrap {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.c-header .c-menu-wrap .c-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 60px;
  margin-right: 60px;
}
.c-header .c-menu-wrap .c-menu a {
  font-size: 16px;
  font-weight: bold;
}
.c-header .contact-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-weight: bold;
}
.c-header .info-wrap {
  margin-top: 30px;
  padding: 20px 16px;
  background-color: #FFF7E0;
}
.c-header .info-wrap .top, .c-header .info-wrap .bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  width: 100%;
}
.c-header .info-wrap .top > p, .c-header .info-wrap .bottom > p {
  font-weight: bold;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem 0.625rem;
  font-size: 12px;
}
.c-header .info-wrap .top > p span, .c-header .info-wrap .bottom > p span {
  font-size: 12px;
}
.c-header .info-wrap .bottom {
  margin-top: 15px;
}
.c-header .info-wrap .txt {
  text-align: center;
  margin-top: 6px;
}
.c-header .copyright {
  font-size: 12px;
  text-align: center;
  padding: 20px;
}

.btn-menu {
  width: 30px;
  height: 24px;
  z-index: 999;
  position: relative;
  cursor: pointer;
}
.btn-menu .line {
  background: #FFA200;
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-menu .line:nth-of-type(1) {
  top: 0;
}
.btn-menu .line:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn-menu .line:nth-of-type(3) {
  bottom: 0;
}
.btn-menu.is-open .line:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.btn-menu.is-open .line:nth-of-type(2) {
  opacity: 0;
  -webkit-transform: translateY(-50%) translateX(-10px);
          transform: translateY(-50%) translateX(-10px);
}
.btn-menu.is-open .line:nth-of-type(3) {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}

.c-footer {
  padding-top: 100px;
  background: #FFFDF6;
}
.c-footer .inner-block {
  max-width: 1160px;
}
.c-footer .cont-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 130px;
}
.c-footer .l-area {
  font-weight: 500;
  font-size: 0.875rem;
}
.c-footer .l-area .logo {
  margin-bottom: 50px;
  display: block;
  width: min(350px, 25vw);
  z-index: 2;
  position: relative;
}
.c-footer .l-area .logo img {
  width: 100%;
}
.c-footer .l-area .info-wrap {
  display: grid;
  gap: 30px;
}
.c-footer .l-area .info-wrap .f-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}
.c-footer .l-area .bottom p + p {
  margin-top: 1em;
}
.c-footer .r-area {
  width: min(600px, 42.8571428571vw);
  aspect-ratio: 600/420;
  border-radius: 19px;
  overflow: hidden;
}
.c-footer .r-area iframe {
  width: 100%;
  height: 100%;
}
.c-footer .link-wrap {
  margin-top: 89px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
}
.c-footer .link-wrap li {
  font-weight: 500;
  font-size: 1rem;
}
.c-footer .copyright {
  background-color: #FFF7E0;
  text-align: center;
  padding: 28px 0;
  font-weight: 500;
  font-size: 0.875rem;
}

.c-ttl01 {
  margin-bottom: 38px;
}
.c-ttl01 .en {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  font-size: 1rem;
  font-weight: bold;
}
.c-ttl01 .en .ico {
  display: block;
}
.c-ttl01 .jp {
  margin-top: 5px;
  display: block;
  font-size: 2rem;
  font-weight: bold;
}
.c-ttl01.center {
  text-align: center;
}
.c-ttl01.center .en {
  display: inline-block;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-ttl01.center .en .ico {
  margin: 0 auto 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-ttl02 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.c-btn01 {
  background-color: #FFA200;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 18px 50px;
  border-radius: 50px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #FFA200;
  text-align: center;
}

.c-section {
  padding: 150px 0 150px;
}
.c-section.bg-deco01 {
  position: relative;
}
.c-section.bg-deco01::before {
  position: absolute;
  display: block;
  top: min(171px, 12.2142857143vw);
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  margin: 0 auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 0;
  aspect-ratio: 1920/591;
  background: url(../img/common/bg01.png.webp) no-repeat center/contain;
}
.c-section.bg-or {
  background-color: #FFF7E0;
}
.c-section.bg-pale {
  background-color: #FFFDF6;
}

.desc {
  text-align: center;
  line-height: 2.2em;
  font-size: 1.125rem;
  font-weight: 500;
}
.desc.bold {
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.3em;
}
.desc + .desc {
  margin-top: 33px;
}

.c-kv {
  background: url(../img/common/kv-bg.jpg.webp) no-repeat center/cover;
  height: 500px;
  padding-top: 178px;
}
.c-kv .cont-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.c-kv .ttl {
  text-align: center;
  font-size: 3.75rem;
  font-weight: bold;
}
.c-kv .crumb {
  margin: 32px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-kv .crumb li {
  color: #A3A3A3;
  font-size: 0.875rem;
  font-weight: bold;
}
.c-kv .crumb li + li {
  padding-left: 28px;
  position: relative;
}
.c-kv .crumb li + li::before {
  content: "";
  width: 12px;
  height: 10px;
  background: url(../img/common/ico-heart.svg) no-repeat center/contain;
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.c-kv .crumb li + li.current {
  color: #4D4242;
}

.c-table01 {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  font-size: 1rem;
}
.c-table01 tr {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  border-bottom: 1px solid #D1D1D6;
  gap: 60px;
}
.c-table01 th {
  width: 160px;
  text-align: left;
  font-weight: 500;
}

.c-table02 {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  font-size: 1rem;
}
.c-table02 tr {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #D1D1D6;
  gap: 0;
}
.c-table02 th,
.c-table02 td {
  padding: 16px 8px 12px 18px;
}
.c-table02 th {
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  width: 200px;
  text-align: left;
  font-weight: 500;
  background-color: #FFF7E0;
}
.c-table02 td {
  max-width: 800px;
  font-weight: 400;
  width: calc(100% - 200px);
}
.c-table02 td p + p {
  margin-top: 1.8em;
}
.c-table02 td ul + p {
  margin-top: 1.8em;
}
.c-table02 .c-dots-list > li {
  margin-top: 8px;
}

.tab-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1200px;
  margin: auto;
  gap: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
}
.tab-area:has(> :only-child) .tab:focus-visible {
  background-color: #fff;
  border-color: #fff;
}
.tab-area .tab {
  font-weight: bold;
  width: calc((100% - min(300px, 15.625vw)) / 2);
  background: #fff;
  line-height: 1.6;
  font-weight: bold;
  border-radius: 20px 20px 0 0;
  padding: 21.5px 0;
  position: relative;
  border: 1px solid transparent;
  font-size: 16px;
  background-color: #fff;
  pointer-events: none;
}
.tab-area .tab:focus-visible {
  border-color: #FFA200;
  background-color: #fff;
}
.tab-area .tab[aria-selected=true] {
  background-color: #fff;
}
.tab-area .tab[aria-selected=true]::after {
  opacity: 1;
}

[role=tabpanel].is-hidden {
  display: none;
}

.input-block {
  padding: 50px 100px;
  background-color: #fff;
  border-radius: 20px;
}

.c-dots-list li {
  position: relative;
  padding-left: 1em;
  text-indent: -1em;
}
.c-dots-list li::before {
  content: "・ ";
}

.aco-container .aco-item + .aco-item {
  margin-top: 30px;
}
.aco-container .aco-item .aco-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  padding: 15px 20px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  background: #FFF7E0;
}
.aco-container .aco-item .aco-header .head {
  font-size: 1.875rem;
  font-weight: bold;
  color: #FFA200;
  line-height: 1;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.aco-container .aco-item .aco-header h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.aco-container .aco-item .aco-header .aco-icon {
  position: relative;
  display: inline-block;
  width: 14.7px;
  height: 8.4px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.aco-container .aco-item .aco-header .aco-icon::before, .aco-container .aco-item .aco-header .aco-icon::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 11px;
  border-radius: 9999px;
  background-color: #FFA200;
  -webkit-transform-origin: 50% calc(100% - 1px);
          transform-origin: 50% calc(100% - 1px);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.aco-container .aco-item .aco-header .aco-icon::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.aco-container .aco-item .aco-header .aco-icon::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.aco-container .aco-item .aco-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin-top: 10px;
  background-color: #FFF7E0;
  padding: 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  border-radius: 10px;
}
.aco-container .aco-item .aco-content .inner {
  padding: 18px 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
}
.aco-container .aco-item .aco-content .head {
  font-size: 1.875rem;
  font-weight: bold;
  color: #FFA200;
  line-height: 1;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.aco-container .aco-item .aco-content p {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.75em;
  margin: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1rem;
}
.aco-container .aco-item.is-active .aco-header .aco-icon::before {
  bottom: 7px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.aco-container .aco-item.is-active .aco-header .aco-icon::after {
  bottom: 7px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.aco-container .aco-item.is-active .aco-content {
  max-height: 1000px;
  padding: 0 20px;
}

.c-link-sec {
  padding: 80px 0 0;
}
.c-link-sec .link-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  margin: 0 auto;
}
.c-link-sec .c-btn01 {
  width: 240px;
}

.top-btn {
  right: 5vw;
  background-color: #FFA200;
  color: #fff;
  width: 70px;
  height: 70px;
  display: block;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
  border: 1px solid #FFA200;
}
.top-btn::before {
  content: "";
  width: 14px;
  height: 12px;
  -webkit-mask: url(../img/common/ico-heart.svg) no-repeat center/contain;
          mask: url(../img/common/ico-heart.svg) no-repeat center/contain;
  background: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: 15px;
  margin: auto;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.top-btn p {
  display: block;
  margin-top: 10px;
}

.not-found {
  background-color: #FFFDF6;
}
.not-found .txt-sec {
  padding-top: 80px;
  padding-bottom: 0;
}
.not-found .txt-sec .c-btn01 {
  margin: 50px auto 0;
  width: 240px;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.home .mv-sec {
  padding-top: clamp(6.5rem, 11vw, 7.75rem);
  width: 100%;
  aspect-ratio: 1920/800;
  position: relative;
}
.home .mv-sec .inner-block {
  position: relative;
  z-index: 1;
}
.home .mv-sec .ttl {
  position: relative;
  z-index: 1;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.75rem);
  text-align: center;
}
.home .mv-sec .bg {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.home .mv-sec .bg img {
  width: 100%;
  height: auto;
  display: block;
}
.home .about-sec {
  background-color: #FFFDF6;
}
.home .about-sec .cont-wrap {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: min(100px, 7.1428571429vw);
}
.home .about-sec .cont-wrap .img-wrap {
  width: min(618px, 44.1428571429vw);
}
.home .about-sec .cont-wrap .img-wrap img {
  width: 100%;
  max-width: 618px;
}
.home .about-sec .cont-wrap .txt-wrap {
  width: calc(100% - min(100px, 7.1428571429vw) - min(602px, 43vw));
}
.home .about-sec .cont-wrap .txt-wrap .txt {
  font-size: 1.25rem;
  line-height: 2.48em;
  font-weight: 500;
}
.home .about-sec .cont-wrap .txt-wrap .c-btn01 {
  margin-top: 50px;
}
.home .service-sec {
  background-color: #FFF5D5;
  padding-top: 0;
}
.home .service-sec.bg-deco01::before {
  top: max(-275px, -19.6428571429vw) !important;
}
.home .service-sec .cont-wrap {
  margin-top: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(81px, 5.7857142857vw);
}
.home .service-sec .cont-wrap .img-wrap {
  width: min(746px, 53.2857142857vw);
  max-width: 746px;
  margin-left: -28px;
}
.home .service-sec .cont-wrap .img-wrap img {
  width: 100%;
  display: block;
}
.home .service-sec .cont-wrap .txt-wrap {
  width: calc(100% - min(746px, 53.2857142857vw));
}
.home .service-sec .cont-wrap .txt-wrap .c-ttl02 {
  margin-bottom: 25px;
}
.home .service-sec .cont-wrap .txt-wrap .txt {
  font-size: 1.125rem;
  line-height: 2.2em;
  font-weight: 500;
}
.home .service-sec .cont-wrap .txt-wrap .c-btn01 {
  margin-top: 40px;
  min-width: 200px;
}
.home .service-sec .feature-list {
  margin-top: 50px;
  display: grid;
  gap: 41px;
}
.home .service-sec .feature-list li .img {
  max-width: 220px;
  width: 100%;
  margin: 0 auto;
  display: block;
  margin-bottom: 30px;
}
.home .service-sec .feature-list li .ttl {
  margin-bottom: 28px;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
}
.home .service-sec .feature-list li .txt {
  font-size: 1rem;
  line-height: 1.9em;
  font-weight: 500;
}
.home .recruit-sec {
  padding-top: 131px;
  padding-bottom: 0;
  position: relative;
}
.home .recruit-sec::before, .home .recruit-sec::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  aspect-ratio: 520/703;
  max-width: 520px;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.home .recruit-sec::before {
  left: 0;
  background: url(../img/home/recruit_img01.png.webp) no-repeat center/contain;
}
.home .recruit-sec::after {
  z-index: 1;
  right: 0;
  background: url(../img/home/recruit_img02.png.webp) no-repeat center/contain;
}
.home .recruit-sec .inner-block {
  position: relative;
  z-index: 2;
}
.home .recruit-sec .c-ttl01 {
  margin-bottom: 39px;
}
.home .recruit-sec .desc.bold {
  font-size: 2rem;
  line-height: 1.5em;
}
.home .recruit-sec .desc.bold .fz30 {
  font-size: 1.875rem;
}
.home .recruit-sec .desc + .desc {
  margin-top: 42px;
}
.home .recruit-sec .btn-wrap {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.company .greeting-sec {
  padding-top: 100px;
  padding-bottom: 105px;
}
.company .greeting-sec.bg-deco01::before {
  top: auto;
  bottom: min(0px, 0vw);
}
.company .greeting-sec .inner-block {
  position: relative;
}
.company .greeting-sec .inner-block::before, .company .greeting-sec .inner-block::after {
  content: "";
  position: absolute;
  bottom: 0;
  margin: 0 auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 0;
}
.company .greeting-sec .inner-block::before {
  -webkit-transform: rotate(-14deg);
          transform: rotate(-14deg);
  display: block;
  top: min(5px, 0.3571428571vw);
  left: -5px;
  width: min(191px, 13.6428571429vw);
  aspect-ratio: 191/177;
  background: url(../img/common/shitta.png.webp) no-repeat center/contain;
}
.company .greeting-sec .inner-block::after {
  display: block;
  top: min(18px, 1.2857142857vw);
  right: min(40px, 2.8571428571vw);
  width: min(94px, 6.7142857143vw);
  aspect-ratio: 94/168;
  background: url(../img/common/macchi.png.webp) no-repeat center/contain;
}
.company .greeting-sec .deco-wrap {
  position: relative;
}
.company .greeting-sec .deco-wrap .deco01 {
  position: absolute;
  left: 8px;
  bottom: -115px;
  aspect-ratio: 265/200;
  width: min(256px, 18.2857142857vw);
  background: url(../img/company/deco01.png.webp) no-repeat center/contain;
}
.company .greeting-sec .deco-wrap .deco02 {
  position: absolute;
  right: 32px;
  bottom: -120px;
  aspect-ratio: 411/200;
  width: min(411px, 29.3571428571vw);
  background: url(../img/company/deco02.png.webp) no-repeat center/contain;
}
.company .greeting-sec .white-box {
  margin: 0 auto;
  max-width: 1080px;
  padding: 40px 50px 50px;
  border-radius: 20px;
  background-color: #fff;
}
.company .greeting-sec .white-box .ttl {
  font-size: 1.5rem;
  font-weight: bold;
  padding-bottom: 15px;
  background-image: radial-gradient(circle, #FFA200 1px, transparent 1px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 5px 2px;
  margin-bottom: 30px;
}
.company .greeting-sec .white-box .txt {
  line-height: 2em;
}
.company .greeting-sec .white-box .txt + .txt {
  margin-top: 1.8em;
}
.company .greeting-sec .white-box .sign {
  margin-top: 35px;
  font-size: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-right: 0;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.company .greeting-sec .white-box .sign span {
  font-size: 1rem;
}
.company .greeting-sec .white-box + .white-box {
  margin-top: 50px;
}
.company .purpose-sec {
  background-color: #FFF5D5;
  padding-top: 0;
}
.company .purpose-sec .deco-wrap {
  position: relative;
}
.company .purpose-sec .deco-wrap .deco01 {
  position: absolute;
  left: 8px;
  bottom: -115px;
  aspect-ratio: 265/200;
  width: min(256px, 18.2857142857vw);
  background: url(../img/company/deco01.png.webp) no-repeat center/contain;
}
.company .purpose-sec .deco-wrap .deco02 {
  position: absolute;
  right: 32px;
  bottom: -120px;
  aspect-ratio: 411/200;
  width: min(411px, 29.3571428571vw);
  background: url(../img/company/deco02.png.webp) no-repeat center/contain;
}
.company .phirosophy-sec {
  padding: 100px 0;
}
.company .phirosophy-sec .inner-block {
  max-width: 1280px;
}
.company .phirosophy-sec .list {
  margin-top: 30px;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
}
.company .phirosophy-sec .list > li {
  padding: 30px 10px;
  width: 100%;
  background-color: #FFF9E9;
  border-radius: 10px;
  text-align: center;
  min-height: 246px;
}
.company .phirosophy-sec .list > li .ttl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-bottom: 25px;
  font-size: 1rem;
}
.company .phirosophy-sec .list > li .ttl img {
  margin: auto;
}
.company .phirosophy-sec .list > li p {
  font-size: 1rem;
  line-height: 1.5em;
}
.company .issue-sec {
  padding: 100px 0;
}
.company .issue-sec .inner-block {
  max-width: 1200px;
}
.company .issue-sec .white-box {
  padding: 40px;
  background-color: #fff;
  border-radius: 20px;
}
.company .issue-sec .white-box .txt {
  line-height: 2em;
}
.company .issue-sec .white-box .txt + .txt {
  margin-top: 1.8em;
}
.company .company-sec {
  padding: 100px 0 0;
}
.company .company-sec .inner-block {
  max-width: 1080px;
}
.company .company-sec .map-wrap {
  margin-top: 50px;
}
.company .company-sec .map-wrap iframe {
  width: 100%;
  aspect-ratio: 1000/450;
}

.contact {
  background: #FFFAE9;
}
.contact .contact-desc {
  line-height: 2;
  font-weight: 500;
  margin: 96px 0 40px;
  text-align: center;
}
.contact .tab-area .tab {
  position: relative;
}
.contact .tab-area .tab::after {
  content: "";
  position: absolute;
  top: -64px;
  background: url("../img/common/shitta.png.webp") no-repeat center/cover !important;
  width: 127px;
  height: 118px;
  opacity: 0;
  z-index: -1;
}
.contact .tab-area .tab[aria-controls=tabpanel-1]::after {
  left: -24px;
  -webkit-transform: scale(-1, 1) rotate(14deg);
          transform: scale(-1, 1) rotate(14deg);
}
.contact .tab-area .tab[aria-controls=tabpanel-2]::after {
  right: -24px;
  -webkit-transform: rotate(14deg);
          transform: rotate(14deg);
}
.contact .tab-area .tab[aria-selected=true] {
  background: #FFA200;
}
.contact .tab-area .tab[aria-selected=true]::after {
  opacity: 1;
}
.contact .contact-block {
  position: relative;
  padding-bottom: 105px;
}
.contact .input-block,
.contact .confirm-block {
  background: #fff;
  max-width: 1200px;
  margin: auto;
  padding: 50px min(100px, 5.2083333333vw) 50px;
  border-radius: 20px;
}
.contact .q-wrap {
  padding: 17.5px 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  border-bottom: 1px solid #D1D1D6;
}
.contact .q-wrap:first-child {
  border-top: 1px solid #D1D1D6;
}
.contact .q-wrap:has(.privacy-area) {
  padding: 0;
  border-bottom: 0;
}
.contact .q-wrap:has(.privacy-area) .error-txt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.contact .label-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200px;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.contact .input-area {
  width: 100%;
}
.contact .contact-label {
  font-size: 16px;
  font-weight: bold;
}
.contact .required-txt {
  padding: 0px 6px 2px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #fff;
  font-size: 12px;
  border-radius: 3px;
  background: #FFA200;
  position: absolute;
  right: 0;
  margin: auto;
  font-weight: 500;
}
.contact .optional-txt {
  padding: 0px 6px 2px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #fff;
  font-size: 12px;
  border-radius: 3px;
  background: #9A9A9A;
  position: absolute;
  right: 0;
  margin: auto;
  font-weight: 500;
}
.contact .error-txt {
  margin-top: 4px;
  color: rgb(179, 29, 35);
  font-size: 14px;
  font-weight: bold;
}
.contact input[type=text],
.contact input[type=tel],
.contact input[type=email],
.contact input[type=date],
.contact textarea,
.contact select {
  padding: 7px 18px;
  width: 100%;
  color: #333;
  font-size: 16px !important;
  border: 1px solid #E5E5EA;
  border-radius: 5px;
  background: #fff;
}
.contact input[type=text].errored,
.contact input[type=tel].errored,
.contact input[type=email].errored,
.contact input[type=date].errored,
.contact textarea.errored,
.contact select.errored {
  border: 1px solid rgb(179, 29, 35);
}
.contact .radio-group,
.contact .checkbox-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px 21px;
  height: 100%;
}
.contact .radio-group .wpcf7-radio,
.contact .radio-group .wpcf7-checkbox,
.contact .checkbox-group .wpcf7-radio,
.contact .checkbox-group .wpcf7-checkbox {
  gap: 20px 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.contact .radio-group label,
.contact .checkbox-group label {
  position: relative;
  padding-left: 30px;
  line-height: 1;
}
.contact .radio-group label::before, .contact .radio-group label::after,
.contact .checkbox-group label::before,
.contact .checkbox-group label::after {
  content: "";
  position: absolute;
}
.contact .radio-group label::before,
.contact .checkbox-group label::before {
  top: 0px;
  left: 0;
  width: 30px;
  height: 30px;
  border: 1px solid #C7C7CC;
  border-radius: 50%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.contact .radio-group label::after,
.contact .checkbox-group label::after {
  top: 5px;
  left: 5px;
  width: 20px;
  height: 20px;
  border-radius: 15px;
  background: #FFA200;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.contact .radio-group label:has(input:checked)::after,
.contact .checkbox-group label:has(input:checked)::after {
  opacity: 1;
}
.contact .radio-group label:has(input:checked)::before,
.contact .checkbox-group label:has(input:checked)::before {
  background: #fff;
}
.contact .radio-group + .error-txt,
.contact .checkbox-group + .error-txt {
  margin-top: 8px;
}
.contact .radio-group {
  padding: 3.5px 0;
}
.contact .radio-group label {
  gap: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact .radio-group label .wpcf7-list-item-label {
  font-weight: 500;
  line-height: 1;
}
.contact .checkbox-group label::before {
  border-radius: 5px;
  width: 20px;
  height: 20px;
}
.contact .checkbox-group label::after {
  top: 5px;
  width: 14px;
  height: 10px;
  background: transparent;
  background: url("../img/contact/ico-check.svg") no-repeat center/cover;
  left: 3px;
  border-radius: 0;
}
.contact .select-wrap {
  position: relative;
}
.contact .select-wrap select {
  cursor: pointer;
}
.contact .select-wrap::before {
  z-index: 1;
  content: "";
  border: solid rgb(179, 29, 35);
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: -3px;
  right: 20px;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(45deg) translate3d(0, 0, 0);
          transform: rotate(45deg) translate3d(0, 0, 0);
  pointer-events: none;
}
.contact .wpcf7-response-output {
  display: none !important;
}
.contact .wpcf7-not-valid-tip {
  display: none !important;
}
.contact .btn-wrap {
  margin: 24px auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
.contact .contact-btn {
  display: block;
  text-align: center;
  background: #FFA200;
  color: #fff;
  font-weight: bold;
  padding: 10px 40px;
  border-radius: 40px;
  border: 1px solid #FFA200;
  min-width: 277px;
  max-width: 500px;
  padding: 16px 70px;
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transition-property: background, color;
  transition-property: background, color;
}
.contact .contact-btn.back-btn {
  border: 1px solid #9A9A9A;
  background: #fff;
  color: #9A9A9A;
}
.contact .contact-btn.back-btn:focus-visible {
  background: #9A9A9A;
  color: #fff;
}
.contact .privacy-area {
  margin-top: 50px;
}
.contact .privacy-area .checkbox-group {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact .privacy-area .wpcf7-list-item-label {
  line-height: 1.6;
  font-weight: 500;
}
.contact .privacy-area .wpcf7-list-item-label a {
  text-decoration: underline;
  -webkit-text-decoration-color: #D1D1D6;
          text-decoration-color: #D1D1D6;
}
.contact .privacy-area .wpcf7-list-item-label a:focus-visible {
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
.contact .decoration {
  pointer-events: none;
}
.contact .decoration .deco01 {
  position: absolute;
  left: 19px;
  bottom: 0;
}
.contact .decoration .deco02 {
  position: absolute;
  right: 21px;
  bottom: 0;
}
.contact.confirm .inner-block {
  padding-top: 50px;
}
.contact.confirm .q-wrap:first-child {
  border-top: none;
}
.contact.confirm .q-wrap:nth-last-of-type(2) {
  border-bottom: none;
}
.contact.confirm .btn-wrap {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.contact.confirm .btn-wrap .wpcf7-spinner {
  position: absolute;
  left: 102%;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #FFA200;
}
.contact.complete .contact-block::before {
  display: none;
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.recruit .message-sec {
  padding-top: 80px;
  padding-bottom: 0;
}
.recruit .message-sec.bg-deco01::before {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 1920/567;
  background: url(../img/recruit/bg.png.webp) no-repeat center/contain !important;
  top: min(175px, 12.5vw);
}
.recruit .message-sec .desc {
  font-size: 1.25rem;
  line-height: 2.5em;
}
.recruit .requirement-sec {
  background-color: #FFF5D5;
}
.recruit .requirement-sec .inner-block {
  max-width: 1280px;
}
.recruit .requirement-sec .annotation-txt {
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 8px;
  font-size: 12px;
}
.recruit .requirement-sec .annotation-txt + .annotation-txt {
  margin-top: 4px;
}
.recruit .requirement-sec .annotation-txt.mt-adj {
  margin-top: 1.8em;
}
.recruit .support-sec .inner-block {
  max-width: 1280px;
}
.recruit .support-sec .support-list {
  display: grid;
  gap: 30px 40px;
  grid-template-columns: 1fr 1fr;
}
.recruit .support-sec .support-list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  font-size: 0.875rem;
}
.recruit .support-sec .support-list li .img {
  width: 150px;
  height: 150px;
}
.recruit .support-sec .support-list li .ttl {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.recruit .schedule-sec > .inner-block {
  max-width: 1280px;
}
.recruit .schedule-sec {
  position: relative;
}
.recruit .schedule-sec .schedule-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 6.25vw, 80px);
}
.recruit .schedule-sec .schedule-area .ttl {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
.recruit .schedule-sec .schedule-area .cont {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 20px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  display: flex;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(255, 162, 0, 0.2509803922);
          box-shadow: 0px 4px 4px 0px rgba(255, 162, 0, 0.2509803922);
}
.recruit .schedule-sec .schedule-area .cont > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.recruit .schedule-sec .schedule-area .cont::before {
  content: "";
  width: 3px;
  height: 20px;
  position: absolute;
  bottom: -20px;
  right: 0;
  left: 0;
  margin: auto;
  display: block;
  background-color: #FFA200;
}
.recruit .schedule-sec .schedule-area .cont:last-child {
  margin-bottom: 0;
}
.recruit .schedule-sec .schedule-area .cont:last-child::before {
  display: none;
}
.recruit .schedule-sec .schedule-area .cont .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.recruit .schedule-sec .schedule-area .cont .top .time {
  font-size: 0.875rem;
  position: relative;
  padding-left: 24px;
  color: #FFA200;
  margin-bottom: 10px;
}
.recruit .schedule-sec .schedule-area .cont .top .time::before {
  content: "";
  background: url(../img/common/ico-time.svg) no-repeat center/contain;
  position: absolute;
  left: 0;
  width: 14px;
  aspect-ratio: 1/1;
  top: 4px;
  margin: auto;
}
.recruit .schedule-sec .schedule-area .cont .top .ico {
  max-width: 100px;
  width: 100%;
}
.recruit .schedule-sec .schedule-area .cont .bottom {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 0.875rem;
  line-height: 1.6em;
}
.recruit .schedule-sec .deco01,
.recruit .schedule-sec .deco02,
.recruit .schedule-sec .deco03 {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  bottom: -34px;
  z-index: 1;
}
.recruit .schedule-sec .deco01 {
  left: 60px;
  width: min(395px, 21.9444444444vw);
  aspect-ratio: 395/192;
}
.recruit .schedule-sec .deco02 {
  left: 0;
  right: 0;
  margin: auto;
  width: min(322px, 17.8888888889vw);
  aspect-ratio: 322/71;
}
.recruit .schedule-sec .deco03 {
  right: 60px;
  width: min(549px, 30.5vw);
  aspect-ratio: 549/119;
}
.recruit .qanda-sec {
  padding-bottom: 0;
}
.recruit .qanda-sec .inner-block {
  max-width: 1080px;
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.service .c-link-sec .pdf-link {
  margin-bottom: 50px;
}
.service .c-link-sec .pdf-link > a {
  border-bottom: 1px solid #4D4242;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.service .c-link-sec .pdf-link > a .ico {
  font-size: 0.875rem;
  background-color: #fff;
  border-radius: 80px;
  border: 1px solid #4D4242;
  padding: 4px 10px;
  line-height: 1;
  margin-bottom: 4px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.service .c-link-sec {
  background-color: #FFF7E0;
}
.service .c-link-sec .inner-block {
  max-width: 1400px;
}
.service .c-link-sec .c-btn01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.service .message-sec {
  padding: 80px 0;
}
.service .message-sec .inner-block {
  max-width: 1200px;
  position: relative;
  z-index: 1;
}
.service .message-sec .cont-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(40px, 2.8571428571vw);
  display: grid;
  grid-template-columns: auto min(540px, 38.5714285714vw);
}
.service .message-sec .cont-wrap .img-wrap img {
  width: 100%;
  display: block;
}
.service .message-sec .cont-wrap .txt-wrap .c-ttl02 {
  font-size: 1.375rem;
  margin-bottom: 25px;
}
.service .message-sec .cont-wrap .txt-wrap .txt {
  font-size: 1rem;
  line-height: 2.2em;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.service .message-sec .cont-wrap .txt-wrap .txt + .txt {
  margin-top: 1.7em;
}
.service .message-sec .cont-wrap .txt-wrap .c-btn01 {
  margin-top: 40px;
  min-width: 200px;
}
.service .message-sec .white-box {
  margin-top: 50px;
  background-color: #fff;
  padding: 30px 63px 39px 51px;
  border-radius: 20px;
}
.service .message-sec .white-box .ttl {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 17px;
}
.service .message-sec .white-box .list-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  position: relative;
}
.service .message-sec .white-box .list-wrap .c-dots-list {
  width: 100%;
}
.service .message-sec .white-box .list-wrap .c-dots-list > li {
  position: relative;
  font-size: 1.125rem;
  padding-left: 1.3em;
  line-height: 1.3em;
}
.service .message-sec .white-box .list-wrap .c-dots-list > li::before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  position: relative;
  left: -18px;
  top: 16px;
  background: #FFA200;
  border-radius: 50%;
}
.service .message-sec .white-box .list-wrap .last-txt {
  position: absolute;
  bottom: -7px;
  right: 0;
}
.service .alignment-sec {
  padding: 100px 0;
  position: relative;
}
.service .alignment-sec .deco01, .service .alignment-sec .deco02, .service .alignment-sec .deco03 {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  bottom: -34px;
  z-index: 1;
}
.service .alignment-sec .deco01 {
  left: 60px;
  width: min(395px, 28.2142857143vw);
  aspect-ratio: 395/192;
}
.service .alignment-sec .deco02 {
  left: 0;
  right: 0;
  margin: auto;
  width: min(322px, 23vw);
  aspect-ratio: 322/71;
}
.service .alignment-sec .deco03 {
  right: 60px;
  width: min(549px, 39.2142857143vw);
  aspect-ratio: 549/119;
}
.service .alignment-sec .inner-block {
  max-width: 1200px;
}
.service .alignment-sec .cont-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(40px, 2.8571428571vw);
  display: grid;
  grid-template-columns: auto min(540px, 38.5714285714vw);
}
.service .alignment-sec .cont-wrap .img-wrap img {
  width: 100%;
  display: block;
}
.service .alignment-sec .cont-wrap .txt-wrap .c-ttl02 {
  font-size: 1.375rem;
  margin-bottom: 25px;
}
.service .alignment-sec .cont-wrap .txt-wrap .txt {
  font-size: 1rem;
  line-height: 2.2em;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.service .alignment-sec .cont-wrap .txt-wrap .txt + .txt {
  margin-top: 1.7em;
}
.service .alignment-sec .cont-wrap .txt-wrap .c-btn01 {
  margin-top: 40px;
  min-width: 200px;
}
.service .case-sec {
  padding: 100px 0;
}
.service .case-sec .inner-block {
  max-width: 1200px;
}
.service .case-sec .cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px;
}
.service .case-sec .cases-grid .case-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 14px 20px;
  padding-right: 50px;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  min-height: 234px;
}
.service .case-sec .cases-grid .case-card::before, .service .case-sec .cases-grid .case-card::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 28px;
  width: 4px;
  height: 20px;
  background-color: #FFA200;
  display: block;
  border-radius: 2px;
}
.service .case-sec .cases-grid .case-card::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.service .case-sec .cases-grid .case-card .inn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.service .case-sec .cases-grid .case-card .inn .ico {
  width: 120px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 1/1;
}
.service .case-sec .cases-grid .case-card .desc {
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.6;
}
.service .case-sec .ttl {
  font-size: 1.125rem;
  margin-bottom: 20px;
}
.service .case-sec .case-badge {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #FFA200;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.service .case-sec .modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 243, 222, 0.5);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  z-index: 1000;
  -webkit-animation: fadeIn 0.3s ease-out;
          animation: fadeIn 0.3s ease-out;
}
.service .case-sec .modal-overlay.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
}
.service .case-sec .modal-overlay.fadeout {
  -webkit-animation: fadeOut 0.3s ease-out;
          animation: fadeOut 0.3s ease-out;
}
.service .case-sec .modal-overlay .modal {
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  width: 100%;
  min-height: 250px;
  position: relative;
}
.service .case-sec .modal-overlay .modal::before, .service .case-sec .modal-overlay .modal::after {
  z-index: -1;
}
.service .case-sec .modal-overlay .modal::before {
  content: "";
  background: url(../img/common/shitta.png.webp) no-repeat center/contain;
  position: absolute;
  left: calc(50% + min(75px, 5.3571428571vw));
  width: 191px;
  aspect-ratio: 191/177;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: calc(50% - 220px);
}
.service .case-sec .modal-overlay .modal::after {
  content: "";
  background: url(../img/common/macchi.png.webp) no-repeat center/contain;
  position: absolute;
  left: calc(50% - min(82px, 5.8571428571vw));
  right: auto;
  width: 94px;
  aspect-ratio: 94/168;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: calc(50% - 225px);
}
.service .case-sec .modal-overlay .modal .modal-header {
  padding: 30px 30px 0;
  position: relative;
  z-index: 2;
}
.service .case-sec .modal-overlay .modal .modal-header .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #FFA200;
}
.service .case-sec .modal-overlay .modal .modal-header .close-btn::before, .service .case-sec .modal-overlay .modal .modal-header .close-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 4px;
  height: 20px;
  background-color: #FFA200;
  border-radius: 2px;
}
.service .case-sec .modal-overlay .modal .modal-header .close-btn::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.service .case-sec .modal-overlay .modal .modal-header .close-btn::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.service .case-sec .modal-overlay .modal .ttl {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
  padding-bottom: 20px;
  border-bottom-color: #FFA200;
  border-bottom-style: dotted;
  border-bottom-width: 2px;
}
.service .case-sec .modal-overlay .modal .modal-body {
  padding: 0 35px 30px;
}
.service .case-sec .modal-overlay .modal .modal-body .modal-content {
  font-size: 1rem;
  line-height: 1.9;
}
.service .case-sec .modal-data {
  display: none;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes slideUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slideDown {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}
@keyframes slideDown {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}
.service .flow-sec {
  padding-top: 100px;
  padding-bottom: 100px;
}
.service .flow-sec .inner-block {
  max-width: 1280px;
}
.service .flow-sec .flow-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.service .flow-sec .flow-list > li {
  text-align: center;
  position: relative;
}
.service .flow-sec .flow-list > li::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  display: block;
  border-bottom-color: #FFA200;
  border-bottom-style: dotted;
  border-bottom-width: 2px;
  width: 100%;
  z-index: 0;
}
.service .flow-sec .flow-list > li:nth-last-child(1)::before {
  display: none;
}
.service .flow-sec .flow-list > li:nth-last-child(1) .inn {
  border-right: none;
}
.service .flow-sec .flow-list > li .tip {
  padding: 5px 10px;
  max-width: 136px;
  width: 100%;
  color: #fff;
  font-weight: bold;
  border-radius: 38px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  background-color: #FFA200;
  font-size: 1.25rem;
  margin-bottom: 35px;
  line-height: 1;
  z-index: 1;
  position: relative;
}
.service .flow-sec .flow-list > li .tip span {
  margin-bottom: 4px;
  font-size: 1.75rem;
}
.service .flow-sec .flow-list > li .inn {
  padding: 27px 26px 0;
}
.service .flow-sec .flow-list > li .img {
  margin: 0 auto 20px;
  display: block;
  width: 150px;
  height: auto;
}
.service .flow-sec .flow-list > li .ttl {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.service .flow-sec .flow-list > li .txt {
  font-size: 0.875rem;
  text-align: left;
}
.service .flow-sec .flow-list > li .small {
  font-size: 0.75rem;
  text-align: left;
}
.service .price-sec {
  padding: 100px 0;
}
.service .price-sec .inner-block {
  max-width: 1200px;
}
.service .price-sec .white-box {
  padding: 40px;
  background-color: #fff;
  border-radius: 20px;
}
.service .price-sec .white-box p {
  font-size: 1rem;
}
.service .price-sec .white-box p + p {
  margin-top: 1.8em;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  body {
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  #wrapper {
    min-width: 320px;
  }
  .inner-block {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pc {
    display: none !important;
  }
  .c-header {
    background: #FFFDF6;
  }
  .c-header .inner-block {
    padding: 10px 20px;
  }
  .c-header .logo img {
    max-width: 139px;
  }
  .c-header .c-menu-wrap {
    padding: 0 20px 20px;
    background: #FFFDF6;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin-top: 70px;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-header .c-menu-wrap.is-open {
    opacity: 1;
    pointer-events: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-header .c-menu-wrap .c-menu {
    display: block;
    margin-top: 10px;
    margin-right: 0;
  }
  .c-header .c-menu-wrap .c-menu a {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid #EDE8DC;
  }
  .c-header .contact-btn {
    background-color: transparent;
    font-size: 16px;
    font-weight: bold;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #EDE8DC;
  }
  .c-header .info-wrap {
    font-size: 11px;
  }
  .c-header .info-wrap .top > p, .c-header .info-wrap .bottom > p {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .btn-menu {
    width: 20px;
    height: 20px;
  }
  .btn-menu .line {
    height: 4px;
    width: 20px;
  }
  .c-footer {
    padding-top: 30px;
  }
  .c-footer .cont-wrap {
    display: block;
    padding-bottom: 30px;
  }
  .c-footer .l-area {
    font-size: 12px;
  }
  .c-footer .l-area .logo {
    margin: 0 auto 30px;
    width: min(250px, 66.6666666667vw);
  }
  .c-footer .l-area .info-wrap {
    gap: 17px;
  }
  .c-footer .l-area .info-wrap .f-box {
    gap: 16px;
  }
  .c-footer .r-area {
    margin-top: 20px;
    width: 100%;
  }
  .c-footer .copyright {
    padding: 12px 0;
  }
  .c-ttl01 {
    margin-bottom: 20px;
  }
  .c-ttl01 .en {
    font-size: 0.625rem;
  }
  .c-ttl01 .en .ico {
    width: 12px;
  }
  .c-ttl01 .jp {
    font-size: 20px;
  }
  .c-ttl02 {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
  }
  .c-btn01 {
    padding: 15px 50px;
    font-size: 12px;
  }
  .c-section {
    padding: 50px 0;
  }
  .c-section.bg-deco01::before {
    top: max(-40px, -10.6666666667vw);
    bottom: auto;
    aspect-ratio: 375/127;
    height: auto;
    background: url(../img/common/bg01_sp.png.webp) no-repeat center/contain;
  }
  .desc {
    font-size: 12px;
  }
  .desc.bold {
    line-height: 1.8em;
    font-size: 16px;
  }
  .desc + .desc {
    margin-top: 18px;
  }
  .c-kv {
    background: url(../img/common/kv-bg_sp.jpg.webp) no-repeat center/cover;
    height: 360px;
    padding-top: 160px;
  }
  .c-kv .ttl {
    font-size: 30px;
  }
  .c-kv .crumb {
    margin-top: 36px;
  }
  .c-table01 {
    font-size: 12px;
  }
  .c-table01 tr {
    padding: 10px;
    gap: 20px;
  }
  .c-table01 th {
    width: 80px;
  }
  .c-table01 td {
    width: calc(100% - 80px - 20px);
  }
  .c-table02 {
    font-size: 12px;
  }
  .c-table02 tr {
    display: grid;
    grid-template-columns: 1fr;
  }
  .c-table02 th,
  .c-table02 td {
    padding: 10px;
  }
  .c-table02 th {
    font-weight: bold;
    padding: 8px;
    width: 100%;
    text-align: center;
  }
  .c-table02 td {
    padding: 10px;
    width: 100%;
  }
  .c-table02 td p + p {
    margin-top: 10px;
  }
  .c-table02 td ul + p {
    margin-top: 10px;
  }
  .tab-area .tab {
    width: calc(50% - 5px);
    padding: 12px 0;
    font-size: 14px;
  }
  .aco-container .aco-item + .aco-item {
    margin-top: 15px;
  }
  .aco-container .aco-item .aco-header {
    padding: 10px;
    border-radius: 20px;
    gap: 10px;
  }
  .aco-container .aco-item .aco-header .head {
    font-size: 20px;
  }
  .aco-container .aco-item .aco-header h3 {
    font-size: 12px;
  }
  .aco-container .aco-item .aco-header .aco-icon {
    width: 9.1px;
    height: 5.5px;
  }
  .aco-container .aco-item .aco-header .aco-icon::before, .aco-container .aco-item .aco-header .aco-icon::after {
    width: 2px;
    height: 7px;
  }
  .aco-container .aco-item .aco-content {
    margin-top: 5px;
    padding: 0 10px !important;
  }
  .aco-container .aco-item .aco-content .inner {
    padding: 10px 0 10px;
    gap: 10px;
  }
  .aco-container .aco-item .aco-content .head {
    font-size: 20px;
  }
  .aco-container .aco-item .aco-content p {
    font-size: 12px;
  }
  .aco-container .aco-item.is-active .aco-header .aco-icon::before {
    bottom: 2px;
  }
  .aco-container .aco-item.is-active .aco-header .aco-icon::after {
    bottom: 2px;
  }
  .c-link-sec {
    padding-top: 50px;
  }
  .c-link-sec .link-wrap {
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
  .c-link-sec .c-btn01 {
    width: 100%;
    padding: 15px 15px;
  }
  .top-btn {
    width: 50px;
    height: 50px;
  }
  .top-btn::before {
    top: 8px;
    width: 10px;
  }
  .top-btn p {
    margin-top: 5px;
  }
  .not-found .txt-sec {
    padding-top: 40px;
  }
  .not-found .txt-sec .c-btn01 {
    margin-top: 20px;
  }
  .home .mv-sec {
    aspect-ratio: 375/489;
  }
  .home .about-sec {
    padding: 30px 0 120px;
  }
  .home .about-sec .inner-block {
    padding: 0 30px;
  }
  .home .about-sec .cont-wrap {
    display: block;
  }
  .home .about-sec .cont-wrap .txt-wrap .c-btn01 {
    margin-top: 18px;
  }
  .home .service-sec {
    padding: 20px 0 10px;
  }
  .home .service-sec.bg-deco01::before {
    top: max(-100px, -26.6666666667vw);
  }
  .home .service-sec .cont-wrap .txt-wrap .txt {
    font-size: 12px;
  }
  .home .service-sec .cont-wrap .txt-wrap .c-btn01 {
    margin: 15px auto 0;
  }
  .home .service-sec .feature-list {
    grid-template-rows: 1fr;
    margin: 30px auto;
    gap: 20px;
    max-width: 500px;
  }
  .home .service-sec .feature-list li .img {
    width: 150px;
    margin-bottom: 12px;
  }
  .home .service-sec .feature-list li .ttl {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .home .service-sec .feature-list li .txt {
    font-size: 12px;
    line-height: 2.2em;
  }
  .home .recruit-sec {
    padding-top: 50px;
    padding-bottom: 150px;
  }
  .home .recruit-sec::before, .home .recruit-sec::after {
    height: auto;
    max-width: 330px;
    aspect-ratio: 330/254;
    margin: auto;
  }
  .home .recruit-sec::before {
    background: url(../img/home/recruit_img01_sp.png.webp) no-repeat center/contain;
    right: 0;
    top: 50px;
    bottom: auto;
  }
  .home .recruit-sec::after {
    background: url(../img/home/recruit_img02_sp.png.webp) no-repeat center/contain;
    bottom: -18vw;
    top: auto;
    left: 0;
    bottom: -21vw;
  }
  .home .recruit-sec .c-ttl01 {
    margin-bottom: 12px;
  }
  .home .recruit-sec .desc {
    max-width: 500px;
    margin: 0 auto;
  }
  .home .recruit-sec .desc.bold {
    font-size: 16px;
    line-height: 2em;
  }
  .home .recruit-sec .desc.bold .fz30 {
    font-size: 16px;
  }
  .home .recruit-sec .desc + .desc {
    margin-top: 13px;
    -moz-text-align-last: left;
         text-align-last: left;
  }
  .home .recruit-sec .btn-wrap {
    margin-top: 20px;
    gap: 15px;
  }
  .home .recruit-sec .btn-wrap .c-btn01 {
    width: 100%;
    padding: 15px 20px;
  }
  .company .greeting-sec {
    padding: 50px 0;
  }
  .company .greeting-sec .inner-block::before {
    width: min(100px, 26.6666666667vw);
    left: 5px;
  }
  .company .greeting-sec .inner-block::after {
    width: min(50px, 13.3333333333vw);
    right: 5px;
  }
  .company .greeting-sec .deco-wrap .deco01 {
    width: min(120px, 32vw);
    bottom: -70px;
  }
  .company .greeting-sec .deco-wrap .deco02 {
    width: min(190px, 50.6666666667vw);
    bottom: -70px;
  }
  .company .greeting-sec .white-box {
    padding: 30px 20px;
  }
  .company .greeting-sec .white-box .ttl {
    font-size: 16px;
    padding-bottom: 12px;
    margin-bottom: 20px;
  }
  .company .greeting-sec .white-box .txt {
    font-size: 12px;
    line-height: 1.8;
  }
  .company .greeting-sec .white-box .sign {
    font-size: 16px;
    margin-top: 10px;
  }
  .company .greeting-sec .white-box .sign span {
    font-size: 12px;
  }
  .company .greeting-sec .white-box + .white-box {
    margin-top: 20px;
  }
  .company .purpose-sec {
    padding-bottom: 100px;
  }
  .company .purpose-sec .deco-wrap .deco01 {
    width: min(120px, 32vw);
    bottom: -100px;
  }
  .company .purpose-sec .deco-wrap .deco02 {
    width: min(190px, 50.6666666667vw);
    bottom: -100px;
  }
  .company .purpose-sec .desc {
    margin: 0 auto;
    max-width: 500px;
  }
  .company .phirosophy-sec {
    padding: 50px 0;
  }
  .company .phirosophy-sec .list {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 20px auto 0;
    gap: 10px;
  }
  .company .phirosophy-sec .list > li {
    padding: 20px;
    min-height: inherit;
  }
  .company .phirosophy-sec .list > li .ttl {
    gap: 4px;
    font-size: 12px;
    margin-bottom: 10px;
  }
  .company .phirosophy-sec .list > li p {
    font-size: 12px;
  }
  .company .issue-sec {
    padding: 50px 0;
  }
  .company .issue-sec .white-box {
    padding: 20px;
  }
  .company .issue-sec .white-box .txt {
    font-size: 12px;
    line-height: 1.8;
  }
  .company .company-sec {
    padding: 50px 0;
  }
  .company .company-sec .map-wrap {
    margin-top: 20px;
  }
  .contact .contact-desc {
    margin: 40px 0;
  }
  .contact .tab-area .tab::after {
    width: 70px;
    height: 59px;
    background-size: contain;
    top: -30px;
  }
  .contact .tab-area .tab[aria-controls=tabpanel-1]::after {
    left: 12px;
  }
  .contact .tab-area .tab[aria-controls=tabpanel-2]::after {
    right: 12px;
  }
  .contact .contact-block {
    padding-bottom: 100px;
  }
  .contact .input-block,
  .contact .confirm-block {
    padding: 20px;
  }
  .contact .q-wrap {
    padding: 15px 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
  .contact .label-area {
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 10px;
    width: 100%;
  }
  .contact .input-area {
    width: 100%;
  }
  .contact .contact-label {
    font-size: 16px;
  }
  .contact input[type=text],
  .contact input[type=tel],
  .contact input[type=email],
  .contact input[type=date],
  .contact textarea,
  .contact select {
    padding: 7px 10px;
  }
  .contact .radio-group,
  .contact .checkbox-group {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact .radio-group .wpcf7-radio,
  .contact .radio-group .wpcf7-checkbox,
  .contact .checkbox-group .wpcf7-radio,
  .contact .checkbox-group .wpcf7-checkbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .contact .radio-group label::before,
  .contact .checkbox-group label::before {
    width: 22px;
    height: 22px;
  }
  .contact .radio-group label::after,
  .contact .checkbox-group label::after {
    width: 15px;
    height: 15px;
    left: 3px;
    top: 3px;
  }
  .contact .radio-group label .wpcf7-list-item-label {
    margin-top: 3px;
  }
  .contact .checkbox-group label::after {
    background-size: contain;
  }
  .contact .btn-wrap {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact .contact-btn {
    width: 100%;
  }
  .contact .privacy-area {
    margin-top: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact .decoration .deco01 {
    width: min(200px, 40vw);
  }
  .contact .decoration .deco02 {
    width: min(185px, 37vw);
  }
  .contact.confirm .btn-wrap {
    width: 100%;
    max-width: 277px;
  }
  .contact.confirm .btn-wrap .contact-btn {
    width: 100%;
    min-width: auto;
  }
  .recruit .message-sec {
    padding-top: 0;
    padding-bottom: 50px;
  }
  .recruit .message-sec .desc {
    font-size: 12px;
  }
  .recruit .requirement-sec .input-block {
    padding: 20px;
    border-radius: 0 0 20px 20px;
  }
  .recruit .requirement-sec .annotation-txt {
    font-size: 10px;
  }
  .recruit .support-sec .support-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .recruit .support-sec .support-list li {
    gap: 15px;
    font-size: 12px;
  }
  .recruit .support-sec .support-list li .img {
    width: 100px;
    height: 100px;
  }
  .recruit .support-sec .support-list li .ttl {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .recruit .schedule-sec {
    padding-bottom: 70px;
  }
  .recruit .schedule-sec .schedule-wrap {
    gap: 40px 30px;
  }
  .recruit .schedule-sec .schedule-area .ttl {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .recruit .schedule-sec .schedule-area .cont {
    padding: 15px;
    margin-bottom: 10px;
  }
  .recruit .schedule-sec .schedule-area .cont::before {
    height: 10px;
    bottom: -10px;
  }
  .recruit .schedule-sec .schedule-area .cont .top {
    font-size: 16px;
    gap: 16px;
  }
  .recruit .schedule-sec .schedule-area .cont .top .time {
    font-size: 14px;
    padding-left: 24px;
    margin-bottom: 0;
  }
  .recruit .schedule-sec .schedule-area .cont .top .ico {
    width: 50px;
  }
  .recruit .schedule-sec .schedule-area .cont .bottom {
    font-size: 12px;
  }
  .recruit .schedule-sec .deco01,
  .recruit .schedule-sec .deco02,
  .recruit .schedule-sec .deco03 {
    bottom: -18px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .recruit .schedule-sec .deco01 {
    left: 10px;
    width: min(150px, 40vw);
  }
  .recruit .schedule-sec .deco02 {
    display: none;
  }
  .recruit .schedule-sec .deco03 {
    right: 10px;
    width: min(200px, 53.3333333333vw);
  }
  .recruit .qanda-sec {
    padding-top: 70px;
    padding-bottom: 50px;
  }
  .service .c-link-sec .pdf-link {
    margin-bottom: 30px;
  }
  .service .c-link-sec .pdf-link > a {
    font-size: 12px;
    padding-bottom: 4px;
  }
  .service .c-link-sec .pdf-link > a .ico {
    font-size: 10px;
  }
  .service .c-link-sec {
    padding-bottom: 0;
  }
  .service .c-link-sec .c-btn01 {
    padding: 15px 5px;
    height: 51px;
  }
  .service .message-sec {
    padding: 50px 0;
  }
  .service .message-sec .cont-wrap .txt-wrap .txt {
    font-size: 12px;
  }
  .service .message-sec .cont-wrap .txt-wrap .c-btn01 {
    margin: 15px auto 0;
  }
  .service .message-sec .white-box {
    padding: 20px 25px;
    margin-top: 20px;
  }
  .service .message-sec .white-box .ttl {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .service .message-sec .white-box .list-wrap {
    display: grid;
    gap: 0 15px;
    grid-template-columns: 1fr 1fr;
  }
  .service .message-sec .white-box .list-wrap .c-dots-list > li {
    font-size: 12px;
  }
  .service .message-sec .white-box .list-wrap .c-dots-list > li::before {
    width: 6px;
    height: 6px;
    top: 10px;
  }
  .service .message-sec .white-box .list-wrap .last-txt {
    bottom: -5px;
  }
  .service .alignment-sec {
    padding: 50px 0;
  }
  .service .alignment-sec .deco01, .service .alignment-sec .deco02, .service .alignment-sec .deco03 {
    bottom: -18px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .service .alignment-sec .deco01 {
    left: 10px;
    width: min(150px, 40vw);
  }
  .service .alignment-sec .deco02 {
    display: none;
  }
  .service .alignment-sec .deco03 {
    right: 10px;
    width: min(200px, 53.3333333333vw);
  }
  .service .alignment-sec .cont-wrap .txt-wrap .txt {
    font-size: 12px;
  }
  .service .alignment-sec .cont-wrap .txt-wrap .txt + .txt {
    margin-top: 0.1em;
  }
  .service .alignment-sec .cont-wrap .txt-wrap .c-btn01 {
    margin: 15px auto 0;
  }
  .service .case-sec {
    padding: 50px 0;
  }
  .service .case-sec .cases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service .case-sec .cases-grid .case-card {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    padding: 15px 15px 30px;
  }
  .service .case-sec .cases-grid .case-card::before, .service .case-sec .cases-grid .case-card::after {
    width: 2px;
    height: 10px;
    right: 25px;
    bottom: 20px;
  }
  .service .case-sec .cases-grid .case-card .inn {
    display: block;
  }
  .service .case-sec .cases-grid .case-card .inn .ico {
    max-width: 120px;
    width: 100%;
    display: block;
    margin: 0 auto 10px;
  }
  .service .case-sec .cases-grid .case-card .desc {
    font-size: 12px;
    text-align: center;
  }
  .service .case-sec .ttl {
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
  }
  .service .case-sec .case-badge {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 8px;
  }
  .service .case-sec .modal-overlay .modal::before {
    width: 100px;
    top: -50px;
  }
  .service .case-sec .modal-overlay .modal::after {
    width: 50px;
    top: -55px;
    left: calc(50% - 60px);
  }
  .service .flow-sec {
    padding: 50px 0;
  }
  .service .flow-sec .flow-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service .flow-sec .flow-list > li {
    margin: 0 auto;
    max-width: 500px;
  }
  .service .flow-sec .flow-list > li::before {
    display: none;
  }
  .service .flow-sec .flow-list > li + li {
    margin-top: 20px;
  }
  .service .flow-sec .flow-list > li .tip {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .service .flow-sec .flow-list > li .tip span {
    font-size: 16px;
  }
  .service .flow-sec .flow-list > li .inn {
    padding: 0 10px 0;
  }
  .service .flow-sec .flow-list > li .ttl {
    font-size: 1rem;
  }
  .service .flow-sec .flow-list > li .txt {
    font-size: 12px;
  }
  .service .price-sec {
    padding: 50px 0;
  }
  .service .price-sec .white-box {
    padding: 20px;
  }
  .service .price-sec .white-box p {
    font-size: 12px;
  }
  .service .price-sec .white-box p + p {
    margin-top: 0.8em;
  }
}
@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  .inner-block {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1400px;
  }
  a,
  a::before,
  a::after,
  button,
  button::before,
  button::after {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .sp {
    display: none !important;
  }
  .c-header .contact-btn {
    text-align: center;
    border-radius: 30px;
    border: 1px solid #FFA200;
    color: #fff;
    background: #FFA200;
    padding: 12px 40px;
  }
  .btn-menu {
    display: none;
  }
  .c-link-sec .link-wrap {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .home .service-sec .feature-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .company .purpose-sec {
    padding-bottom: 90px;
  }
  .contact .contact-label {
    max-width: 150px;
  }
  .contact .radio-group .wpcf7-radio,
  .contact .radio-group .wpcf7-checkbox,
  .contact .checkbox-group .wpcf7-radio,
  .contact .checkbox-group .wpcf7-checkbox {
    margin-top: 7px;
  }
  .contact .radio-group label {
    min-width: 120px;
  }
  .contact .radio-group label .wpcf7-list-item-label {
    margin-top: 6px;
  }
  .contact .contact-btn:hover {
    background: #fff;
    color: #FFA200;
  }
  .contact.complete .contact-block {
    padding-bottom: 150px;
  }
  .recruit .requirement-sec {
    padding-bottom: 100px;
  }
  .recruit .support-sec {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .recruit .schedule-sec {
    padding-top: 100px;
    padding-bottom: 130px;
  }
  .service .c-link-sec .link-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .service .c-link-sec .c-btn01 {
    padding: 4px 20px;
    height: 60px;
    width: 240px;
  }
  .service .case-sec .case-badge img {
    margin-top: 5px;
  }
  .service .flow-sec .flow-list > li .inn {
    min-height: 364px;
    border-right: 1px solid #A6A09C;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .c-header .c-menu-wrap .c-menu {
    margin-right: 30px;
    gap: 20px;
  }
}
@media (any-hover: hover) {
  .c-header .c-menu-wrap .c-menu a:hover {
    color: #FFA200;
  }
  .c-header .contact-btn:hover {
    background-color: #FFFDF6;
    color: #FFA200;
  }
  .c-footer .l-area .info-wrap a:hover {
    color: #FFA200;
  }
  .c-footer .link-wrap li a:hover {
    color: #FFA200;
  }
  .c-btn01:hover {
    background-color: #FFFDF6;
    color: #FFA200;
  }
  .tab-area:has(> :only-child) .tab:hover {
    background-color: #fff;
    border-color: #fff;
  }
  .tab-area .tab:hover {
    border-color: #FFA200;
    background-color: #fff;
  }
  .aco-container .aco-item .aco-header:hover {
    background-color: #FFEFBC;
  }
  .top-btn:hover {
    color: #FFA200;
    background-color: #FFF7E0;
  }
  .top-btn:hover::before {
    content: "";
    background-color: #FFA200;
  }
  .contact .contact-btn.back-btn:hover {
    background: #9A9A9A;
    color: #fff;
  }
  .contact .privacy-area .wpcf7-list-item-label a:hover {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
  .service .c-link-sec .pdf-link > a:hover {
    color: #FFA200;
    border-color: #FFA200;
  }
  .service .c-link-sec .pdf-link > a:hover .ico {
    color: #FFA200;
    border-color: #FFA200;
  }
  .service .case-sec .cases-grid .case-card:hover {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .c-link-sec .link-wrap {
    width: 100%;
    gap: 20px;
  }
  .c-link-sec .c-btn01 {
    width: 100%;
    max-width: 240px;
    padding: 18px 20px;
  }
  .home .service-sec .feature-list {
    grid-template-columns: 1fr 1fr;
  }
  .recruit .requirement-sec .input-block {
    padding: 40px;
  }
  .service .case-sec .modal-overlay .modal::before {
    width: 150px;
    left: calc(50% + 50px);
    top: calc(50% - 200px);
  }
  .service .case-sec .modal-overlay .modal::after {
    width: 80px;
    left: calc(50% - 80px);
    top: calc(50% - 210px);
  }
}
@media only screen and (max-width: 767px) and (max-width: 450px) {
  .home .about-sec {
    padding: 30px 0 80px;
  }
  .home .service-sec.bg-deco01::before {
    top: max(-60px, -16vw);
  }
}
@media only screen and (max-width: 900px) {
  .home .about-sec .cont-wrap {
    display: block;
  }
  .home .about-sec .cont-wrap .img-wrap {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .home .about-sec .cont-wrap .txt-wrap {
    width: 100%;
    max-width: none;
    margin-top: 33px;
  }
  .home .about-sec .cont-wrap .txt-wrap .txt {
    font-size: 12px;
    line-height: 2.2em;
  }
  .home .service-sec .cont-wrap {
    display: block;
    margin: 20px auto 0;
    max-width: 500px;
  }
  .home .service-sec .cont-wrap .img-wrap {
    margin: 0 auto;
    width: min(305px, 81.3333333333vw);
  }
  .home .service-sec .cont-wrap .txt-wrap {
    width: 100%;
    margin-top: 32px;
  }
  .service .message-sec .cont-wrap {
    display: block;
    margin: 20px auto 0;
    max-width: 500px;
  }
  .service .message-sec .cont-wrap .img-wrap {
    margin: 0 auto;
    width: min(305px, 81.3333333333vw);
  }
  .service .message-sec .cont-wrap .txt-wrap {
    margin-top: 32px;
  }
  .service .alignment-sec .cont-wrap {
    display: block;
    margin: 20px auto 0;
    max-width: 500px;
  }
  .service .alignment-sec .cont-wrap .img-wrap {
    margin: 0 auto;
    width: min(305px, 81.3333333333vw);
  }
  .service .alignment-sec .cont-wrap .txt-wrap {
    margin-top: 32px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 900px) {
  .home .about-sec .cont-wrap .img-wrap img {
    max-width: 500px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1700px) {
  .home .recruit-sec::before, .home .recruit-sec::after {
    max-width: 300px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1700px) and (max-width: 1300px) {
  .home .recruit-sec::before, .home .recruit-sec::after {
    top: 60px;
    bottom: auto;
    max-width: 200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1700px) and (max-width: 1300px) and (max-width: 1000px) {
  .home .recruit-sec::before, .home .recruit-sec::after {
    bottom: auto;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media only screen and (max-width: 767px) and (max-width: 375px) {
  .home .recruit-sec .btn-wrap .c-btn01 {
    padding: 10px 6px;
  }
}
@media only screen and (max-width: 1650px) {
  .company .greeting-sec.bg-deco01::before {
    bottom: 0;
    top: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1500px) {
  .company .greeting-sec .inner-block::before {
    left: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1400px) {
  .company .greeting-sec .deco-wrap .deco01 {
    width: min(220px, 15.7142857143vw);
  }
  .company .greeting-sec .deco-wrap .deco02 {
    width: min(350px, 25vw);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1600px) {
  .company .purpose-sec .deco-wrap .deco01 {
    width: min(220px, 15.7142857143vw);
  }
  .company .purpose-sec .deco-wrap .deco02 {
    width: min(350px, 25vw);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  .contact .decoration .deco01 {
    width: 300px;
  }
  .contact .decoration .deco02 {
    width: 300px;
  }
}
@media only screen and (max-width: 1300px) {
  .recruit .message-sec.bg-deco01::before {
    top: auto;
    bottom: 0;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 767px) {
  .recruit .message-sec.bg-deco01::before {
    height: auto;
    bottom: -15vw;
  }
}
@media only screen and (max-width: 600px) {
  .recruit .schedule-sec .schedule-wrap {
    grid-template-columns: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1300px) {
  .service .flow-sec .flow-list > li .inn {
    height: 100%;
  }
}
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */