@charset "UTF-8";
/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=number],
input[type=search],
input[type=password],
textarea,
select,
button {
  font-family: inherit; /* 親のフォントを継承 */
  font-size: 100%; /* 親のサイズを継承 */
  color: inherit; /* 親のテキスト色を継承 */
  line-height: inherit; /* 親の行間を継承 */
  margin: 0; /* 余白をリセット */
  padding: 0; /* パディングをリセット */
  border: none; /* 境界線をリセット */
  background: none; /* 背景色をリセット */
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 一貫したサイズ計算 */
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=number],
input[type=search],
input[type=password],
textarea {
  padding: 8px; /* ユーザーの指定に応じたパディング */
  border: 1px solid #ccc; /* デフォルトのボーダー */
  border-radius: 4px; /* 角丸 */
  background-color: #fff; /* 背景色 */
}

button {
  cursor: pointer; /* ボタンにカーソルを指定 */
  border: none; /* ボーダーを無効化 */
}

button:disabled {
  background-color: #ccc; /* 無効化時の背景色 */
  cursor: not-allowed; /* 無効化時のカーソル */
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  text-decoration: none;
}

a:hover {
  -webkit-transform: translateY(1.5px);
          transform: translateY(1.5px);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

body {
  background-color: #f0f0f0;
}

.font-xsmall {
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.font-small {
  font-size: clamp(1.1rem, 2.5vw, 1.2rem);
}

.font-normal {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}

.font-large {
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
}

.font-xlarge {
  font-size: clamp(2rem, 4vw, 2.4rem);
}

.font-2xlarge {
  font-size: clamp(2.5rem, 4.5vw, 3rem);
}

.font-3xlarge {
  font-size: clamp(3rem, 5vw, 3.6rem);
}

.font-4xlarge {
  font-size: clamp(3.5rem, 6vw, 4.2rem);
}

.font-5xlarge {
  font-size: clamp(4.5rem, 7vw, 5.4rem);
}

.font-6xlarge {
  font-size: clamp(5rem, 8vw, 6rem);
}

.font-10xlarge {
  font-size: clamp(8rem, 10vw, 10rem);
}

.margin-btm-small {
  margin-bottom: 6px;
}
@media (max-width: 834px) {
  .margin-btm-small {
    margin-bottom: 4.8px;
  }
}
@media (max-width: 600px) {
  .margin-btm-small {
    margin-bottom: 3.6px;
  }
}
@media (max-width: 320px) {
  .margin-btm-small {
    margin-bottom: 2.4px;
  }
}

.margin-btm-medium {
  margin-bottom: 12px;
}
@media (max-width: 834px) {
  .margin-btm-medium {
    margin-bottom: 9.6px;
  }
}
@media (max-width: 600px) {
  .margin-btm-medium {
    margin-bottom: 7.2px;
  }
}
@media (max-width: 320px) {
  .margin-btm-medium {
    margin-bottom: 4.8px;
  }
}

.margin-btm-large {
  margin-bottom: 24px;
}
@media (max-width: 834px) {
  .margin-btm-large {
    margin-bottom: 19.2px;
  }
}
@media (max-width: 600px) {
  .margin-btm-large {
    margin-bottom: 14.4px;
  }
}
@media (max-width: 320px) {
  .margin-btm-large {
    margin-bottom: 9.6px;
  }
}

.margin-btm-xlarge {
  margin-bottom: 30px;
}
@media (max-width: 834px) {
  .margin-btm-xlarge {
    margin-bottom: 24px;
  }
}
@media (max-width: 600px) {
  .margin-btm-xlarge {
    margin-bottom: 18px;
  }
}
@media (max-width: 320px) {
  .margin-btm-xlarge {
    margin-bottom: 12px;
  }
}

.margin-btm-2xlarge {
  margin-bottom: 60px;
}
@media (max-width: 834px) {
  .margin-btm-2xlarge {
    margin-bottom: 48px;
  }
}
@media (max-width: 600px) {
  .margin-btm-2xlarge {
    margin-bottom: 36px;
  }
}
@media (max-width: 320px) {
  .margin-btm-2xlarge {
    margin-bottom: 24px;
  }
}

.margin-btm-3xlarge {
  margin-bottom: 120px;
}
@media (max-width: 834px) {
  .margin-btm-3xlarge {
    margin-bottom: 96px;
  }
}
@media (max-width: 600px) {
  .margin-btm-3xlarge {
    margin-bottom: 72px;
  }
}
@media (max-width: 320px) {
  .margin-btm-3xlarge {
    margin-bottom: 48px;
  }
}

.margin-btm-4xlarge {
  margin-bottom: 200px;
}
@media (max-width: 834px) {
  .margin-btm-4xlarge {
    margin-bottom: 160px;
  }
}
@media (max-width: 600px) {
  .margin-btm-4xlarge {
    margin-bottom: 120px;
  }
}
@media (max-width: 320px) {
  .margin-btm-4xlarge {
    margin-bottom: 80px;
  }
}

html {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 62.5%;
  line-height: 1.6;
  word-break: break-all;
  letter-spacing: 0.02em;
}

body {
  color: #161517;
  word-break: normal;
  word-wrap: break-word;
}

h1, h2, h3, h4, h5, h6, p, blockquote, pre, span {
  line-height: 1.6;
  letter-spacing: 0.02em;
}

a {
  color: #161517;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.l-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 18px 2%;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
  opacity: 1;
}
@media screen and (max-width: 834px) {
  .l-header {
    padding: 12px 4%;
  }
}
.l-header__inner {
  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: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-header__logo-img {
  width: 120px;
}
@media screen and (max-width: 834px) {
  .l-header__logo-img {
    width: 60px;
  }
}
.l-header__nav {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.l-header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.l-header__nav-list li {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}
.l-header__nav-list li._top {
  display: none;
}
.l-header__nav-list a {
  color: #161517;
}
.l-header__nav__logo {
  display: none;
}
@media screen and (max-width: 834px) {
  .l-header__nav {
    background-color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    padding: 60px 8%;
    /* ナビゲーションがアクティブなときのスタイル */
  }
  .l-header__nav.active {
    -webkit-transform: translateY(68px);
            transform: translateY(68px);
  }
  .l-header__nav-list {
    -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: 30px;
  }
  .l-header__nav-list a {
    color: #161517;
  }
  .l-header__nav-list li {
    font-size: clamp(2rem, 4vw, 2.4rem);
  }
  .l-header__nav-list li._top {
    display: block;
  }
  .l-header__nav__logo {
    display: block;
    width: 100px;
    margin-bottom: 24px;
  }
}

/* ハンバーガーメニュー */
.l-header__hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  -webkit-transition: background-color 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 100;
}
.l-header__hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  margin-bottom: 5px;
  background-color: #6A6A6A;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.l-header__hamburger.active span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}
.l-header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.active span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}
@media screen and (max-width: 834px) {
  .l-header__hamburger {
    display: block;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 90;
}

html, body {
  height: 100%;
  margin: 0;
}

.l-page-container {
  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;
  min-height: 100%;
  position: relative;
  padding-top: 140px;
  padding-bottom: 186px;
}
@media screen and (max-width: 834px) {
  .l-page-container {
    padding-top: 68px;
    padding-bottom: 66px;
  }
}
.home .l-page-container {
  padding-top: 0;
  padding-bottom: 186px;
}
@media screen and (max-width: 834px) {
  .home .l-page-container {
    padding-bottom: 66px;
  }
}
.l-container {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 18px;
  padding-left: 18px;
}
.l-container-l {
  margin-right: 4%;
  margin-left: 4%;
}
.l-container-m {
  max-width: 1024px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 18px;
  padding-left: 18px;
}
.l-container-s {
  max-width: 768px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 18px;
  padding-left: 18px;
}
.l-container-full {
  padding-right: 18px;
  padding-left: 18px;
}

.l-main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.l-archive {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.l-single {
  margin-bottom: 120px;
}

.l-footer {
  padding: 30px 2% 24px 2%;
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media screen and (max-width: 834px) {
  .l-footer {
    padding: 24px 0;
  }
}
.l-footer__inner {
  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: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px 0;
}
@media screen and (max-width: 834px) {
  .l-footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 834px) {
  .l-footer__left {
    display: none;
  }
}
.l-footer__logo-img {
  width: 120px;
}
@media screen and (max-width: 834px) {
  .l-footer__logo-img {
    width: 60px;
  }
}
.l-footer__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 834px) {
  .l-footer__nav-list {
    display: none;
  }
}
.l-footer__copy {
  text-align: right;
}

.c-button-link {
  padding: 12px 42px;
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  color: #FFFFFF;
  background-color: #FF5A1A;
  border: solid 1px #FF5A1A;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 834px) {
  .c-button-link {
    padding: 6px 30px;
  }
}
.c-button-link::after {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 24px;
  height: 24px;
  margin-left: 24px;
  background-image: url("../img/icon_arrow1.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
@media screen and (max-width: 834px) {
  .c-button-link::after {
    width: 18px;
    height: 18px;
    margin-left: 12px;
  }
}
.c-button-link._small {
  padding: 6px 24px;
  font-size: clamp(1.1rem, 2.5vw, 1.2rem);
}
.c-button-link._small::after {
  width: 18px;
  height: 18px;
  margin-left: 6px;
  background-image: url("../img/icon_arrow1.svg");
}
.c-button-link._small:hover::after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.c-button-link._large {
  font-size: clamp(2rem, 4vw, 2.4rem);
}
.c-button-link._large::after {
  width: 40px;
  height: 40px;
  margin-left: 12px;
}
@media screen and (max-width: 834px) {
  .c-button-link._large {
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  }
  .c-button-link._large::after {
    width: 18px;
    height: 18px;
    margin-left: 6px;
  }
}
.c-button._en {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.c-button._center {
  text-align: center;
}
.c-button._right {
  text-align: right;
}

.c-button__cta {
  display: inline-block;
  padding: 12px 24px;
  color: #FFFFFF;
  background-color: #FF5A1A;
  border: solid 1px #FF5A1A;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.c-button__cta:hover {
  color: #FF5A1A;
  background-color: inherit;
}

.c-button__accordion {
  padding: 12px 36px;
  color: #FFFFFF;
  background-color: #FF5A1A;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  border: none;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.c-button__accordion::after {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 24px;
  height: 24px;
  margin-left: 12px;
  background-image: url("../img/icon_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease; /* 回転アニメーション */
}
.c-button__accordion.active {
  background-color: #FF9167;
}
.c-button__accordion.active::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.c-button__accordion:hover {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  opacity: 0.8;
}
@media screen and (max-width: 834px) {
  .c-button__accordion {
    padding: 8px 18px 8px 22px;
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
  }
  .c-button__accordion::after {
    width: 22px;
    height: 22px;
    margin-left: 10px;
  }
}

.c-contact__parts {
  background-color: #FF9167;
  padding: 60px 2%;
  background-image: url("../img/deco3.svg"), url("../img/deco4.svg"), url("../img/bg-contact.png");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 15%, 15%, cover;
  background-position: right 4% center, left 4% center, center;
  position: relative;
}
@media screen and (max-width: 834px) {
  .c-contact__parts {
    padding: 48px 10%;
    background-size: 30%, 30%, cover;
    background-position: right 4% bottom 10%, left 4% top 10%, center;
  }
}
.c-contact__parts__deco {
  position: absolute;
  width: 120px;
}
.c-contact__parts__deco._people5 {
  width: 30%;
  max-width: 285px;
  left: calc(50% - 540px);
  bottom: calc(50% - 170px);
}
.c-contact__parts__deco._letters {
  width: 20%;
  max-width: 140px;
  right: calc(50% - 390px);
  top: calc(50% - 170px);
}
@media screen and (max-width: 1024px) {
  .c-contact__parts__deco._people5 {
    width: 25%;
    max-width: 240px;
    left: 30px;
    bottom: 20px;
  }
}
@media screen and (max-width: 834px) {
  .c-contact__parts__deco._people5 {
    width: 35%;
    max-width: 118px;
    left: 10px;
    bottom: 12px;
  }
  .c-contact__parts__deco._letters {
    width: 30%;
    max-width: 90px;
    right: 10px;
    top: 30px;
  }
}
.c-contact__parts__inner {
  background-color: rgba(255, 255, 255, 0.6);
  max-width: 800px;
  padding: 42px 0;
  margin-left: auto;
  margin-right: auto;
  border: solid 1px #FF5A1A;
}
@media screen and (max-width: 834px) {
  .c-contact__parts__inner {
    padding: 42px 0;
  }
}
.c-contact__form-list {
  margin-bottom: 60px;
}
.c-contact__form-list._confirm dd p {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 8px 12px;
  border-radius: 4px;
  min-height: 42px;
}
.c-contact__form-item {
  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: 18px;
  margin-bottom: 24px;
}
.c-contact__form-item dt {
  width: 240px;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}
.c-contact__form-item dt p {
  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: 4px;
}
.c-contact__form-item dd {
  width: calc(100% - 240px);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}
@media screen and (max-width: 834px) {
  .c-contact__form-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
  .c-contact__form-item dt {
    width: 100%;
  }
  .c-contact__form-item dd {
    width: 100%;
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  }
}
.c-contact__form-item input[type=text],
.c-contact__form-item input[type=email],
.c-contact__form-item input[type=tel],
.c-contact__form-item textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #bdbdbd;
  border-radius: 5px;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}
@media screen and (max-width: 834px) {
  .c-contact__form-item input[type=text],
  .c-contact__form-item input[type=email],
  .c-contact__form-item input[type=tel],
  .c-contact__form-item textarea {
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  }
}
.c-contact__form-action {
  text-align: center;
}
.c-contact__form-action input[type=submit],
.c-contact__form-action input[type=button] {
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.c-contact__form-action input[type=submit]:hover,
.c-contact__form-action input[type=button]:hover {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  opacity: 0.8;
}
.c-contact__form-action input[type=submit] {
  padding: 16px 66px 16px 48px;
  color: #FFFFFF;
  background-color: #FF5A1A;
  border: solid 1px #FF5A1A;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  background-image: url("../img/icon_arrow.svg");
  background-repeat: no-repeat;
  background-size: 28px 28px;
  background-position: right 24px center;
}
.c-contact__form-action input[type=button] {
  padding: 16px 48px;
  color: #FFFFFF;
  background-color: #999999;
  border: solid 1px #999999;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  margin-right: 30px;
}
.c-contact__recruit {
  margin-top: -14px;
}
.c-contact__recruit__input input[type=text] {
  background-color: rgba(0, 0, 0, 0.2);
  width: 93%;
  margin-left: 7%;
}
.c-contact__recruit-confirm {
  margin-top: -16px;
}
@media screen and (max-width: 834px) {
  .c-contact__recruit {
    margin-top: -28px;
  }
  .c-contact__recruit-confirm {
    margin-top: -30px;
  }
}
.c-contact__thanks__text1 {
  text-align: center;
}
.c-contact__thanks__text2 {
  line-height: 2;
}

.c-required {
  color: #FF5A1A;
  display: inline-block;
}

.c-sns {
  text-align: center;
}
.c-sns__note {
  text-align: center;
  color: #FFFFFF;
}
.c-sns__list {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  background-color: #ffffff;
  padding: 18px 100px;
  border-radius: 50px;
}
.c-sns__item-img {
  width: 54px;
}

.c-page__block-top {
  background: url("../img/deco1.svg");
  background-repeat: no-repeat;
  background-size: 280px auto;
  background-position: 2% top;
  padding-top: 30px;
}
@media screen and (max-width: 834px) {
  .c-page__block-top {
    background-size: 160px auto;
    background-position: 96% top;
  }
}
.c-page__block-mdl {
  background: url("../img/deco2.svg");
  background-repeat: no-repeat;
  background-size: 30%;
  background-position: 70% top;
}
@media screen and (max-width: 834px) {
  .c-page__block-mdl {
    background-size: 45%;
    background-position: 96% top;
  }
}
.c-page__text__top {
  font-size: clamp(2.5rem, 4.5vw, 3rem);
  text-align: center;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #FF5A1A;
  font-weight: bold;
}
@media screen and (max-width: 834px) {
  .c-page__text__top {
    font-size: clamp(2.5rem, 4.5vw, 3rem);
    line-height: 1.9;
    letter-spacing: 0.05em;
  }
}
.c-page__text__btm {
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  line-height: 2;
  letter-spacing: 0.08em;
  max-width: 768px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 834px) {
  .c-page__text__btm {
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  }
}

.c-heading {
  color: #FF5A1A;
  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-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;
}
.c-heading-en {
  font-size: clamp(4.5rem, 7vw, 5.4rem);
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.c-heading-en::before {
  content: "";
  display: inline-block;
  width: 42px;
  height: 42px;
  margin-right: 12px;
  background-image: url("../img/deco_title.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 834px) {
  .c-heading-en {
    font-size: clamp(3.5rem, 6vw, 4.2rem);
  }
  .c-heading-en::before {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
}
.c-heading-kana {
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
}
@media screen and (max-width: 834px) {
  .c-heading {
    margin-bottom: 30px;
  }
}

.c-page__title {
  font-size: clamp(3.5rem, 6vw, 4.2rem);
  color: #FF5A1A;
}
.c-page__title._center {
  text-align: center;
}
@media screen and (max-width: 834px) {
  .c-page__title {
    font-size: clamp(3rem, 5vw, 3.6rem);
  }
}

.c-title {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #FF5A1A;
  font-size: clamp(3.5rem, 6vw, 4.2rem);
}
@media screen and (max-width: 834px) {
  .c-title {
    font-size: clamp(2.5rem, 4.5vw, 3rem);
  }
}
.c-title._center {
  text-align: center;
}

.c-decoration__pict-img {
  height: 540px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 834px) {
  .c-decoration__pict {
    height: 240px;
  }
}

.c-unselectable {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media screen and (max-width: 834px) {
  br.c-break-pc {
    display: none;
  }
}

br.c-break-mb {
  display: none;
}
@media screen and (max-width: 834px) {
  br.c-break-mb {
    display: block;
  }
}

/* contactForm7用 */
/* ラジオボタン */
.wpcf7-form-control.wpcf7-radio {
  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;
  gap: 10px;
  margin-top: 8px;
  /* ラベル内にラジオボタンの代替表示を作成 */
}
.wpcf7-form-control.wpcf7-radio label {
  position: relative;
  padding-left: 36px;
  cursor: pointer;
  /* カスタムラジオボタンの見た目（未チェック時） */
}
.wpcf7-form-control.wpcf7-radio label:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid #bdbdbd;
  border-radius: 50%;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wpcf7-form-control.wpcf7-radio input[type=radio] {
  display: none;
}
.wpcf7-form-control.wpcf7-radio input[type=radio]:checked + span:after { /* 内側の小さい丸 */
  content: "";
  position: absolute;
  top: 50%;
  left: 11px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #FF5A1A;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  background-color: rgba(255, 255, 255, 0.6);
  font-size: clamp(1.1rem, 2.5vw, 1.2rem);
  padding: 10px 10px;
}

.wpcf7-spinner {
  display: none;
}

.c-swiper__container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.c-swiper-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 360px;
  border-radius: 12px;
}
@media screen and (max-width: 834px) {
  .c-swiper-img {
    height: 180px;
  }
}

.toggleContent {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease-out;
  transition: max-height 0.5s ease-out;
}

.toggleButton {
  position: relative;
  display: inline-block;
  width: 100%;
  cursor: pointer;
}

.toggleButton::before,
.toggleButton::after {
  content: "";
  width: 16px;
  height: 1px;
  background-color: #333;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transition: color 0.3s ease, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.3s ease, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.3s ease, transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.3s ease, transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.toggleButton::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.toggleButton.active::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.js-fadein-top {
  opacity: 0; /* 最初は透明 */
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px); /* 上にずらす */
}

.js-fadein-scroll {
  opacity: 0; /* 最初は透明 */
  -webkit-transform: translateY(50px);
          transform: translateY(50px); /* 少し下にずらす */
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s; /* JSを使わない場合用 */
}

/* ヒーローセクション */
.p-hero {
  margin: 140px 2% 120px 2%;
}
@media screen and (max-width: 834px) {
  .p-hero {
    margin: 68px 2% 60px 2%;
  }
}
.p-hero__inner {
  background: url("../img/bg-up.png"), url("../img/bg-orange.jpg");
  background-repeat: no-repeat, no-repeat;
  background-size: 100% auto, cover;
  background-position: bottom 40% center, center center;
  height: 80vh;
  min-height: 890px;
  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;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 834px) {
  .p-hero__inner {
    min-height: auto;
  }
}
.p-hero-img {
  max-width: 300px;
}
@media screen and (max-width: 834px) {
  .p-hero-img {
    width: 75%;
  }
}
.p-hero__people {
  position: absolute;
  width: 120px;
}
.p-hero__people._people1 {
  width: 410px;
  left: calc(50% - 530px);
  top: calc(50% - 80px);
}
.p-hero__people._people2 {
  width: 160px;
  right: calc(50% - 470px);
  bottom: calc(50% - 370px);
}
.p-hero__people._people3 {
  width: 190px;
  right: calc(50% - 320px);
  top: calc(50% - 410px);
}
.p-hero__people._people4 {
  width: 180px;
  left: calc(50% - 330px);
  top: calc(50% - 400px);
}
@media screen and (max-width: 1024px) {
  .p-hero__people._people1 {
    width: 320px;
    left: calc(50% - 410px);
    top: calc(50% - 60px);
  }
  .p-hero__people._people2 {
    width: 150px;
    right: calc(50% - 270px);
    bottom: calc(50% - 330px);
  }
  .p-hero__people._people3 {
    width: 130px;
    right: calc(50% - 240px);
    top: calc(50% - 350px);
  }
  .p-hero__people._people4 {
    width: 130px;
    left: calc(50% - 260px);
    top: calc(50% - 340px);
  }
}
@media screen and (max-width: 834px) {
  .p-hero__people._people1 {
    width: 300px;
    left: calc(50% - 330px);
    top: calc(50% - 20px);
  }
}
@media screen and (max-width: 600px) {
  .p-hero__people._people1 {
    width: 190px;
    left: calc(50% - 170px);
    top: auto;
    bottom: calc(50% - 310px);
  }
  .p-hero__people._people2 {
    width: 90px;
    right: calc(50% - 166px);
    bottom: calc(50% - 250px);
  }
  .p-hero__people._people3 {
    width: 76px;
    right: calc(50% - 160px);
    top: calc(50% - 230px);
  }
  .p-hero__people._people4 {
    width: 90px;
    left: calc(50% - 156px);
    top: calc(50% - 220px);
  }
}

/* サービス概要セクション */
.p-home__vision {
  background-image: url("../img/deco1.svg"), url("../img/deco2.svg");
  background-repeat: no-repeat, no-repeat;
  background-size: 30%, 30%;
  background-position: left center, right center;
}
@media screen and (max-width: 834px) {
  .p-home__vision {
    background-size: 50%, 50%;
    background-position: left top, right bottom;
  }
}
.p-home__vision__title {
  font-size: clamp(3.5rem, 6vw, 4.2rem);
  text-align: center;
  margin-bottom: 60px;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #FF5A1A;
}
@media screen and (max-width: 834px) {
  .p-home__vision__title {
    font-size: clamp(3rem, 5vw, 3.6rem);
    margin-bottom: 30px;
  }
}
.p-home__vision__text {
  font-size: clamp(2rem, 4vw, 2.4rem);
  text-align: center;
  line-height: 2.8em;
}
@media screen and (max-width: 834px) {
  .p-home__vision__text {
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  }
}
.p-home__business {
  margin: 0 2% 60px 2%;
}
.p-home__business__inner {
  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;
  background-color: #ffffff;
}
@media screen and (max-width: 834px) {
  .p-home__business__inner {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}
.p-home__business__deco {
  width: 35%;
  max-width: 520px;
}
.p-home__business__deco-img {
  margin-top: -30px;
  margin-bottom: -30px;
}
.p-home__business__title {
  font-size: clamp(2.5rem, 4.5vw, 3rem);
  margin-bottom: 24px;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-align: right;
  color: #FF5A1A;
  line-height: 2em;
}
@media screen and (max-width: 834px) {
  .p-home__business__title {
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  }
}

.p-vision__hero-img {
  background-image: url("../img/pict-vision.jpg");
  background-size: 110% auto;
  height: 50vh;
}
@media screen and (max-width: 834px) {
  .p-vision__hero-img {
    background-size: 160% auto;
    background-position: top center;
    height: 30vh;
  }
}
.p-vision__greeting__inner {
  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;
  gap: 10%;
}
@media screen and (max-width: 600px) {
  .p-vision__greeting__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-vision__greeting__info {
  width: 50%;
}
.p-vision__greeting__info__name {
  font-size: clamp(3.5rem, 6vw, 4.2rem);
  border-bottom: solid 1px #666666;
}
.p-vision__greeting__info__ttl {
  font-size: clamp(3rem, 5vw, 3.6rem);
  font-weight: bold;
  color: #FF5A1A;
}
.p-vision__greeting__info__text p {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  line-height: 1.8;
}
@media screen and (max-width: 834px) {
  .p-vision__greeting__info {
    width: 100%;
  }
  .p-vision__greeting__info__name {
    font-size: clamp(2rem, 4vw, 2.4rem);
  }
  .p-vision__greeting__info__ttl {
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  }
  .p-vision__greeting__info__text p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.5;
  }
}
@media screen and (max-width: 600px) {
  .p-vision__greeting__info__name {
    font-size: clamp(3rem, 5vw, 3.6rem);
  }
  .p-vision__greeting__info__ttl {
    font-size: clamp(2.5rem, 4.5vw, 3rem);
  }
  .p-vision__greeting__info__text p {
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    line-height: 1.5;
  }
}
.p-vision__greeting__prof {
  width: 40%;
  position: relative;
  padding-bottom: 92px;
}
.p-vision__greeting__prof__text {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 18px;
  width: 75%;
  line-height: 1.5;
  margin-top: -18px;
  position: absolute;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .p-vision__greeting__prof {
    width: 100%;
  }
}
@media screen and (max-width: 834px) {
  .p-vision__greeting__pict {
    width: 75%;
  }
}

.p-business__note {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}
.p-business__title {
  font-size: clamp(2.5rem, 4.5vw, 3rem);
  color: #FF5A1A;
  font-weight: bold;
  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;
}
.p-business__title::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  margin-top: 10px;
  background-image: url("../img/icon_kira.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 834px) {
  .p-business__title {
    line-height: 1.4;
  }
  .p-business__title::before {
    width: 20px;
    height: 20px;
    margin-right: 6px;
    margin-top: 9px;
  }
}
.p-business__list__item {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 30px 6%;
  -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}
.p-business__list__item:not(:last-child) {
  margin-bottom: 30px;
}
.p-business__list-img {
  width: 36%;
  margin: -24px 0 0 auto;
  display: block;
}

.p-company__info__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: dashed 1px #A2A2A2;
  padding-bottom: 30px;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}
.p-company__info__item:not(:last-child) {
  margin-bottom: 30px;
}
.p-company__info__item dt {
  width: 180px;
  text-indent: 1em;
  color: #FF5A1A;
}
.p-company__info__item dd {
  width: calc(100% - 180px);
}
@media screen and (max-width: 834px) {
  .p-company__info__item {
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 24px;
    gap: 6px;
  }
  .p-company__info__item:not(:last-child) {
    margin-bottom: 24px;
  }
  .p-company__info__item dt {
    width: 100%;
    text-indent: 0;
  }
  .p-company__info__item dd {
    width: 100%;
  }
}

.p-recruit__note {
  font-size: clamp(2rem, 4vw, 2.4rem);
  text-align: center;
}
.p-recruit__list__item {
  background-color: #ffffff;
  padding: 60px 12%;
  border-radius: 12px;
  -webkit-transition: -webkit-box-shadow 0.3s ease-out;
  transition: -webkit-box-shadow 0.3s ease-out;
  transition: box-shadow 0.3s ease-out;
  transition: box-shadow 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
}
.p-recruit__list__item:not(:last-child) {
  margin-bottom: 60px;
}
.p-recruit__list__item.open {
  -webkit-box-shadow: 2px 8px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 8px 8px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 834px) {
  .p-recruit__list__item {
    padding: 36px 6%;
  }
}
.p-recruit__list__head {
  position: relative;
}
@media screen and (max-width: 834px) {
  .p-recruit__list__head {
    padding-bottom: 48px;
  }
}
.p-recruit__list__button {
  position: absolute;
  top: -10px;
  right: 0;
}
@media screen and (max-width: 834px) {
  .p-recruit__list__button {
    top: auto;
    bottom: 0px;
  }
}
.p-recruit__list__title {
  font-weight: bold;
  font-size: clamp(2rem, 4vw, 2.4rem);
  border-left: solid 8px #FF5A1A;
  line-height: 1.2;
  padding-left: 18px;
  padding-right: 190px;
  margin-bottom: 24px;
}
@media screen and (max-width: 834px) {
  .p-recruit__list__title {
    padding-left: 12px;
    padding-right: 0;
    margin-bottom: 12px;
  }
}
.p-recruit__list__excerpt {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: #999999;
}
.p-recruit__list__body {
  border-top: solid 1px #A2A2A2;
  margin-top: 42px;
  padding-top: 18px;
}
@media screen and (max-width: 834px) {
  .p-recruit__list__body {
    margin-top: 12px;
    padding-top: 6px;
  }
}
.p-recruit__detail__date {
  font-size: clamp(1.1rem, 2.5vw, 1.2rem);
  color: #999999;
  text-align: right;
  margin-bottom: 60px;
}
@media screen and (max-width: 834px) {
  .p-recruit__detail__date {
    margin-bottom: 0;
  }
}
.p-recruit__detail__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: dashed 1px #A2A2A2;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  padding: 30px 12px;
}
@media screen and (max-width: 834px) {
  .p-recruit__detail__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 24px 0;
  }
}
.p-recruit__detail__dt {
  width: 180px;
  font-weight: bold;
}
@media screen and (max-width: 834px) {
  .p-recruit__detail__dt {
    width: 100%;
    margin-bottom: 12px;
  }
}
.p-recruit__detail__dd {
  -webkit-box-flex: calc(100% - 180px);
  -webkit-flex: calc(100% - 180px);
      -ms-flex: calc(100% - 180px);
          flex: calc(100% - 180px);
}
@media screen and (max-width: 834px) {
  .p-recruit__detail__dd {
    width: 100%;
  }
}
.p-recruit__points__item:not(:last-child) {
  margin-bottom: 100px;
}
@media screen and (max-width: 834px) {
  .p-recruit__points__item:not(:last-child) {
    margin-bottom: 60px;
  }
}
.p-recruit__points__ttl {
  margin-bottom: 30px;
  font-size: clamp(2.5rem, 4.5vw, 3rem);
  font-weight: bold;
  color: #FF5A1A;
  line-height: 1.8;
}
.p-recruit__points__ttl span {
  border-bottom: solid 1px #FF5A1A;
}
@media screen and (max-width: 834px) {
  .p-recruit__points__ttl {
    font-size: clamp(2rem, 4vw, 2.4rem);
  }
}
.p-recruit__points__text {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  line-height: 1.8;
}

.p-contact {
  background: url("../img/deco2.svg");
  background-repeat: no-repeat;
  background-size: 20%;
  background-position: 85% bottom;
}
@media screen and (max-width: 834px) {
  .p-contact {
    background-size: 50%;
    background-position: 96% bottom;
    padding-bottom: 6px;
  }
}

.p-404 {
  padding-top: 80px;
}
.p-404__title {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.p-404__title span {
  line-height: 1.2;
}
.p-404__text {
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 834px) {
  .p-404__text {
    text-align: left;
  }
}
.p-404__link {
  text-align: center;
}
.p-404-link {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #1D54A7;
  text-decoration: underline;
}

.u-animate__img-big {
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.u-animate__img-big:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.u-animate__img-big__wrap {
  overflow: hidden;
}
.u-animate__img-big__wrap a {
  display: block;
}

.u-bg_gray {
  background-color: #f8f8f8;
  padding: 60px 0;
  width: 100%;
}
@media screen and (max-width: 834px) {
  .u-bg_gray {
    padding: 48px 0;
  }
}

.u-fadein {
  opacity: 0; /* 最初は透明 */
  -webkit-transform: translateY(0);
          transform: translateY(0); /* 初期状態は変化なし */
  -webkit-animation: fadeIn 1s ease-out forwards;
          animation: fadeIn 1s ease-out forwards; /* アニメーション適用 */
}

/* アニメーションの定義 */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px); /* アニメーション中に下から上に動く */
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); /* 元の位置に戻る */
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px); /* アニメーション中に下から上に動く */
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); /* 元の位置に戻る */
  }
}
/* NSN_CORPORATE_SITE-11 20250512 */
br.adaptive-br {
  display: none;
}
@media screen and (max-width: 834px) {
  br.adaptive-br {
    display: block;
  }
}