@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Kiwi+Maru&family=M+PLUS+Rounded+1c:wght@400;500;700&display=swap");
:root {
  --color-theme:#fea69f;
  --color-white:#fff;
  --color-light-blue:#8ec5e4;
  --color-light-pink:#fcf2f2;
  --color-light-yellow:#fffbed;
  --color-gray: #888;
  --color-light-gray:#ddd;
  --color-text: #4f4f4f;
  --border-5: 5px;
  --border-10: 10px;
  --border-20: 20px;
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
  --bg-white-translucent: rgba(255, 255, 255, 0.9);
  --gradation-01: linear-gradient(124deg, #fa938c 0%, #ffc6a6 104.17%);
  --font-mplusrounded: "M PLUS Rounded 1c", sans-serif;
  --font-jost: "Jost", sans-serif;
  --font-kiwi: "Kiwi Maru", serif;
}

/* =======================================================
* breakpoint
* ======================================================= */
/* =======================================================
* dotList（水色の・）
* ======================================================= */
/* =======================================================
* img + blur + opacity
* ======================================================= */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.6;
  font-family: sans-serif;
  color: #4f4f4f;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  background-color: transparent;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

::-webkit-input-placeholder {
  color: #9c9c9c;
  opacity: 1;
}

::-moz-placeholder {
  color: #9c9c9c;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #9c9c9c;
  opacity: 1;
}

::-ms-input-placeholder {
  color: #9c9c9c;
  opacity: 1;
}

::placeholder {
  color: #9c9c9c;
  opacity: 1;
}

fieldset {
  margin: 0;
  padding: 0;
  border: none;
}

legend {
  padding: 0;
  margin: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address {
  font-style: normal;
  line-height: 1.8;
}

figure {
  margin: 0;
}

/* =======================================================
* アンカー位置調整
* ======================================================= */
html {
  scroll-padding-top: 180px;
}

/* =======================================================
* ページ遷移
* ======================================================= */
body {
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}

body.is-loaded {
  opacity: 1;
}

/* =======================================================
* TOP_ローディング
* ======================================================= */
.site_loader {
  position: fixed;
  inset: 0;
  background: var(--color-white);
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  pointer-events: none;
}
.site_loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  color: var(--color-theme);
  position: relative;
  -webkit-animation: l40 0.5s infinite alternate;
          animation: l40 0.5s infinite alternate;
}
.loader::before, .loader::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: 25px 25px;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-repeat: no-repeat;
}
.loader::before {
  background-image: radial-gradient(farthest-side at top left, currentColor 96%, rgba(0, 0, 0, 0)), radial-gradient(farthest-side at top right, currentColor 96%, rgba(0, 0, 0, 0)), radial-gradient(farthest-side at bottom right, currentColor 96%, rgba(0, 0, 0, 0)), radial-gradient(farthest-side at bottom left, currentColor 96%, rgba(0, 0, 0, 0));
  -webkit-animation: l40-1 1s infinite;
          animation: l40-1 1s infinite;
}
.loader::after {
  background-image: radial-gradient(farthest-side at top left, rgba(0, 0, 0, 0) 94%, currentColor 96%), radial-gradient(farthest-side at top right, rgba(0, 0, 0, 0) 94%, currentColor 96%), radial-gradient(farthest-side at bottom right, rgba(0, 0, 0, 0) 94%, currentColor 96%), radial-gradient(farthest-side at bottom left, rgba(0, 0, 0, 0) 94%, currentColor 96%);
  -webkit-animation: l40-2 1s infinite;
          animation: l40-2 1s infinite;
}
.loader .loader_text {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: 20px;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--color-theme);
  font-weight: bold;
  font-family: var(--font-kiwi);
}

@-webkit-keyframes l40-1 {
  0%, 10%, 90%, 100% {
    inset: 0;
  }
  40%, 60% {
    inset: -10px;
  }
}

@keyframes l40-1 {
  0%, 10%, 90%, 100% {
    inset: 0;
  }
  40%, 60% {
    inset: -10px;
  }
}
@-webkit-keyframes l40-2 {
  0%, 40% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  60%, 100% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
@keyframes l40-2 {
  0%, 40% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  60%, 100% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
/* =======================================================
* pagetop
* ======================================================= */
#pagetopWrap {
  position: relative;
}
#pagetopWrap #pageTop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
#pagetopWrap #pageTop .fa-angle-up {
  font-size: 30px;
  color: var(--color-theme);
}
@media screen and (min-width: 768px) {
  #pagetopWrap #pageTop .fa-angle-up {
    font-size: 40px;
  }
}
#pagetopWrap #pageTop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* =======================================================
* pc/sp切り替え
* ======================================================= */
.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

