@charset "UTF-8";
/*
  Josh W. Comeau's Custom CSS Reset + ress.css
  重複を省いたカスタムリセット
*/
/* ボックスモデル */
*, *::before, *::after {
  box-sizing: border-box;
  background-repeat: no-repeat;
}

/* 余白・パディングのリセット */
* {
  margin: 0;
  padding: 0;
}

/* HTML基本設定 */
html {
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4;
}

/* ボディ */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* 擬似要素 */
::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

/* メディア要素 */
img, picture, video, canvas, svg {
  max-width: 100%;
  display: block;
  border-style: none;
}

/* フォント継承 */
input, button, textarea, select, optgroup {
  font: inherit;
}

/* テキストのはみ出し防止 */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

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

/* リンク */
a {
  text-decoration: none;
  color: inherit;
  background-color: transparent;
}
a:active, a:hover {
  outline-width: 0;
}

/* ボタン */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
  color: inherit;
  overflow: visible;
  -webkit-appearance: button;
}

/* フォーム要素 */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

/* テキストエリア */
textarea {
  overflow: auto;
  resize: vertical;
}

/* セレクト */
select {
  -moz-appearance: none;
  -webkit-appearance: none;
}
select::-ms-expand {
  display: none;
}
select::-ms-value {
  color: currentColor;
}

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

[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;
}

/* テーブル */
table {
  border-color: inherit;
  text-indent: 0;
}

/* その他 */
small {
  font-size: 80%;
}

b, strong {
  font-weight: bolder;
}

[hidden] {
  display: none;
}

[disabled] {
  cursor: default;
}

summary {
  display: list-item;
}

progress {
  vertical-align: baseline;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

hr {
  overflow: visible;
  height: 0;
  color: inherit;
}

pre {
  font-size: 1em;
}

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

/* Reactフレームワーク用 */
#root, #__next {
  isolation: isolate;
}

/* アクセシビリティ */
[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

.section-header__title {
  line-height: 1.3;
  letter-spacing: 0.03em;
  font-weight: 700;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: #000;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.03em;
  background-color: #F5F5F5;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

a {
  color: inherit;
  display: inline-block;
  transition: 0.3s ease;
}
a:hover {
  transform: 0.3s ease;
  opacity: 0.8;
}

img {
  width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

.wrapper {
  max-width: 1024px;
  padding-inline: 16px;
  margin-inline: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 96px;
}
@media (max-width: 430px) {
  .section-header {
    margin-bottom: 48px;
  }
}
.section-header__title {
  font-size: 4rem;
  color: #ED7D31;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
  display: inline-block;
  position: relative;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .section-header__title {
    font-size: 3.5rem;
  }
}
@media (max-width: 430px) {
  .section-header__title {
    font-size: 3rem;
  }
}
.section-header__title::after {
  content: "";
  width: 4px;
  height: 100%;
  background-color: #ED7D31;
  position: absolute;
  top: 0;
  left: -15px;
}

.btn {
  color: #fff;
  font-weight: 700;
  background-color: #ED7D31;
  border-radius: 5px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.25);
  padding: 8px 16px;
}

.no-scroll {
  overflow: hidden;
}

#header {
  width: 100%;
  height: 65px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  transition: 0.3s ease;
  padding-inline: 24px;
  z-index: 999;
}
#header .header-inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1000;
}
@media (max-width: 430px) {
  #header .header-inner {
    justify-content: end;
  }
}
#header .header-inner .logo {
  font-size: 1.8rem;
}
@media (max-width: 430px) {
  #header .header-inner .logo {
    display: none;
  }
}
#header .header-inner nav {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
#header .header-inner nav ul {
  display: flex;
}
@media (max-width: 768px) {
  #header .header-inner nav ul {
    display: none;
  }
}
#header .header-inner nav ul li {
  margin-right: 16px;
}
@media (max-width: 768px) {
  #header .header-inner nav .btn {
    margin-right: 50px;
  }
}
#header .toggle {
  display: none;
  width: 35px;
  height: 35px;
  cursor: pointer;
  position: fixed;
  top: 17px;
  right: 20px;
  z-index: 1000;
}
@media (max-width: 768px) {
  #header .toggle {
    display: block;
  }
}
#header .toggle span {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  transition: 0.3s ease;
  background-color: #000;
}
#header .toggle span:nth-child(1) {
  top: 23%;
}
#header .toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
#header .toggle span:nth-child(3) {
  bottom: 23%;
}
#header .mask {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  transform: translateX(100%);
  transition: 0.3s ease;
  opacity: 0;
  z-index: 998;
}
#header.active .header-inner {
  width: 100%;
  height: 100vh;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  padding-block: 96px;
  margin-left: auto;
}
#header.active .header-inner .logo {
  margin-bottom: 48px;
}
#header.active .header-inner nav {
  flex-direction: column;
}
#header.active .header-inner nav ul {
  width: 100%;
  display: block;
}
#header.active .header-inner nav ul li {
  margin-right: 0;
  margin-bottom: 16px;
}
#header.active .header-inner nav .btn {
  margin-right: 0;
}
#header.active .toggle {
  top: 32px;
}
#header.active .toggle span {
  top: 50%;
  transform: translateY(-50%);
}
#header.active .toggle span:nth-child(1), #header.active .toggle span:nth-child(2) {
  transform: rotate(45deg);
}
#header.active .toggle span:nth-child(3) {
  transform: rotate(-45deg);
}
#header.active .mask {
  opacity: 1;
  transform: translateX(0);
}

.footer {
  color: #fff;
  background-color: #2C3E50;
  background-position: center;
  background-size: cover;
  padding-top: 48px;
}
.footer__top {
  border-bottom: 1px solid #F5F5F5;
  padding-bottom: 48px;
}
.footer__top .wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer__top .wrapper {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .footer__top .wrapper .left {
    margin-bottom: 48px;
  }
}
.footer__top .wrapper .left .logo {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (max-width: 430px) {
  .footer__top .wrapper .left .logo {
    font-size: 1.6rem;
  }
}
.footer__top .wrapper .left .address {
  font-style: normal;
  font-size: 1.4rem;
}
@media (max-width: 430px) {
  .footer__top .wrapper .left .address {
    font-size: 1.4rem;
  }
}
.footer__top .wrapper .right .nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 768px) {
  .footer__top .wrapper .right .nav {
    flex-direction: column;
  }
}
.footer__top .wrapper .right .nav .nav-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (max-width: 430px) {
  .footer__top .wrapper .right .nav .nav-title {
    font-size: 1.6rem;
  }
}
.footer__top .wrapper .right .nav .nav-list {
  margin-bottom: 24px;
}
@media (max-width: 430px) {
  .footer__top .wrapper .right .nav .nav-list {
    font-size: 1.4rem;
  }
}
.footer__top .wrapper .right .nav .sns {
  width: 40px;
  height: 40px;
}
.footer__bottom {
  text-align: center;
  padding: 16px;
}
.footer__bottom p {
  font-size: 1.2rem;
  color: #fff;
}
@media (max-width: 430px) {
  .footer__bottom p {
    text-align: center;
  }
}