/* =======================================================
* 枠組み
* ======================================================= */
.section {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 951px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.wide_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 26px;
  padding-right: 26px;
}
@media screen and (min-width: 768px) {
  .wide_inner {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media screen and (min-width: 951px) {
  .wide_inner {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.wide_inner.narrow_inner {
  max-width: 880px;
}

.wide_bg {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* =======================================================
* タイトル
* ======================================================= */
h2 {
  font-weight: 700;
  margin-bottom: 30px;
  font-family: var(--font-kiwi);
}
h2.main_title {
  font-size: clamp(1.75rem, 1.568rem + 0.91vw, 2.25rem);
}
h2.main_title .en {
  font-size: clamp(0.875rem, 0.824rem + 0.26vw, 1rem);
}
h2.lead_title {
  font-size: clamp(1.25rem, 0.977rem + 1.36vw, 2rem);
  line-height: 2;
}
h2.sm_title {
  font-size: 24px;
}
h2.page_title {
  font-size: clamp(1.25rem, 0.84rem + 2.05vw, 2.25rem);
  margin-bottom: 0;
}
h2.page_title .en {
  font-size: clamp(0.875rem, 0.824rem + 0.26vw, 1rem);
}

h3.subTitle {
  font-size: 18px;
  font-family: var(--font-kiwi);
}

/* =======================================================
* テキスト
* ======================================================= */
.en {
  text-transform: uppercase;
  font-family: var(--font-mplusrounded);
  color: var(--color-light-blue);
  letter-spacing: 0.2rem;
  display: block;
}

.alCenter {
  text-align: center;
}

.lead_text {
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .lead_text {
    font-size: 1.1rem;
    line-height: 2.2;
  }
}

.textBox p {
  line-height: 2;
}
.textBox p:not(:last-child) {
  margin-bottom: 1rem;
}

/* =======================================================
* 装飾
* ======================================================= */
.dotsList a {
  position: relative;
  padding-left: 1rem;
  font-family: var(--font-kiwi);
}
.dotsList a::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--color-light-blue);
  display: inline-block;
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

a {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

/* =======================================================
* スライダー
* ======================================================= */
.linear_slider .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.linear_slider .swiper-slide img {
  height: auto;
  width: 100%;
  border-radius: 20px;
}

/* =======================================================
* ボタン
* ======================================================= */
.linkBtn a {
  text-decoration: none;
  font-family: var(--font-kiwi);
  display: inline-block;
}
.linkBtn .linkBtn_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 2rem;
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 2;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .linkBtn .linkBtn_inner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.linkBtn .btn_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--color-theme);
  border: 1px solid transparent;
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
@media screen and (min-width: 951px) {
  .linkBtn .btn_icon {
    width: 4rem;
    height: 4rem;
  }
}
.linkBtn .btn_icon i {
  color: var(--color-white);
  font-size: 1rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.linkBtn .btn_icon.is-small {
  width: 2rem;
  height: 2rem;
}
@media screen and (min-width: 951px) {
  .linkBtn .btn_icon.is-small {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.linkBtn .btn_icon.is-small i {
  font-size: 0.7rem;
}
@media screen and (min-width: 951px) {
  .linkBtn .btn_icon.is-small i {
    font-size: 1rem;
  }
}

.contactBtn {
  max-width: 280px;
  width: 90%;
  background: var(--color-theme);
  color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  margin: 0 auto;
  height: 70px;
  border: 1px solid transparent;
  font-family: var(--font-kiwi);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

/* =======================================================
* テーブル
* ======================================================= */
.info_details {
  border-top: 1px dotted #ddd;
}
.info_details .info_item {
  border-bottom: 1px dotted #ddd;
  padding: 1rem 0;
}
@media screen and (min-width: 768px) {
  .info_details .info_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1.6rem 1rem;
  }
}
@media screen and (min-width: 768px) {
  .info_details .info_item .info_title,
  .info_details .info_item .info_content {
    line-height: 2;
  }
}
.info_details .info_item .info_title {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  line-height: 1.6;
  font-family: var(--font-kiwi);
  color: var(--color-light-blue);
}
@media screen and (min-width: 768px) {
  .info_details .info_item .info_title {
    width: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 1.1rem;
  }
}
.info_details .info_item .info_content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* =======================================================
* 下層ページMV
* ======================================================= */
.lower_mv {
  position: relative;
  max-height: 350px;
  margin: 80px 20px 60px 20px;
}
@media screen and (min-width: 768px) {
  .lower_mv {
    max-height: 250px;
    margin: 80px 26px 60px 26px;
    margin-left: 45px;
    margin-right: 45px;
  }
}
@media screen and (min-width: 951px) {
  .lower_mv {
    max-height: 350px;
    margin: 100px 50px 50px 50px;
  }
}
.lower_mv::before {
  width: 100%;
  content: "";
  display: block;
  padding-top: 50%;
  position: relative;
  margin-left: auto;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .lower_mv::before {
    padding-top: 32%;
  }
}
@media screen and (min-width: 951px) {
  .lower_mv::before {
    padding-top: 28%;
  }
}
.lower_mv::after {
  background-image: url(../../img/top_mv_06.jpg);
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background-position: 50% 50%;
  background-size: cover;
  border-radius: 20px;
  z-index: 1;
}
.lower_mv .page_title_inner {
  height: 80px;
  z-index: 2;
  width: 220px;
  content: "";
  display: block;
  position: absolute;
  bottom: -40px;
  left: 0;
  background-color: var(--color-white);
  border-radius: 0 20px 0 0;
}
@media screen and (min-width: 768px) {
  .lower_mv .page_title_inner {
    height: 110px;
    width: 300px;
  }
}
@media screen and (min-width: 951px) {
  .lower_mv .page_title_inner {
    height: 120px;
    width: 380px;
  }
}
.lower_mv .page_title_inner .box_text {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .lower_mv .page_title_inner .box_text {
    padding-left: 50px;
  }
}
@media screen and (min-width: 951px) {
  .lower_mv .page_title_inner .box_text {
    padding-left: 50px;
  }
}
.lower_mv .page_title_inner .box_text::before, .lower_mv .page_title_inner .box_text::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  z-index: 10;
  background-size: cover;
  background-image: url(../../img/kado_lb20.png);
}
.lower_mv .page_title_inner .box_text::before {
  left: 0;
  bottom: 80px;
}
@media screen and (min-width: 768px) {
  .lower_mv .page_title_inner .box_text::before {
    bottom: 110px;
  }
}
@media screen and (min-width: 951px) {
  .lower_mv .page_title_inner .box_text::before {
    bottom: 120px;
  }
}
.lower_mv .page_title_inner .box_text::after {
  right: -20px;
  bottom: 40px;
}

/* =======================================================
* 流れるスライダー（about/staff）
* ======================================================= */
.about_slider .swiper-slide.img_03 img,
.about_slider .swiper-slide.img_05 img {
  margin: 80px auto 0;
  display: block;
}

.about_slider .swiper-slide.img_02,
.about_slider .swiper-slide.img_06 {
  margin: 40px auto 0;
}

/* =======================================================
* パンくず
* ======================================================= */
#breadcrumb .inner {
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  #breadcrumb .inner {
    padding: 0 50px;
  }
}
#breadcrumb .inner .breadcrumbList ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#breadcrumb .inner .breadcrumbList li {
  margin-right: 5px;
  color: var(--color-text);
  font-size: 0.8rem;
}
#breadcrumb .inner .breadcrumbList li::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 5px;
  color: #999;
}
#breadcrumb .inner .breadcrumbList li:last-child::after {
  content: "";
}
#breadcrumb .inner .breadcrumbList li a {
  color: var(--color-text);
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
#breadcrumb .inner .breadcrumbList li a::before {
  content: "\f015";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 3px;
  color: var(--color-text);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

/* =======================================================
* hover指定（ホバーできる端末だけに hover を適用）
* ======================================================= */
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
  }
  .linkBtn a:hover {
    color: var(--color-theme);
  }
  .linkBtn a:hover .btn_icon {
    background-color: var(--color-white);
    border-color: var(--color-theme);
  }
  .linkBtn a:hover .btn_icon i {
    color: var(--color-theme);
  }
  #footer .logoArea .footer_sns a:hover,
  #footer .navArea .footer_nav_list .footer_nav_item a:hover {
    color: var(--color-theme);
  }
  .contactBtn:hover {
    background: var(--color-white);
    color: var(--color-theme);
    border: 1px solid var(--color-theme);
  }
  .tel:hover,
  .fax:hover {
    color: var(--color-theme);
  }
  #breadcrumb .breadcrumbList ul li a:hover,
  #breadcrumb .breadcrumbList ul li a:hover::before {
    color: var(--color-theme);
  }
  .staff_list .staff_item:hover .staff_photo img {
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
  .contact_form .formActions button:hover {
    border: 2px solid var(--color-white);
    background-color: var(--color-light-blue);
    color: var(--color-white);
  }
  .postWrap .postItem .title:hover {
    color: var(--color-theme);
  }
}
/* =======================================================
* header
* ======================================================= */
#header {
  width: 100%;
  background-color: transparent;
  pointer-events: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}