#top .mainvisual {
  width: 100%;
  margin-top: 65px;
}
@media (max-width: 768px) {
  #top .mainvisual .pc-only {
    display: none;
  }
}
#top .mainvisual .sp-only {
  display: none;
}
@media (max-width: 768px) {
  #top .mainvisual .sp-only {
    display: block;
  }
}
#top .reason {
  text-align: center;
  padding-top: 96px;
  margin-bottom: 48px;
}
@media (max-width: 430px) {
  #top .reason {
    padding-top: 80px;
  }
}
#top .reason__title {
  font-size: 3.2rem;
  line-height: 1.3;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 96px;
}
@media (max-width: 768px) {
  #top .reason__title {
    font-size: 3rem;
  }
}
@media (max-width: 430px) {
  #top .reason__title {
    font-size: 2.8rem;
  }
}
@media (max-width: 430px) {
  #top .reason__title {
    margin-bottom: 48px;
  }
}
#top .reason__title .number {
  font-size: 6.2rem;
  position: relative;
}
@media (max-width: 768px) {
  #top .reason__title .number {
    font-size: 5rem;
  }
}
#top .reason__title .number::before {
  content: "";
  width: 80px;
  height: 4px;
  background-color: #ED7D31;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 430px) {
  #top .reason__title .number::before {
    width: 70px;
  }
}
#top .reason__title .yellow {
  color: #ED7D31;
}
#top .reason__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  #top .reason__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
#top .reason__list .item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.25);
  text-align: left;
  padding: 16px 24px 24px 24px;
}
@media (max-width: 430px) {
  #top .reason__list .item {
    padding: 16px;
  }
}
#top .reason__list .item__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#top .reason__list .item__top .num {
  width: 20%;
  font-size: 5rem;
  color: rgba(237, 125, 49, 0.7);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  #top .reason__list .item__top .num {
    font-size: 4rem;
  }
}
@media (max-width: 430px) {
  #top .reason__list .item__top .num {
    font-size: 3.5rem;
  }
}
#top .reason__list .item__top .title {
  width: 80%;
  padding-inline: 8px;
  border-bottom: 1px solid #ED7D31;
  padding-bottom: 8px;
}
@media (max-width: 768px) {
  #top .reason__list .item__top .title {
    width: 90%;
  }
}
@media (max-width: 430px) {
  #top .reason__list .item__top .title {
    font-size: 1.7rem;
  }
}
#top .reason__list .item__bottom {
  width: 80%;
  margin-left: auto;
}
@media (max-width: 430px) {
  #top .reason__note {
    font-size: 1.4rem;
  }
}
#top .reason__note span {
  font-size: 2rem;
  color: #ED7D31;
  font-weight: 700;
}
@media (max-width: 430px) {
  #top .reason__note span {
    font-size: 1.6rem;
  }
}
#top .service {
  position: relative;
  background-color: #FDF5E6;
  padding-top: 96px;
  padding-bottom: 96px;
}
#top .service::before {
  width: 250px;
  content: "";
  border-top: 80px solid #FDF5E6;
  border-left: 125px solid transparent;
  border-right: 125px solid transparent;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -80px;
}
#top .service__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  #top .service__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
#top .service__list .item {
  color: #fff;
  background-color: #2C3E50;
  border-radius: 10px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.25);
}
#top .service__list .item .textarea {
  padding: 24px;
}
#top .service__list .item .textarea .title {
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 430px) {
  #top .service__list .item .textarea .title {
    font-size: 1.8rem;
  }
}
#top .service__list .item .textarea .title .icon {
  width: 40px;
  height: 40px;
  margin-right: 8px;
}
@media (max-width: 430px) {
  #top .service__list .item .textarea .title .icon {
    width: 30px;
    height: 30px;
  }
}
#top .service__list .item .textarea .text {
  margin-bottom: 16px;
}
#top .service__list .item .textarea .point {
  list-style: disc;
  list-style-position: inside;
}
#top .works {
  background-color: #fff;
  padding-top: 144px;
  padding-bottom: 96px;
}
#top .works .section-header {
  margin-bottom: 48px;
}
#top .works .instagram {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#top .works .instagram img {
  width: 16px;
  margin-right: 8px;
}
#top .works .instagram p {
  font-size: 1.4rem;
  color: #979797;
}
#top .greeting {
  color: #fff;
  background-image: url(../img/greeting-bg.png);
  background-position: center;
  background-size: cover;
  padding-block: 96px;
}
#top .greeting .section-header__title {
  color: #fff;
}
#top .greeting .section-header__title::after {
  background-color: #fff;
}
#top .greeting__inner .right .textarea {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding-block: 24px;
  margin-bottom: 24px;
}
#top .greeting__inner .right .textarea .text-1,
#top .greeting__inner .right .textarea .text-2 {
  margin-bottom: 24px;
}
#top .greeting__inner .right .sign .position {
  font-size: 1.4rem;
  color: #D9D9D9;
}
#top .about {
  background-color: #fff;
  padding-top: 96px;
  padding-bottom: 48px;
}
#top .about .table {
  width: 100%;
  text-align: left;
  margin-bottom: 32px;
}
#top .about .table__row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #D9D9D9;
  padding: 16px 24px;
}
@media (max-width: 768px) {
  #top .about .table__row {
    flex-direction: column;
  }
}
@media (max-width: 430px) {
  #top .about .table__row {
    padding: 16px 8px;
  }
}
#top .about .table__row .head {
  width: 30%;
  font-weight: 700;
}
@media (max-width: 768px) {
  #top .about .table__row .head {
    width: 100%;
    margin-bottom: 16px;
  }
}
#top .about .table__row .date {
  width: 70%;
}
@media (max-width: 768px) {
  #top .about .table__row .date {
    width: 100%;
  }
}
#top .about .sns {
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  margin-bottom: 96px;
}
@media (max-width: 768px) {
  #top .about .sns {
    flex-direction: column;
  }
}
@media (max-width: 430px) {
  #top .about .sns {
    padding: 0 8px;
  }
}
#top .about .sns__text {
  width: 30%;
  font-weight: 700;
}
@media (max-width: 768px) {
  #top .about .sns__text {
    width: 100%;
    margin-bottom: 16px;
  }
}
#top .about .sns__link {
  width: 70%;
  display: flex;
}
@media (max-width: 768px) {
  #top .about .sns__link {
    width: 100%;
  }
}
#top .about .sns__link .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 24px;
}
#top .about .sns__link .btn:last-child {
  margin-right: 0;
}
#top .about .sns__link .btn img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
#top .about iframe {
  width: 100%;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.25);
  margin-inline: auto;
}
@media (max-width: 768px) {
  #top .about iframe {
    height: 400px;
  }
}
#top .recruit {
  background-image: url(../img/recruit-bg.png);
  background-position: center;
  background-size: cover;
  padding-block: 96px;
}
#top .recruit .recruit-inner {
  background-color: rgba(245, 245, 245, 0.8);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.25);
  padding: 32px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  #top .recruit .recruit-inner {
    flex-direction: column;
    padding: 48px 32px;
  }
}
@media (max-width: 430px) {
  #top .recruit .recruit-inner {
    padding: 32px 16px;
  }
}
#top .recruit__left {
  width: 50%;
}
@media (max-width: 768px) {
  #top .recruit__left {
    width: 100%;
    margin-bottom: 48px;
  }
}
#top .recruit__left .offering {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  background-color: #2C3E50;
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 16px;
}
#top .recruit__left .title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 16px;
}
@media (max-width: 430px) {
  #top .recruit__left .title {
    font-size: 3rem;
  }
}
#top .recruit__left .lead {
  margin-bottom: 48px;
}
#top .recruit__right {
  width: 50%;
}
@media (max-width: 768px) {
  #top .recruit__right {
    width: 100%;
  }
}
#top .recruit__right .table-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ED7D31;
  margin-bottom: 16px;
}
#top .recruit__right .table {
  width: 100%;
  text-align: left;
  background-color: #fff;
  border-radius: 10px;
  padding: 16px;
}
#top .recruit__right .table__row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #D9D9D9;
  padding: 8px;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  #top .recruit__right .table__row {
    flex-direction: column;
  }
}
#top .recruit__right .table__row:last-child {
  border-bottom: none;
}
#top .recruit__right .table__row .head {
  width: 35%;
}
@media (max-width: 768px) {
  #top .recruit__right .table__row .head {
    width: 100%;
    margin-bottom: 8px;
  }
}
#top .recruit__right .table__row .date {
  width: 65%;
}
@media (max-width: 768px) {
  #top .recruit__right .table__row .date {
    width: 100%;
  }
}
#top .contact {
  padding-top: 96px;
}
@media (max-width: 768px) {
  #top .contact .section-header__title {
    font-size: 3rem;
  }
}
@media (max-width: 430px) {
  #top .contact .section-header__title {
    font-size: 2.5rem;
  }
}
#top .contact .section-header__title::after {
  left: -10px;
}
#top .contact .flow {
  max-width: 500px;
  background-color: #FDF5E6;
  border-radius: 10px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.25);
  padding: 24px 32px;
  margin-inline: auto;
  margin-bottom: 48px;
}
@media (max-width: 430px) {
  #top .contact .flow {
    padding: 24px 16px;
  }
}
#top .contact .flow__title {
  font-weight: 700;
  margin-bottom: 16px;
}
#top .contact .flow__list .item {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 16px;
}
#top .contact .flow__list .item .num {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  background-color: #ED7D31;
  border-radius: 50%;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
#top .contact .flow__list .item .body .title {
  font-weight: 700;
}
#top .contact .flow__list .item .body .text {
  font-size: 1.4rem;
}
#top .contact .form {
  max-width: 820px;
  background: #fff;
  border-radius: 10px;
  padding: 48px;
  margin-inline: auto;
  margin-bottom: 96px;
}
@media (max-width: 430px) {
  #top .contact .form {
    padding: 24px;
  }
}
#top .contact .form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
#top .contact .form__group .label {
  font-weight: 700;
  margin-left: 8px;
}
#top .contact .form__group .input,
#top .contact .form__group .textarea,
#top .contact .form__group .select {
  width: 100%;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  padding: 8px 16px;
}
#top .contact .form__group .input::-moz-placeholder, #top .contact .form__group .textarea::-moz-placeholder, #top .contact .form__group .select::-moz-placeholder {
  color: #D9D9D9;
}
#top .contact .form__group .input::placeholder,
#top .contact .form__group .textarea::placeholder,
#top .contact .form__group .select::placeholder {
  color: #D9D9D9;
}
#top .contact .form__group .select {
  cursor: pointer;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
#top .contact .form__group .textarea {
  height: 120px;
  margin-bottom: 16px;
}
#top .contact .form .btn {
  display: block;
  margin-inline: auto;
}

.wpcf7-spinner {
  display: none;
}/*# sourceMappingURL=style.css.map */