#header .header_wrapper {
  height: 100px;
  padding-right: 170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
#header .header_wrapper .header_logo {
  position: absolute;
  top: 14px;
  left: 20px;
  z-index: 5;
}
@media screen and (min-width: 951px) {
  #header .header_wrapper .header_logo {
    width: 220px;
    top: 18px;
    left: 30px;
  }
}
#header .header_wrapper .header_logo a {
  font-family: var(--font-mplusrounded);
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 0.2rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 951px) {
  #header .header_wrapper .header_logo a {
    font-size: 2rem;
  }
}
#header .header_wrapper .header_logo a span {
  font-size: 0.6rem;
  display: block;
}
@media screen and (min-width: 951px) {
  #header .header_wrapper .header_logo a span {
    font-size: 0.8rem;
  }
}
#header .header_wrapper .header_inner {
  padding-right: 30px;
  width: 100%;
  font-family: var(--font-kiwi);
}
@media screen and (max-width: 950px) {
  #header .header_wrapper .header_inner {
    display: none;
  }
}
#header .header_wrapper .header_inner .header_nav span,
#header .header_wrapper .header_inner .header_contact span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1rem;
  font-family: var(--font-mplusrounded);
  color: var(--color-light-blue);
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  font-weight: 700;
}
#header .header_wrapper .header_inner .header_nav {
  max-width: 680px;
  width: 100%;
  margin-left: auto;
  display: block;
}
#header .header_wrapper .header_inner .header_nav .header_nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
#header .header_wrapper .header_inner .header_nav .header_nav_list .header_nav_item a {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
#header .header_wrapper .header_inner .header_contact {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--color-white);
  border-radius: 0 0 0 20px;
}
#header .header_wrapper .header_inner .header_contact a {
  width: 170px;
  height: 160px;
  border-radius: 0 0 0 20px;
  background: var(--gradation-01);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  color: var(--color-white);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-family: var(--font-kiwi);
}
#header .header_wrapper .header_inner .header_contact a span {
  color: var(--color-white);
}
#header.change_nav .header_wrapper {
  height: 80px;
  -webkit-box-shadow: var(--shadow-soft);
          box-shadow: var(--shadow-soft);
  background-color: var(--bg-white-translucent);
}
#header.change_nav .header_wrapper .header_logo {
  top: 14px;
}
#header.change_nav .header_wrapper .header_logo a {
  font-size: 1.6rem;
}
#header.change_nav .header_wrapper .header_logo a span {
  font-size: 0.6rem;
}
#header.change_nav .header_wrapper .header_inner .header_contact a {
  height: 80px;
  border-radius: 0;
}

/* =======================================================
* hamburger
* ======================================================= */
.header_hamburger {
  display: none;
  position: fixed;
  top: 16px;
  right: 10px;
  width: 50px;
  height: 50px;
  background: var(--gradation-01);
  border-radius: 50%;
  z-index: 100;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .header_hamburger {
    right: 20px;
  }
}
@media screen and (min-width: 951px) {
  .header_hamburger {
    display: none;
  }
}
.header_hamburger span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 4px;
}
.header_hamburger span:nth-child(1) {
  top: 16px;
}
.header_hamburger span:nth-child(2) {
  top: 24px;
}
.header_hamburger span:nth-child(3) {
  top: 32px;
}
.header_hamburger.active span:nth-child(1) {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  top: 24px;
}
.header_hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header_hamburger.active span:nth-child(3) {
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
  top: 24px;
}

/* =======================================================
* sp_nav
* ======================================================= */
.sp_nav_wrapper {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  padding-top: 100px;
  background: var(--color-light-pink);
  background: url(../../img/bg_pink.jpg) no-repeat center/cover;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  z-index: 1;
}
.sp_nav_wrapper nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
.sp_nav_wrapper ul.sp_nav_list {
  text-align: center;
}
.sp_nav_wrapper ul.sp_nav_list li {
  margin: 20px 0;
}
.sp_nav_wrapper ul.sp_nav_list li a {
  font-size: 1.4rem;
  color: var(--color-text);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-family: var(--font-kiwi);
}
.sp_nav_wrapper.active {
  opacity: 1;
  pointer-events: auto;
}
.sp_nav_wrapper .infoArea {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2rem 1.4rem;
  border-radius: 40px;
  -webkit-box-shadow: var(--shadow-soft);
          box-shadow: var(--shadow-soft);
}
@media screen and (min-width: 768px) {
  .sp_nav_wrapper .infoArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 2.8rem 2rem;
  }
}
.sp_nav_wrapper .infoArea .fa-phone,
.sp_nav_wrapper .infoArea .fa-envelope {
  margin-right: 8px;
}
.sp_nav_wrapper .infoArea .tell_area {
  text-align: center;
  position: relative;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .sp_nav_wrapper .infoArea .tell_area {
    width: 50%;
    margin-bottom: 0;
    padding: 0;
  }
}
.sp_nav_wrapper .infoArea .tell_area .hours {
  font-family: var(--font-kiwi);
}
.sp_nav_wrapper .infoArea .tell_area::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-light-gray);
}
@media screen and (min-width: 768px) {
  .sp_nav_wrapper .infoArea .tell_area::before {
    top: -15px;
    bottom: auto;
    width: 1px;
    height: 142px;
  }
}
.sp_nav_wrapper .infoArea .mail_area {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 2.2;
  padding: 0;
}

/* =======================================================
* common_contact
* ======================================================= */
.common_contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.common_contact::before {
  content: "";
  position: absolute;
  inset: 0px;
  z-index: 0;
  pointer-events: none;
  background: url(../../img/top_mv_01.jpg) center/cover no-repeat;
  -webkit-filter: blur(5px) opacity(0.7) brightness(0.9);
          filter: blur(5px) opacity(0.7) brightness(0.9);
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.common_contact > * {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 951px) {
  .common_contact .wide_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.common_contact .wide_inner .titleArea {
  margin-bottom: 2rem;
}
@media screen and (min-width: 951px) {
  .common_contact .wide_inner .titleArea {
    width: 26%;
    max-width: 340px;
    margin-right: 2rem;
  }
}
.common_contact .wide_inner .titleArea h2.main_title {
  color: #fcfcfc;
  text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.2);
}
.common_contact .wide_inner .titleArea .en {
  color: #c2e2f3;
}
.common_contact .wide_inner .titleArea .textBox p {
  color: #fcfcfc;
  text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.2);
}
.common_contact .wide_inner .infoArea {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2rem 1.4rem;
  border-radius: 40px;
}
@media screen and (min-width: 768px) {
  .common_contact .wide_inner .infoArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 2.8rem 2rem;
  }
}
.common_contact .wide_inner .infoArea .fa-phone,
.common_contact .wide_inner .infoArea .fa-paper-plane {
  margin-right: 8px;
}
.common_contact .wide_inner .infoArea .tell_area {
  text-align: center;
  position: relative;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  line-height: 2;
  padding-right: 1rem;
}
@media screen and (min-width: 768px) {
  .common_contact .wide_inner .infoArea .tell_area {
    width: 50%;
    margin-bottom: 0;
    padding: 0;
  }
}
.common_contact .wide_inner .infoArea .tell_area .hours {
  font-family: var(--font-kiwi);
}
.common_contact .wide_inner .infoArea .tell_area::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-light-gray);
}
@media screen and (min-width: 768px) {
  .common_contact .wide_inner .infoArea .tell_area::before {
    top: -15px;
    bottom: auto;
    width: 1px;
    height: 142px;
  }
}
.common_contact .wide_inner .infoArea .mail_area {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 2.2;
  padding: 0;
}
@media screen and (min-width: 951px) {
  .common_contact .wide_inner .infoArea .mail_area {
    padding-left: 1rem;
  }
}

/* =======================================================
* common_info
* ======================================================= */
.common_info .common_info_access {
  margin-bottom: 2rem;
}
@media screen and (min-width: 951px) {
  .common_info .common_info_access {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
  }
}
.common_info .common_info_access .imgArea {
  max-width: 540px;
  margin: 0 auto 2rem;
}
.common_info .common_info_access .imgArea img {
  border-radius: 20px;
}
@media screen and (min-width: 951px) {
  .common_info .common_info_access .imgArea {
    width: 50%;
    margin-bottom: 0;
  }
}
.common_info .common_info_access .textArea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.8rem;
}
.common_info .common_info_access .textArea .subTitle {
  font-size: clamp(1.25rem, 1.045rem + 1.03vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.1rem;
  font-family: var(--font-mplusrounded);
}
.common_info .common_info_access .textArea .officeAddress {
  font-size: 1.1rem;
}

/* =======================================================
* common_contact/common_info共通
* ======================================================= */
.tel,
.fax {
  font-family: var(--font-mplusrounded);
  font-size: clamp(1.25rem, 1.147rem + 0.51vw, 1.5rem);
  letter-spacing: 0.2rem;
  font-weight: 700;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

/* =======================================================
* footer
* ======================================================= */
#footer {
  padding: 40px 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  #footer {
    padding: 80px 0;
  }
}
#footer::before {
  content: "";
  display: block;
  background: url(../../img/bg_yellow.jpg) no-repeat center;
  background-size: cover;
  -webkit-filter: blur(9px);
  filter: blur(9px);
  opacity: 0.5;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
}
@media screen and (min-width: 951px) {
  #footer .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#footer .wrap .footer_logo a {
  font-family: var(--font-mplusrounded);
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.2rem;
}
#footer .wrap .footer_logo a span {
  font-size: 0.8rem;
  display: block;
}
#footer .wrap .logoArea {
  margin-bottom: 2rem;
}
#footer .wrap .logoArea .footer_logo {
  margin-bottom: 1.2rem;
}
#footer .wrap .logoArea .footer_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
}
#footer .wrap .logoArea .footer_sns i {
  font-size: 24px;
}
#footer .wrap .navArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  #footer .wrap .navArea {
    display: block;
    text-align: right;
  }
}
#footer .wrap .navArea .footer_nav_list {
  width: 100%;
  line-height: 2.6;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  #footer .wrap .navArea .footer_nav_list {
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  #footer .wrap .navArea .footer_nav_list:not(:first-of-type) {
    margin-left: 2em;
  }
}
#footer .wrap .navArea .footer_nav_list .footer_nav_item {
  text-align: left;
}
#footer .wrap .navArea .copyright {
  margin-top: 60px;
  text-align: right;
  letter-spacing: 0.1rem;
  font-size: 0.8rem;
  font-family: var(--font-jost);
}

/* =======================================================
* TOP_MV
* ======================================================= */
.main_mv {
  background-color: var(--color-light-gray);
  position: relative;
  overflow: hidden;
  margin: 80px 20px 0 20px;
  border-radius: 20px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .main_mv {
    margin-left: 45px;
    margin-right: 45px;
  }
}
@media screen and (min-width: 951px) {
  .main_mv {
    margin: 100px 50px 0 50px;
  }
}
.main_mv .main_catch {
  position: absolute;
  left: 8%;
  bottom: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  z-index: 2;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (min-width: 951px) {
  .main_mv .main_catch {
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
  }
}
.main_mv .main_catch span {
  display: block;
  font-weight: 700;
  font-size: clamp(1.25rem, 0.84rem + 2.05vw, 2.25rem);
  background-color: var(--color-white);
  padding: 16px 8px 8px 8px;
  border-radius: 8px;
  font-family: var(--font-kiwi);
  letter-spacing: 0.2rem;
}
@media screen and (min-width: 951px) {
  .main_mv .main_catch span {
    padding: 10px 20px 10px 30px;
    letter-spacing: 0.1rem;
  }
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.main_mv .swiper-slide-active .swiper-img,
.main_mv .swiper-slide-duplicate-active .swiper-img,
.main_mv .swiper-slide-prev .swiper-img {
  -webkit-animation: zoomUp 7s linear 0s normal both;
          animation: zoomUp 7s linear 0s normal both;
}

.main_mv .swiper-img {
  height: 520px;
}
@media screen and (min-width: 768px) {
  .main_mv .swiper-img {
    height: 680px;
  }
}
.main_mv .swiper-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* =======================================================
* TOP_news
* ======================================================= */
.news {
  position: relative;
}
.news::before {
  content: "";
  display: block;
  background: url(../../img/bg_yellow.jpg) no-repeat center;
  background-size: cover;
  -webkit-filter: blur(9px);
  filter: blur(9px);
  opacity: 0.5;
  width: 100%;
  position: absolute;
  top: -20vw;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.news h2.sm_title span {
  font-size: 1rem;
}
.news .newsBox {
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 2rem 1.4rem;
}
@media screen and (min-width: 768px) {
  .news .newsBox {
    padding: 3rem 2rem;
  }
}
@media screen and (min-width: 768px) {
  .news .newsBox .box_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 880px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .news .newsBox .box_inner .titleArea {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (min-width: 768px) {
  .news .newsBox .postWrap {
    width: 70%;
    margin-bottom: 0;
  }
}
.news .newsBox .postWrap .title {
  font-size: 14px;
}

.postWrap {
  width: 100%;
  margin-bottom: 2rem;
}
.postWrap .postItem {
  border-bottom: 1px dotted var(--color-light-gray);
  padding: 1rem 0;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .postWrap .postItem {
    padding: 1.6rem 0;
  }
}
.postWrap .postItem:first-child {
  padding-top: 0;
}
.postWrap .postItem .postInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 0.5rem;
}
.postWrap .postItem .postInfo .date {
  font-family: var(--font-jost);
  color: #bbb;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 12px;
}
.postWrap .postItem .postInfo .cat {
  font-size: 0.7rem;
  color: var(--color-white);
  background-color: var(--color-light-blue);
  font-family: var(--font-kiwi);
  border-radius: 5px;
  margin-left: 0.75rem;
  padding: 0.1rem 0.8rem;
}
.postWrap .postItem .title {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .postWrap .postItem .title {
    width: 80%;
  }
}

/* =======================================================
* TOP_リードコンテンツ
* ======================================================= */
.top_lead {
  position: relative;
  padding-bottom: 280px;
}
@media screen and (min-width: 768px) {
  .top_lead {
    padding-bottom: 400px;
  }
}
@media screen and (min-width: 951px) {
  .top_lead {
    padding-bottom: 50px;
  }
}
.top_lead .textArea {
  position: relative;
}
.top_lead .textArea .lead_title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top_lead .textArea .lead_title {
    text-align: left;
  }
}
@media screen and (min-width: 951px) {
  .top_lead .textArea {
    width: 47%;
    margin-right: 53%;
  }
}
.top_lead .textArea .textBox {
  margin-bottom: 2rem;
}
.top_lead .imgArea .photoImg {
  content: "";
  height: 240px;
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(../../img/top_lead-img.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .top_lead .imgArea .photoImg {
    height: 360px;
  }
}
@media screen and (min-width: 951px) {
  .top_lead .imgArea .photoImg {
    width: 48%;
    height: 500px;
    top: 140px;
    bottom: auto;
    border-radius: 20px 0 0 20px;
  }
}

/* =======================================================
* TOP_サービス
* ======================================================= */
.top_service {
  position: relative;
  padding-bottom: 280px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .top_service {
    padding-bottom: 400px;
  }
}
@media screen and (min-width: 951px) {
  .top_service {
    padding-bottom: 60px;
    margin-bottom: 0;
  }
}
.top_service::before {
  content: "";
  display: block;
  background: url(../../img/bg_yellow.jpg) no-repeat center;
  background-size: cover;
  -webkit-filter: blur(9px);
  filter: blur(9px);
  opacity: 0.5;
  width: 95%;
  height: 220px;
  position: absolute;
  top: auto;
  bottom: -40px;
  left: 0;
  border-radius: 0 20px 20px 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .top_service::before {
    height: 320px;
    width: 65%;
  }
}
@media screen and (min-width: 951px) {
  .top_service::before {
    width: 55%;
    height: 460px;
    top: 230px;
  }
}
@media screen and (min-width: 951px) {
  .top_service .wide_inner {
    position: relative;
  }
}
.top_service .imgArea {
  content: "";
  width: 86%;
  height: 240px;
  background: url(../../img/top_service-img.jpg) no-repeat center center/cover;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  border-radius: var(--border-20);
}
@media screen and (min-width: 768px) {
  .top_service .imgArea {
    height: 360px;
    width: 80%;
  }
}
@media screen and (min-width: 951px) {
  .top_service .imgArea {
    width: 460px;
    height: 500px;
    top: 0;
    left: auto;
    margin-bottom: 0;
    border-radius: var(--border-20);
    -webkit-transform: none;
            transform: none;
  }
}
.top_service .textArea {
  position: relative;
}
@media screen and (min-width: 951px) {
  .top_service .textArea {
    width: 42%;
    margin-left: 58%;
    padding-top: 60px;
  }
}
@media screen and (min-width: 1100px) {
  .top_service .textArea {
    width: 50%;
    margin-left: 50%;
  }
}
.top_service .textArea .textBox {
  margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .btnList {
    max-width: 360px;
  }
}
.btnList .linkBtn {
  border-bottom: 1px dotted var(--color-light-gray);
}
.btnList .linkBtn a {
  width: 100%;
}
.btnList .linkBtn .linkBtn_inner .btn_text {
  font-size: 18px;
  padding: 1rem;
  font-weight: 700;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 220px;
}

/* =======================================================
* TOP_スタッフ
* ======================================================= */
.top_staff .titleArea {
  margin-bottom: 3rem;
}
.top_staff .staff_slider {
  margin-bottom: 3rem;
}
.top_staff .staff_slider .swiper-slide:nth-last-child(odd) {
  margin-top: 4rem;
}

/* =======================================================
* ABOUT_MV
* ======================================================= */
.about_mv::after {
  background-image: url(../../img/abuot_mv.jpg);
}

/* =======================================================
* ABOUT_リードコンテンツ
* ======================================================= */
.about_lead .textBox {
  margin-bottom: 3rem;
}

/* =======================================================
* ABOUT_代表メッセージ
* ======================================================= */
@media screen and (min-width: 768px) {
  .about_message .bg_wrap {
    position: relative;
    padding-bottom: 60px;
  }
}
.about_message .bg_wrap::before {
  content: "";
  display: block;
  background: url(../../img/bg_yellow.jpg) no-repeat center;
  background-size: cover;
  -webkit-filter: blur(9px);
  filter: blur(9px);
  opacity: 0.5;
  width: 100%;
  height: 100%;
  border-radius: 0 20px 20px 0;
  z-index: -1;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .about_message .bg_wrap::before {
    width: 70%;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (min-width: 768px) {
  .about_message .textArea {
    width: 50%;
    margin-left: 50%;
  }
}
@media screen and (min-width: 951px) {
  .about_message .textArea {
    padding-top: 60px;
  }
}
.about_message .textArea .messageTitle {
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
  font-weight: 700;
  font-family: var(--font-kiwi);
}
.about_message .textArea .nameWrap {
  margin-top: 2rem;
}
.about_message .textArea .nameWrap .position {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.about_message .textArea .nameWrap .name {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-kiwi);
  margin-left: 1rem;
}
.about_message .imgArea {
  width: 80%;
  height: 300px;
  border-radius: var(--border-20);
  background: url(../../img/about_message_oda.jpg) no-repeat center 10%/cover;
  margin: 0 auto 2rem;
}
@media screen and (min-width: 768px) {
  .about_message .imgArea {
    width: 100%;
    position: absolute;
    width: 40%;
    height: 400px;
    background-position: center;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 951px) {
  .about_message .imgArea {
    position: absolute;
    max-width: 460px;
    height: 560px;
    left: auto;
  }
}

/* =======================================================
* ABOUT_会社概要
* ======================================================= */
@media screen and (min-width: 768px) {
  .about_company::before {
    content: "";
    display: block;
    background: url(../../img/bg_yellow.jpg) no-repeat center;
    background-size: cover;
    -webkit-filter: blur(9px);
    filter: blur(9px);
    opacity: 0.5;
    width: 55%;
    height: 65%;
    position: absolute;
    right: 0;
    -webkit-filter: blur(9px) opacity(0.8);
    filter: blur(9px) opacity(0.8);
    border-radius: 0 20px 20px 0;
    z-index: -1;
  }
}
.about_company .bg_wrap {
  position: relative;
}
.about_company .bg_wrap .imgArea {
  width: 100%;
  min-height: 420px;
  border-radius: var(--border-20);
  background: url(../../img/ph-office_02.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .about_company .bg_wrap .imgArea {
    height: 580px;
  }
}
@media screen and (min-width: 951px) {
  .about_company .bg_wrap .imgArea {
    position: absolute;
    left: auto;
    right: 0;
    top: -60px;
    width: 40%;
  }
}
.about_company .bg_wrap .info_details {
  margin-bottom: 2rem;
}
@media screen and (min-width: 951px) {
  .about_company .bg_wrap .info_details {
    width: 55%;
  }
}
@media screen and (min-width: 768px) {
  .about_company .bg_wrap .info_details .info_item .info_title {
    width: 140px;
  }
}

/* =======================================================
* SERVICE_mv
* ======================================================= */
.service_mv::after {
  background-image: url(../../img/service_mv.jpg);
}

/* =======================================================
* SERVICE_リードコンテンツ
* ======================================================= */
.service_lead {
  position: relative;
  padding-bottom: 280px;
}
@media screen and (min-width: 768px) {
  .service_lead {
    padding-bottom: 400px;
  }
}
@media screen and (min-width: 951px) {
  .service_lead {
    margin-bottom: 80px;
    padding-bottom: 40px;
  }
}
.service_lead .textArea {
  position: relative;
}
.service_lead .textArea .lead_title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service_lead .textArea .lead_title {
    text-align: left;
  }
}
@media screen and (min-width: 951px) {
  .service_lead .textArea {
    width: 47%;
    margin-right: 53%;
  }
}
.service_lead .imgArea .photoImg {
  content: "";
  height: 240px;
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(../../img/service_lead-img.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .service_lead .imgArea .photoImg {
    height: 360px;
  }
}
@media screen and (min-width: 951px) {
  .service_lead .imgArea .photoImg {
    width: 48%;
    height: 500px;
    top: 80px;
    bottom: auto;
    border-radius: 20px 0 0 20px;
  }
}

/* =======================================================
* SERVICE_サービス詳細
* ======================================================= */
.service_detail {
  position: relative;
}
.service_detail::before {
  content: "";
  display: block;
  background: url(../../img/bg_yellow.jpg) no-repeat center;
  background-size: cover;
  -webkit-filter: blur(9px);
  filter: blur(9px);
  opacity: 0.5;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.service_detail h2.main_title {
  margin-bottom: 100px;
}
.service_detail .serviceList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 5rem 2rem;
  margin-top: 80px;
}
.service_detail .serviceList .serviceList_item {
  background-color: var(--color-white);
  padding: 3.2rem 1.6rem 2rem;
  border-radius: var(--border-20);
  position: relative;
}
@media screen and (min-width: 768px) {
  .service_detail .serviceList .serviceList_item {
    padding: 2.5rem 2rem;
  }
}
.service_detail .serviceList .serviceList_item::before {
  content: "";
  display: inline-block;
  width: 150px;
  height: 80px;
  background: var(--color-white);
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  position: absolute;
  top: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .service_detail .serviceList .serviceList_item::before {
    width: 145px;
    height: 70px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
  }
}
.service_detail .serviceList .serviceList_item .service_icon {
  width: 90px;
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.service_detail .serviceList .serviceList_item h3.item_title {
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
}
.service_detail .serviceList .serviceList_item .textBox {
  margin-top: 1rem;
}

.item_title {
  font-family: var(--font-kiwi);
  font-size: clamp(1.25rem, 1.045rem + 1.03vw, 1.75rem);
}

/* =======================================================
* SERVICE_ご利用の流れ
* ======================================================= */
.service_flow {
  padding-bottom: 0;
}
.service_flow h2.main_title {
  margin-bottom: 40px;
}
.service_flow .flowList {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
}
.service_flow .flowList .flowItem {
  position: relative;
  background-color: var(--color-light-yellow);
  padding: 1.6rem;
  min-height: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: var(--border-10);
}
@media screen and (min-width: 768px) {
  .service_flow .flowList .flowItem {
    padding: 2rem;
  }
}
.service_flow .flowList .flowItem:not(:last-child) {
  margin-bottom: 3rem;
}
.service_flow .flowList .flowItem:last-child::before {
  display: none;
}
.service_flow .flowList .flowItem::before {
  content: "";
  display: inline-block;
  border-top: 30px solid var(--color-light-yellow);
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -30px;
  left: 15%;
}
@media screen and (min-width: 768px) {
  .service_flow .flowList .flowItem .flowBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3em;
    width: 100%;
  }
}
.service_flow .flowList .flowItem .flowBox .flowHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  white-space: nowrap;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .service_flow .flowList .flowItem .flowBox .flowHeader {
    width: 20%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.service_flow .flowList .flowItem .flowBox .flowHeader .flowNum {
  font-size: clamp(1.375rem, 1.148rem + 1.14vw, 2rem);
  font-weight: 700;
  color: var(--color-theme);
  text-align: center;
  font-family: var(--font-mplusrounded);
}
.service_flow .flowList .flowItem .flowBox .flowHeader .flowTitle {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  font-family: var(--font-kiwi);
}
.service_flow .flowList .flowItem .flowBox .flowText {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* =======================================================
* SERVICE_よくあるご質問
* ======================================================= */
.service_faq h2.main_title {
  margin-bottom: 40px;
}
.service_faq .accordion_wrap details {
  margin-bottom: 1.4rem;
  border: 2px solid var(--color-light-blue);
  border-radius: var(--border-5);
}
.service_faq .accordion_wrap details summary {
  display: block;
  position: relative;
  cursor: pointer;
}
.service_faq .accordion_wrap details summary::-webkit-details-marker {
  display: none;
}
.service_faq .accordion_wrap details summary .icon {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  right: 1rem;
  width: 20px;
  margin-left: 6px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
@media screen and (min-width: 768px) {
  .service_faq .accordion_wrap details summary .icon {
    right: 20px;
    width: 24px;
  }
}
.service_faq .accordion_wrap details summary .icon::before, .service_faq .accordion_wrap details summary .icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 12px;
  height: 2px;
  background-color: var(--color-light-blue);
}
@media screen and (min-width: 768px) {
  .service_faq .accordion_wrap details summary .icon::before, .service_faq .accordion_wrap details summary .icon::after {
    width: 15px;
    height: 3px;
  }
}
.service_faq .accordion_wrap details summary .icon::before {
  left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.service_faq .accordion_wrap details summary .icon::after {
  right: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.service_faq .accordion_wrap details .summary_inner {
  cursor: pointer;
  display: inline-block;
  padding: 1rem 2.7rem 1rem 3.2rem;
}
@media screen and (min-width: 768px) {
  .service_faq .accordion_wrap details .summary_inner {
    padding: 1.6rem 1.6rem 1.6rem 4.2rem;
  }
}
.service_faq .accordion_wrap details.is-opened .icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.service_faq .accordion_wrap details .content {
  overflow: hidden;
  position: relative;
  z-index: -1;
  background-color: var(--color-light-pink);
}
.service_faq .accordion_wrap details .content.js-content {
  overflow: hidden;
}
.service_faq .accordion_wrap details .content .content_inner {
  padding: 1rem 1rem 1rem 3rem;
}
@media screen and (min-width: 768px) {
  .service_faq .accordion_wrap details .content .content_inner {
    padding: 1.6rem 1.6rem 1.6rem 4.2rem;
  }
}
.service_faq .accordion_wrap .faqBlock {
  position: relative;
}
.service_faq .accordion_wrap .faqBlock.question::before, .service_faq .accordion_wrap .faqBlock.answer::before {
  content: "Q";
  width: 26px;
  height: 26px;
  line-height: 26px;
  left: 10px;
  border-radius: 50%;
  background-color: var(--color-light-blue);
  color: var(--color-white);
  font-weight: 700;
  text-align: center;
  font-size: 0.9rem;
  font-family: var(--font-mplusrounded);
  position: absolute;
  top: 16px;
}
@media screen and (min-width: 768px) {
  .service_faq .accordion_wrap .faqBlock.question::before, .service_faq .accordion_wrap .faqBlock.answer::before {
    font-size: 1rem;
    left: 20px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.service_faq .accordion_wrap .faqBlock.answer::before {
  content: "A";
  background-color: var(--color-theme);
}

/* =======================================================
* STAFF_MV
* ======================================================= */
.staff_mv::after {
  background-image: url(../../img/staff_mv.jpg);
  background-position: 50% 0%;
}

/* =======================================================
* STAFF_リードコンテンツ
* ======================================================= */
.staff_lead {
  padding-bottom: 0;
}
.staff_lead .textBox {
  margin-bottom: 3rem;
}

/* =======================================================
* STAFF_スタッフ紹介
* ======================================================= */
.staff_contents .titleArea {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .staff_contents .titleArea {
    margin-bottom: 3rem;
  }
}
.staff_contents .titleArea h2.main_title {
  margin-bottom: 40px;
}
.staff_contents .slider_yohaku {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
}

.staff_list .staff_item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-20);
}
.staff_list .staff_item .staff_photo {
  position: relative;
}
.staff_list .staff_item .staff_photo .view_more {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  right: 10px;
  top: 16px;
  font-size: clamp(1rem, 0.864rem + 0.68vw, 1.375rem);
  font-family: var(--font-mplusrounded);
  color: var(--color-white);
  background: var(--gradation-01);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .staff_list .staff_item .staff_photo .view_more {
    right: 20px;
    top: 20px;
    width: 50px;
    height: 50px;
  }
}
.staff_list .staff_item .staff_photo img {
  -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;
  -webkit-transform-origin: center;
          transform-origin: center;
  border-radius: var(--border-10);
}
@media screen and (min-width: 768px) {
  .staff_list .staff_item .staff_photo img {
    border-radius: var(--border-20);
  }
}
.staff_list .staff_item .staff_info {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  border-radius: 0px 20px 0 0;
  width: 70%;
  padding: 12px 20px 0;
  background-color: var(--color-white);
}
.staff_list .staff_item .staff_info::before, .staff_list .staff_item .staff_info::after {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  background-size: cover;
  background-image: url(../../img/kado_lb20.png);
  z-index: 10;
}
.staff_list .staff_item .staff_info::before {
  content: "";
  top: -20px;
  left: 0;
}
.staff_list .staff_item .staff_info::after {
  content: "";
  right: -20px;
  bottom: 0;
}
.staff_list .staff_item .staff_info .staff_position {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-theme);
  font-family: var(--font-kiwi);
}
@media screen and (min-width: 768px) {
  .staff_list .staff_item .staff_info .staff_position {
    font-size: 0.9rem;
  }
}
.staff_list .staff_item .staff_info .staff_name {
  font-weight: 700;
  font-family: var(--font-kiwi);
}
@media screen and (min-width: 768px) {
  .staff_list .staff_item .staff_info .staff_name {
    font-size: 1.2rem;
  }
}
.staff_list .staff_item .staff_info .staff_en {
  text-transform: capitalize;
  font-family: var(--font-mplusrounded);
  font-size: clamp(0.625rem, 0.534rem + 0.45vw, 0.875rem);
  letter-spacing: 0.2em;
  color: var(--color-gray);
}

.staff_modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  /* 読み込み中は画像を隠し、高さを確保 */
}
.staff_modal.is-active {
  opacity: 1;
  visibility: visible;
}
.staff_modal.is-loading .modal_photo img {
  opacity: 0;
}
.staff_modal.is-loading .modal_photo {
  min-height: 40vh;
}
.staff_modal .staff_modal-container {
  position: relative;
  max-width: 600px;
  width: 90%;
  background: var(--color-white);
  padding: 30px 20px;
  border-radius: var(--border-10);
}
@media screen and (min-width: 768px) {
  .staff_modal .staff_modal-container {
    max-width: 800px;
    padding: 40px;
  }
}
.staff_modal .staff_modal-container .staff_modal-close {
  position: absolute;
  top: -20px;
  right: -10px;
  width: 50px;
  height: 50px;
  background: var(--gradation-01);
  color: var(--color-white);
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 22px;
}
@media screen and (min-width: 768px) {
  .staff_modal .staff_modal-container .staff_modal-close {
    width: 50px;
    height: 50px;
  }
}
.staff_modal .staff_modal-container .staff_modal-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .staff_modal .staff_modal-container .staff_modal-content {
    gap: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.staff_modal .staff_modal-container .staff_modal-content .modal_photo {
  position: relative;
  display: grid;
  place-items: center;
  width: 80%;
  margin-bottom: 1.2em;
}
@media screen and (min-width: 768px) {
  .staff_modal .staff_modal-container .staff_modal-content .modal_photo {
    width: 40%;
    margin-bottom: 0;
  }
}
.staff_modal .staff_modal-container .staff_modal-content .modal_photo img {
  display: block;
  max-width: 100%;
  max-height: 70vh;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: var(--border-10);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.staff_modal .staff_modal-container .staff_modal-content .modal_info {
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .staff_modal .staff_modal-container .staff_modal-content .modal_info {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.staff_modal .staff_modal-container .staff_modal-content .modal_info .modal_position {
  font-weight: 700;
  margin-bottom: 0.5em;
  color: var(--color-theme);
  font-family: var(--font-kiwi);
}
.staff_modal .staff_modal-container .staff_modal-content .modal_info .modal_nameWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 1em;
  margin-bottom: 0.5em;
}
.staff_modal .staff_modal-container .staff_modal-content .modal_info .modal_nameWrap .modal_name {
  font-weight: 700;
  font-family: var(--font-kiwi);
  font-size: 1.4rem;
}
.staff_modal .staff_modal-container .staff_modal-content .modal_info .modal_nameWrap .modal_en {
  font-size: 0.9em;
  color: var(--color-gray);
  text-transform: capitalize;
}
.staff_modal .staff_modal-container .staff_modal-content .modal_info .modal_detail {
  font-size: 0.9em;
  color: var(--color-gray);
  text-align: justify;
}

.staff-card_slider .controllerWrap {
  max-width: 1200px;
  padding-right: 16px;
  /* controller */
}
@media screen and (min-width: 768px) {
  .staff-card_slider .controllerWrap {
    padding-right: 45px;
  }
}
@media screen and (min-width: 951px) {
  .staff-card_slider .controllerWrap {
    padding-right: 60px;
  }
}
.staff-card_slider .controllerWrap .swiper-controller {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  /* pagination */
  /* arrows */
}
@media screen and (min-width: 768px) {
  .staff-card_slider .controllerWrap .swiper-controller {
    gap: 2.6rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.staff-card_slider .controllerWrap .swiper-controller .swiper-pagination {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1.2rem 0.8rem;
  margin: 0 auto 0 0;
  text-align: center;
}
.staff-card_slider .controllerWrap .swiper-controller .swiper-pagination-bullet {
  display: none;
}
@media screen and (min-width: 768px) {
  .staff-card_slider .controllerWrap .swiper-controller .swiper-pagination-bullet {
    display: block;
    width: 1.6rem;
    height: 3px;
    cursor: pointer;
    -webkit-transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
    transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
    vertical-align: top;
    background-color: #9b9b9b;
    border-radius: var(--border-10);
  }
}
.staff-card_slider .controllerWrap .swiper-controller .swiper-pagination-bullet-active {
  width: 4rem;
  background-color: var(--color-theme);
}
.staff-card_slider .controllerWrap .swiper-controller .swiper-button-prev,
.staff-card_slider .controllerWrap .swiper-controller .swiper-button-next {
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  -webkit-transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .staff-card_slider .controllerWrap .swiper-controller .swiper-button-prev,
  .staff-card_slider .controllerWrap .swiper-controller .swiper-button-next {
    width: 3.6rem;
    height: 3.6rem;
  }
}

.staff-card_slider .swiper-button-prev::before,
.staff-card_slider .swiper-button-next::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  -webkit-transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  border: 2px solid var(--color-theme);
}

.staff-card_slider .swiper-button-prev::after,
.staff-card_slider .swiper-button-next::after {
  content: none;
  border: none;
  width: 1.2rem;
  height: 1.2rem;
}

.staff-card_slider .swiper-button-prev i,
.staff-card_slider .swiper-button-next i {
  font-size: 16px;
  color: var(--color-theme);
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .staff-card_slider .swiper-button-prev i,
  .staff-card_slider .swiper-button-next i {
    font-size: 24px;
  }
}

/* =======================================================
* CONTACT_MV
* ======================================================= */
.contact_mv::after {
  background-image: url(../../img/contact_mv.jpg);
}

/* =======================================================
* CONTACT_フォーム
* ======================================================= */
.contact_form .titleArea .lead_text {
  margin-bottom: 4rem;
}
.contact_form .contactForm_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .contact_form .contactForm_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact_form .contactForm_list .contactForm_item.full {
  grid-column: 1/-1;
}
.contact_form .contactForm_list .contactForm_item label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-kiwi);
}
.contact_form .contactForm_list .contactForm_item input,
.contact_form .contactForm_list .contactForm_item textarea {
  width: 100%;
  padding: 1rem;
  line-height: 1.7;
  border: 2px solid var(--color-light-blue);
  border-radius: var(--border-5);
}
@media screen and (min-width: 768px) {
  .contact_form .contactForm_list .contactForm_item input,
  .contact_form .contactForm_list .contactForm_item textarea {
    padding: 24px 26px;
  }
}
.contact_form .contactForm_list .contactForm_item input::-webkit-input-placeholder, .contact_form .contactForm_list .contactForm_item textarea::-webkit-input-placeholder {
  color: var(--color-light-gray);
}
.contact_form .contactForm_list .contactForm_item input::-moz-placeholder, .contact_form .contactForm_list .contactForm_item textarea::-moz-placeholder {
  color: var(--color-light-gray);
}
.contact_form .contactForm_list .contactForm_item input:-ms-input-placeholder, .contact_form .contactForm_list .contactForm_item textarea:-ms-input-placeholder {
  color: var(--color-light-gray);
}
.contact_form .contactForm_list .contactForm_item input::-ms-input-placeholder, .contact_form .contactForm_list .contactForm_item textarea::-ms-input-placeholder {
  color: var(--color-light-gray);
}
.contact_form .contactForm_list .contactForm_item input::placeholder,
.contact_form .contactForm_list .contactForm_item textarea::placeholder {
  color: var(--color-light-gray);
}
.contact_form .contactForm_list .contactForm_item textarea {
  height: 360px;
  resize: vertical;
}
.contact_form .contactForm_list .contactForm_item .req {
  display: inline-block;
  margin-left: 12px;
  padding: 0.1rem 0.8rem;
  font-size: 0.8rem;
  color: var(--color-white);
  background-color: var(--color-light-blue);
  border-radius: var(--border-5);
}
.contact_form .formActions {
  width: 90%;
  max-width: 500px;
  margin: 3rem auto 0;
}
.contact_form .formActions button {
  font-size: 1.1rem;
  font-family: var(--font-kiwi);
  background-color: var(--color-white);
  border: 2px solid var(--color-light-blue);
  width: 100%;
  height: 60px;
  border-radius: 50px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .contact_form .formActions button {
    height: 80px;
  }
}

/* =======================================================
* NEWS_mv
* ======================================================= */
.news_mv::after {
  background-image: url(../../img/news_mv.jpg);
  background-position: top;
}

/* =======================================================
* NEWS_お知らせ一覧（一時的なスタイル）
* ======================================================= */
.news_list .postItem .title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.news_list .postItem .comment {
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--color-gray);
}
.news_list .linkBtn {
  text-align: right;
}/*# sourceMappingURL=main.css.map */