@charset "UTF-8";
/* ===================================
   変数定義
   =================================== */
:root {
  --color-white: #fff;
  --color-white-transparent: rgba(255, 255, 255, 0.8);
  --color-gold: #CCC4A6;
  --color-grey: #C6C4C4;
  --color-light-grey: #707070;
  --color-light-blue: #1183E4;
  --color-sky-blue: #0099FF;
  --color-light-sky-blue: #F3F6FB;
  --color-navy: #2A4B74;
  --color-red: #FF2121;
  --color-orange: #FF9900;
  --color-light-navy: #E5E9F0;
  --color-black: #000;
  --color-light-black: #333;
  --color-blue-gradient-right: linear-gradient(to right, #0A50A8, #2469B9);
  --color-blue-gradient-left: linear-gradient(to left, #0A50A8, #2469B9);
  --color-blue-gradient-2: linear-gradient(#1183e4 0%, #2e94ea 37.08%, #60b1f5 100%);
  --color-light-blue-gradient: linear-gradient(to bottom, #5ca5f2, #6eecec);
  --header-height: clamp(120px, 14.8vh, 160px);
}
@media screen and (max-width: 1024px) {
  :root {
    --header-height: 69px;
  }
}
:root {
  --shadow-default: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  --font-noto: "Noto Sans JP",
  "游ゴシック体",
  YuGothic,
  "游ゴシック",
  "Yu Gothic",
  "Hiragino Kaku Gothic ProN",
  "Hiragino Kaku Gothic Pro",
  メイリオ,
  Meiryo,
  sans-serif;
  --font-serif: "Noto Serif JP",
  "游ゴシック体",
  YuGothic,
  "游ゴシック",
  "Yu Gothic",
  "Hiragino Kaku Gothic ProN",
  "Hiragino Kaku Gothic Pro",
  メイリオ,
  Meiryo,
  sans-serif;
  --font-roboto: "Roboto",
  "Noto Sans JP",
  "游ゴシック体",
  YuGothic,
  "游ゴシック",
  "Yu Gothic",
  "Hiragino Kaku Gothic ProN",
  "Hiragino Kaku Gothic Pro",
  メイリオ,
  Meiryo,
  sans-serif;
  --font-cormorant: "Cormorant",
  serif;
  --letter-spacing-base: 0;
  --line-height-base: 1.6;
  --fs75px: clamp(3.9rem, 3.9vw, 7.5rem);
  --fs55px: clamp(1.8rem, 2.87vw, 5.5rem);
  --fs50px: clamp(4rem, 2.6vw, 5rem);
  --fs49px: clamp(3.5rem, 2.55vw, 4.9rem);
  --fs47px: clamp(3.5rem, 2.45vw, 4.7rem);
  --fs45px: clamp(3rem, 2.55vw, 4.5rem);
  --fs42px: clamp(3rem, 2.19vw, 4.2rem);
  --fs38px: clamp(3rem, 1.98vw, 3.8rem);
  --fs37px: clamp(3rem, 1.93vw, 3.7rem);
  --fs36px: clamp(3rem, 1.88vw, 3.6rem);
  --fs35px: clamp(3rem, 1.77vw, 3.5rem);
  --fs34px: clamp(2.2rem, 1.77vw, 3.4rem);
  --fs33px: clamp(2.2rem, 1.72vw, 3.3rem);
  --fs32px: clamp(2.2rem, 1.67vw, 3.2rem);
  --fs31px: clamp(2.2rem, 1.67vw, 3.1rem);
  --fs30px: clamp(2.1rem, 1.67vw, 3rem);
  --fs29px: clamp(2.1rem, 1.46vw, 2.9rem);
  --fs28px: clamp(2.1rem, 1.46vw, 2.8rem);
  --fs27px: clamp(2.1rem, 1.41vw, 2.7rem);
  --fs26px: clamp(2.1rem, 1.354vw, 2.6rem);
  --fs25px: clamp(2.1rem, 1.3vw, 2.5rem);
  --fs24px: clamp(1.9rem, 1.25vw, 2.4rem);
  --fs23px: clamp(1.9rem, 1.2vw, 2.3rem);
  --fs22px: clamp(1.7rem, 1.3vw, 2.2rem);
  --fs21px: clamp(1.5rem, 1.09vw, 2.1rem);
  --fs20px: clamp(1.5rem, 1.042vw, 2rem);
  --fs19px: clamp(1.5rem, 0.99vw, 1.9rem);
  --fs18px: clamp(1.5rem, 0.94vw, 1.8rem);
  --fs17px: clamp(1.5rem, 0.89vw, 1.7rem);
  --fs16px: clamp(1.4rem, 0.84vw, 1.6rem);
}
@media screen and (max-width: 768px) {
  :root {
    --fs75px: 3.9rem;
    --fs55px: 1.8rem;
    --fs50px: 4rem;
    --fs49px: 3.5rem;
    --fs45px: 3rem;
    --fs42px: 3rem;
    --fs38px: 3rem;
    --fs37px: 3rem;
    --fs36px: 3rem;
    --fs35px: 3rem;
    --fs34px: 2.1rem;
    --fs33px: 2.1rem;
    --fs32px: 1.8rem;
    --fs31px: 1.6rem;
    --fs30px: 1.6rem;
    --fs29px: 1.6rem;
    --fs28px: 1.6rem;
    --fs27px: 1.6rem;
    --fs26px: 1.6rem;
    --fs25px: 1.6rem;
    --fs24px: 1.5rem;
    --fs23px: 1.5rem;
    --fs22px: 1.5rem;
    --fs21px: 1.5rem;
    --fs20px: 1.5rem;
    --fs19px: 1.5rem;
    --fs18px: 1.5rem;
    --fs17px: 1.5rem;
    --fs16px: 1.4rem;
  }
}

/* ===================================
   リセット・基本スタイル
   =================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: var(--fs16px);
  color: var(--color-light-black);
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
  text-align: justify;
  text-justify: inter-ideograph;
  font-feature-settings: "palt";
  margin: 0;
  width: 100%;
  position: relative;
}
body.is-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: var(--line-height-base);
  font-weight: normal;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

p {
  font-size: var(--fs16px);
  font-family: var(--font-noto);
  margin: 0;
}

li {
  list-style: none;
}

b,
strong {
  font-family: var(--font-noto);
  font-weight: bold;
}

section {
  padding: clamp(6rem, 8.4vh, 8rem) 0;
}
@media screen and (max-width: 1024px) {
  section {
    padding: 6rem 0;
  }
}
@media screen and (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
}
section.c-fv {
  padding: 0;
}
@media screen and (max-width: 768px) {
  section.c-fv {
    padding-top: 69px;
  }
}
section.c-fv .c-fv__image img {
  width: 100vw;
}

/*
.%%..%%..%%%%%%..%%%%%%..%%......%%%%%%..%%%%%%..%%..%%.
.%%..%%....%%......%%....%%........%%......%%.....%%%%..
.%%..%%....%%......%%....%%........%%......%%......%%...
.%%..%%....%%......%%....%%........%%......%%......%%...
..%%%%.....%%....%%%%%%..%%%%%%..%%%%%%....%%......%%...
........................................................
*/
/* ===================================
   ユーティリティクラス（u-）
   =================================== */
.u-font-noto {
  font-family: "Noto Sans JP", sans-serif !important;
}

.u-font-serif {
  font-family: "Noto Serif JP", sans-serif !important;
}

.u-font-cormorant {
  font-family: "Cormorant", serif !important;
}

.u-font-bold {
  font-weight: bold;
}

.u-font-normal {
  font-weight: normal;
}

.u-text-11 p {
  font-size: 1.1rem !important;
}

.u-text-14 p {
  font-size: 1.4rem !important;
}

.u-text-16 p {
  font-size: 1.6rem !important;
}

.u-text-18 p {
  font-size: 1.8rem !important;
}

.u-text-20 p {
  font-size: 2rem !important;
}

.u-text-21 p {
  font-size: 2.1rem !important;
}

.u-text-22 p {
  font-size: 2.2rem !important;
}

.u-text-23 p {
  font-size: 2.3rem !important;
}

.u-text-25 p {
  font-size: 2.5rem !important;
}

.u-text-28 p {
  font-size: 2.8rem !important;
}

.u-text-30 p {
  font-size: 3rem !important;
}

.u-text-center {
  text-align: center;
}
.u-text-left {
  text-align: left;
}
.u-text-right {
  text-align: right;
}

.u-emphasis--underline {
  text-decoration: underline;
}
.u-emphasis--dots {
  background-image: radial-gradient(circle at center, orange 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: 0.5rem;
}

.u-bg-color-white {
  background-color: #fff;
}

.u-bg-color-grey {
  background-color: #f6f6f6;
}

.u-bg-color-yellow {
  background-color: #f9f9f9;
}

.u-bg-color-beige {
  background-color: #efe9e4;
}

.u-bg-color-light-beige {
  background-color: #f5f2ee;
}

.u-mx-auto-0 {
  margin: 0rem auto !important;
}

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

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

.u-pt-0 {
  padding-top: 0rem !important;
}

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

.u-mx-auto-1 {
  margin: 1rem auto !important;
}

.u-mt-1 {
  margin-top: 1rem !important;
}

.u-mb-1 {
  margin-bottom: 1rem !important;
}

.u-pt-1 {
  padding-top: 1rem !important;
}

.u-pb-1 {
  padding-bottom: 1rem !important;
}

.u-mx-auto-2 {
  margin: 2rem auto !important;
}

.u-mt-2 {
  margin-top: 2rem !important;
}

.u-mb-2 {
  margin-bottom: 2rem !important;
}

.u-pt-2 {
  padding-top: 2rem !important;
}

.u-pb-2 {
  padding-bottom: 2rem !important;
}

.u-mt-3 {
  margin-top: 3rem !important;
}

.u-mb-3 {
  margin-bottom: 3rem !important;
}

.u-pt-3 {
  padding-top: 3rem !important;
}

.u-pb-3 {
  padding-bottom: 3rem !important;
}

.u-mx-auto-4 {
  margin: 4rem auto !important;
}

.u-mt-4 {
  margin-top: 4rem !important;
}

.u-mb-4 {
  margin-bottom: 4rem !important;
}

.u-pt-4 {
  padding-top: 4rem !important;
}

.u-pb-4 {
  padding-bottom: 4rem !important;
}

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

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

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

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

.u-mx-auto-6 {
  margin: 6rem auto !important;
}

.u-mt-6 {
  margin-top: 6rem !important;
}

.u-mb-6 {
  margin-bottom: 6rem !important;
}

.u-pt-6 {
  padding-top: 6rem !important;
}

.u-pb-6 {
  padding-bottom: 6rem !important;
}

.u-mt-7 {
  margin-top: 7rem !important;
}

.u-mb-7 {
  margin-bottom: 7rem !important;
}

.u-pt-7 {
  padding-top: 7rem !important;
}

.u-pb-7 {
  padding-bottom: 7rem !important;
}

.u-mx-auto-8 {
  margin: 8rem auto !important;
}

.u-mt-8 {
  margin-top: 8rem !important;
}

.u-mb-8 {
  margin-bottom: 8rem !important;
}

.u-pt-8 {
  padding-top: 8rem !important;
}

.u-pb-8 {
  padding-bottom: 8rem !important;
}

.u-ml-auto {
  margin-left: auto !important;
}

.u-mr-auto {
  margin-right: auto !important;
}

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

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

.u-gap-1 {
  gap: 1rem !important;
}

.u-gap-2 {
  gap: 2rem !important;
}

.u-gap-3 {
  gap: 3rem !important;
}

.u-gap-4 {
  gap: 4rem !important;
}

.u-gap-5 {
  gap: 5rem !important;
}

.u-gap-6 {
  gap: 6rem !important;
}

.u-gap-7 {
  gap: 7rem !important;
}

.u-gap-8 {
  gap: 8rem !important;
}

.u-lh-10 {
  line-height: 0.1;
}

.u-lh-20 {
  line-height: 0.2;
}

.u-lh-30 {
  line-height: 0.3;
}

.u-lh-40 {
  line-height: 0.4;
}

.u-lh-50 {
  line-height: 0.5;
}

.u-lh-60 {
  line-height: 0.6;
}

.u-lh-70 {
  line-height: 0.7;
}

.u-lh-80 {
  line-height: 0.8;
}

.u-lh-90 {
  line-height: 0.9;
}

.u-lh-100 {
  line-height: 1;
}

.u-lh-110 {
  line-height: 1.1;
}

.u-lh-120 {
  line-height: 1.2;
}

.u-lh-130 {
  line-height: 1.3;
}

.u-lh-140 {
  line-height: 1.4;
}

.u-lh-150 {
  line-height: 1.5;
}

.u-lh-160 {
  line-height: 1.6;
}

.u-lh-170 {
  line-height: 1.7;
}

.u-lh-180 {
  line-height: 1.8;
}

.u-lh-190 {
  line-height: 1.9;
}

.u-lh-200 {
  line-height: 2;
}

@media screen and (max-width: 1500px) {
  .u-hidden-pc1500 {
    display: none !important;
  }
}
@media screen and (max-width: 1280px) {
  .u-hidden-pc1280 {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-hidden-sp1024 {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .u-hidden-sp768 {
    display: none !important;
  }
}

.u-show-pc1500 {
  display: none !important;
}
@media screen and (max-width: 1500px) {
  .u-show-pc1500 {
    display: block !important;
  }
}
.u-show-pc1280 {
  display: none !important;
}
@media screen and (max-width: 1280px) {
  .u-show-pc1280 {
    display: block !important;
  }
}
.u-show-sp1024 {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .u-show-sp1024 {
    display: block !important;
  }
}
.u-show-sp768 {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u-show-sp768 {
    display: block !important;
  }
}

.u-flex-pc1500 {
  display: none !important;
}
@media screen and (max-width: 1500px) {
  .u-flex-pc1500 {
    display: flex !important;
  }
}
.u-flex-pc1280 {
  display: none !important;
}
@media screen and (max-width: 1280px) {
  .u-flex-pc1280 {
    display: flex !important;
  }
}
.u-flex-sp1024 {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .u-flex-sp1024 {
    display: flex !important;
  }
}
.u-flex-sp768 {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u-flex-sp768 {
    display: flex !important;
  }
}

.u-color--white {
  color: var(--color-white) !important;
}
.u-color--black {
  color: var(--color-black) !important;
}
.u-color--light-black {
  color: var(--color-light-black) !important;
}
.u-color--navy {
  color: var(--color-navy) !important;
}
.u-color--blue {
  color: var(--color-light-blue) !important;
}
.u-color--gold {
  color: var(--color-gold) !important;
}

/*
.%%.......%%%%...%%..%%...%%%%...%%..%%..%%%%%%.
.%%......%%..%%...%%%%...%%..%%..%%..%%....%%...
.%%......%%%%%%....%%....%%..%%..%%..%%....%%...
.%%......%%..%%....%%....%%..%%..%%..%%....%%...
.%%%%%%..%%..%%....%%.....%%%%....%%%%.....%%...
................................................
*/
/* ===================================
   レイアウトクラス（l-）
   =================================== */
.l-flex {
  display: flex;
}
.l-flex--2col {
  flex-wrap: wrap;
  gap: 2rem;
}
.l-flex--2col > * {
  flex: 0 1 calc((100% - 2rem) / 2);
  min-width: 0;
}
.l-flex--3col {
  flex-wrap: wrap;
  gap: 2rem;
}
.l-flex--3col > * {
  flex: 0 1 calc((100% - 4rem) / 3);
  min-width: 0;
}
.l-flex--4col {
  flex-wrap: wrap;
  gap: 2rem;
}
.l-flex--4col > * {
  flex: 0 1 calc((100% - 6rem) / 4);
  min-width: 0;
}
.l-flex--wrap {
  flex-wrap: wrap;
}
.l-flex--column {
  flex-direction: column;
}
.l-flex--row {
  flex-direction: row;
}
.l-flex--center {
  justify-content: center;
  align-items: center;
}
.l-flex--align-center {
  align-items: center;
}
.l-flex--justify-center {
  justify-content: center;
}
.l-flex--justify-between {
  justify-content: space-between;
}

.l-grid {
  display: grid;
}
.l-grid--2col {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.l-grid--3col {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.l-grid--4col {
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.l-container {
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .l-container {
    padding: 0 6%;
  }
}
@media screen and (max-width: 768px) {
  .l-container {
    padding: 0 5%;
  }
}
.l-container--ex-wide {
  max-width: clamp(1400px, 92.71vw, 1780px);
}
@media screen and (max-width: 1024px) {
  .l-container--ex-wide {
    max-width: 100%;
  }
}
.l-container--wide {
  max-width: clamp(1200px, 74.64vw, 1433px);
}
@media screen and (max-width: 1280px) {
  .l-container--wide {
    padding: 0 6%;
  }
}
@media screen and (max-width: 1024px) {
  .l-container--wide {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .l-container--wide {
    padding: 0 5%;
  }
}
.l-container--medium {
  max-width: clamp(1000px, 65.94vw, 1266px);
}
@media screen and (max-width: 1024px) {
  .l-container--medium {
    max-width: 100%;
  }
}
.l-container--small {
  max-width: clamp(900px, 60.521vw, 1162px);
}
@media screen and (max-width: 1024px) {
  .l-container--small {
    max-width: 100%;
  }
}

.l-sidebar-layout {
  width: 100%;
  max-width: clamp(1280px, 90.625vw, 1740px);
  margin: 0 auto;
  display: flex;
  gap: clamp(4rem, 4.69vw, 9rem);
  align-items: flex-start;
  padding: 0 0 6rem;
}
@media screen and (max-width: 1280px) {
  .l-sidebar-layout {
    padding: 0 4%;
  }
}
@media screen and (max-width: 1024px) {
  .l-sidebar-layout {
    gap: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .l-sidebar-layout {
    display: block;
    padding: 0;
  }
}
.l-sidebar-layout__sidebar {
  width: 100%;
  max-width: clamp(250px, 19.69vw, 378px);
  flex-shrink: 0;
  position: sticky;
  top: 120px;
}
@media screen and (max-width: 1024px) {
  .l-sidebar-layout__sidebar {
    display: none;
  }
}
.l-sidebar-layout__main {
  width: 100%;
  max-width: 1400px;
  flex: 1;
  min-width: 0;
}

/*
..%%%%....%%%%...%%...%%..%%%%%....%%%%...%%..%%..%%%%%%..%%..%%..%%%%%%.
.%%..%%..%%..%%..%%%.%%%..%%..%%..%%..%%..%%%.%%..%%......%%%.%%....%%...
.%%......%%..%%..%%.%.%%..%%%%%...%%..%%..%%.%%%..%%%%....%%.%%%....%%...
.%%..%%..%%..%%..%%...%%..%%......%%..%%..%%..%%..%%......%%..%%....%%...
..%%%%....%%%%...%%...%%..%%.......%%%%...%%..%%..%%%%%%..%%..%%....%%...
.........................................................................
*/
/* ===================================
   コンポーネントクラス（c-）
   =================================== */
.c-fv {
  position: relative;
}
.c-fv__text {
  position: absolute;
  top: 50%;
  left: 15%;
  border-left: 3px solid var(--color-white);
  padding-left: 2rem;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 1024px) {
  .c-fv__text {
    top: 51%;
    left: 6%;
  }
}
@media screen and (max-width: 768px) {
  .c-fv__text {
    border-left: 1.5px solid var(--color-white);
    padding-left: 1.5rem;
    padding-bottom: 0;
    left: 5%;
  }
}
.c-fv__text p {
  font-size: var(--fs25px);
  font-family: var(--font-cormorant);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--color-white);
}
.c-fv__text h1 {
  font-size: var(--fs32px);
  color: var(--color-white);
  letter-spacing: 0;
  line-height: 1.45;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-fv__text h1 {
    font-size: 1.8rem;
  }
}

.c-heading {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .c-heading {
    margin-bottom: 2rem;
  }
}
.c-heading--center {
  text-align: center;
}
.c-heading--left {
  text-align: left;
}
.c-heading--decoration-border {
  position: relative;
}
.c-heading--decoration-border:after {
  display: block;
  content: "";
  width: 1px;
  height: 33px;
  background: var(--color-navy);
  bottom: -50px;
  left: 0;
  right: 0;
  margin: 1rem auto 0;
}
@media screen and (max-width: 768px) {
  .c-heading--decoration-border:after {
    display: none;
  }
}
.c-heading__subtitle {
  font-size: var(--fs22px);
  font-family: var(--font-serif);
  line-height: 1;
  font-weight: bold;
  color: var(--color-gold);
}
@media screen and (max-width: 768px) {
  .c-heading__subtitle {
    font-size: 1.3rem;
  }
}
.c-heading__title {
  font-size: var(--fs55px);
  font-family: var(--font-cormorant);
  font-weight: bold;
  line-height: 1.21;
  color: var(--color-navy);
}
@media screen and (max-width: 768px) {
  .c-heading__title {
    font-size: 3.4rem;
    line-height: 1;
  }
}
.c-heading--box-gradient {
  background: var(--color-white);
  border-radius: 58px;
  padding: clamp(1.5rem, 2.31vh, 2.5rem) 0;
  position: relative;
  margin: 0 auto 6rem;
  max-width: clamp(400px, 34vw, 652px);
  box-shadow: var(--shadow-default);
}
@media screen and (max-width: 768px) {
  .c-heading--box-gradient {
    max-width: 100%;
    border-radius: 40px;
    padding: 1.8rem 2.5rem;
    margin: 0 auto 3rem;
  }
}
.c-heading--box-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  right: -20px;
  bottom: 0;
  border-radius: 58px;
  z-index: -1;
  box-shadow: var(--shadow-default);
}
@media screen and (max-width: 768px) {
  .c-heading--box-gradient::before {
    left: -10px;
    right: -10px;
    border-radius: 40px;
  }
}
.c-heading--box-gradient .c-heading__title {
  font-size: var(--fs38px);
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--color-light-black);
  margin: 0;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .c-heading--box-gradient .c-heading__title {
    font-size: 2rem;
  }
}
.c-heading--box-gradient-blue::before {
  background: linear-gradient(#64a4f5 0%, #1676e6 100%);
}
.c-heading--box-gradient-green::before {
  background-color: #01B1B9;
}

.c-heading--lower__subtitle {
  font-size: var(--fs30px);
  line-height: 1;
  font-family: var(--font-cormorant);
  color: var(--color-gold);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-heading--lower__subtitle {
    margin-bottom: 0.5rem;
  }
}
.c-heading--lower__title {
  font-size: var(--fs31px);
  line-height: 1.21;
  color: var(--color-navy);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-heading--lower__title {
    font-size: 1.8rem;
  }
}

.c-heading--service {
  position: relative;
  margin: 0 auto clamp(4rem, 6.5vh, 7rem);
}
@media screen and (max-width: 768px) {
  .c-heading--service {
    margin: 0 auto 2rem;
  }
}
.c-heading--service:after {
  display: block;
  content: "";
  width: 32px;
  height: 11px;
  background: url(../../img/tax_accountant/heading_decoration.png) no-repeat center;
  background-size: contain;
  margin: 2rem auto 0;
}
@media screen and (max-width: 768px) {
  .c-heading--service:after {
    background: url(../../img/tax_accountant/heading_decoration_sp.png) no-repeat center;
    background-size: contain;
    width: 20px;
    height: 7px;
    margin: 1rem auto 0;
  }
}
.c-heading--service__title {
  font-size: var(--fs35px);
  color: var(--color-black);
  font-family: var(--font-noto);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-heading--service__title {
    font-size: 1.9rem;
  }
}
.c-heading--service__subtitle {
  font-size: var(--fs32px);
  font-family: var(--font-cormorant);
  color: var(--color-navy) !important;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .c-heading--service__subtitle {
    font-size: 2.2rem;
  }
}

.c-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  font-weight: bold;
  transition: opacity 0.3s;
  box-shadow: var(--shadow-default);
}
.c-btn:hover {
  cursor: pointer;
}
.c-btn--radius-58 {
  border-radius: 58px;
}
.c-btn--radius-51 {
  border-radius: 51px;
}
.c-btn--radius-26 {
  border-radius: 26px;
}
.c-btn--radius-14 {
  border-radius: 14px;
}
.c-btn--radius-12 {
  border-radius: 12px;
}
.c-btn--radius-11 {
  border-radius: 11px;
}
.c-btn--radius-8 {
  border-radius: 8px;
}
.c-btn--w100 {
  max-width: 100%;
  margin: 0 auto;
  padding: 3rem 0;
  font-size: clamp(2rem, 1.45vw, 2.8rem);
}
@media screen and (max-width: 768px) {
  .c-btn--w100 {
    padding: 1.5rem 0;
    font-size: 1.8rem;
  }
}
.c-btn--xlarge {
  max-width: clamp(600px, 45.68vw, 877px);
  margin: 0 auto !important;
  padding: 2rem 0;
  font-size: var(--fs27px) !important;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  .c-btn--xlarge {
    padding: 1.3rem 0;
    font-size: 1.4rem;
  }
}
.c-btn--wide {
  max-width: 492px;
  margin: 0 auto;
  padding: 2rem 0;
  font-size: var(--fs22px);
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  .c-btn--wide {
    padding: 1.3rem 0;
    font-size: 1.4rem;
  }
}
.c-btn--medium {
  max-width: 300px;
  margin: 0 auto;
  padding: 2rem 0;
  font-size: clamp(1.7rem, 1.25vw, 2.4rem);
}
@media screen and (max-width: 768px) {
  .c-btn--medium {
    max-width: 240px;
    padding: 1.3rem 0;
  }
}
.c-btn--small {
  max-width: clamp(240px, 14.38vw, 276px);
  margin: 0 auto;
  padding: clamp(1rem, 13.88vh, 1.5rem) 0;
  font-size: var(--fs19px);
}
@media screen and (max-width: 768px) {
  .c-btn--small {
    max-width: 276px;
    padding: 0.5rem 0;
    font-size: 1.6rem;
  }
}
.c-btn--contact {
  max-width: 268px;
  margin: 0 auto;
  padding: 1.3rem 0;
  font-size: clamp(1.7rem, 0.94vw, 1.8rem);
}
.c-btn--border {
  border: 2px solid var(--color-light-blue);
  color: var(--color-light-blue);
  background-color: var(--color-white);
  box-shadow: none !important;
}
.c-btn--gradient {
  color: var(--color-white);
  background: linear-gradient(#1183e4 0%, #1fb0e5 69.45%, #27cbe5 100%);
  border: 2px solid #fff;
  box-shadow: none !important;
}
.c-btn--fv-cta {
  position: relative;
  transform: translate(0, -50%);
}
.c-btn--primary-blue, .c-btn--primary-cyan {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  color: var(--color-white) !important;
  border-radius: 64px !important;
  border: 5px solid #fff !important;
  box-shadow: var(--shadow-default) !important;
  padding: clamp(1rem, 1.852vh, 2rem) clamp(4rem, 4.17vw, 8rem);
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-btn--primary-blue, .c-btn--primary-cyan {
    padding: 1.5rem 4rem;
    border-width: 2px !important;
  }
}
.c-btn--primary-blue:after, .c-btn--primary-cyan:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4rem;
  width: 22px;
  height: 38px;
  background: url(../../img/common/arrow_right_white_2.svg) no-repeat center;
  background-size: contain;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  .c-btn--primary-blue:after, .c-btn--primary-cyan:after {
    display: none;
  }
}
.c-btn--primary-blue {
  background: linear-gradient(#64a4f5 0%, #1676e6 100%) !important;
}
.c-btn--primary-cyan {
  background: linear-gradient(#58d8de 0%, #01b1b9 100%) !important;
}
.c-btn__text {
  font-size: var(--fs36px);
}
@media screen and (max-width: 1500px) {
  .c-btn__text {
    font-size: var(--fs30px);
  }
}
@media screen and (max-width: 768px) {
  .c-btn__text {
    font-size: 2rem;
  }
}
.c-btn__text--sp {
  font-size: 1.2rem;
  font-weight: bold;
}
.c-btn__note {
  font-size: var(--fs16px);
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .c-btn__note {
    font-size: 1.2rem;
  }
}

.c-card {
  box-shadow: var(--shadow-default);
  background-color: var(--color-white);
}

.c-logo img {
  width: 100%;
  max-width: clamp(96px, 6.41vw, 123px);
  height: auto;
}
@media screen and (max-width: 1024px) {
  .c-logo img {
    max-width: 72px;
  }
}

.c-company-name {
  font-size: 1.41vw;
  font-weight: bold;
  color: var(--color-black);
  font-family: var(--font-serif);
}
@media screen and (max-width: 1500px) {
  .c-company-name {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1280px) {
  .c-company-name {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .c-company-name {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 768px) {
  .c-company-name {
    color: var(--color-black);
  }
}

.c-topics-wrapper.c-card {
  padding: 7.5vh 11.7vw 10vh;
  z-index: 1;
  position: relative;
  width: 100%;
  max-width: clamp(800px, 62.91vw, 1208px);
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .c-topics-wrapper.c-card {
    padding: 7.5vh 4.7vw 10vh;
  }
}
@media screen and (max-width: 1024px) {
  .c-topics-wrapper.c-card {
    padding: 4rem 6%;
  }
}
@media screen and (max-width: 768px) {
  .c-topics-wrapper.c-card {
    padding: 3rem 0 4.5rem;
  }
}
.c-topics-wrapper.c-card h2 {
  font-size: clamp(2.5rem, 1.46vw, 2.8rem);
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .c-topics-wrapper.c-card h2 {
    font-size: clamp(2.2rem, 1.25vw, 2.4rem);
  }
}
@media screen and (max-width: 768px) {
  .c-topics-wrapper.c-card h2 {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
  }
}
.c-topics-wrapper .c-topics__list {
  margin: 6rem auto;
  border-top: 1px solid var(--color-light-grey);
}
@media screen and (max-width: 768px) {
  .c-topics-wrapper .c-topics__list {
    margin: 0 auto 2rem;
  }
}
.c-topics-wrapper .c-topics__item {
  border-bottom: 1px solid var(--color-light-grey);
}
@media screen and (max-width: 1280px) {
  .c-topics-wrapper .c-topics__item {
    font-size: 1.4rem;
  }
}
.c-topics-wrapper .c-topics__link {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: clamp(3rem, 4.629vh, 5rem) clamp(2.5rem, 2.61vw, 5rem);
}
@media screen and (max-width: 768px) {
  .c-topics-wrapper .c-topics__link {
    gap: 3rem;
    padding: 1.3rem 1rem;
    align-items: flex-end;
  }
}
.c-topics-wrapper .c-topics__meta {
  display: flex;
  align-items: center;
}
.c-topics-wrapper .c-topics__date {
  font-size: var(--fs18px);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-topics-wrapper .c-topics__date {
    font-size: 1.4rem;
  }
}
.c-topics-wrapper .c-topics__label {
  display: block;
  border: 2px solid;
  padding: 0 1.5rem;
  margin-left: 2rem;
  line-height: 1.6;
  font-size: var(--fs16px);
  font-weight: bold;
}
.c-topics-wrapper .c-topics__label--info {
  border-color: var(--color-navy);
  color: var(--color-navy);
}
.c-topics-wrapper .c-topics__label--news {
  border-color: var(--color-sky-blue);
  color: var(--color-sky-blue);
}
.c-topics-wrapper .c-topics__label--zeimu-colum {
  border-color: var(--color-navy);
  color: var(--color-light-black);
}
@media screen and (max-width: 768px) {
  .c-topics-wrapper .c-topics__label {
    margin-left: 1rem;
    padding: 0 1rem;
    vertical-align: middle;
    font-size: 1.2rem;
  }
}
.c-topics-wrapper .c-topics__title {
  flex: 1;
  font-size: var(--fs18px);
  font-weight: bold;
  margin-top: 3rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1280px) {
  .c-topics-wrapper .c-topics__title {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .c-topics-wrapper .c-topics__arrow-icon {
    width: 100%;
    max-width: 36px;
  }
}

.c-service-problems .c-heading {
  font-size: var(--fs42px);
  margin-bottom: 4.5rem;
}
.c-service-problems .c-heading span {
  color: var(--color-light-blue);
}
@media screen and (max-width: 768px) {
  .c-service-problems .c-heading {
    margin-bottom: 2rem;
  }
}
.c-service-problems__card {
  display: flex;
  padding: clamp(3rem, 5vh, 5.4rem) clamp(4rem, 8.34vw, 9rem);
  position: relative;
  border-radius: 13px;
  border: 1px solid #B5B5B5;
}
@media screen and (max-width: 1024px) {
  .c-service-problems__card {
    flex-direction: column;
    padding: 3rem 6% 16rem;
  }
}
.c-service-problems__card::after {
  content: "";
  position: absolute;
  width: 291px;
  height: 206px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .c-service-problems__card::after {
    transform: translate(-50%, 30%);
  }
}
@media screen and (max-width: 768px) {
  .c-service-problems__card::after {
    width: 262px;
    height: 185px;
    transform: translate(-50%, 20%);
    bottom: -4px;
  }
}
.c-service-problems__card-left, .c-service-problems__card-right {
  flex: 1;
}
.c-service-problems__card-left {
  border-right: 1px solid #ACAAAA;
  padding-right: clamp(4rem, 3.125vw, 6rem);
}
@media screen and (max-width: 1024px) {
  .c-service-problems__card-left {
    border-right: none;
    border-bottom: 1px solid #ACAAAA;
    padding-right: 0;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
}
.c-service-problems__card-right {
  padding-left: clamp(4rem, 3.125vw, 6rem);
}
@media screen and (max-width: 1024px) {
  .c-service-problems__card-right {
    padding-left: 0;
  }
}
.c-service-problems__card-title {
  font-size: var(--fs24px);
  font-weight: bold;
  padding-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .c-service-problems__card-title {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.c-service-problems__card-title span {
  font-size: var(--fs32px);
}
.c-service-problems__card-list li {
  display: flex;
  align-items: center;
  position: relative;
  font-size: var(--fs20px);
  line-height: 2;
  font-weight: bold;
  z-index: 2;
}
.c-service-problems__card-list li span {
  color: var(--color-orange);
}
@media screen and (max-width: 768px) {
  .c-service-problems__card-list li {
    font-size: 1.4rem;
  }
}
.c-service-problems__card-list li::before {
  display: inline-block;
  content: "";
  width: 19px;
  height: 11px;
  flex-shrink: 0;
  margin-right: 1rem;
  padding-top: 4rem;
  background: url(../../img/tax_accountant/checkbox_blue.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .c-service-problems__card-list li::before {
    padding-top: 3rem;
  }
}

.c-service-feature {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .c-service-feature {
    padding-bottom: 0;
  }
}
.c-service-feature .c-heading {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .c-service-feature .c-heading {
    margin-bottom: 2rem;
  }
}
.c-service-feature__title {
  text-align: center;
  margin-bottom: 9rem;
}
@media screen and (max-width: 768px) {
  .c-service-feature__title {
    margin-bottom: 4rem;
  }
}
.c-service-feature__title-text {
  font-size: var(--fs42px);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-service-feature__title-text {
    font-size: 2rem;
  }
}
.c-service-feature__title-highlight {
  border: 1.5px solid var(--color-black);
  padding: 0 0.5rem;
  margin: 0 0.5rem;
  background-color: var(--color-white);
  color: var(--color-light-blue);
}
.c-service-feature__title-small-text {
  font-size: var(--fs35px) !important;
}
@media screen and (max-width: 768px) {
  .c-service-feature__title-small-text {
    font-size: 1.8rem !important;
  }
}
.c-service-feature__heading {
  text-align: center;
}
.c-service-feature__heading-num {
  margin-bottom: 2.77vh;
}
.c-service-feature__heading-title {
  font-size: var(--fs32px);
  font-weight: bold;
  margin-bottom: 2.77vh;
}
.c-service-feature__heading-text {
  font-size: var(--fs18px);
  line-height: 2.11;
}
.c-service-feature__item {
  text-align: center;
  margin-top: clamp(2rem, 3.88vw, 4.2rem);
}
.c-service-feature__item-text p {
  font-size: var(--fs28px);
  font-weight: bold;
}
.c-service-feature__item-text p span {
  border-bottom: 3px dotted var(--color-orange);
}
@media screen and (max-width: 768px) {
  .c-service-feature__item {
    margin-top: 2rem;
  }
}

.c-service-point__item {
  text-align: center;
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .c-service-point__item {
    margin-top: 2rem;
  }
}
.c-service-point__item:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .c-service-point {
    padding-bottom: 2.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .c-service-list .l-flex--4col > * {
    flex: 0 1 calc((100% - 6rem) / 3);
  }
}
@media screen and (max-width: 768px) {
  .c-service-list {
    padding-bottom: 6rem;
  }
  .c-service-list .l-flex--4col > * {
    flex: 0 1 100%;
  }
}
.c-service-list__card {
  border-radius: 5px;
}
.c-service-list__card-heading {
  text-align: center;
  padding: 1rem 0;
  border-radius: 5px 5px 0 0;
}
.c-service-list__card-title {
  font-size: var(--fs22px);
  font-weight: bold;
}
.c-service-list__card-text {
  font-size: var(--fs16px);
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  .c-service-list__card-text {
    padding: 1.5rem;
  }
}

.c-service-cta {
  padding: clamp(5rem, 6.49vh, 7rem) 0 clamp(8rem, 9.26vh, 10rem);
}
@media screen and (max-width: 1024px) {
  .c-service-cta {
    padding: 2.5rem 0 4.8rem;
  }
}
@media screen and (max-width: 768px) {
  .c-service-cta {
    padding: 3rem 0 6rem;
  }
}
.c-service-cta--blue {
  background: linear-gradient(#75c1de 0%, #4fa3d2 100%);
}
.c-service-cta--cyan {
  background: linear-gradient(#58d8de 0%, #01b1b9 100%);
}
.c-service-cta__heading {
  margin-bottom: 2rem !important;
}
.c-service-cta__title {
  font-size: var(--fs34px);
  color: var(--color-white);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .c-service-cta__title {
    font-size: 1.9rem;
  }
}
.c-service-cta__text {
  font-size: var(--fs19px);
  font-weight: bold;
  color: var(--color-white);
}
.c-service-cta__card {
  position: relative;
  margin-top: 6.3rem;
}
@media screen and (max-width: 1024px) {
  .c-service-cta__card {
    margin-top: 2rem;
  }
}
.c-service-cta__card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: -20px;
  bottom: -20px;
  transition: opacity 0.3s ease;
  border-radius: 15px;
}
@media screen and (max-width: 1024px) {
  .c-service-cta__card::after {
    right: -10px;
    bottom: -10px;
  }
}
.c-service-cta__methods {
  display: flex;
  justify-content: center;
  border-radius: 15px;
  position: relative;
  z-index: 2;
  background-color: var(--color-white);
}
@media screen and (max-width: 1024px) {
  .c-service-cta__methods {
    flex-direction: column;
    padding: 1rem 6%;
  }
}
@media screen and (max-width: 768px) {
  .c-service-cta__methods {
    padding: 0 1rem;
  }
}
.c-service-cta__method {
  text-align: center;
  margin: 6rem 0 2rem 2rem;
  padding-right: 2rem;
  position: relative;
  flex: 1;
}
.c-service-cta__method:before {
  position: absolute;
  content: "";
  width: 72px;
  height: 72px;
  top: -6rem;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-service-cta__method:nth-child(1)::before {
  background: url(../../img/tax_accountant/cta_icon_01.svg) no-repeat center center;
  background-size: contain;
}
.c-service-cta__method:nth-child(2)::before {
  background: url(../../img/tax_accountant/cta_icon_02.svg) no-repeat center center;
  background-size: contain;
}
.c-service-cta__method:nth-child(3)::before {
  background: url(../../img/tax_accountant/cta_icon_03.svg) no-repeat center center;
  background-size: contain;
}
.c-service-cta__method:last-child::before {
  background: url(../../img/tax_accountant/cta_icon_04.svg) no-repeat center center;
  background-size: contain;
}
.c-service-cta__method:not(:last-child) {
  border-right: 1px solid var(--color-light-grey);
}
@media screen and (max-width: 1024px) {
  .c-service-cta__method {
    width: 100%;
    max-width: 378px;
    gap: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto;
    padding: 2rem 0;
  }
  .c-service-cta__method:before {
    display: none;
  }
  .c-service-cta__method:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #C6C6C6;
  }
}
@media screen and (max-width: 768px) {
  .c-service-cta__method {
    padding: 1rem 0;
  }
}
@media screen and (max-width: 1024px) {
  .c-service-cta__label-wrapper {
    width: 100%;
    max-width: 60px;
  }
  .c-service-cta__label-wrapper img {
    width: 100%;
    max-width: 42px;
  }
}
.c-service-cta__label {
  font-size: var(--fs20px);
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .c-service-cta__label {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .c-service-cta__value-wrapper {
    width: 100%;
    max-width: calc(100% - 60px);
    text-align: left;
  }
}
.c-service-cta__value {
  font-size: clamp(2.5rem, 1.98vw, 3.8rem);
  font-weight: 500;
  font-family: var(--font-roboto);
  color: var(--color-light-blue);
}
@media screen and (max-width: 1024px) {
  .c-service-cta__value {
    font-size: 3.5rem;
    line-height: 1.2;
    letter-spacing: normal;
  }
  .c-service-cta__value--mail {
    font-size: 2.5rem;
  }
}
.c-service-cta__note {
  font-size: 1.5rem;
  font-weight: 500;
}
.c-service-cta__btn-wrapper {
  width: 100%;
  max-width: clamp(200px, 12.56vw, 241px);
  border: 0.5px solid var(--color-light-grey);
  border-radius: 32px;
  margin: 2rem auto;
}
@media screen and (max-width: 1024px) {
  .c-service-cta__btn-wrapper {
    margin: 0;
    max-width: 100%;
  }
}
.c-service-cta .c-btn {
  width: 100%;
  max-width: 100%;
  border: 5px solid var(--color-white);
  border-radius: 32px;
  font-size: var(--fs18px);
  padding: 1.5rem 1rem;
  color: var(--color-white);
  background: linear-gradient(#58d8de 0%, #01b1b9 100%);
}
@media screen and (max-width: 1024px) {
  .c-service-cta .c-btn {
    border: 3px solid var(--color-white);
    padding: 1rem 0;
  }
}

.c-service-voice {
  padding: clamp(7rem, 9.08vh, 9.8rem) 0 clamp(11rem, 22.6vh, 24.4rem);
}
@media screen and (max-width: 768px) {
  .c-service-voice {
    padding: 3rem 0 10.5rem;
  }
}
.c-service-voice__contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: clamp(3rem, 2.084vw, 4rem);
  position: relative;
  z-index: 2;
}
.c-service-voice__contents:before, .c-service-voice__contents:after {
  content: "";
  position: absolute;
  width: 325px;
  height: 339px;
}
@media screen and (max-width: 768px) {
  .c-service-voice__contents:before, .c-service-voice__contents:after {
    width: 124px;
    height: 130px;
  }
}
.c-service-voice__contents:before {
  top: 0;
  left: 0;
  transform: translate(-50%, -35%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .c-service-voice__contents:before {
    top: 1%;
    transform: translate(-30%, 0%);
    left: 7%;
  }
}
.c-service-voice__contents:after {
  bottom: 0;
  right: 0;
  transform: translate(50%, 30%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .c-service-voice__contents:after {
    transform: translate(30%, 40%);
    bottom: 3%;
    right: 7%;
  }
}
@media screen and (max-width: 1024px) {
  .c-service-voice__contents {
    gap: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .c-service-voice__contents {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.c-service-voice__card {
  border-radius: 30px;
  padding: 4rem 3rem 4rem 4rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .c-service-voice__card {
    padding: 3rem 2.5rem;
    border-radius: 20px;
  }
}
@media screen and (max-width: 768px) {
  .c-service-voice__card {
    padding: 7rem 2rem 3.5rem;
    border-radius: 15px;
    margin-top: 6rem;
  }
}
.c-service-voice__card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.c-service-voice__card-company {
  flex: 1;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 1024px) {
  .c-service-voice__card-company {
    gap: 0;
  }
}
.c-service-voice__card-company hr {
  width: 100%;
  max-width: 35px;
  margin-top: 1rem;
}
@media screen and (max-width: 1024px) {
  .c-service-voice__card-company hr {
    max-width: 19px;
  }
}
.c-service-voice__card-name {
  font-size: var(--fs23px);
  font-weight: bold;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .c-service-voice__card-name {
    font-size: 1.6rem;
  }
}
.c-service-voice__card-person {
  font-size: var(--fs16px);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-service-voice__card-person {
    font-size: 1.4rem;
  }
}
.c-service-voice__card-image {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 2.4rem;
  transform: translate(0, -30%);
}
@media screen and (max-width: 1280px) {
  .c-service-voice__card-image {
    transform: translate(0, -50%);
  }
}
@media screen and (max-width: 768px) {
  .c-service-voice__card-image {
    width: 100%;
    max-width: 104px;
    transform: translate(-50%, -50%);
    left: 50%;
  }
}
.c-service-voice__card-body {
  line-height: 2;
}
.c-service-voice__card-text {
  font-size: var(--fs16px);
  line-height: 1.75;
  letter-spacing: 0.05em;
}

.c-service-flow {
  position: relative;
  z-index: 2;
}
.c-service-flow__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .c-service-flow__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-service-flow__steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.c-service-flow__step {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .c-service-flow__step:nth-child(2n) .c-service-flow__arrow {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .c-service-flow__step:nth-child(2n) .c-service-flow__arrow {
    display: block;
  }
}
.c-service-flow__step-header {
  width: clamp(150px, 9.9vw, 190px);
  height: auto;
  aspect-ratio: 190/39;
  top: 0;
  left: 0;
  position: relative;
  transform: translate(0, 49%);
}
@media screen and (max-width: 768px) {
  .c-service-flow__step-header {
    width: 129px;
    height: 45px;
  }
}
.c-service-flow__step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 4.37vh, 4rem) clamp(2rem, 1.5625vw, 3rem) 2rem;
  border-top: 4px solid var(--color-navy);
  line-height: 1.45;
}
@media screen and (max-width: 768px) {
  .c-service-flow__step-content {
    padding: 3.5rem 2rem 2rem;
  }
}
.c-service-flow__step-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-size: var(--fs20px);
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  min-height: 4.8rem;
}
@media screen and (max-width: 768px) {
  .c-service-flow__step-title {
    display: block;
    font-size: 1.8rem;
    min-height: auto;
    margin-bottom: 0.5rem;
    letter-spacing: normal;
  }
}
.c-service-flow__step-subtitle {
  font-size: var(--fs16px);
}
@media screen and (max-width: 768px) {
  .c-service-flow__step-subtitle {
    font-size: 1.3rem;
  }
}
.c-service-flow__step-text {
  font-size: var(--fs16px);
  line-height: 1.75;
  margin-bottom: 2rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .c-service-flow__step-text {
    font-size: 1.4rem;
    line-height: 1.7;
    letter-spacing: normal;
    margin-bottom: 2rem;
  }
}
.c-service-flow__step-image img {
  width: 100%;
  height: auto;
}
.c-service-flow__arrow {
  position: absolute;
  top: 50%;
  right: -27px;
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .c-service-flow__arrow {
    right: -18px;
  }
}
@media screen and (max-width: 768px) {
  .c-service-flow__arrow {
    width: 23px;
    height: 27px;
    top: auto;
    bottom: 0;
    left: 50%;
    right: 50%;
    transform: translate(-50%, 60%);
  }
}

.c-service-faq {
  padding: 8rem 0;
  margin-bottom: 15rem;
}
@media screen and (max-width: 768px) {
  .c-service-faq {
    padding: 5rem 0;
    margin-bottom: 5rem;
  }
}
.c-service-faq__content {
  border-radius: 20px;
  padding: 9rem 6rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .c-service-faq__content {
    border-radius: 10px;
    padding: 2rem;
  }
}
.c-service-faq__list {
  margin: 0;
  padding: 0;
}
.c-service-faq__item {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--color-light-grey);
}
@media screen and (max-width: 768px) {
  .c-service-faq__item {
    padding: 1.5rem 0;
  }
}
.c-service-faq__item:first-child {
  padding-top: 0;
}
.c-service-faq__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.c-service-faq__question, .c-service-faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .c-service-faq__question, .c-service-faq__answer {
    gap: 1rem;
  }
}
.c-service-faq__question {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-service-faq__question {
    margin-bottom: 1rem;
  }
}
.c-service-faq__q, .c-service-faq__a {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs25px);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-service-faq__q, .c-service-faq__a {
    width: auto;
    height: auto;
    font-size: 1.7rem;
    line-height: 1.8;
  }
}
.c-service-faq__q {
  color: var(--color-light-blue);
}
.c-service-faq__a {
  color: #757575;
}
.c-service-faq__question-text {
  flex: 1;
  font-size: var(--fs20px);
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-service-faq__question-text {
    font-size: 1.4rem;
  }
}
.c-service-faq__answer-text {
  flex: 1;
  font-size: var(--fs16px);
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .c-service-faq__answer-text {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

/*
.%%%%%%..%%%%%%..%%...%%..%%%%%...%%.......%%%%...%%%%%%..%%%%%%.
...%%....%%......%%%.%%%..%%..%%..%%......%%..%%....%%....%%.....
...%%....%%%%....%%.%.%%..%%%%%...%%......%%%%%%....%%....%%%%...
...%%....%%......%%...%%..%%......%%......%%..%%....%%....%%.....
...%%....%%%%%%..%%...%%..%%......%%%%%%..%%..%%....%%....%%%%%%.
.................................................................
*/
.c-cta .c-heading {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .c-cta .c-heading {
    margin-bottom: 1rem;
  }
  .c-cta .c-heading__title {
    font-size: 3.4rem;
  }
}
.c-cta .c-heading__subtitle {
  color: var(--color-black);
}
.c-cta .l-flex--2col {
  gap: 6rem;
}
@media screen and (max-width: 1024px) {
  .c-cta .l-flex--2col {
    gap: 6rem 4rem;
  }
}
@media screen and (max-width: 768px) {
  .c-cta .l-flex--2col {
    flex-direction: column;
    gap: 4rem;
  }
}
.c-cta .l-flex--2col > * {
  flex: 1 1 calc((100% - 6rem) / 2);
}
.c-cta__text {
  width: 100%;
  max-width: 549px;
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .c-cta__text {
    max-width: 100%;
  }
}
.c-cta__description {
  font-size: var(--fs16px);
  line-height: 2.06;
}
.c-cta__buttons {
  width: 100%;
  max-width: 620px;
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .c-cta__buttons {
    max-width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .c-cta__buttons {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .c-cta__flex {
    flex-direction: column;
    gap: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .c-cta__flex {
    gap: 2rem;
  }
}

.c-banner .l-flex {
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .c-banner .l-flex {
    flex-direction: column;
    gap: 2rem;
  }
}
.c-banner__item {
  flex: 1;
  min-width: 0;
}
.c-banner__link {
  position: relative;
  display: block;
  overflow: hidden;
}
.c-banner__link:hover .c-banner__image img {
  transform: scale(1.1);
}
.c-banner__image {
  position: relative;
  width: 100%;
}
.c-banner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.c-banner__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-white);
  font-weight: bold;
  text-align: center;
  width: 100%;
  padding: 0 1rem;
  pointer-events: none;
}
.c-banner__text b {
  font-size: clamp(1.5rem, 1.458vw, 2.8rem);
  line-height: 1.2;
  display: block;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .c-banner__text b {
    font-size: 1.5rem;
    white-space: normal;
  }
}
.c-banner__text p {
  font-size: clamp(1.5rem, 1.51vw, 2.9rem);
  margin-top: 0.5rem;
  font-family: var(--font-cormorant);
  line-height: 1.2;
  display: block;
}
@media screen and (max-width: 768px) {
  .c-banner__text p {
    font-size: 1.5rem;
  }
}
.c-banner--template-part {
  margin: 11.3rem 0 15.2rem;
}
@media screen and (max-width: 768px) {
  .c-banner--template-part {
    margin: 5rem 0 8rem;
  }
}
.c-banner--template-part .c-banner__text b {
  font-size: clamp(1.4rem, 0.99vw, 1.9rem);
}
@media screen and (max-width: 768px) {
  .c-banner--template-part .c-banner__text b {
    font-size: 1.4rem;
  }
}
.c-banner--template-part .c-banner__text p {
  font-size: clamp(1.4rem, 0.99vw, 1.9rem);
}
@media screen and (max-width: 768px) {
  .c-banner--template-part .c-banner__text p {
    font-size: 1.4rem;
  }
}

.c-iframe {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.c-iframe--video {
  max-width: 932px;
  aspect-ratio: 1/0.406;
}
.c-iframe--youtube {
  max-width: 905px;
  aspect-ratio: 1/0.602;
}
.c-iframe--g-map {
  max-width: 100%;
  aspect-ratio: 1180/495;
}
@media screen and (max-width: 768px) {
  .c-iframe--g-map {
    aspect-ratio: 355/217;
  }
}
.c-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
..%%%%...%%%%%%..%%%%%...%%%%%%..........%%..%%...%%%%...%%..%%.
.%%........%%....%%..%%..%%..............%%%.%%..%%..%%..%%..%%.
..%%%%.....%%....%%..%%..%%%%............%%.%%%..%%%%%%..%%..%%.
.....%%....%%....%%..%%..%%..............%%..%%..%%..%%...%%%%..
..%%%%...%%%%%%..%%%%%...%%%%%%..........%%..%%..%%..%%....%%...
................................................................
*/
.c-side-nav {
  width: 100%;
  max-width: 378px;
  background-color: var(--color-white);
  border: 1px solid var(--color-grey);
  border-radius: 12px;
  padding: 1.85vh clamp(2rem, 2.08vw, 4rem) 3.7vh;
  border: 1px solid var(--color-gold);
  box-shadow: var(--shadow-default);
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .c-side-nav {
    display: none;
  }
}
.c-side-nav__item {
  border-bottom: 1px solid var(--color-light-black);
}
.c-side-nav__link {
  display: block;
  padding: 1.5rem 2rem 1.5rem 1.5rem;
  font-size: var(--fs16px);
  font-weight: bold;
  color: var(--color-light-black);
  position: relative;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .c-side-nav__link {
    padding: 1.2rem 1.5rem;
  }
}
.c-side-nav__link:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50px;
  background: var(--color-light-blue);
}
.c-side-nav__link:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  background: url(../../img/common/arrow_right_gold.svg) no-repeat center;
  background-size: contain;
  width: 16px;
  height: 18px;
  margin-right: 0.2rem;
}

/*
.%%..%%...%%%%...%%...%%..%%%%%...%%..%%..%%%%%....%%%%...%%%%%%..%%%%%..
.%%..%%..%%..%%..%%%.%%%..%%..%%..%%..%%..%%..%%..%%......%%......%%..%%.
.%%%%%%..%%%%%%..%%.%.%%..%%%%%...%%..%%..%%%%%...%%.%%%..%%%%....%%%%%..
.%%..%%..%%..%%..%%...%%..%%..%%..%%..%%..%%..%%..%%..%%..%%......%%..%%.
.%%..%%..%%..%%..%%...%%..%%%%%....%%%%...%%..%%...%%%%...%%%%%%..%%..%%.
.........................................................................
*/
.c-hamburger {
  display: none;
  background: var(--color-blue-gradient-2);
  cursor: pointer;
  width: 69px;
  height: 69px;
  text-align: center;
  z-index: 1001;
}
@media screen and (max-width: 1024px) {
  .c-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.c-hamburger span {
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 0.3rem;
  display: block;
}
.c-hamburger__lines {
  width: 27px;
  height: 18px;
  position: relative;
  margin: 0 auto;
}
.c-hamburger__lines span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  margin: 0;
  transition: all 0.3s ease;
}
.c-hamburger__lines span:nth-child(1) {
  top: 0;
}
.c-hamburger__lines span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.c-hamburger__lines span:nth-child(3) {
  bottom: 0;
}
.c-hamburger.is-active .c-hamburger__lines span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.c-hamburger.is-active .c-hamburger__lines span:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-active .c-hamburger__lines span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
.c-hamburger__nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 375px;
  height: 100dvh;
  background-color: var(--color-white);
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  background-color: var(--color-white);
  overflow-y: auto;
  transition: right 0.3s ease;
  z-index: 1000;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
}
.c-hamburger__nav.is-active {
  right: 0;
}
@media screen and (max-width: 768px) {
  .c-hamburger__nav {
    max-width: 100%;
    overflow-y: auto;
  }
}
.c-hamburger__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
}
.c-hamburger__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}
.c-hamburger__logo p {
  font-size: 1.7rem;
  line-height: 1.53;
  letter-spacing: 0.02em;
  font-family: var(--font-serif);
  font-weight: bold;
}
.c-hamburger__logo img {
  max-width: 140px;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .c-hamburger__logo img {
    max-width: 100px;
  }
}
@media screen and (max-width: 768px) {
  .c-hamburger__logo img {
    max-width: 70px;
  }
}
.c-hamburger__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  font-size: 2.4rem;
  color: var(--color-navy);
  line-height: 1;
}
.c-hamburger__close:hover {
  opacity: 0.7;
}
.c-hamburger__content {
  padding: 4rem 0 0;
}
@media screen and (max-width: 768px) {
  .c-hamburger__content {
    padding: 2rem 0 0;
  }
}
.c-hamburger__section {
  padding: 0 1rem;
}
.c-hamburger__section--no-accordion .c-hamburger__title {
  width: 100%;
  display: block;
  cursor: pointer;
  border-bottom: 1px solid #e0e0e0;
}
.c-hamburger__section--no-accordion .c-hamburger__title:after {
  display: none;
}
.c-hamburger__title {
  font-size: 1.6rem;
  padding: 2rem;
  border-bottom: 1px solid #e0e0e0;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  color: var(--color-black);
  margin: 0;
}
@media screen and (max-width: 768px) {
  .c-hamburger__title {
    padding: 2rem;
  }
}
.c-hamburger__title:after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-light-blue);
  border-bottom: 2px solid var(--color-light-blue);
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}
.c-hamburger__title.is-open {
  border-bottom: 1px solid #1183E4;
}
.c-hamburger__title.is-open:after {
  transform: translateY(-50%) rotate(-135deg);
}
.c-hamburger__title--no-accordion {
  cursor: pointer;
}
.c-hamburger__title--no-accordion:after {
  display: none;
}
.c-hamburger__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
}
.c-hamburger__list.is-open {
  display: block;
  margin-bottom: 3rem;
}
.c-hamburger__item:first-child {
  padding-top: 2rem;
}
.c-hamburger__item a {
  display: block;
  padding: 0 2rem 2rem;
  color: var(--color-light-black);
  font-size: 1.6rem;
  text-decoration: none;
  font-weight: 400;
  position: relative;
}
.c-hamburger__item a:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 14px;
  background: url(../../img/common/arrow_right_blue.svg) no-repeat center center;
  background-size: contain;
  margin-right: 0.8rem;
}
.c-hamburger__nav-links {
  display: flex;
  flex-direction: column;
}
.c-hamburger__link {
  display: block;
  width: 100%;
  padding: 2rem;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--color-navy);
  border-bottom: 1px solid #e0e0e0;
  text-decoration: none;
  text-align: left;
  transition: background-color 0.3s;
}
@media screen and (max-width: 768px) {
  .c-hamburger__link {
    font-size: 1.5rem;
    padding: 1.8rem 2rem;
  }
}
.c-hamburger__link:hover {
  background-color: #f8f9fa;
}
.c-hamburger__footer {
  padding: 3rem 4.5rem 4rem;
}
.c-hamburger__info {
  margin-bottom: 4rem;
}
.c-hamburger__info img {
  max-width: 140px;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .c-hamburger__info img {
    max-width: 100px;
  }
}
@media screen and (max-width: 768px) {
  .c-hamburger__info img {
    max-width: 80px;
  }
}
.c-hamburger__info-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.c-hamburger__info-logo p {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: var(--font-serif);
}
.c-hamburger__address {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--color-light-black);
  margin-bottom: 0.5rem;
}
.c-hamburger__tel {
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--color-light-black);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.c-hamburger__contact-btn {
  display: block;
  background: var(--color-blue-gradient-left);
  color: var(--color-white);
  padding: 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  font-size: 1.7rem;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .c-hamburger__contact-btn {
    width: 100%;
    max-width: 267px;
    margin: 0 auto;
  }
}
.c-hamburger__contact-btn:hover {
  opacity: 0.8;
}
.c-hamburger__policy {
  display: block;
  font-size: 1.2rem;
  margin-top: 1.5rem;
  text-decoration: underline;
  color: var(--color-light-blue);
  text-align: center;
}
.c-hamburger__policy:hover {
  opacity: 0.7;
}

.c-hamburger-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.c-hamburger-overlay.is-active {
  display: block;
  opacity: 1;
}

.l-header--bpo {
  height: -moz-fit-content !important;
  height: fit-content !important;
}
.l-header--bpo .c-hamburger {
  display: none;
  border-radius: 0px 0px 0px 44px;
  background: linear-gradient(#58d8de 0%, #01b1b9 100%);
  cursor: pointer;
  width: 70px;
  height: 72px;
  text-align: center;
  z-index: 1001;
  padding-bottom: 1rem;
  padding-left: 0.5rem;
}
@media screen and (max-width: 1024px) {
  .l-header--bpo .c-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.l-header--bpo .c-hamburger span {
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 0.3rem;
  display: block;
}
.l-header--bpo .c-hamburger__lines {
  width: 27px;
  height: 18px;
  position: relative;
  margin: 0 auto;
}
.l-header--bpo .c-hamburger__lines span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  margin: 0;
  transition: all 0.3s ease;
}
.l-header--bpo .c-hamburger__lines span:nth-child(1) {
  top: 0;
}
.l-header--bpo .c-hamburger__lines span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.l-header--bpo .c-hamburger__lines span:nth-child(3) {
  bottom: 0;
}
.l-header--bpo .c-hamburger.is-active .c-hamburger__lines span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.l-header--bpo .c-hamburger.is-active .c-hamburger__lines span:nth-child(2) {
  opacity: 0;
}
.l-header--bpo .c-hamburger.is-active .c-hamburger__lines span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
.l-header--bpo .c-hamburger__nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 375px;
  height: 100dvh;
  background-color: var(--color-white);
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  background-color: var(--color-white);
  overflow-y: auto;
  transition: right 0.3s ease;
  z-index: 1000;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
}
.l-header--bpo .c-hamburger__nav.is-active {
  right: 0;
}
@media screen and (max-width: 768px) {
  .l-header--bpo .c-hamburger__nav {
    max-width: 100%;
    overflow-y: auto;
  }
}
.l-header--bpo .c-hamburger__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
}
.l-header--bpo .c-hamburger__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}
.l-header--bpo .c-hamburger__logo p {
  font-size: 1.7rem;
  line-height: 1.53;
  letter-spacing: 0.02em;
  font-family: var(--font-serif);
  font-weight: bold;
}
.l-header--bpo .c-hamburger__logo img {
  max-width: 140px;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .l-header--bpo .c-hamburger__logo img {
    max-width: 100px;
  }
}
@media screen and (max-width: 768px) {
  .l-header--bpo .c-hamburger__logo img {
    max-width: 70px;
  }
}
.l-header--bpo .c-hamburger__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  font-size: 2.4rem;
  color: var(--color-navy);
  line-height: 1;
}
.l-header--bpo .c-hamburger__close:hover {
  opacity: 0.7;
}
.l-header--bpo .c-hamburger__content {
  padding: 4rem 0 0;
}
@media screen and (max-width: 768px) {
  .l-header--bpo .c-hamburger__content {
    padding: 2rem 0 0;
  }
}
.l-header--bpo .c-hamburger__section {
  padding: 0 1rem;
}
.l-header--bpo .c-hamburger__section--no-accordion .c-hamburger__title {
  width: 100%;
  display: block;
  cursor: pointer;
  border-bottom: 1px solid #e0e0e0;
}
.l-header--bpo .c-hamburger__section--no-accordion .c-hamburger__title:after {
  display: none;
}
.l-header--bpo .c-hamburger__title {
  font-size: 1.6rem;
  padding: 2rem;
  border-bottom: 1px solid #e0e0e0;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  color: var(--color-black);
  margin: 0;
}
@media screen and (max-width: 768px) {
  .l-header--bpo .c-hamburger__title {
    padding: 2rem;
  }
}
.l-header--bpo .c-hamburger__title:after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-light-blue);
  border-bottom: 2px solid var(--color-light-blue);
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}
.l-header--bpo .c-hamburger__title.is-open:after {
  transform: translateY(-50%) rotate(-135deg);
}
.l-header--bpo .c-hamburger__title--no-accordion {
  cursor: default;
}
.l-header--bpo .c-hamburger__title--no-accordion:after {
  display: none;
}
.l-header--bpo .c-hamburger__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
}
.l-header--bpo .c-hamburger__list.is-open {
  display: block;
  margin-bottom: 3rem;
}
.l-header--bpo .c-hamburger__item:first-child {
  padding-top: 1.5rem;
}
.l-header--bpo .c-hamburger__item a {
  display: block;
  padding: 0 2rem 1rem;
  color: var(--color-light-black);
  font-size: 1.6rem;
  text-decoration: none;
  font-weight: 400;
  position: relative;
}
.l-header--bpo .c-hamburger__item a:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 14px;
  background: url(../../img/common/arrow_right_blue.svg) no-repeat center center;
  background-size: contain;
  margin-right: 0.8rem;
}
.l-header--bpo .c-hamburger__nav-links {
  display: flex;
  flex-direction: column;
}
.l-header--bpo .c-hamburger__link {
  display: block;
  width: 100%;
  padding: 2rem;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--color-navy);
  border-bottom: 1px solid #e0e0e0;
  text-decoration: none;
  text-align: left;
  transition: background-color 0.3s;
}
@media screen and (max-width: 768px) {
  .l-header--bpo .c-hamburger__link {
    font-size: 1.5rem;
    padding: 1.8rem 2rem;
  }
}
.l-header--bpo .c-hamburger__link:hover {
  background-color: #f8f9fa;
}
.l-header--bpo .c-hamburger__footer {
  padding: 3rem 4.5rem 4rem;
}
.l-header--bpo .c-hamburger__info {
  margin-bottom: 4rem;
}
.l-header--bpo .c-hamburger__info img {
  max-width: 140px;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .l-header--bpo .c-hamburger__info img {
    max-width: 100px;
  }
}
@media screen and (max-width: 768px) {
  .l-header--bpo .c-hamburger__info img {
    max-width: 80px;
  }
}
.l-header--bpo .c-hamburger__info-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.l-header--bpo .c-hamburger__info-logo p {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: var(--font-serif);
}
.l-header--bpo .c-hamburger__address {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--color-light-black);
  margin-bottom: 0.5rem;
}
.l-header--bpo .c-hamburger__tel {
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--color-light-black);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.l-header--bpo .c-hamburger__contact-btn {
  display: block;
  background: var(--color-blue-gradient-left);
  color: var(--color-white);
  padding: 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  font-size: 1.7rem;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .l-header--bpo .c-hamburger__contact-btn {
    width: 100%;
    max-width: 267px;
    margin: 0 auto;
  }
}
.l-header--bpo .c-hamburger__contact-btn:hover {
  opacity: 0.8;
}
.l-header--bpo .c-hamburger__policy {
  display: block;
  font-size: 1.2rem;
  margin-top: 1.5rem;
  text-decoration: underline;
  color: var(--color-light-blue);
  text-align: center;
}
.l-header--bpo .c-hamburger__policy:hover {
  opacity: 0.7;
}
.l-header--bpo .c-hamburger-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.l-header--bpo .c-hamburger-overlay.is-active {
  display: block;
  opacity: 1;
}

/*
.%%%%%%...%%%%...%%%%%...%%......%%%%%%.
...%%....%%..%%..%%..%%..%%......%%.....
...%%....%%%%%%..%%%%%...%%......%%%%...
...%%....%%..%%..%%..%%..%%......%%.....
...%%....%%..%%..%%%%%...%%%%%%..%%%%%%.
........................................
*/
.c-info-table {
  border-radius: 30px;
  overflow: hidden;
  background-color: #F9F9F9;
  padding: 4.688vw 11.2vh;
}
@media screen and (max-width: 768px) {
  .c-info-table {
    border-radius: 14px;
    padding: 2.5rem 1.5rem;
  }
}
.c-info-table__list {
  margin: 0;
  padding: 0;
}
.c-info-table__item {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
}
.c-info-table__item:last-child {
  border-bottom: none;
}
.c-info-table__item--history .c-info-table__content {
  padding: 3rem 4rem;
}
@media screen and (max-width: 768px) {
  .c-info-table__item--history .c-info-table__content {
    padding: 2rem 0;
  }
}
.c-info-table__label {
  width: 200px;
  flex-shrink: 0;
  padding: 2.78vh 2.084vw;
  font-size: var(--fs16px);
  font-weight: bold;
  color: var(--color-light-black);
  background-color: #fafafa;
}
@media screen and (max-width: 1024px) {
  .c-info-table__label {
    width: 180px;
    padding: 2.315vh 1.5625vw;
  }
}
@media screen and (max-width: 768px) {
  .c-info-table__label {
    width: 100%;
    max-width: 25%;
    padding: 2rem 0;
  }
}
.c-info-table__content {
  flex: 1;
  padding: 3rem 4rem;
  font-size: var(--fs16px);
  line-height: 1.8;
  color: var(--color-light-black);
}
@media screen and (max-width: 1024px) {
  .c-info-table__content {
    padding: 2.5rem 3rem;
  }
}
@media screen and (max-width: 768px) {
  .c-info-table__content {
    padding: 2rem 0;
  }
}
.c-info-table__content p {
  margin: 0;
}
.c-info-table__content p + p {
  margin-top: 0.5rem;
}

.c-history__item {
  margin-bottom: 3rem;
}
.c-history__item:last-child {
  margin-bottom: 0;
}
.c-history__item p {
  font-size: var(--fs16px);
}
@media screen and (max-width: 768px) {
  .c-history__item {
    margin-bottom: 2rem;
  }
}

/* ===================================
   料金表コンポーネント
   =================================== */
.c-price-table {
  margin-bottom: 4rem;
}
.c-price-table__main {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--color-white);
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .c-price-table__main {
    margin-bottom: 0;
  }
}
.c-price-table__header {
  background-color: #1F6DC0;
  color: var(--color-white);
  padding: 1.8rem 1rem;
  font-size: var(--fs19px);
  font-weight: bold;
  text-align: center;
  border-right: 1px solid var(--color-white);
  border-top: 1px solid var(--color-light-grey);
  border-left: 1px solid var(--color-light-grey);
}
.c-price-table__header:last-child {
  border-right: 1px solid var(--color-light-grey);
}
@media screen and (max-width: 768px) {
  .c-price-table__header {
    vertical-align: middle;
    font-size: 1.3rem;
    line-height: 1.15;
    padding: 0.5rem 1rem;
  }
}
.c-price-table__cell {
  width: 25%;
  padding: 2rem 1.5rem;
  text-align: center;
  letter-spacing: normal;
  border: 0.8px solid var(--color-light-grey);
  font-size: var(--fs20px);
  font-weight: bold;
  background-color: var(--color-white);
}
@media screen and (max-width: 1024px) {
  .c-price-table__cell {
    font-size: 1.3rem;
    line-height: 1.23;
    padding: 1.5rem 1rem;
    vertical-align: middle;
  }
}
@media screen and (max-width: 768px) {
  .c-price-table__cell {
    padding: 1.5rem 0.5rem;
  }
}
tr:nth-child(odd) .c-price-table__cell {
  background-color: #F1FEFF;
}
.c-price-table__cell--scale {
  background-color: #EFF3F8 !important;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-price-table__cell--scale {
    font-size: 1.3rem;
  }
}
.c-price-table__cell--highlight {
  color: var(--color-light-blue);
}
.c-price-table__cell--quote {
  text-align: center;
  font-weight: bold;
}
.c-price-table__note {
  font-size: 1.4rem;
  color: var(--color-light-black);
  margin-top: 1rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .c-price-table__note {
    font-size: 1.3rem;
  }
}
.c-price-table--option {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .c-price-table--option {
    margin-top: 3.5rem;
    margin-bottom: 0;
  }
}
.c-price-table__option-header {
  background-color: #1F6DC0;
  padding: 1rem 1.5rem;
  margin-bottom: 0;
}
.c-price-table__option-header h3 {
  color: var(--color-white);
  font-size: var(--fs20px);
  font-weight: bold;
  margin: 0;
}
.c-price-table__option-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--color-white);
  border: 1px solid var(--color-light-grey);
}
.c-price-table__option-table tbody tr {
  border-bottom: 1px solid #707070;
}
.c-price-table__option-table tbody tr:last-child {
  border-bottom: none;
}
.c-price-table__option-label {
  width: 25%;
  padding: 2rem;
  font-size: var(--fs19px);
  font-weight: bold;
  text-align: center;
  border-right: 1px solid #707070;
}
@media screen and (max-width: 1024px) {
  .c-price-table__option-label {
    width: 25%;
    padding: 1.5rem 0 1.5rem 1.5rem;
    font-size: 1.4rem;
    line-height: 1.07;
    vertical-align: middle;
    text-align: left;
    background-color: transparent;
  }
}
@media screen and (max-width: 768px) {
  .c-price-table__option-label {
    padding: 1rem 0.5rem;
  }
}
.c-price-table__option-value {
  padding: 2rem 3rem;
  font-size: var(--fs17px);
  line-height: 1.8;
  background-color: var(--color-white);
  vertical-align: middle;
}
@media screen and (max-width: 1024px) {
  .c-price-table__option-value {
    padding: 1rem 0.5rem;
    font-size: 1.4rem;
    line-height: 1.42;
  }
  .c-price-table__option-value span {
    font-size: 1.2rem;
  }
}

/* ===================================
サービス比較表コンポーネント
=================================== */
.c-comparison-table {
  margin-top: 4rem;
  font-family: var(--font-serif);
}
.c-comparison-table__main {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--color-white);
  font-size: var(--fs24px);
  table-layout: fixed;
}
@media screen and (max-width: 768px) {
  .c-comparison-table__main {
    font-size: var(--fs14px);
  }
}
.c-comparison-table__header {
  padding: 2rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--color-light-grey);
  position: relative;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .c-comparison-table__header {
    padding: 1.5rem 1rem;
  }
}
.c-comparison-table__header--standard {
  color: #777777;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-comparison-table__header--standard {
    width: 33%;
  }
}
.c-comparison-table__header--standard:before {
  content: "";
  position: absolute;
  width: clamp(40px, 2.61vw, 50px);
  height: auto;
  aspect-ratio: 1/1;
  top: 0;
  right: 25%;
  transform: translate(0%, -50%);
  background: url(../../img/common/bad_icon.svg) no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .c-comparison-table__header--standard:before {
    width: 33px;
    height: 33px;
    top: -15%;
    right: 7%;
    background: url(../../img/common/bad_icon_sp.png) no-repeat center;
    background-size: contain;
  }
}
.c-comparison-table__header--highlight {
  background-color: #FFEFCF;
}
@media screen and (max-width: 768px) {
  .c-comparison-table__header--highlight {
    width: 40%;
  }
}
.c-comparison-table__header--highlight:before {
  content: "";
  position: absolute;
  width: clamp(60px, 4.5vw, 86px);
  height: auto;
  aspect-ratio: 1/1;
  top: 0;
  right: 0;
  transform: translate(30%, -50%);
  background: url(../../img/common/good_icon.svg) no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .c-comparison-table__header--highlight:before {
    width: 46px;
    height: 46px;
    top: -15%;
    right: 3%;
    background: url(../../img/common/good_icon_sp.png) no-repeat center;
    background-size: contain;
  }
}
.c-comparison-table__header--highlight span {
  display: block;
  background-color: #FF9900;
  color: var(--color-white);
  padding: 0.5rem 2rem;
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-comparison-table__header--highlight span {
    font-size: 1.4rem;
    line-height: 1.07;
    padding: 0.4rem 2rem;
  }
}
.c-comparison-table__cell {
  padding: 2rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--color-light-grey);
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .c-comparison-table__cell {
    padding: 1rem 0.8rem;
  }
}
.c-comparison-table__cell--label {
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  color: var(--color-light-black);
}
@media screen and (max-width: 768px) {
  .c-comparison-table__cell--label {
    white-space: normal;
    text-align: left;
  }
}
.c-comparison-table__cell--highlight {
  background-color: #FFEFCF;
  font-weight: bold;
}
.c-comparison-table__cell--standard {
  color: #777777;
  font-weight: 500;
}

/*
.%%%%%...%%%%%%..%%%%%....%%%%....%%%%...%%..%%...........%%%%....%%%%...%%%%%...%%%%%..
.%%..%%..%%......%%..%%..%%......%%..%%..%%%.%%..........%%..%%..%%..%%..%%..%%..%%..%%.
.%%%%%...%%%%....%%%%%....%%%%...%%..%%..%%.%%%..........%%......%%%%%%..%%%%%...%%..%%.
.%%......%%......%%..%%......%%..%%..%%..%%..%%..........%%..%%..%%..%%..%%..%%..%%..%%.
.%%......%%%%%%..%%..%%...%%%%....%%%%...%%..%%...........%%%%...%%..%%..%%..%%..%%%%%..
........................................................................................
*/
.c-person-card {
  background-color: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow-default);
  overflow: hidden;
  border: 1px solid #C4C4C4;
}
@media screen and (max-width: 768px) {
  .c-person-card {
    border-radius: 14px;
  }
}
.c-person-card__image img {
  width: 100%;
  max-width: clamp(140px, 9.64vw, 185px);
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-person-card__image img {
    max-width: 103px;
  }
}
.c-person-card__content p {
  margin: 0;
}
.c-person-card__content p + p {
  margin-top: 0.3rem;
}
.c-person-card__comment {
  background-color: #CCE5F9;
  padding: 2rem;
  border-radius: 8px;
  font-size: var(--fs16px);
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-person-card__comment {
    padding: 1.5rem;
    font-size: 1.4rem;
    line-height: 1.71;
  }
}
.c-person-card__comment p {
  margin: 0;
  font-size: 1.4rem;
}
.c-person-card__comment p + p {
  margin-top: 0.5rem;
}
.c-person-card--main {
  width: 100%;
  margin-bottom: 4rem;
}
.c-person-card--main .c-person-card__layout {
  display: flex;
  gap: 0;
  padding: clamp(3rem, 5.7vh, 5.4rem) clamp(4rem, 3.65vw, 7rem) 0;
}
@media screen and (max-width: 1024px) {
  .c-person-card--main .c-person-card__layout {
    gap: 2rem;
    padding: 4rem 3rem 0;
  }
}
@media screen and (max-width: 768px) {
  .c-person-card--main .c-person-card__layout {
    flex-direction: column;
    padding: 2rem;
  }
}
.c-person-card--main .c-person-card__image {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .c-person-card--main .c-person-card__image {
    margin: 0 auto;
  }
}
.c-person-card--main .c-person-card__image img {
  width: 100%;
  max-width: clamp(180px, 16.46vw, 316px);
}
@media screen and (max-width: 768px) {
  .c-person-card--main .c-person-card__image img {
    max-width: 154px;
    margin: 0 auto;
  }
}
.c-person-card--main .c-person-card__info {
  flex: 1;
}
.c-person-card--main .c-person-card__message {
  padding: clamp(3rem, 3.71vh, 4rem) clamp(4rem, 4.33vw, 8.3rem) clamp(4rem, 6.67vh, 7.2rem);
}
@media screen and (max-width: 1024px) {
  .c-person-card--main .c-person-card__message {
    padding: 2rem 3rem 4rem;
  }
}
@media screen and (max-width: 768px) {
  .c-person-card--main .c-person-card__message {
    padding: 2rem;
  }
}
.c-person-card--main .c-person-card__message-title {
  font-size: var(--fs22px);
  font-weight: bold;
  font-family: var(--font-serif);
  color: var(--color-navy);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-light-grey);
}
@media screen and (max-width: 768px) {
  .c-person-card--main .c-person-card__message-title {
    font-size: 1.6rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
}
.c-person-card--main .c-person-card__message-content {
  font-size: var(--fs18px);
  line-height: 2;
}
.c-person-card--main .c-person-card__message-content p {
  font-family: var(--font-serif);
}
@media screen and (max-width: 1024px) {
  .c-person-card--main .c-person-card__message-content p {
    font-family: var(--font-noto);
    line-height: 1.71;
  }
}
@media screen and (max-width: 768px) {
  .c-person-card--main .c-person-card__message-content {
    font-size: 1.4rem;
  }
}
.c-person-card--main .c-person-card__message-content p + p {
  margin-top: 1rem;
}
.c-person-card--sub, .c-person-card--staff {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .c-person-card--sub, .c-person-card--staff {
    flex-direction: row;
    padding: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-person-card--sub, .c-person-card--staff {
    padding: 0;
  }
}
.c-person-card--sub .c-person-card__layout, .c-person-card--staff .c-person-card__layout {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.c-person-card--sub .c-person-card__layout--row, .c-person-card--staff .c-person-card__layout--row {
  flex-direction: row;
}
@media screen and (max-width: 1024px) {
  .c-person-card--sub .c-person-card__layout, .c-person-card--staff .c-person-card__layout {
    padding: 2rem;
  }
}
.c-person-card--sub .c-person-card__image, .c-person-card--staff .c-person-card__image {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  height: auto;
  margin: 0 auto 2rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .c-person-card--sub .c-person-card__image, .c-person-card--staff .c-person-card__image {
    margin: 0 0 1rem;
  }
}
.c-person-card--sub .c-person-card__content, .c-person-card--staff .c-person-card__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.c-person-card--sub .c-person-card__name, .c-person-card--staff .c-person-card__name {
  font-size: var(--fs18px);
  font-weight: 500;
  color: var(--color-light-black);
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .c-person-card--sub .c-person-card__name, .c-person-card--staff .c-person-card__name {
    font-size: 1.6rem;
  }
}
.c-person-card--sub .c-person-card__info, .c-person-card--staff .c-person-card__info {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--color-light-black);
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-person-card--sub .c-person-card__info, .c-person-card--staff .c-person-card__info {
    font-size: 1.4rem;
    margin-bottom: 0;
  }
}
.c-person-card--sub .c-person-card__comment, .c-person-card--staff .c-person-card__comment {
  flex: 1;
  display: flex;
}
.c-person-card--sub .c-person-card__layout {
  padding: 2.5rem clamp(2rem, 2.09vw, 4rem);
}
@media screen and (max-width: 1024px) {
  .c-person-card--sub .c-person-card__layout {
    padding: 2rem;
  }
}
.c-person-card--sub .c-person-card__role {
  font-size: var(--fs18px);
  color: var(--color-navy);
  font-weight: bold;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .c-person-card--sub .c-person-card__role {
    font-size: 1.4rem;
    padding-top: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .c-person-card--sub .c-person-card__hobby {
    padding-bottom: 0;
  }
}
.c-person-card--staff {
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1024px) {
  .c-person-card--staff {
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .c-person-card--staff {
    padding: 1.5rem 1rem;
  }
}
.c-person-card--staff .c-person-card__image {
  width: 100%;
  padding: 2rem;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .c-person-card--staff .c-person-card__image {
    padding: 0;
  }
}
.c-person-card--staff .c-person-card__layout {
  padding: 0;
  flex: 1;
}
.c-person-card--staff .c-person-card__content {
  padding: 2rem 2rem 3.6rem;
}
@media screen and (max-width: 1024px) {
  .c-person-card--staff .c-person-card__content {
    padding: 0;
    gap: 1rem;
  }
}
.c-person-card--staff .c-person-card__name {
  font-size: var(--fs18px);
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 768px) {
  .c-person-card--staff .c-person-card__name {
    font-size: 1.6rem;
  }
  .c-person-card--staff .c-person-card__name.u-show-sp768 {
    text-align: center;
    margin-top: 1rem;
  }
}
.c-person-card--staff .c-person-card__info {
  font-size: 1.4rem;
  min-height: 3.2rem;
}
@media screen and (max-width: 1024px) {
  .c-person-card--staff .c-person-card__info {
    min-height: auto;
  }
}
@media screen and (max-width: 768px) {
  .c-person-card--staff .c-person-card__info {
    display: flex;
    align-items: center;
  }
}
.c-person-card--staff .c-person-card__comment {
  padding: 1.5rem;
  font-size: 1.4rem;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .c-person-card--staff .c-person-card__comment {
    padding: 1.2rem;
    align-items: flex-start;
  }
}

.c-person-card-grid {
  display: grid;
  gap: 3rem;
}
@media screen and (max-width: 1024px) {
  .c-person-card-grid {
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-person-card-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
}
.c-person-card-grid--2col {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
}
.c-person-card-grid--4col {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1024px) {
  .c-person-card-grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-person-card__info-flex {
  display: flex;
  gap: 0 clamp(2rem, 1.5625vw, 3rem);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-person-card__info-flex {
    flex-direction: column;
  }
}

.c-person-card__info-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .c-person-card__info-column {
    gap: 1.5rem;
  }
  .c-person-card__info-column:not(:last-child) {
    margin-bottom: 2rem;
  }
}

.c-person-card__detail {
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .c-person-card__detail {
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .c-person-card__detail {
    gap: 0.5rem 2rem;
  }
}
.c-person-card__detail-label {
  font-size: var(--fs17px);
  font-weight: bold;
  min-width: 80px;
  flex-shrink: 0;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .c-person-card__detail-label {
    text-align: left;
    width: 22%;
    min-width: 0;
  }
}
@media screen and (max-width: 768px) {
  .c-person-card__detail-label {
    min-width: auto;
    width: 20%;
  }
}
.c-person-card__detail-content {
  font-size: var(--fs16px);
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-person-card__detail-content {
    font-size: 1.4rem;
  }
}

.c-service-item {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
  padding: 8rem;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (max-width: 1024px) {
  .c-service-item {
    gap: 4rem;
    padding: 6rem 0;
  }
}
@media screen and (max-width: 768px) {
  .c-service-item {
    flex-direction: column;
    gap: 3rem;
    padding: 0;
    margin-top: 4rem;
    border: none;
  }
}
.c-service-item:first-child {
  padding-top: 0;
}
.c-service-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.c-service-item__content {
  width: 100%;
  max-width: 444px;
  flex: 1;
  position: relative;
}
.c-service-item__title {
  font-size: var(--fs26px);
  font-weight: bold;
  color: var(--color-navy);
  line-height: 1.6;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .c-service-item__title {
    font-size: 1.8rem;
    padding-left: 0;
    margin-bottom: 1rem;
    gap: 1rem;
  }
}
.c-service-item__title:before {
  content: "";
  display: inline-block;
  left: -2.5rem;
  top: 0;
  width: 11px;
  height: 62px;
  background: var(--color-light-blue-gradient);
}
@media screen and (max-width: 768px) {
  .c-service-item__title:before {
    left: -2rem;
    width: 5px;
    height: 27px;
  }
}
.c-service-item__description {
  font-size: var(--fs16px);
  line-height: 2;
  color: var(--color-light-black);
  margin-bottom: 3rem;
  padding-left: 3rem;
}
@media screen and (max-width: 768px) {
  .c-service-item__description {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    padding-left: 0;
  }
}
.c-service-item__button {
  display: flex;
  padding: 1.5rem 4rem;
  margin-left: 3rem;
  font-size: var(--fs16px);
}
@media screen and (max-width: 768px) {
  .c-service-item__button {
    padding: 0.8rem 3rem;
    font-size: 1.4rem;
    border-radius: 11px;
    margin: 0 auto;
  }
}
.c-service-item__image {
  flex: 1;
  max-width: 460px;
}
@media screen and (max-width: 1024px) {
  .c-service-item__image {
    max-width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .c-service-item__image {
    max-width: 100%;
    width: 100%;
  }
}
.c-service-item__image img {
  width: 100%;
  height: auto;
  display: block;
}

/*
..%%%%...%%%%%%..%%%%%...%%..%%..%%%%%%...%%%%...%%%%%%...........%%%%....%%%%...%%%%%...%%%%%..
.%%......%%......%%..%%..%%..%%....%%....%%..%%..%%..............%%..%%..%%..%%..%%..%%..%%..%%.
..%%%%...%%%%....%%%%%...%%..%%....%%....%%......%%%%............%%......%%%%%%..%%%%%...%%..%%.
.....%%..%%......%%..%%...%%%%.....%%....%%..%%..%%..............%%..%%..%%..%%..%%..%%..%%..%%.
..%%%%...%%%%%%..%%..%%....%%....%%%%%%...%%%%...%%%%%%...........%%%%...%%..%%..%%..%%..%%%%%..
................................................................................................
*/
.c-service-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem 4rem;
}
@media screen and (max-width: 768px) {
  .c-service-card-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
    padding-top: 2rem;
  }
}

.c-service-card {
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 6rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-service-card {
    padding: 3rem 1rem 1rem;
    border-radius: 5px;
  }
}
.c-service-card__icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .c-service-card__icon {
    width: 51px;
    height: 51px;
    margin-bottom: 1.5rem;
  }
}
.c-service-card__icon img {
  width: 90px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .c-service-card__icon img {
    width: 51px;
    height: 51px;
  }
}
.c-service-card__title {
  font-size: var(--fs22px);
  font-weight: bold;
  color: var(--color-light-black);
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .c-service-card__title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
.c-service-card__list {
  width: 100%;
  height: auto;
  background-color: #E9F1F8;
  border-radius: 8px;
  padding: 2.5rem 2rem;
}
@media screen and (max-width: 768px) {
  .c-service-card__list {
    padding: 1.5rem;
    border-radius: 5px;
  }
}
.c-service-card__list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-service-card__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--fs18px);
  font-weight: bold;
  line-height: 2;
  color: var(--color-light-black);
  position: relative;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.c-service-card__list li > div {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .c-service-card__list li {
    font-size: 1.4rem;
    line-height: 1.42;
  }
  .c-service-card__list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .c-service-card__list li span {
    font-size: 1.3rem;
  }
}
.c-service-card__list li:before {
  content: "";
  display: block;
  width: 19px;
  height: 2px;
  background-color: var(--color-light-blue);
  vertical-align: middle;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .c-service-card__list li:before {
    width: 10px;
  }
}
@media screen and (max-width: 768px) {
  .c-service-card__list li:before {
    font-size: 1.2rem;
    width: 6px;
  }
}
.c-service-card__list--cyan {
  background-color: #E9F6F6;
}
.c-service-card__list--cyan li:before {
  background-color: #01B1B9;
}

/*
..%%%%...%%%%%...%%%%%%..%%%%%%...%%%%...%%......%%%%%%.
.%%..%%..%%..%%....%%......%%....%%..%%..%%......%%.....
.%%%%%%..%%%%%.....%%......%%....%%......%%......%%%%...
.%%..%%..%%..%%....%%......%%....%%..%%..%%......%%.....
.%%..%%..%%..%%....%%....%%%%%%...%%%%...%%%%%%..%%%%%%.
........................................................
*/
.c-article-header__meta {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.c-article-header__date {
  font-size: var(--fs18px);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-article-header__date {
    font-size: 1.2rem;
  }
}
.c-article-header__label {
  font-size: var(--fs16px);
  font-weight: bold;
  padding: 0 2rem;
  border: 2px solid;
}
@media screen and (max-width: 768px) {
  .c-article-header__label {
    font-size: 1.2rem;
    padding: 0.2rem 2rem;
    border: 1.5px solid;
  }
}
.c-article-header__label--info {
  border-color: var(--color-navy);
  color: var(--color-navy);
}
.c-article-header__label--news {
  border-color: var(--color-sky-blue);
  color: var(--color-sky-blue);
}
.c-article-header__label--zeimu-column {
  border-color: var(--color-light-black);
  color: var(--color-navy);
}
.c-article-header__title {
  font-size: var(--fs24px);
  font-weight: bold;
  margin: 3.7rem 0 2.7rem;
  border-bottom: 1px solid var(--color-light-grey);
  padding-bottom: 2.7rem;
}
@media screen and (max-width: 768px) {
  .c-article-header__title {
    font-size: 1.8rem;
    padding-bottom: 1.5rem;
    margin: 1rem 0 2rem;
  }
}

.c-article-content {
  font-size: var(--fs16px);
  line-height: 2.38;
}
.c-article-content .wp-block-image {
  margin: 2rem 0;
}
.c-article-content p {
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .c-article-content {
    line-height: 2.28;
  }
}

/*
.%%%%%....%%%%....%%%%...%%%%%%..%%..%%...%%%%...%%%%%%..%%%%%%...%%%%...%%..%%.
.%%..%%..%%..%%..%%........%%....%%%.%%..%%..%%....%%......%%....%%..%%..%%%.%%.
.%%%%%...%%%%%%..%%.%%%....%%....%%.%%%..%%%%%%....%%......%%....%%..%%..%%.%%%.
.%%......%%..%%..%%..%%....%%....%%..%%..%%..%%....%%......%%....%%..%%..%%..%%.
.%%......%%..%%...%%%%...%%%%%%..%%..%%..%%..%%....%%....%%%%%%...%%%%...%%..%%.
................................................................................
*/
.c-pagination {
  text-align: center;
  margin-top: clamp(4rem, 8.34vh, 9rem);
}
@media screen and (max-width: 768px) {
  .c-pagination {
    margin-top: 3rem;
  }
}
.c-pagination .page-numbers {
  font-size: var(--fs20px);
  font-family: var(--font-noto);
  margin-right: clamp(2rem, 2.09vw, 4rem);
}
@media screen and (max-width: 768px) {
  .c-pagination .page-numbers {
    font-size: 1.2rem;
  }
}
.c-pagination .page-numbers.current {
  border-bottom: 2px solid var(--color-light-blue);
  padding-bottom: 0.5rem;
}

/*
.%%%%%....%%%%....%%%%...%%%%%%..........%%..%%...%%%%...%%..%%.
.%%..%%..%%..%%..%%........%%............%%%.%%..%%..%%..%%..%%.
.%%%%%...%%..%%...%%%%.....%%....%%%%%%..%%.%%%..%%%%%%..%%..%%.
.%%......%%..%%......%%....%%............%%..%%..%%..%%...%%%%..
.%%.......%%%%....%%%%.....%%............%%..%%..%%..%%....%%...
................................................................
*/
.c-post-navigation {
  margin-bottom: clamp(6rem, 10.47vh, 11.3rem);
}
@media screen and (max-width: 768px) {
  .c-post-navigation {
    margin-bottom: 8.6rem;
  }
}
.c-post-navigation__inner {
  display: flex;
  justify-content: space-between;
}
.c-post-navigation__item {
  font-size: var(--fs20px);
  font-weight: 500;
}
.c-post-navigation__item-arrow {
  vertical-align: middle;
  padding-bottom: 0.6rem;
}
@media screen and (max-width: 768px) {
  .c-post-navigation__item-arrow {
    max-width: 15px;
    height: auto;
    padding-bottom: 0;
  }
}
.c-post-navigation__item--home {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
}
.c-post-navigation__item--home .c-post-navigation__link {
  border-bottom: 1px solid var(--color-light-black);
}
@media screen and (max-width: 768px) {
  .c-post-navigation__item--home .c-post-navigation__link {
    margin-top: 3rem;
    line-height: 1.3;
  }
}
.c-post-navigation__link {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/*
.%%..%%..%%%%%%...%%%%...%%%%%...%%%%%%..%%%%%..
.%%..%%..%%......%%..%%..%%..%%..%%......%%..%%.
.%%%%%%..%%%%....%%%%%%..%%..%%..%%%%....%%%%%..
.%%..%%..%%......%%..%%..%%..%%..%%......%%..%%.
.%%..%%..%%%%%%..%%..%%..%%%%%...%%%%%%..%%..%%.
................................................
*/
/* ===================================
   ヘッダー(l-header)
   =================================== */
.l-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  height: var(--header-height);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .l-header.hidden {
    transform: translateY(-100%);
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    background-color: var(--color-white);
  }
}
.l-header .c-company-name {
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .l-header .c-company-name {
    color: var(--color-light-black);
  }
}
.l-header--white-bg {
  background-color: rgba(255, 255, 255, 0.9);
}
.l-header--white-bg .c-company-name {
  color: var(--color-light-black);
}
.l-header--scrolled {
  background-color: rgba(255, 255, 255, 0.9);
}
.l-header--scrolled .c-company-name {
  color: var(--color-light-black);
}
.l-header .arrow_icon {
  width: 100%;
  max-width: clamp(12px, 0.89vw, 17px);
  padding-left: 0.5rem;
  margin-right: 0.5rem;
}
.l-header__inner {
  width: 100%;
  margin: 0 auto;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .l-header__inner {
    padding: 0;
  }
}
.l-header__flex {
  width: 100%;
  max-width: 93.2vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(2rem, 5.208vw, 10rem);
}
@media screen and (max-width: 1500px) {
  .l-header__flex {
    max-width: 96%;
    gap: clamp(1.5rem, 2vw, 3rem);
  }
}
@media screen and (max-width: 1024px) {
  .l-header__flex {
    margin-right: 0;
    max-width: 100%;
  }
}
.l-header__flex-left {
  display: flex;
  gap: clamp(1rem, 1.563vw, 3rem);
  align-items: center;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .l-header__flex-left {
    gap: 1rem;
    padding-left: 1rem;
  }
}
.l-header__flex-right {
  width: 100%;
  max-width: clamp(20rem, 60.63vw, 116.4rem);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(1rem, 2.604vw, 5rem);
  flex-shrink: 1;
  min-width: 0;
}
@media screen and (max-width: 1500px) {
  .l-header__flex-right {
    width: 100%;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin-top: 1rem;
    gap: clamp(1rem, 1.2vw, 2rem);
  }
}
@media screen and (max-width: 1024px) {
  .l-header__flex-right {
    margin-top: 0;
  }
}
.l-header__flex-right .c-contact {
  width: 100%;
  max-width: clamp(16rem, 13.96vw, 26.8rem);
  min-width: 14rem;
  flex-shrink: 0;
}
@media screen and (max-width: 1500px) {
  .l-header__flex-right .c-contact {
    max-width: clamp(14rem, 16vw, 22rem);
    min-width: 14rem;
  }
}
@media screen and (max-width: 1024px) {
  .l-header__flex-right .c-contact {
    min-width: auto;
  }
}
.l-header__flex-right .c-nav-wrapper {
  gap: clamp(2rem, 2.09vw, 4rem);
  flex-shrink: 1;
  min-width: 0;
}
.l-header__flex-right .c-nav-wrapper li {
  position: static;
  white-space: nowrap;
}
.l-header__flex-right .c-nav-wrapper .has-dropdown {
  position: relative;
}
.l-header__flex-right .c-nav-wrapper .has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 6rem;
  pointer-events: auto;
}
.l-header__flex-right .c-nav-wrapper .has-dropdown:hover {
  cursor: pointer;
}
.l-header__flex-right .c-nav-wrapper .has-dropdown:hover::after {
  pointer-events: auto;
}
.l-header__flex-right .c-nav-wrapper .has-dropdown:hover .c-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.l-header__flex-right .c-nav-wrapper li {
  position: static;
}
.l-header__flex-right .has-dropdown:hover > a {
  opacity: 1;
}
.l-header__flex-right .has-dropdown:hover > a span {
  color: var(--color-light-black);
}
.l-header__flex-right .has-dropdown:hover .c-dropdown {
  opacity: 1;
  visibility: visible;
}
.l-header__flex-right .c-dropdown {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100vw;
  background-color: var(--color-navy);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: 4.62vh 0 6.94vh;
}
@media screen and (max-width: 1024px) {
  .l-header__flex-right .c-dropdown {
    display: none;
  }
}
.l-header__flex-right .c-dropdown__inner {
  width: 100%;
  max-width: clamp(800px, 62.5vw, 1200px);
  margin: 0 auto;
  padding: 0 clamp(2rem, 2.083vw, 4rem);
}
@media screen and (max-width: 1024px) {
  .l-header__flex-right .c-dropdown__inner {
    padding: 0 2rem;
  }
}
.l-header__flex-right .c-dropdown__title {
  font-size: var(--fs22px);
  font-weight: bold;
  color: var(--color-white);
  margin-bottom: clamp(1rem, 1.042vw, 2rem);
  padding-bottom: clamp(1rem, 0.781vw, 1.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.l-header__flex-right .c-dropdown__list {
  list-style: none;
  margin: 0;
  display: grid;
  gap: 2rem clamp(3rem, 3.646vw, 7rem);
}
.l-header__flex-right .c-dropdown__list--2col {
  grid-template-columns: repeat(2, auto);
  justify-content: start;
}
@media screen and (max-width: 1024px) {
  .l-header__flex-right .c-dropdown__list--2col {
    grid-template-columns: 1fr;
  }
}
.l-header__flex-right .c-dropdown__list--3col {
  grid-template-columns: repeat(3, auto);
  justify-content: start;
}
@media screen and (max-width: 1024px) {
  .l-header__flex-right .c-dropdown__list--3col {
    grid-template-columns: 1fr;
  }
}
.l-header__flex-right .c-dropdown__item {
  margin: 0;
}
.l-header__flex-right .c-dropdown__item a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-white);
  transition: opacity 0.3s;
  font-size: var(--fs16px);
  font-weight: normal;
}
@media screen and (max-width: 1024px) {
  .l-header__flex-right .c-dropdown__item a {
    padding: 1rem 0;
  }
}
.l-header__flex-right .c-dropdown__item a:hover {
  opacity: 0.7;
}
.l-header__flex-right .c-dropdown__item a:after {
  display: none;
}
.l-header__flex-right .c-dropdown__arrow {
  margin-right: clamp(0.5rem, 0.521vw, 1rem);
  line-height: 1;
  color: var(--color-white);
}
.l-header__flex-right .c-dropdown__arrow img {
  width: 100%;
  max-width: clamp(7px, 0.469vw, 9px);
}
.l-header__flex-right .l-header__nav-wrapper {
  justify-content: flex-end;
  width: 100%;
  gap: clamp(2rem, 3.125vw, 4rem);
  flex-shrink: 1;
  min-width: 0;
}
@media screen and (max-width: 1500px) {
  .l-header__flex-right .l-header__nav-wrapper {
    gap: clamp(1.5rem, 2vw, 3rem);
  }
}
@media screen and (max-width: 1024px) {
  .l-header__flex-right .l-header__nav-wrapper {
    display: none;
  }
}
.l-header__flex-right li {
  font-weight: bold;
  text-align: left;
}
.l-header__flex-right li a {
  font-size: clamp(1.3rem, 0.885vw, 1.7rem);
  display: block;
  position: relative;
}
@media screen and (max-width: 1500px) {
  .l-header__flex-right li a {
    font-size: clamp(1.2rem, 0.95vw, 1.5rem);
  }
}
@media screen and (max-width: 1024px) {
  .l-header__flex-right li a {
    font-size: 1.6rem;
    letter-spacing: 0.02em;
    line-height: 1.5;
  }
}
.l-header__flex-right li span {
  display: block;
  font-size: clamp(1.2rem, 0.833vw, 1.6rem);
  font-family: "Futura PT", sans-serif;
  font-weight: normal;
}
@media screen and (max-width: 1500px) {
  .l-header__flex-right li span {
    font-size: clamp(1.1rem, 0.85vw, 1.4rem);
  }
}
.l-header__flex-right .c-contact a {
  margin: 0 auto;
  padding: clamp(1rem, 13.8vh, 1.5rem) 0;
  font-size: clamp(1.3rem, 0.938vw, 1.8rem);
  line-height: 1.45;
  font-weight: bold;
  color: var(--color-white);
  background: var(--color-blue-gradient-right);
}
@media screen and (max-width: 1500px) {
  .l-header__flex-right .c-contact a {
    font-size: clamp(1.2rem, 0.95vw, 1.5rem);
    padding: clamp(1rem, 12vh, 1.2rem) clamp(0.5rem, 0.5vw, 1rem);
  }
}
@media screen and (max-width: 1024px) {
  .l-header__flex-right .c-contact a {
    width: 100%;
    max-width: none;
    font-size: 1.4rem;
  }
}

/* ========================================
   固定バナー（768px以下）
   ======================================== */
.l-header__fixed-banner {
  display: none;
}

@media screen and (max-width: 768px) {
  .l-header__fixed-banner {
    width: 100%;
    max-width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  .l-header__fixed-banner.is-hidden-bottom {
    transform: translateY(100%);
  }
  .l-header__fixed-banner-tel,
  .l-header__fixed-banner-contact {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.l-header--bpo .c-company-name {
  color: var(--color-light-black);
  font-size: var(--fs25px);
}
@media screen and (max-width: 1024px) {
  .l-header--bpo .c-company-name {
    font-size: 1.4rem;
  }
}
.l-header--bpo .l-header__inner {
  padding: 0;
}
.l-header--bpo .l-header__flex {
  gap: 2rem;
  align-items: stretch;
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .l-header--bpo .l-header__flex {
    gap: 1rem;
    align-items: center;
  }
}
.l-header--bpo .l-header__flex-left {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 1rem 0 1rem clamp(2rem, 3.125vw, 6rem);
}
@media screen and (max-width: 1024px) {
  .l-header--bpo .l-header__flex-left {
    padding: 0 0 0 1rem;
  }
}
.l-header--bpo .l-header__logo-link {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.563vw, 3rem);
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .l-header--bpo .l-header__logo-link {
    gap: 1rem;
  }
}
.l-header--bpo .l-header__flex-right {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: clamp(2rem, 2.6vw, 5rem);
  flex: 1;
  min-width: 0;
  max-width: 100%;
  margin-top: 0;
}
@media screen and (max-width: 1024px) {
  .l-header--bpo .l-header__flex-right {
    gap: 1rem;
    align-items: center;
  }
}
.l-header--bpo .l-header__nav-wrapper {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .l-header--bpo .l-header__nav-wrapper {
    display: none;
  }
}
.l-header--bpo .c-nav-wrapper--bpo {
  display: flex;
  gap: clamp(1.5rem, 2.08vw, 4rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1500px) {
  .l-header--bpo .c-nav-wrapper--bpo {
    gap: clamp(1rem, 1.5vw, 2rem);
  }
}
.l-header--bpo .c-nav-wrapper--bpo li {
  white-space: nowrap;
}
.l-header--bpo .c-nav-wrapper--bpo li a {
  font-size: var(--fs17px);
  color: var(--color-light-black);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  display: block;
}
@media screen and (max-width: 1500px) {
  .l-header--bpo .c-nav-wrapper--bpo li a {
    font-size: clamp(1.2rem, 0.85vw, 1.5rem);
  }
}
.l-header--bpo .c-nav-wrapper--bpo li a:hover {
  color: #01B1B9;
}
.l-header--bpo .l-header__cta-wrapper {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: clamp(400px, 28.55vw, 548px);
}
@media screen and (max-width: 1024px) {
  .l-header--bpo .l-header__cta-wrapper {
    display: none;
  }
}
.l-header--bpo .l-header__tel {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-white);
  background: linear-gradient(#3dd3dc 0%, #00aeb9 100%);
  padding: 0 clamp(1rem, 7.9vw, 1.5rem);
  position: relative;
  min-width: 0;
}
.l-header--bpo .l-header__tel::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 7px;
  background: #02BCC8;
}
.l-header--bpo .l-header__tel-icon {
  width: 100%;
  max-width: clamp(20px, 1.67vw, 32px);
  flex-shrink: 0;
  padding-bottom: 2.4rem;
}
@media screen and (max-width: 1024px) {
  .l-header--bpo .l-header__tel-icon {
    padding-bottom: 0;
  }
}
.l-header--bpo .l-header__tel-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}
.l-header--bpo .l-header__tel-number {
  font-size: var(--fs30px);
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1500px) {
  .l-header--bpo .l-header__tel-number {
    font-size: 2rem;
  }
}
.l-header--bpo .l-header__tel-time {
  font-size: var(--fs14px);
  white-space: nowrap;
}
@media screen and (max-width: 1280px) {
  .l-header--bpo .l-header__tel-time {
    font-size: clamp(1rem, 0.8vw, 1.4rem);
  }
}
.l-header--bpo .l-header__cta-button {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 0;
}
.l-header--bpo .l-header__cta-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 7px;
  background: #1F6DC0;
}
.l-header--bpo .l-header__cta-button .c-btn {
  width: 100%;
  padding: 1.2rem 2rem;
  background: linear-gradient(#64a4f5 0%, #1676e6 100%);
  border-radius: 0;
  box-shadow: none;
}
@media screen and (max-width: 1500px) {
  .l-header--bpo .l-header__cta-button .c-btn {
    padding: 1rem 1.5rem;
  }
}
.l-header--bpo .l-header__cta-button .c-btn:after {
  display: none;
}
.l-header--bpo .l-header__cta-button .c-btn .c-btn__text {
  font-size: var(--fs28px);
  color: var(--color-white);
  font-weight: bold;
}
@media screen and (max-width: 1280px) {
  .l-header--bpo .l-header__cta-button .c-btn .c-btn__text {
    font-size: 1.8rem;
  }
}

/*
.%%%%%%...%%%%....%%%%...%%%%%%..%%%%%%..%%%%%..
.%%......%%..%%..%%..%%....%%....%%......%%..%%.
.%%%%....%%..%%..%%..%%....%%....%%%%....%%%%%..
.%%......%%..%%..%%..%%....%%....%%......%%..%%.
.%%.......%%%%....%%%%.....%%....%%%%%%..%%..%%.
................................................
*/
/* ===================================
   フッター（l-footer）
   =================================== */
.l-footer {
  margin-top: clamp(12rem, 15.18vh, 16.4rem);
  border-bottom: 11px solid var(--color-navy);
}
@media screen and (max-width: 1024px) {
  .l-footer {
    margin-top: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .l-footer {
    margin-top: 7rem;
    border-width: 13px;
  }
}
.l-footer__inner {
  padding: 9.53vh 0 0;
  background-color: var(--color-light-sky-blue);
}
@media screen and (max-width: 768px) {
  .l-footer__inner {
    padding: 3rem 0 0;
  }
}
.l-footer__border {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: block;
  border-top: 1px solid var(--color-navy);
}
.l-footer__border-top {
  width: 82.7vw;
  max-width: 1586px;
}
@media screen and (max-width: 1024px) {
  .l-footer__border-top {
    width: 100%;
    max-width: 100%;
  }
}
.l-footer__border-bottom {
  border-top: 0.5px solid var(--color-navy);
  margin-top: 12.5vh;
}
@media screen and (max-width: 768px) {
  .l-footer__border-bottom {
    margin-top: 2rem;
  }
}
.l-footer__copyright {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  line-height: 1.71;
  padding: 2.5vh 0;
}
@media screen and (max-width: 768px) {
  .l-footer__copyright {
    font-size: 0.9rem;
    padding: 1rem 0;
  }
}
.l-footer .c-footer-nav {
  gap: clamp(2rem, 3.125vw, 6rem);
}
@media screen and (max-width: 768px) {
  .l-footer .c-footer-nav {
    gap: 2rem;
    flex-wrap: wrap;
  }
}
.l-footer .c-footer-nav__list {
  margin-bottom: 7rem;
}
@media screen and (max-width: 768px) {
  .l-footer .c-footer-nav__list {
    margin-bottom: 0;
  }
}
.l-footer .c-footer-nav__column {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: var(--fs16px);
}
@media screen and (max-width: 768px) {
  .l-footer .c-footer-nav__column {
    width: calc(50% - 1rem);
  }
  .l-footer .c-footer-nav__column:last-child {
    width: 100%;
  }
}
.l-footer .c-footer-nav__item .c-footer-nav__link {
  display: flex;
  position: relative;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: var(--fs16px);
  color: var(--color-light-black);
}
@media screen and (max-width: 768px) {
  .l-footer .c-footer-nav__item .c-footer-nav__link {
    letter-spacing: 0.02em;
    line-height: 1.42;
    margin-bottom: 1rem;
  }
}
.l-footer .c-footer-nav__item .c-footer-nav__link:before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 7px;
  height: 14px;
  background: url(../../img/common/arrow_right_blue.svg) no-repeat center center;
  background-size: contain;
  padding-top: 2.4rem;
}
.l-footer .c-footer-nav__column--misc .c-footer-nav__link::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 8px;
  background: url(../../img/common/border_blue.svg) no-repeat center center;
  background-size: contain;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  .l-footer .c-footer-nav__column--misc .c-footer-nav__link::before {
    width: 10px;
    height: 6px;
    background: url(../../img/common/border_blue_sp.png) no-repeat center center;
    background-size: contain;
    vertical-align: middle;
    margin-right: 0.5rem;
  }
}
.l-footer .c-footer-nav__heading {
  font-size: var(--fs18px);
  font-weight: bold;
  border-bottom: 1px solid var(--color-grey);
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
  color: var(--color-light-black);
}
@media screen and (max-width: 768px) {
  .l-footer .c-footer-nav__heading {
    font-size: 1.6rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
}
.l-footer .c-footer-info {
  margin-top: 5.6vh;
}
.l-footer .c-footer-info__company-name {
  font-size: var(--fs26px);
  font-family: var(--font-serif);
  font-weight: bold;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .l-footer .c-footer-info__company-name {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
}
.l-footer .c-footer-info__address {
  font-size: var(--fs16px);
  letter-spacing: 0.02em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .l-footer .c-footer-info__address {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .c-footer-info__logo img {
    max-width: 82px;
  }
  .l-footer .c-footer-info .l-flex.u-gap-2 {
    gap: 1rem !important;
  }
}

/* ===================================
   ページテンプレート（p-）
   =================================== */
/*
.%%%%%%...%%%%...%%%%%..
...%%....%%..%%..%%..%%.
...%%....%%..%%..%%%%%..
...%%....%%..%%..%%.....
...%%.....%%%%...%%.....
........................
*/
.p-top__fv {
  padding: 0;
}
.p-top__fv img {
  width: 100vw;
}
.p-top__about-us {
  position: relative;
  padding-bottom: 18.5vh;
}
@media screen and (max-width: 1024px) {
  .p-top__about-us {
    padding-bottom: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top__about-us {
    padding: 1rem 0 6rem;
  }
}
.p-top__about-us-inner {
  position: relative;
}
.p-top__about-us-content {
  flex: 1;
  position: relative;
  z-index: 2;
}
.p-top__about-us-lead {
  font-size: var(--fs25px);
  line-height: 1.6;
  font-family: var(--font-serif);
  font-weight: bold;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-top__about-us-lead {
    font-size: 1.6rem;
  }
}
.p-top__about-us-text {
  font-size: var(--fs16px);
  line-height: 2;
  margin-bottom: 2rem;
}
.p-top__about-us-image {
  flex: 1;
  text-align: right;
  position: relative;
  z-index: 1;
}
.p-top__about-us-image.u-hidden-sp768 {
  margin-top: 2rem;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .p-top__about-us-image.u-hidden-sp768 {
    margin-top: 5rem;
  }
}
.p-top__about-us-image.u-hidden-sp768 img {
  width: 100%;
  max-width: 582px;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-top__about-us-image {
    margin-top: 0;
  }
}
.p-top__about-us .l-flex {
  position: relative;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .p-top__about-us .l-flex {
    gap: 4rem;
  }
}
.p-top__about-us .c-card {
  position: absolute;
  left: auto;
  left: 0;
  right: -2rem;
  width: clamp(550px, 38.6vw, 741px);
  max-width: none;
  padding: clamp(3rem, 4.7vw, 4.7rem) clamp(3rem, 3.2vw, 6rem) clamp(3rem, 4.7vw, 4.7rem) clamp(3rem, 4.7vw, 4.7rem);
  margin-top: 1rem;
}
@media screen and (max-width: 1280px) {
  .p-top__about-us .c-card {
    margin-top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .p-top__about-us .c-card {
    position: relative;
    box-shadow: none;
    padding: 0;
    width: 100%;
    right: auto;
  }
}
.p-top__about-us .c-btn {
  margin: 3rem 0 0 0;
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  .p-top__about-us .c-btn {
    margin: 2rem auto 0;
  }
}
.p-top__services {
  background-color: var(--color-light-navy);
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top__services {
    padding-top: 2.5rem;
  }
}
.p-top__services:before {
  content: "";
  position: absolute;
  width: 8.073vw;
  max-width: 155px;
  height: auto;
  aspect-ratio: 155/723;
  background: url(../../img/top/top_services_bg_text.svg) no-repeat center center;
  background-size: contain;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-top__services:before {
    display: none;
  }
}
.p-top__services-content {
  position: relative;
  z-index: 2;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-top__services-content {
    margin-top: 0;
  }
}
.p-top__services-content .l-flex {
  gap: 5.3rem 3rem;
}
@media screen and (max-width: 768px) {
  .p-top__services-content .l-flex {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
}
.p-top__services-content .l-flex > * {
  flex: 1 1 calc((100% - 3rem) / 2);
}
.p-top__services-card {
  width: 100%;
  max-width: clamp(440px, 27.61vw, 530px);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .p-top__services-card {
    margin-bottom: 0;
  }
}
.p-top__services-card-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .p-top__services-card-content {
    padding: 2rem;
  }
}
.p-top__services-card-title {
  font-size: var(--fs22px);
  font-weight: 500;
  font-family: var(--font-serif);
  color: var(--color-navy);
  text-align: center;
  margin: 0 auto 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-top__services-card-title {
    font-size: 1.7rem;
  }
}
.p-top__services-card-text {
  margin-bottom: 5rem;
  font-size: var(--fs16px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .p-top__services-card-text {
    margin-bottom: 2rem;
  }
}
.p-top__services-card .c-btn {
  box-shadow: none;
  margin-top: auto;
}
.p-top__news {
  padding: 10.69vh 0 17vh;
}
@media screen and (max-width: 1280px) {
  .p-top__news {
    padding: 10.69vh 0 15.38vh;
  }
}
@media screen and (max-width: 1024px) {
  .p-top__news {
    padding: 8rem 0 10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top__news {
    padding: 5.4rem 0 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top__news .c-topics-wrapper.c-card {
    padding: 2rem 6% 4.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top__news .c-topics-wrapper .c-topics__arrow-icon {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .p-top__recruit {
    padding-bottom: 5.5rem;
  }
}
.p-top__recruit .c-heading__title {
  color: var(--color-white);
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top__recruit .c-heading__title {
    font-size: 3.4rem;
    margin-bottom: 0;
    text-align: center;
  }
}
.p-top__recruit .c-heading__subtitle {
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .p-top__recruit .c-heading__subtitle {
    text-align: center;
  }
}
.p-top__recruit .c-btn {
  border: none;
  margin: 4rem 0 0 0;
}
@media screen and (max-width: 768px) {
  .p-top__recruit .c-btn {
    margin: 2rem auto 0;
    border: 2px solid var(--color-light-blue);
    padding: 1rem 0;
  }
}
.p-top__recruit-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  background-color: var(--color-navy);
}
.p-top__recruit-text-inner {
  padding-right: clamp(2rem, 3.34vw, 6.4rem);
  padding-left: clamp(6rem, 17.2vw, 32.9rem);
}
@media screen and (max-width: 1280px) {
  .p-top__recruit-text-inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top__recruit-text-inner {
    padding: 3rem 6%;
  }
}
.p-top__recruit-description {
  color: var(--color-white);
  line-height: 2.06;
}
.p-top__recruit-image {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.p-top__recruit-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-top__recruit .l-flex {
    flex-direction: column-reverse;
    padding: 0 6%;
  }
  .p-top__recruit .c-heading {
    margin-bottom: 1rem;
  }
}

/*
..%%%%...%%%%%....%%%%...%%..%%..%%%%%%..........%%..%%...%%%%..
.%%..%%..%%..%%..%%..%%..%%..%%....%%............%%..%%..%%.....
.%%%%%%..%%%%%...%%..%%..%%..%%....%%............%%..%%...%%%%..
.%%..%%..%%..%%..%%..%%..%%..%%....%%............%%..%%......%%.
.%%..%%..%%%%%....%%%%....%%%%.....%%.............%%%%....%%%%..
................................................................
*/
.p-about-us__inner {
  width: 100%;
  max-width: clamp(900px, 61.46vw, 1180px);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-about-us {
    padding: 0;
  }
}
.p-about-us__top-bg {
  position: relative;
}
.p-about-us__top-bg:after {
  content: "";
  position: absolute;
  width: 546px;
  height: 1043px;
  top: 15%;
  right: 0;
  transform: translate(50%, 0);
  z-index: -1;
  background: url(../../img/about_us/about_us_top_bg.png) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  .p-about-us__top-bg:after {
    width: 164px;
    height: 313px;
    top: 50%;
    right: -4%;
    transform: none;
    z-index: -1;
    background: url(../../img/about_us/about_us_top_bg_sp.png) no-repeat center center;
    background-size: contain;
  }
}
.p-about-us__message {
  padding: 6rem 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-about-us__message {
    padding: 2.5rem 0 0;
  }
}
.p-about-us__message:after {
  content: "";
  position: absolute;
  background: url(../../img/about_us/about_us_message_bg.png) no-repeat center top;
  background-size: cover;
  width: 72.7vw;
  height: 35.94vw;
  top: 0;
  right: -6%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-about-us__message:after {
    background: url(../../img/about_us/about_us_message_bg_sp.png) no-repeat center top;
    background-size: cover;
    width: 187px;
    height: 160px;
  }
}
.p-about-us__message-inner .c-heading {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .p-about-us__message-inner .c-heading {
    margin-bottom: 1rem;
  }
}
.p-about-us__message-layout {
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-about-us__message-layout {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-about-us__message-image {
  width: 100%;
  max-width: clamp(400px, 34.1vw, 654px);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-about-us__message-image {
    max-width: 100%;
  }
}
.p-about-us__message-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.p-about-us__message-content {
  position: absolute;
  left: 35%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  .p-about-us__message-content {
    left: 350px;
  }
}
@media screen and (max-width: 1024px) {
  .p-about-us__message-content {
    left: 300px;
  }
}
@media screen and (max-width: 768px) {
  .p-about-us__message-content {
    position: inherit;
    left: auto;
    transform: none;
  }
}
.p-about-us__message-card {
  padding: 3.7vh 2.084vw;
  background-color: var(--color-white-transparent);
  box-shadow: none !important;
}
@media screen and (max-width: 1024px) {
  .p-about-us__message-card {
    padding: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .p-about-us__message-card {
    padding: 2rem 0;
    background-color: transparent;
  }
}
.p-about-us__message-lead {
  font-size: var(--fs22px);
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .p-about-us__message-lead {
    margin-bottom: 0;
    font-size: 1.8rem;
  }
}
.p-about-us__message-divider {
  width: 74px;
  height: 3px;
  border: none;
  background-color: var(--color-light-blue);
  margin: 2rem 0;
}
@media screen and (max-width: 768px) {
  .p-about-us__message-divider {
    margin: 1rem 0 1.5rem;
  }
}
.p-about-us__message-text {
  font-size: var(--fs16px);
  line-height: 2.06;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .p-about-us__message-text {
    line-height: 1.71;
    margin-bottom: 1rem;
  }
}
.p-about-us__message-signature {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-about-us__message-signature {
    text-align: right;
  }
}
@media screen and (max-width: 768px) {
  .p-about-us__philosophy {
    padding-top: 0;
  }
}
.p-about-us__philosophy-title {
  font-size: var(--fs45px);
  font-weight: bold;
  margin: 3.5rem 0 4rem;
  border-left: 20px solid var(--color-light-blue);
  padding-left: 2.8rem;
  line-height: 1.45;
}
@media screen and (max-width: 1280px) {
  .p-about-us__philosophy-title {
    font-size: 2.8rem;
    border-width: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .p-about-us__philosophy-title {
    font-size: 2.4rem;
    border-width: 10px;
    padding-left: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-about-us__philosophy-title {
    font-size: 2rem;
    margin: 2rem 0;
    padding-left: 1rem;
    border-left-width: 10px;
  }
}
.p-about-us__philosophy-text {
  padding-left: 4.8rem;
  line-height: 2.06;
  font-size: var(--fs16px);
}
@media screen and (max-width: 1024px) {
  .p-about-us__philosophy-text {
    padding-left: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .p-about-us__philosophy-text {
    padding-left: 0;
    line-height: 1.71;
  }
}
.p-about-us__merit {
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  .p-about-us__merit {
    padding: 2rem 0 4rem;
  }
}
.p-about-us__merit .c-heading {
  border-bottom: 0.5px solid var(--color-light-grey);
  padding-bottom: 5rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .p-about-us__merit .c-heading {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
}
.p-about-us__merit-list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  .p-about-us__merit-list {
    gap: 5rem;
  }
}
.p-about-us__merit-item-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-about-us__merit-item-header {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
.p-about-us__merit-item-label {
  font-size: var(--fs22px);
  color: var(--color-light-blue);
  font-weight: bold;
  position: relative;
  padding-left: 4.3rem;
}
@media screen and (max-width: 768px) {
  .p-about-us__merit-item-label {
    font-size: 1.8rem;
    padding-left: 3.5rem;
  }
}
.p-about-us__merit-item-label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 33px;
  height: 1.5px;
  background-color: var(--color-light-blue);
}
@media screen and (max-width: 768px) {
  .p-about-us__merit-item-label:before {
    width: 18px;
  }
}
.p-about-us__merit-item-heading {
  font-size: var(--fs30px);
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .p-about-us__merit-item-heading {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}
.p-about-us__merit-item-text {
  font-size: var(--fs16px);
  line-height: 2.06;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .p-about-us__merit-item-text {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
}
.p-about-us__merit-item-image {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-about-us__merit-item-image {
    max-width: 100%;
  }
}
.p-about-us__merit-item-image img {
  width: 100%;
  max-width: clamp(800px, 58.65vw, 1126px);
  height: auto;
  display: block;
}
.p-about-us__company-info {
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  .p-about-us__company-info {
    padding: 4rem 0 3rem;
  }
}
.p-about-us__company-info-inner .c-heading {
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .p-about-us__company-info-inner .c-heading {
    margin-bottom: 1rem;
  }
}
.p-about-us__map {
  padding: 0;
}

/*
..%%%%...%%%%%%...%%%%...%%%%%%..%%%%%%.
.%%........%%....%%..%%..%%......%%.....
..%%%%.....%%....%%%%%%..%%%%....%%%%...
.....%%....%%....%%..%%..%%......%%.....
..%%%%.....%%....%%..%%..%%......%%.....
........................................
*/
.p-staff__introduction .c-person-card--sub {
  padding: 0;
}
.p-staff__introduction, .p-staff__list {
  padding: clamp(6rem, 8.4vh, 8rem) 0;
}
@media screen and (max-width: 768px) {
  .p-staff__introduction, .p-staff__list {
    padding: 2rem 0 5rem;
  }
}
.p-staff__introduction .c-heading, .p-staff__list .c-heading {
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .p-staff__introduction .c-heading, .p-staff__list .c-heading {
    margin-bottom: 2rem;
  }
}

/*
..%%%%...%%%%%%..%%%%%...%%..%%..%%%%%%...%%%%...%%%%%%...%%%%..
.%%......%%......%%..%%..%%..%%....%%....%%..%%..%%......%%.....
..%%%%...%%%%....%%%%%...%%..%%....%%....%%......%%%%.....%%%%..
.....%%..%%......%%..%%...%%%%.....%%....%%..%%..%%..........%%.
..%%%%...%%%%%%..%%..%%....%%....%%%%%%...%%%%...%%%%%%...%%%%..
................................................................
*/
.p-services__list {
  padding: 10rem 0 21rem;
}
@media screen and (max-width: 768px) {
  .p-services__list {
    padding: 3.5rem 0 7.3rem;
  }
}

/*
..%%%%...%%%%%%..%%..%%..%%%%%%..%%%%%............%%%%...%%%%%%..%%%%%...%%..%%..%%%%%%...%%%%...%%%%%%.
.%%..%%....%%....%%..%%..%%......%%..%%..........%%......%%......%%..%%..%%..%%....%%....%%..%%..%%.....
.%%..%%....%%....%%%%%%..%%%%....%%%%%............%%%%...%%%%....%%%%%...%%..%%....%%....%%......%%%%...
.%%..%%....%%....%%..%%..%%......%%..%%..............%%..%%......%%..%%...%%%%.....%%....%%..%%..%%.....
..%%%%.....%%....%%..%%..%%%%%%..%%..%%...........%%%%...%%%%%%..%%..%%....%%....%%%%%%...%%%%...%%%%%%.
........................................................................................................
*/
.p-other-service__list {
  padding: 10rem 0 17rem;
}
.p-other-service__list .c-heading__title {
  font-size: var(--fs35px);
}
@media screen and (max-width: 768px) {
  .p-other-service__list .c-heading__title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-other-service__list {
    padding: 6rem 0 6.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-other-service__list {
    padding: 3rem 0 6.4rem;
  }
}
.p-other-service__list .c-heading {
  margin-bottom: 12rem;
}
@media screen and (max-width: 768px) {
  .p-other-service__list .c-heading {
    margin-bottom: 4rem;
  }
}

/*
.%%%%%%...%%%%...%%..%%...........%%%%....%%%%....%%%%....%%%%...%%..%%..%%..%%..%%%%%%...%%%%...%%..%%..%%%%%%.
...%%....%%..%%...%%%%...........%%..%%..%%..%%..%%..%%..%%..%%..%%..%%..%%%.%%....%%....%%..%%..%%%.%%....%%...
...%%....%%%%%%....%%............%%%%%%..%%......%%......%%..%%..%%..%%..%%.%%%....%%....%%%%%%..%%.%%%....%%...
...%%....%%..%%...%%%%...........%%..%%..%%..%%..%%..%%..%%..%%..%%..%%..%%..%%....%%....%%..%%..%%..%%....%%...
...%%....%%..%%..%%..%%..........%%..%%...%%%%....%%%%....%%%%....%%%%...%%..%%....%%....%%..%%..%%..%%....%%...
................................................................................................................
*/
.p-service-page .c-fv {
  padding-top: var(--header-height);
}
@media screen and (max-width: 1024px) {
  .p-service-page .c-fv {
    padding-top: 6.9rem;
  }
}

.p-tax-accountant .c-fv__image {
  box-shadow: var(--shadow-default);
}
.p-tax-accountant__problems .c-service-problems__card::after {
  background: url(../../img/tax_accountant/worry_man.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-tax-accountant__problems .c-service-problems__card::after {
    background: url(../../img/tax_accountant/worry_man_sp.png) no-repeat center center;
    background-size: contain;
  }
}
.p-tax-accountant__problems .c-service-problems__card-title span {
  color: var(--color-light-blue);
}
.p-tax-accountant__feature {
  background: linear-gradient(#c2eeff 0%, #e2f7ff 17.99%, #fff 100%);
}
.p-tax-accountant__feature .c-service-feature__title-highlight {
  background-color: var(--color-white);
  color: var(--color-light-blue);
}
.p-tax-accountant__service .c-service-list__card-heading {
  background-color: var(--color-navy);
  color: var(--color-white);
}
.p-tax-accountant__price {
  background: linear-gradient(#c2eeff 0%, #e2f7ff 17.99%, #fff 100%);
}
.p-tax-accountant__cta {
  background: linear-gradient(#75c1de 0%, #4fa3d2 100%);
}
.p-tax-accountant__cta .c-service-cta__card::after {
  background-color: #476B80;
}
.p-tax-accountant__voice {
  background-color: var(--color-white);
}
.p-tax-accountant__voice .c-service-voice__contents {
  grid-template-rows: 1fr;
}
.p-tax-accountant__voice .c-service-voice__contents::before, .p-tax-accountant__voice .c-service-voice__contents::after {
  background: url(../../img/tax_accountant/voice_card_decoration.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-tax-accountant__voice .c-service-voice__contents::before, .p-tax-accountant__voice .c-service-voice__contents::after {
    background: url(../../img/tax_accountant/voice_card_decoration_sp.png) no-repeat center center;
    background-size: contain;
  }
}
.p-tax-accountant__voice .c-service-voice__card {
  color: var(--color-white);
}
.p-tax-accountant__voice .c-service-voice__card--blue {
  background: linear-gradient(#75c1de 0%, #4fa3d2 100%);
}
.p-tax-accountant__voice .c-service-voice__card--cyan {
  background: linear-gradient(#58d8de 0%, #01b1b9 100%);
}
.p-tax-accountant__voice .c-service-voice__card-company {
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .p-tax-accountant__voice .c-service-voice__card-company {
    gap: 1.5rem;
  }
}
.p-tax-accountant__voice .c-service-voice__card-person {
  margin-bottom: 1rem;
  font-weight: normal;
}
.p-tax-accountant__voice .c-service-voice__card-company hr {
  border-bottom: 3px solid var(--color-white);
}
.p-tax-accountant__flow {
  background: url(../../img/tax_accountant/flow_bg.jpg) no-repeat center top;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .p-tax-accountant__flow {
    background: url(../../img/tax_accountant/flow_bg_sp.jpg) no-repeat center top;
    background-size: cover;
  }
}
.p-tax-accountant__flow .c-service-flow__step-content {
  background-color: var(--color-white);
}
.p-tax-accountant__faq {
  background-color: #F0F0F0;
}
.p-tax-accountant__faq .c-service-faq__content {
  background-color: var(--color-white);
}
.p-tax-accountant__faq .c-service-faq__q {
  color: var(--color-light-blue);
}
.p-tax-accountant__faq .c-service-faq__a {
  color: #757575;
}

/*
.%%%%%%..%%%%%...%%%%%%..%%%%%%..%%%%%%.
.%%......%%..%%..%%......%%......%%.....
.%%%%....%%%%%...%%%%....%%%%....%%%%...
.%%......%%..%%..%%......%%......%%.....
.%%......%%..%%..%%%%%%..%%%%%%..%%%%%%.
........................................
*/
.p-freee-tax-advisory {
  padding-bottom: 0;
}
.p-freee-tax-advisory .c-fv__image {
  box-shadow: var(--shadow-default);
}
.p-freee-tax-advisory__problems {
  padding: clamp(8rem, 8.33vh, 9rem) 0;
}
@media screen and (max-width: 1024px) {
  .p-freee-tax-advisory__problems {
    padding: 4rem 0 5.5rem;
  }
}
.p-freee-tax-advisory__problems .c-heading {
  margin-bottom: 3.5rem;
}
.p-freee-tax-advisory__problems .c-service-problems__card {
  max-width: 1200px;
  position: relative;
  padding: 3rem clamp(4rem, 9.479vw, 18.2rem);
  border: none;
}
@media screen and (max-width: 1024px) {
  .p-freee-tax-advisory__problems .c-service-problems__card {
    padding-bottom: 11.8rem;
  }
}
.p-freee-tax-advisory__problems .c-service-problems__card:after {
  content: "";
  position: absolute;
  background: url(../../img/freee_tax_advisory/worry_man.svg) no-repeat center center;
  background-size: contain;
  width: clamp(140px, 8.55vw, 164px);
  max-width: 400px;
  height: auto;
  aspect-ratio: 164/233;
  bottom: 0;
  left: auto;
  right: 10%;
  transform: translate(0, 30%);
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .p-freee-tax-advisory__problems .c-service-problems__card:after {
    right: 50%;
    transform: translate(50%, 50%);
  }
}
.p-freee-tax-advisory__problems .c-service-problems__card::after {
  background: url(../../img/freee_tax_advisory/worry_man.svg) no-repeat center center;
  background-size: contain;
}
.p-freee-tax-advisory__problems .c-service-problems__card-list li {
  font-size: var(--fs20px);
  font-weight: bold;
  position: relative;
  z-index: 2;
}
.p-freee-tax-advisory__problems .c-service-problems__card-list span {
  color: var(--color-orange);
}
.p-freee-tax-advisory__problems .c-service-problems__card-left {
  border-right: none;
  padding-right: 0;
}
@media screen and (max-width: 1024px) {
  .p-freee-tax-advisory__problems .c-service-problems__card-left {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.p-freee-tax-advisory__feature {
  background: linear-gradient(#b7edef 0%, #dbfdff 19.66%, #fff 64.44%, #fff 100%);
}
@media screen and (max-width: 768px) {
  .p-freee-tax-advisory__feature {
    padding-top: 2.5rem;
  }
  .p-freee-tax-advisory__feature .c-service-feature__title {
    margin-bottom: 2.5rem;
  }
}
.p-freee-tax-advisory__feature-three-point-title {
  margin-top: 2rem;
}
.p-freee-tax-advisory__feature-three-point-title img {
  width: 100%;
  max-width: clamp(300px, 21.46vw, 412px);
}
.p-freee-tax-advisory__feature .c-heading {
  margin-bottom: 10vh;
}
@media screen and (max-width: 768px) {
  .p-freee-tax-advisory__feature .c-heading {
    margin-bottom: 2rem;
  }
}
.p-freee-tax-advisory__feature .c-service-feature__contents {
  margin-top: 12vh;
}
@media screen and (max-width: 768px) {
  .p-freee-tax-advisory__feature .c-service-feature__contents {
    margin-top: 6rem;
  }
}
.p-freee-tax-advisory__feature .c-service-feature__item .l-grid {
  width: 100%;
  max-width: clamp(800px, 57.14vw, 1086px);
  margin: 0 auto;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-freee-tax-advisory__feature .c-service-feature__item .l-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.p-freee-tax-advisory__feature .c-service-feature__item .l-grid > *:last-child:nth-child(odd) {
  grid-column: 1/-1;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-freee-tax-advisory__feature .c-service-feature__item .l-grid > *:last-child:nth-child(odd) {
    margin-top: 1rem;
  }
}
.p-freee-tax-advisory__point {
  padding-top: clamp(8rem, 18.9vh, 18rem);
}
@media screen and (max-width: 768px) {
  .p-freee-tax-advisory__point {
    padding-top: 4rem;
  }
}
.p-freee-tax-advisory__service {
  background: url(../../img/freee_tax_advisory/service_bg.jpg) no-repeat center center;
  background-size: cover;
}
.p-freee-tax-advisory__service-card {
  display: flex;
  background-color: var(--color-white);
  padding: 7rem 2rem;
}
@media screen and (max-width: 1024px) {
  .p-freee-tax-advisory__service-card {
    flex-direction: column;
    padding: 4rem 3rem;
  }
}
@media screen and (max-width: 768px) {
  .p-freee-tax-advisory__service-card {
    padding: 2rem;
  }
}
.p-freee-tax-advisory__service-item {
  flex: 1;
  padding: 0 clamp(3rem, 2.61vw, 5rem);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .p-freee-tax-advisory__service-item {
    padding: 0;
    text-align: center;
  }
}
.p-freee-tax-advisory__service-item:not(:last-child) {
  border-right: 0.5px solid var(--color-light-grey);
}
@media screen and (max-width: 1024px) {
  .p-freee-tax-advisory__service-item:not(:last-child) {
    border-right: none;
    border-bottom: 0.5px solid var(--color-light-grey);
    margin-bottom: 4rem;
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-freee-tax-advisory__service-item:not(:last-child) {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
}
.p-freee-tax-advisory__service-item-heading {
  margin-bottom: 3.5rem;
  text-align: center;
  min-height: 150px;
}
@media screen and (max-width: 1024px) {
  .p-freee-tax-advisory__service-item-heading {
    min-height: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-freee-tax-advisory__service-item-heading {
    margin-bottom: 2rem;
  }
}
.p-freee-tax-advisory__service-item-text {
  flex-grow: 1;
}
.p-freee-tax-advisory__service-item-icon {
  margin-bottom: 3rem;
  min-height: 77px;
}
@media screen and (max-width: 1024px) {
  .p-freee-tax-advisory__service-item-icon {
    min-height: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-freee-tax-advisory__service-item-icon {
    margin-bottom: 1rem;
  }
}
.p-freee-tax-advisory__service-item-title {
  font-size: var(--fs25px);
  font-weight: bold;
  min-height: 79px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .p-freee-tax-advisory__service-item-title {
    min-height: auto;
  }
}
.p-freee-tax-advisory__service-item-block {
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .p-freee-tax-advisory__service-item-block {
    margin-bottom: 1.5rem;
  }
}
.p-freee-tax-advisory__service-item-image {
  margin-top: clamp(3rem, 4.63vh, 5rem);
  text-align: center;
}
.p-freee-tax-advisory__service-item-description {
  font-size: var(--fs16px);
}
.p-freee-tax-advisory__service-item-emphasis {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-freee-tax-advisory__service-item-emphasis {
    font-size: 1.5rem;
  }
}
.p-freee-tax-advisory__service-item-list {
  font-size: var(--fs18px);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-freee-tax-advisory__service-item-list {
    font-size: 1.5rem;
  }
}
.p-freee-tax-advisory__service-item-list-item {
  font-size: var(--fs16px);
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .p-freee-tax-advisory__service-item-list-item {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-freee-tax-advisory__service-item-list-item {
    margin: 0 auto 1rem;
  }
}
.p-freee-tax-advisory__service-item-list-item:before {
  content: "⚫︎";
  color: var(--color-light-blue);
  font-size: 1rem;
  margin-right: 1rem;
  padding-top: 0.5rem;
}
.p-freee-tax-advisory__price .c-price-table__header,
.p-freee-tax-advisory__price .c-price-table__option-header {
  background-color: #01B1B9;
}
.p-freee-tax-advisory__price .c-price-table__cell--highlight {
  color: #01B1B9;
}
.p-freee-tax-advisory__price .c-price-table__option-label {
  text-align: center;
  background-color: transparent;
}
.p-freee-tax-advisory__cta {
  background: linear-gradient(#58d8de 0%, #01b1b9 100%);
}
.p-freee-tax-advisory__cta .c-service-cta__card::after {
  background: linear-gradient(#01b1b9 0%, #094272 100%);
}
.p-freee-tax-advisory__voice .c-service-voice__contents {
  width: 100%;
  max-width: clamp(800px, 51.46vw, 988px);
  margin: 0 auto;
  gap: clamp(8rem, 9.26vh, 10rem) clamp(2rem, 2.084vw, 4rem);
}
@media screen and (max-width: 768px) {
  .p-freee-tax-advisory__voice .c-service-voice__contents {
    gap: 4rem 2rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .p-freee-tax-advisory__voice .c-service-voice__contents .c-service-voice__card:nth-child(2) {
    grid-row: auto;
    grid-column: auto;
  }
}
.p-freee-tax-advisory__voice .c-service-voice__contents::before {
  width: 325px;
  height: 339px;
  background: url(../../img/freee_tax_advisory/voice_card_decoration_01_green.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-freee-tax-advisory__voice .c-service-voice__contents::before {
    width: 124px;
    height: 130px;
    background: url(../../img/freee_tax_advisory/voice_card_decoration_green_sp.png) no-repeat center center;
    background-size: contain;
  }
}
.p-freee-tax-advisory__voice .c-service-voice__contents::after {
  width: 329px;
  height: 339px;
  background: url(../../img/freee_tax_advisory/voice_card_decoration_02_green.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-freee-tax-advisory__voice .c-service-voice__contents::after {
    width: 124px;
    height: 130px;
    background: url(../../img/freee_tax_advisory/voice_card_decoration_green_sp.png) no-repeat center center;
    background-size: contain;
  }
}
.p-freee-tax-advisory__voice .c-service-voice__card {
  color: var(--color-white);
  min-height: 311px;
}
@media screen and (max-width: 768px) {
  .p-freee-tax-advisory__voice .c-service-voice__card {
    min-height: auto;
  }
}
.p-freee-tax-advisory__voice .c-service-voice__card-image {
  max-width: 121px;
}
.p-freee-tax-advisory__voice .c-service-voice__card--blue {
  background: linear-gradient(#75c1de 0%, #4fa3d2 100%);
}
.p-freee-tax-advisory__voice .c-service-voice__card--dark-blue {
  background: linear-gradient(#348dd1 0%, #094272 100%);
}
.p-freee-tax-advisory__voice .c-service-voice__card--cyan {
  background: linear-gradient(#58d8de 0%, #01b1b9 100%);
}
.p-freee-tax-advisory__voice .c-service-voice__card:nth-child(2) {
  grid-row: 1/3;
  grid-column: 2;
}
.p-freee-tax-advisory__voice .c-service-voice__card-company {
  flex-direction: column;
  gap: 1rem;
}
.p-freee-tax-advisory__voice .c-service-voice__card-company hr {
  border-bottom: 3px solid var(--color-white);
}
.p-freee-tax-advisory__flow {
  background: linear-gradient(#b7edef 0%, #dbfdff 19.66%, #fff 64.44%, #fff 100%);
}
.p-freee-tax-advisory__flow .c-service-flow__step-content {
  background-color: #C1F4F8;
}
.p-freee-tax-advisory__flow .c-service-flow__step-content {
  border-color: #01B1B9;
}
.p-freee-tax-advisory__faq {
  background-color: #F6F6F6;
}
.p-freee-tax-advisory__faq .c-heading--service:after {
  display: none;
}
.p-freee-tax-advisory__faq .c-service-faq__content {
  border-radius: 11px;
  box-shadow: none;
}

/*
.%%%%%...%%%%%....%%%%..
.%%..%%..%%..%%..%%..%%.
.%%%%%...%%%%%...%%..%%.
.%%..%%..%%......%%..%%.
.%%%%%...%%.......%%%%..
........................
*/
.p-bpo-support .c-fv {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .p-bpo-support .c-fv {
    padding-top: 7.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-bpo-support .c-btn--fv-cta {
    padding: 1rem 3rem;
  }
}
.p-bpo-support .c-comparison-table {
  width: 100%;
  max-width: clamp(800px, 62.5vw, 1200px);
  margin: clamp(4rem, 9.26vh, 10rem) auto;
}
@media screen and (max-width: 768px) {
  .p-bpo-support .c-comparison-table {
    max-width: 100%;
    margin: 3rem auto 0;
  }
}
.p-bpo-support .c-service-cta__card::after {
  background: linear-gradient(#01b1b9 0%, #094272 100%);
}
@media screen and (max-width: 1280px) {
  .p-bpo-support__fv .c-btn--fv-cta {
    transform: translate(0, -30%);
  }
}
@media screen and (max-width: 1024px) {
  .p-bpo-support__fv .c-btn--fv-cta {
    padding: 1rem 3rem;
  }
}
@media screen and (max-width: 768px) {
  .p-bpo-support__fv .c-btn--fv-cta {
    display: none !important;
  }
}
.p-bpo-support__problems.c-service-problems .c-heading {
  width: 100%;
  max-width: clamp(900px, 62.5vw, 1200px);
  margin: 0 auto clamp(2rem, 4.16vw, 4.5rem);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__problems.c-service-problems .c-heading {
    max-width: 100%;
  }
}
.p-bpo-support__problems-image {
  width: 100%;
  max-width: clamp(800px, 58vw, 1200px);
  margin: 0 auto;
}
.p-bpo-support__feature {
  padding: clamp(12rem, 18.52vh, 20rem) 0 clamp(8rem, 14.54vh, 15.7rem);
  background: url(../../img/bpo_support/feature_bg.png) no-repeat center top;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-bpo-support__feature {
    background: url(../../img/bpo_support/feature_bg_sp.png) no-repeat center top;
    background-size: cover;
  }
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature {
    padding: 8rem 0 6rem;
  }
}
.p-bpo-support__feature:before {
  content: "";
  position: absolute;
  width: 65px;
  height: 89px;
  background: url(../../img/common/arrow_down_blue.svg) no-repeat center center;
  background-size: contain;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature:before {
    width: 40px;
    height: 53px;
    background: url(../../img/common/arrow_down_blue_sp.png) no-repeat center center;
    background-size: contain;
  }
}
.p-bpo-support__feature .c-heading--service__title {
  width: 100%;
  max-width: clamp(900px, 62.5vw, 1200px);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature .c-heading--service__title {
    max-width: 100%;
  }
}
.p-bpo-support__feature .c-service-feature__title-text img {
  width: 100%;
  max-width: clamp(600px, 50vw, 960px);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature .c-service-feature__title-text img {
    max-width: 100%;
  }
}
.p-bpo-support__feature-heading-phrase {
  width: 100%;
  max-width: clamp(800px, 52vw, 983px);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-heading-phrase {
    max-width: 100%;
  }
}
.p-bpo-support__feature-heading-descriptiion {
  font-size: var(--fs20px);
  line-height: 1.9;
  text-align: center;
  margin: clamp(2rem, 3.71vh, 4rem) auto 0;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-heading-descriptiion {
    font-size: 1.4rem;
    text-align: left;
    margin: 0.5rem auto 0;
  }
}
.p-bpo-support__feature-heading-text {
  text-align: center;
  margin: 1.5rem 0 clamp(6rem, 9.26vh, 10rem);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-heading-text {
    margin: 1.5rem 0;
  }
}
.p-bpo-support__feature-heading-text p {
  font-size: var(--fs25px);
}
.p-bpo-support__feature-contents {
  padding-top: clamp(6rem, 9.26vh, 10rem);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-contents {
    padding-top: 6rem;
  }
}
.p-bpo-support__feature .l-flex {
  width: 100%;
  max-width: clamp(800px, 54vw, 1035px);
  margin: 0 auto;
  gap: clamp(4rem, 5.21vw, 10rem);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature .l-flex {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-bpo-support__feature .l-flex .c-service-feature__item img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}
.p-bpo-support__feature .l-flex > * {
  flex: 0 1 calc((100% - clamp(4rem, 5.21vw, 10rem)) / 2);
  min-width: 0;
}
.p-bpo-support__feature .p-bpo-support__feature-service-list .l-flex {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  gap: clamp(3rem, 2.61vw, 5rem);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature .p-bpo-support__feature-service-list .l-flex {
    flex-direction: column;
    gap: 3rem;
  }
}
.p-bpo-support__feature .p-bpo-support__feature-service-list .l-flex .c-service-feature__item img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}
.p-bpo-support__feature .p-bpo-support__feature-service-list .l-flex > * {
  flex: 0 1 calc((100% - clamp(3rem, 2.61vw, 5rem)) / 2);
  min-width: 0;
}
.p-bpo-support__feature-service-content {
  padding-top: clamp(6rem, 9.23vh, 10rem);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-content {
    padding-top: 5rem;
  }
}
.p-bpo-support__feature-service-circles {
  display: flex;
  justify-content: center;
  gap: clamp(3rem, 3.125vw, 6rem);
  margin: 6rem 0;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-circles {
    gap: 1rem;
    margin: 0;
  }
}
.p-bpo-support__feature-service-circle-item {
  border-radius: 50%;
  width: clamp(200px, 12.5vw, 240px);
  height: clamp(200px, 12.5vw, 240px);
  background: linear-gradient(#64a4f5 0%, #1676e6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-circle-item {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
}
.p-bpo-support__feature-service-circle-text {
  font-size: var(--fs30px);
  font-weight: bold;
  color: var(--color-white);
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-circle-text {
    font-size: 1.4rem;
  }
}
.p-bpo-support__feature-service-highlight {
  margin: 4rem auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-highlight {
    margin: 2rem auto 0;
  }
}
.p-bpo-support__feature-service-highlight-text {
  display: inline-block;
  border-radius: 8px;
  padding: 1.5rem 3rem;
  font-size: var(--fs34px);
  line-height: 1.6;
  font-family: var(--font-serif);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-highlight-text {
    padding: 0 2rem;
    font-size: 2rem;
  }
  .p-bpo-support__feature-service-highlight-text:last-child {
    margin-top: 1rem;
  }
}
.p-bpo-support__feature-service-highlight-emphasis {
  font-size: var(--fs34px);
  font-weight: 500;
  background-color: var(--color-white);
  padding: 0.3rem 1rem;
  border: 1px solid var(--color-black);
  margin-right: 1rem;
}
.p-bpo-support__feature-service-highlight-emphasis--dots {
  background-image: radial-gradient(circle at center, orange 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-highlight-emphasis {
    font-size: 1.8rem;
  }
}
.p-bpo-support__feature-service-description {
  text-align: center;
  margin: 4rem 0 6rem;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-description {
    margin: 2rem 0 3rem;
    text-align: left;
  }
}
.p-bpo-support__feature-service-description-text {
  font-size: var(--fs20px);
  line-height: 2;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-description-text {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.p-bpo-support__feature-service-description-text:last-child {
  margin-bottom: 0;
}
.p-bpo-support__feature-service-description-underline {
  background: linear-gradient(transparent 60%, #FAC26B 60%);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-description-underline {
    display: inline;
    background: transparent;
  }
}
.p-bpo-support__feature-service-table {
  margin: clamp(3rem, 5.56vw, 6rem) 0;
  font-family: var(--font-serif);
  font-size: var(--fs24px);
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-table {
    margin: 0;
  }
}
.p-bpo-support__feature-service-table-main {
  width: 100%;
  border-collapse: collapse;
}
.p-bpo-support__feature-service-table-header {
  padding: 2rem 1.5rem;
  font-size: clamp(1.6rem, 1.15vw, 2.2rem);
  font-weight: bold;
  text-align: left;
  border-bottom: 1px solid #999999;
  vertical-align: middle;
}
.p-bpo-support__feature-service-table-header:first-child {
  width: 27%;
}
.p-bpo-support__feature-service-table-header:nth-child(3) {
  width: 23%;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-table-header {
    padding: 1.5rem 1rem;
    font-size: 1.4rem;
  }
}
.p-bpo-support__feature-service-table-cell {
  padding: 2rem 1.5rem;
  font-size: clamp(1.4rem, 0.94vw, 1.8rem);
  text-align: left;
  border-bottom: 1px solid #999999;
  line-height: 1.6;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-table-cell {
    padding: 0.5rem 1rem;
    font-size: 1.4rem;
  }
}
.p-bpo-support__feature-service-list {
  margin-top: clamp(6rem, 9.3vh, 10rem);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-list {
    margin-top: 5rem;
  }
}
.p-bpo-support__feature-service-list-heading {
  text-align: center;
  margin-bottom: 8rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-list-heading {
    margin-bottom: 2rem;
  }
}
.p-bpo-support__feature-service-list-heading::before, .p-bpo-support__feature-service-list-heading::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background-image: linear-gradient(to right, transparent 0%, var(--color-black) 20%, var(--color-black) 80%, transparent 100%);
  background-size: 10px 1px;
  background-repeat: repeat-x;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-list-heading::before, .p-bpo-support__feature-service-list-heading::after {
    width: 30%;
  }
}
.p-bpo-support__feature-service-list-heading::before {
  left: 0;
}
.p-bpo-support__feature-service-list-heading::after {
  right: 0;
}
.p-bpo-support__feature-service-list-title {
  font-size: var(--fs30px);
  font-family: var(--font-serif);
  font-weight: bold;
  color: var(--color-light-black);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-list-title {
    font-size: 1.8rem;
  }
}
.p-bpo-support__feature-service-item {
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-item {
    margin-bottom: 4rem;
  }
}
.p-bpo-support__feature-service-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-item-header {
    margin-bottom: 1.5rem;
  }
}
.p-bpo-support__feature-service-item-heading {
  flex: 1;
}
.p-bpo-support__feature-service-item-number {
  font-size: clamp(6rem, 5.21vw, 10rem);
  font-family: var(--font-cormorant);
  font-weight: bold;
  color: #E8F4FC;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-item-number {
    font-size: 5rem;
  }
}
.p-bpo-support__feature-service-item-icon {
  width: 142px;
  height: 142px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-item-icon {
    width: 80px;
    height: 80px;
  }
}
.p-bpo-support__feature-service-item-title {
  font-size: var(--fs30px);
  font-family: var(--font-serif);
  font-weight: bold;
  color: var(--color-light-black);
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-item-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
.p-bpo-support__feature-service-item-description {
  font-size: var(--fs18px);
  line-height: 1.8;
  color: var(--color-black);
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-item-description {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}
.p-bpo-support__feature-service-item-details {
  padding: 2.5rem 2rem;
}
.p-bpo-support__feature-service-item-details .l-flex {
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-item-detail-block {
    padding: 2rem 1.5rem;
  }
}
.p-bpo-support__feature-service-item-detail-block--full {
  flex: 1 1 100%;
}
.p-bpo-support__feature-service-item-detail-title {
  font-size: var(--fs18px);
  font-family: var(--font-noto);
  font-weight: bold;
  color: var(--color-light-black);
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.4;
  background-color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-item-detail-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}
.p-bpo-support__feature-service-item-detail-subtitle {
  font-size: var(--fs16px);
  font-family: var(--font-noto);
  font-weight: bold;
  color: var(--color-light-black);
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.p-bpo-support__feature-service-item-detail-subtitle:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-item-detail-subtitle {
    font-size: 1.4rem;
    margin-top: 1.5rem;
  }
}
.p-bpo-support__feature-service-item-detail-text {
  font-size: var(--fs14px);
  line-height: 1.8;
  color: var(--color-light-black);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-item-detail-text {
    font-size: 1.3rem;
  }
}
.p-bpo-support__feature-service-item-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-bpo-support__feature-service-item-detail-list li {
  font-size: var(--fs14px);
  line-height: 1.8;
  color: var(--color-light-black);
  margin-bottom: 1rem;
  padding-left: 1rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__feature-service-item-detail-list li {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
}
.p-bpo-support__feature-service-item-detail-list li:last-child {
  margin-bottom: 0;
}
.p-bpo-support__feature-service-item-detail-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  font-weight: bold;
}
.p-bpo-support__strength {
  position: relative;
  z-index: 1;
  padding: 8rem 0;
  background: linear-gradient(#b7edef 0%, #dbfdff 19.66%, #fff 64.44%, #fff 100%);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__strength {
    padding: 4rem 0;
  }
}
.p-bpo-support__strength-list {
  width: 100%;
  max-width: clamp(900px, 57.97vw, 1113px);
  margin: 6rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__strength-list {
    margin-top: 3rem;
  }
}
.p-bpo-support__strength-item {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 5vw, 6rem);
  margin-bottom: clamp(8rem, 12.8vh, 12rem);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-bpo-support__strength-item {
    align-items: flex-start;
    margin-bottom: clamp(6rem, 9.23vh, 10rem);
  }
}
.p-bpo-support__strength-item:nth-child(odd)::after {
  position: absolute;
  content: "";
  background: url(../../img/common/slash_left.svg) no-repeat center center;
  background-size: contain;
  width: clamp(50px, 3.75vw, 72px);
  height: auto;
  aspect-ratio: 1/1;
  bottom: -6%;
  left: 46%;
  transform: translate(0, 100%);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__strength-item:nth-child(odd)::after {
    display: none;
  }
}
.p-bpo-support__strength-item:nth-child(even)::after {
  position: absolute;
  content: "";
  background: url(../../img/common/slash_right.svg) no-repeat center center;
  background-size: contain;
  width: clamp(50px, 3.75vw, 72px);
  height: auto;
  aspect-ratio: 1/1;
  bottom: -6%;
  left: 48%;
  transform: translate(0, 100%);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__strength-item:nth-child(even)::after {
    display: none;
  }
}
.p-bpo-support__strength-item:last-child::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__strength-item {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
  }
}
.p-bpo-support__strength-item:last-child {
  margin-bottom: 0;
}
.p-bpo-support__strength-item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__strength-item--reverse {
    flex-direction: column;
  }
}
.p-bpo-support__strength-item-image {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__strength-item-image {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
}
.p-bpo-support__strength-item-image img {
  width: 100%;
  height: auto;
  display: block;
}
.p-bpo-support__strength-item-content {
  flex: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__strength-item-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .p-bpo-support__strength-item-number {
    flex-shrink: 0;
    width: 100%;
    max-width: 53px;
    height: auto;
  }
}
.p-bpo-support__strength-item-title {
  font-size: var(--fs38px);
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.45;
  margin: 2rem 0 3rem;
  color: var(--color-light-black);
}
@media screen and (max-width: 1024px) {
  .p-bpo-support__strength-item-title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-bpo-support__strength-item-title {
    font-size: 1.8rem;
    margin: 0;
  }
}
.p-bpo-support__strength-item-description {
  border: 2px solid #707070;
  padding: clamp(1.5rem, 1.05vw, 2rem) clamp(2rem, 1.31vw, 2.5rem);
  font-size: var(--fs18px);
  line-height: 1.77;
  min-height: 150px;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__strength-item-description {
    padding: 1rem;
    min-height: auto;
    border-width: 1px;
  }
}
.p-bpo-support__strength-item-description p {
  font-size: 1.6rem;
  line-height: 1.75;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__strength-item-description p {
    font-size: 1.4rem;
  }
}
.p-bpo-support__case {
  position: relative;
  z-index: 1;
  background: url(../../img/bpo_support/case_bg.jpg) no-repeat center top;
  background-size: cover;
  padding: clamp(12rem, 14.9vh, 16rem) 0 clamp(16rem, 18.6vh, 20rem);
}
@media screen and (max-width: 1280px) {
  .p-bpo-support__case {
    padding: 8rem 0 clamp(16rem, 20.31vh, 22rem);
  }
}
@media screen and (max-width: 1024px) {
  .p-bpo-support__case {
    padding: 8rem 0 15rem;
  }
}
@media screen and (max-width: 768px) {
  .p-bpo-support__case {
    padding: 6.8rem 0 2rem;
    background: url(../../img/bpo_support/case_bg_sp.jpg) no-repeat center top;
    background-size: cover;
  }
  .p-bpo-support__case-note-sp {
    margin-top: 4rem;
    font-size: 1.2rem;
  }
}
.p-bpo-support__case-cards {
  width: 100%;
  max-width: clamp(1000px, 72.56vw, 1393px);
  margin: clamp(3rem, 3.125vw, 6rem) auto clamp(8rem, 12.1vh, 13rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 3.13vw, 4rem);
}
@media screen and (max-width: 1024px) {
  .p-bpo-support__case-cards {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin: 4rem 0 8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-bpo-support__case-cards {
    margin: 4rem 0 6rem;
  }
}
.p-bpo-support__case-card {
  display: flex;
  align-items: flex-start;
  background-color: var(--color-white);
  padding: clamp(3rem, 2.71vw, 5.2rem) clamp(3rem, 2.71vw, 5.2rem) clamp(3rem, 2.71vw, 5.2rem) clamp(2rem, 1.31vw, 2.5rem);
  border-radius: 12px;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__case-card {
    flex-direction: column;
    padding: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-bpo-support__case-card-heading {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0;
  }
}
.p-bpo-support__case-card-logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__case-card-logo {
    width: 100px;
    height: 100px;
  }
}
.p-bpo-support__case-card-logo img {
  max-width: 80%;
  max-height: 80%;
}
.p-bpo-support__case-card-content {
  flex: 1;
  min-width: 0;
}
.p-bpo-support__case-card-company {
  font-size: var(--fs30px);
  font-family: var(--font-serif);
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--color-light-black);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__case-card-company {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
}
.p-bpo-support__case-card-description {
  font-size: var(--fs20px);
  line-height: 1.8;
  color: var(--color-light-black);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__case-card-description {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-bpo-support__case-recommend-inner {
    padding: 0 5%;
  }
}
.p-bpo-support__case-recommend-wrapper {
  width: 100%;
  max-width: clamp(1000px, 66vw, 1266px);
  margin: 0 auto;
  position: relative;
  background-color: rgba(1, 177, 185, 0.8);
  border-radius: 12px;
  padding: clamp(4rem, 6.3vh, 6.8rem) 0 clamp(6rem, 9.3vh, 10rem);
}
@media screen and (max-width: 1024px) {
  .p-bpo-support__case-recommend-wrapper {
    padding: 5rem 0 7rem;
  }
}
@media screen and (max-width: 768px) {
  .p-bpo-support__case-recommend-wrapper {
    padding: 5rem 1rem;
  }
}
.p-bpo-support__case-recommend-title {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  max-width: 90%;
  transform: translate(-50%, -50%);
  padding: 1.5rem 8rem;
  text-align: center;
  background-color: var(--color-white);
  color: var(--color-light-black);
  font-size: var(--fs36px);
  font-weight: 600;
  font-family: var(--font-serif);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__case-recommend-title {
    font-size: 2rem;
    padding: 1rem;
  }
}
.p-bpo-support__case-recommend-content {
  width: 100%;
  max-width: clamp(800px, 50vw, 942px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__case-recommend-content {
    flex-direction: column;
    gap: 1rem;
  }
}
.p-bpo-support__case-recommend-items {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__case-recommend-items {
    gap: 2rem;
    width: 100%;
  }
}
.p-bpo-support__case-recommend-item {
  width: 100%;
  background-color: var(--color-white);
  border-radius: 46px;
  text-align: center;
  font-size: var(--fs22px);
  font-weight: bold;
  padding: 2rem 3rem;
  line-height: 1.6;
  color: var(--color-light-black);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__case-recommend-item {
    font-size: 1.6rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    line-height: 1.3;
  }
}
.p-bpo-support__case-recommend-emphasis {
  color: #F39800;
}
.p-bpo-support__case-recommend-image {
  flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__case-recommend-image {
    width: 100%;
    height: auto;
    max-width: 183px;
  }
}
.p-bpo-support__case-recommend-image img {
  width: 100%;
  height: auto;
  display: block;
}
.p-bpo-support__case-recommend-cta .c-btn--fv-cta {
  position: absolute;
  width: 100%;
  max-width: clamp(500px, 45.7vw, 877px);
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 40%);
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__case-recommend-cta .c-btn--fv-cta {
    max-width: 269px;
    margin-top: 0;
    border-width: 3px !important;
    padding: 0.5rem 3rem;
  }
}
@media screen and (max-width: 768px) {
  .p-bpo-support__case-recommend-cta .c-btn__text {
    line-height: 1.3;
  }
}
.p-bpo-support__flow {
  padding: clamp(8rem, 10.2vh, 11rem) 0 clamp(10rem, 14.17vh, 15.3rem);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__flow {
    padding: 4rem 0 5rem;
  }
  .p-bpo-support__flow-heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}
.p-bpo-support__flow-steps {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__flow-steps {
    margin-top: 4rem;
  }
}
.p-bpo-support__flow-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #E8F8F9;
  border: 3px dashed #01B1B9;
  border-radius: 32px;
  padding: clamp(2.5rem, 3.25vw, 3.5rem) clamp(4rem, 3.39vw, 6.5rem) clamp(2.5rem, 3.25vw, 3.5rem) clamp(2rem, 2.6vw, 5rem);
  position: relative;
  min-height: 185px;
}
@media screen and (max-width: 1024px) {
  .p-bpo-support__flow-step {
    min-height: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-bpo-support__flow-step {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
}
.p-bpo-support__flow-step-number {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__flow-step-number {
    width: 100%;
    max-width: 41px;
    height: auto;
  }
}
.p-bpo-support__flow-step-content {
  flex: 1;
  min-width: 0;
}
.p-bpo-support__flow-step-title {
  font-size: var(--fs30px);
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-light-black);
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__flow-step-title {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
}
.p-bpo-support__flow-step-text {
  font-size: var(--fs20px);
  line-height: 1.8;
  color: var(--color-light-black);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__flow-step-text {
    font-size: 1.4rem;
  }
}
.p-bpo-support__flow-arrow {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__flow-arrow {
    height: 40px;
  }
}
.p-bpo-support__flow-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 81px;
  background: url(../../img/common/faq_arrow_bottom.svg) no-repeat center center;
  background-size: contain;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__flow-arrow::after {
    background: url(../../img/common/faq_arrow_bottom_sp.png) no-repeat center center;
    background-size: contain;
    width: 20px;
    height: 40px;
    top: 23%;
  }
}
.p-bpo-support__faq {
  padding: clamp(8rem, 10.19vh, 11rem) 0 clamp(12rem, 21.3vh, 23rem);
  background: #F6F6F6;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__faq {
    padding: 4rem 0;
  }
}
.p-bpo-support__faq-list {
  width: 100%;
  max-width: clamp(800px, 57.3vw, 1100px);
  margin: clamp(6rem, 10vh, 10.8rem) auto 0;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__faq-list {
    margin-top: 4rem;
  }
}
.p-bpo-support__faq-item {
  margin-bottom: clamp(6rem, 8.34vh, 9rem);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__faq-item {
    margin-bottom: 3rem;
  }
}
.p-bpo-support__faq-item:last-child {
  margin-bottom: 0;
}
.p-bpo-support__faq-text {
  margin: auto;
}
.p-bpo-support__faq-question, .p-bpo-support__faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__faq-question, .p-bpo-support__faq-answer {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
.p-bpo-support__faq-label {
  width: 100%;
  max-width: 37px;
  padding-top: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .p-bpo-support__faq-label {
    padding-top: 0.5rem;
  }
}
.p-bpo-support__faq-question .p-bpo-support__faq-text {
  font-size: var(--fs30px);
  font-family: var(--font-serif);
  font-weight: bold;
  line-height: 1.6;
  color: var(--color-light-black);
}
.p-bpo-support__faq-answer .p-bpo-support__faq-text {
  font-size: var(--fs20px);
  color: var(--color-light-black);
}
.p-bpo-support__faq-answer {
  margin-bottom: 0;
}
.p-bpo-support__faq-text {
  flex: 1;
  font-size: var(--fs18px);
  line-height: 1.8;
  color: var(--color-light-black);
  padding-top: 0.8rem;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__faq-text {
    font-size: 1.4rem;
    padding-top: 0.5rem;
  }
}
.p-bpo-support__contact {
  padding: clamp(8rem, 12.69vh, 13.7rem) 0 0;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__contact {
    padding: 4rem 0 0;
  }
}
.p-bpo-support__contact-title {
  font-size: var(--fs38px);
  font-family: var(--font-serif);
  font-weight: 700;
  text-align: center;
  color: var(--color-light-black);
  margin-bottom: clamp(4rem, 5.56vw, 6rem);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__contact-title {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
}
.p-bpo-support__contact-form {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.p-bpo-support__contact-field {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: clamp(3rem, 4.63vh, 5rem);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__contact-field {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
}
.p-bpo-support__contact-label {
  flex: 0 0 180px;
  font-size: var(--fs16px);
  font-weight: 500;
  color: var(--color-light-black);
  padding-top: 1.2rem;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__contact-label {
    flex: none;
    font-size: 1.4rem;
    padding-top: 0;
  }
}
.p-bpo-support__contact-required {
  color: #E53935;
  margin-left: 0.3rem;
  font-size: 0.9em;
}
.p-bpo-support__contact-input-wrapper {
  flex: 1;
  min-width: 0;
  width: 100%;
}
.p-bpo-support__contact-input, .p-bpo-support__contact-textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  font-size: var(--fs16px);
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  background: var(--color-white);
  transition: border-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__contact-input, .p-bpo-support__contact-textarea {
    font-size: 1.4rem;
    padding: 1rem 1.2rem;
  }
}
.p-bpo-support__contact-input:focus, .p-bpo-support__contact-textarea:focus {
  outline: none;
  border-color: #01B1B9;
}
.p-bpo-support__contact-textarea {
  resize: vertical;
  min-height: 200px;
  font-family: inherit;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__contact-textarea {
    min-height: 150px;
  }
}
.p-bpo-support__contact-radio-group {
  flex: 1;
  display: flex;
  gap: 3rem;
  padding-top: 1.2rem;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__contact-radio-group {
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 0;
  }
}
.p-bpo-support__contact-radio {
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__contact-radio {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.p-bpo-support__contact-radio input[type=radio] {
  width: 20px;
  height: 20px;
  margin-right: 0.8rem;
  cursor: pointer;
  accent-color: #01B1B9;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__contact-radio input[type=radio] {
    width: 18px;
    height: 18px;
  }
}
.p-bpo-support__contact-radio span {
  font-size: var(--fs16px);
  color: var(--color-light-black);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__contact-radio span {
    margin: 0;
  }
}
.p-bpo-support__contact-radio span label {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__contact-radio span {
    font-size: 1.4rem;
  }
}
.p-bpo-support__contact-privacy {
  margin: 4rem 0 3rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__contact-privacy {
    margin: 3rem 0 2.5rem;
  }
}
.p-bpo-support__contact-privacy-link {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  display: block;
  font-size: var(--fs16px);
  color: #1676E6;
  text-decoration: underline;
  margin-bottom: 1.5rem;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__contact-privacy-link {
    font-size: 1.4rem;
  }
}
.p-bpo-support__contact-privacy-link:hover {
  opacity: 0.7;
}
.p-bpo-support__contact-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.p-bpo-support__contact-checkbox .wpcf7-form-control-wrap {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.p-bpo-support__contact-checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-right: 0.8rem;
  cursor: pointer;
  accent-color: #01B1B9;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__contact-checkbox input[type=checkbox] {
    width: 18px;
    height: 18px;
  }
}
.p-bpo-support__contact-checkbox span {
  font-size: var(--fs16px);
  color: var(--color-light-black);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__contact-checkbox span {
    font-size: 1.3rem;
  }
}
.p-bpo-support__contact-submit {
  width: 100%;
  max-width: clamp(400px, 35vw, 667px);
  margin: 0 auto;
  text-align: center;
  margin-top: clamp(4rem, 6.85vh, 7.4rem);
  position: relative;
}
.p-bpo-support__contact-submit .wpcf7-submit {
  max-width: 100% !important;
  padding: clamp(1.5rem, 2.5vh, 2.5rem) clamp(4rem, 4.17vw, 8rem);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__contact-submit .wpcf7-submit {
    padding: 1.5rem 3rem;
  }
}
@media screen and (max-width: 768px) {
  .p-bpo-support__contact-submit {
    max-width: 282px;
  }
}
.p-bpo-support__contact-submit::after {
  content: "";
  position: absolute;
  top: 37%;
  right: 2.5rem;
  width: 17px;
  height: 29px;
  background: url(../../img/common/arrow_right_white_2.svg) no-repeat center;
  background-size: contain;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__contact-submit::after {
    display: none;
  }
}
.p-bpo-support__thanks {
  padding: clamp(20rem, 26vh, 28rem) 0 clamp(12rem, 13.89vh, 15rem);
}
@media screen and (max-width: 1024px) {
  .p-bpo-support__thanks {
    padding: 18rem 0 8rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-bpo-support__thanks {
    padding: 16rem 0 8rem;
  }
}
.p-bpo-support__thanks-heading {
  margin-bottom: 5rem;
}
.p-bpo-support__thanks-heading h2 {
  font-size: var(--fs38px);
  font-family: var(--font-serif);
  font-weight: 700;
  text-align: center;
  color: var(--color-light-black);
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__thanks-heading h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}
.p-bpo-support__thanks-text {
  margin-bottom: 7rem;
}
.p-bpo-support__thanks-text p {
  font-size: var(--fs24px);
  text-align: center;
  color: var(--color-light-black);
  line-height: 1.9;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-bpo-support__thanks-text p {
    font-size: 1.4rem;
  }
}
.p-bpo-support__thanks .c-btn {
  max-width: clamp(400px, 26.1vw, 500px);
}
@media screen and (max-width: 768px) {
  .p-bpo-support__thanks .c-btn {
    max-width: 300px;
  }
}

/*
.%%%%%...%%%%%%...%%%%...%%%%%...%%..%%..%%%%%%..%%%%%%.
.%%..%%..%%......%%..%%..%%..%%..%%..%%....%%......%%...
.%%%%%...%%%%....%%......%%%%%...%%..%%....%%......%%...
.%%..%%..%%......%%..%%..%%..%%..%%..%%....%%......%%...
.%%..%%..%%%%%%...%%%%...%%..%%...%%%%...%%%%%%....%%...
........................................................
*/
.p-recruit__fv {
  background: linear-gradient(#eef7ff 0%, #abdaff 100%);
  padding: var(--header-height) 0 20rem;
}
@media screen and (max-width: 1024px) {
  .p-recruit__fv {
    padding: 6.9rem 0 8.6rem;
  }
}
.p-recruit__fv-image {
  position: relative;
}
.p-recruit__fv-image--top {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-recruit__fv-image--top {
    text-align: center;
    padding-left: 2rem;
  }
}
.p-recruit__fv-image--bottom {
  margin-top: 12.3vh;
}
@media screen and (max-width: 1024px) {
  .p-recruit__fv-image--bottom {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__fv-image--bottom {
    margin-top: 3rem;
  }
}
.p-recruit__fv-text {
  margin-top: -500px;
}
@media screen and (max-width: 1280px) {
  .p-recruit__fv-text {
    margin-top: -400px;
  }
}
@media screen and (max-width: 1024px) {
  .p-recruit__fv-text {
    margin-top: -300px;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__fv-text {
    margin-top: 2rem;
  }
  .p-recruit__fv-text-item {
    text-align: center;
  }
  .p-recruit__fv-text-item:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.p-recruit__support {
  background: linear-gradient(to top, #b7edef 0%, #dbfdff 19.66%, #fff 64.44%, #fff 100%);
  position: relative;
  padding: 11.11vh 0 16.6vh;
}
@media screen and (max-width: 1024px) {
  .p-recruit__support {
    padding: 8rem 0 12rem;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__support {
    padding: 4rem 0 7.7rem;
  }
}
.p-recruit__support-title {
  width: 100%;
  max-width: clamp(400px, 30.73vw, 590px);
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-recruit__support-title {
    max-width: 100%;
    padding: 0 6%;
  }
}
.p-recruit__support .l-flex {
  gap: clamp(4rem, 4.167vw, 8rem) clamp(1rem, 1.04vw, 2rem);
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-recruit__support .l-flex {
    flex-direction: column;
    gap: 3rem;
  }
}
.p-recruit__support .l-flex:after {
  content: "";
  position: absolute;
  width: 17.4vw;
  height: auto;
  aspect-ratio: 334/294;
  background: url(../../img/recruit/support_decoration_03.svg) no-repeat center center;
  background-size: contain;
  bottom: 0;
  right: -2.4vw;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .p-recruit__support .l-flex:after {
    display: none;
  }
}
.p-recruit__support:before {
  content: "";
  position: absolute;
  width: 9vw;
  height: auto;
  aspect-ratio: 173/169;
  background: url(../../img/recruit/support_decoration_01.svg) no-repeat center center;
  background-size: contain;
  top: 17vh;
  left: 10.36vw;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .p-recruit__support:before {
    display: none;
  }
}
.p-recruit__support:after {
  content: "";
  position: absolute;
  width: 12.3vw;
  height: auto;
  aspect-ratio: 236/58;
  background: url(../../img/recruit/support_decoration_02.svg) no-repeat center center;
  background-size: contain;
  top: 75px;
  right: 10.65vw;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .p-recruit__support:after {
    display: none;
  }
}
.p-recruit__support-content {
  margin-top: 14.81vh;
}
@media screen and (max-width: 1024px) {
  .p-recruit__support-content {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__support-content {
    margin-top: 3rem;
  }
}
.p-recruit__case {
  background: linear-gradient(#fffce3 0%, #dbffd1 100%);
  padding: 19.44vh 0 12.96vh;
}
@media screen and (max-width: 1024px) {
  .p-recruit__case {
    padding: 12rem 0 15rem;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__case {
    padding: 4rem 0 6.8rem;
  }
}
.p-recruit__case-heading {
  position: relative;
  width: 100%;
  max-width: clamp(600px, 44vw, 843px);
  margin: 0 auto;
}
.p-recruit__case-heading:after {
  content: "";
  position: absolute;
  width: 7.29vw;
  height: auto;
  aspect-ratio: 140/136;
  background: url(../../img/recruit/case_decoration_01.svg) no-repeat center center;
  background-size: contain;
  top: 0;
  right: -11.6vw;
  z-index: 1;
  transform: translate(100%, 0);
}
@media screen and (max-width: 1024px) {
  .p-recruit__case-heading:after {
    display: none;
  }
}
.p-recruit__case-contents {
  margin-top: 10.18vh;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-recruit__case-contents {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__case-contents {
    margin-top: 1rem;
  }
}
.p-recruit__case-contents:before {
  content: "";
  position: absolute;
  width: 12.65vw;
  height: auto;
  aspect-ratio: 243/58;
  background: url(../../img/recruit/case_decoration_02.svg) no-repeat center center;
  background-size: contain;
  top: 25%;
  left: -5.2vw;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .p-recruit__case-contents:before {
    display: none;
  }
}
.p-recruit__case-contents:after {
  content: "";
  position: absolute;
  width: 10.46vw;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../../img/recruit/case_decoration_03.svg) no-repeat center center;
  background-size: contain;
  bottom: 0;
  right: 0;
  z-index: 1;
  transform: translate(40%, -10%);
}
@media screen and (max-width: 1024px) {
  .p-recruit__case-contents:after {
    display: none;
  }
}
.p-recruit__case-item {
  margin-top: 6rem;
  width: 100%;
  max-width: clamp(900px, 62.5vw, 1200px);
}
.p-recruit__case-item:nth-child(odd) {
  margin-right: auto;
}
.p-recruit__case-item:nth-child(even) {
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .p-recruit__case-item {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__case-item {
    margin-top: 0;
    margin-bottom: 1rem;
  }
}
.p-recruit__case .c-btn {
  box-shadow: none;
  max-width: 463px;
  margin: 11.7rem auto 0;
}
@media screen and (max-width: 1024px) {
  .p-recruit__case .c-btn {
    margin: 4.5rem auto 0;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__case .c-btn {
    max-width: 296px;
    margin: 4rem auto 0;
    font-size: 1.8rem;
  }
}
.p-recruit__system {
  padding: 20vh 0 30vh;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-recruit__system {
    padding: 12rem 0 15rem;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__system {
    padding: 4rem 0 5rem;
  }
  .p-recruit__system:before {
    content: "";
    position: absolute;
    width: 67px;
    height: 62px;
    background: url(../../img/recruit/system_decoration_01_sp.png) no-repeat center center;
    background-size: contain;
    top: 0;
    left: 6%;
    z-index: 1;
    transform: translate(0, -70%);
  }
}
.p-recruit__system-heading {
  position: relative;
  width: 100%;
  max-width: clamp(550px, 36.1vw, 693px);
  margin: 0 auto;
}
.p-recruit__system-heading:before {
  content: "";
  position: absolute;
  width: 10vw;
  height: auto;
  aspect-ratio: 192/179;
  background: url(../../img/recruit/system_decoration_01.svg) no-repeat center center;
  background-size: contain;
  top: -50%;
  left: -9.21vw;
  z-index: -1;
  transform: translate(-100%, -50%);
}
@media screen and (max-width: 768px) {
  .p-recruit__system-heading:before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__system-content {
    margin-top: 3rem;
  }
}
.p-recruit__system-content--02 {
  margin-top: clamp(4rem, 6vh, 6.4rem);
}
.p-recruit__system-content-wrapper {
  position: relative;
  margin-top: clamp(6rem, 10.18vh, 11rem);
}
@media screen and (max-width: 1024px) {
  .p-recruit__system-content-wrapper {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__system-content-wrapper {
    margin-top: 4rem;
  }
}
.p-recruit__system-content-wrapper:before {
  content: "";
  position: absolute;
  width: 11.5vw;
  height: auto;
  aspect-ratio: 221/115;
  background: url(../../img/recruit/system_decoration_02.svg) no-repeat center center;
  background-size: contain;
  bottom: 0;
  left: 0;
  z-index: -1;
  transform: translate(-50%, 150%);
}
@media screen and (max-width: 1024px) {
  .p-recruit__system-content-wrapper:before {
    display: none;
  }
}
.p-recruit__system-content-wrapper::after {
  content: "";
  position: absolute;
  width: 10.41vw;
  height: auto;
  aspect-ratio: 200/194;
  background: url(../../img/recruit/system_decoration_03.svg) no-repeat center center;
  background-size: contain;
  bottom: -5%;
  right: 0;
  z-index: -1;
  transform: translate(0%, 100%);
}
@media screen and (max-width: 768px) {
  .p-recruit__system-content-wrapper::after {
    content: "";
    position: absolute;
    width: 67px;
    height: 62px;
    background: url(../../img/recruit/system_decoration_03_sp.png) no-repeat center center;
    background-size: contain;
    bottom: -2rem;
    right: 0;
    z-index: 1;
    transform: translate(0, 100%);
  }
}
.p-recruit__requirements {
  padding: 0 0 8rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .p-recruit__requirements {
    padding: 5rem 0;
  }
}
.p-recruit__requirements-heading {
  text-align: center;
  width: 100%;
  max-width: clamp(140px, 8.65vw, 166px);
  margin: 0 auto 5.55vh;
}
@media screen and (max-width: 768px) {
  .p-recruit__requirements-heading {
    margin-bottom: 4rem;
  }
}
.p-recruit__requirements-title {
  font-size: var(--fs36px);
  font-weight: bold;
  color: var(--color-light-black);
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-recruit__requirements-title {
    font-size: 2.4rem;
  }
}
.p-recruit__requirements-list {
  margin: 0;
  padding: 0;
}
.p-recruit__requirements-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-top: 1px solid #E0E0E0;
}
@media screen and (max-width: 1024px) {
  .p-recruit__requirements-item {
    grid-template-columns: 160px 1fr;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__requirements-item {
    grid-template-columns: 1fr;
    padding: 2rem 0;
  }
}
.p-recruit__requirements-label {
  padding: 3rem 2rem;
  font-size: var(--fs18px);
  font-weight: bold;
  color: var(--color-light-black);
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .p-recruit__requirements-label {
    padding: 2.5rem 1.5rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__requirements-label {
    padding: 0;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.p-recruit__requirements-content {
  padding: 3rem 3rem 3rem 4rem;
  font-size: var(--fs16px);
  line-height: 1.9;
  color: var(--color-light-black);
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .p-recruit__requirements-content {
    padding: 2.5rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__requirements-content {
    padding: 0;
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.p-recruit__requirements-content p {
  margin: 0;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .p-recruit__requirements-content p {
    line-height: 1.8;
  }
}
.p-recruit__requirements-content p:not(:last-child) {
  margin-bottom: 2rem;
}
.p-recruit__requirements-highlight {
  font-weight: bold;
  color: var(--color-light-black);
  position: relative;
  padding-left: 1rem;
}
.p-recruit__requirements-notes {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.p-recruit__requirements-notes li {
  font-size: var(--fs16px);
  line-height: 1.9;
  color: var(--color-light-black);
}
@media screen and (max-width: 768px) {
  .p-recruit__requirements-notes li {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.p-recruit__requirements-notes li:not(:last-child) {
  margin-bottom: 0.3rem;
}
.p-recruit__flow {
  padding: 8rem 0;
  background: #eef7ff;
}
@media screen and (max-width: 768px) {
  .p-recruit__flow {
    padding: 5rem 0;
  }
}
.p-recruit__flow-heading {
  text-align: center;
  margin: 0 auto 5.76vh;
}
@media screen and (max-width: 768px) {
  .p-recruit__flow-heading {
    margin-bottom: 4rem;
  }
}
.p-recruit__flow-heading img {
  width: 100%;
  max-width: clamp(240px, 14.74vw, 283px);
}
.p-recruit__flow-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 2rem;
  align-items: stretch;
}
@media screen and (max-width: 1024px) {
  .p-recruit__flow-steps {
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__flow-steps {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.p-recruit__flow-step {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.p-recruit__flow-step-content {
  background-color: var(--color-white);
  border-radius: 0 0 30px 30px;
  padding: 1.5rem 2rem 6.4rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .p-recruit__flow-step-content {
    padding: 1.5rem 2rem 2rem;
  }
}
.p-recruit__flow-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #1E88E5;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs47px);
  font-family: var(--font-roboto);
  font-weight: bold;
  font-style: italic;
  box-shadow: 0 4px 10px rgba(30, 136, 229, 0.3);
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0%, -50%);
}
@media screen and (max-width: 768px) {
  .p-recruit__flow-number {
    width: 50px;
    height: 50px;
    font-size: 2.4rem;
    border: 4px solid var(--color-white);
    font-size: 3.3rem;
  }
}
.p-recruit__flow-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: var(--color-white);
  border-radius: 30px 30px 0 0;
}
@media screen and (max-width: 768px) {
  .p-recruit__flow-image {
    aspect-ratio: auto;
    height: auto;
    border-radius: 20px 20px 0 0;
  }
}
.p-recruit__flow-image img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-recruit__flow-image img {
    height: auto;
  }
}
.p-recruit__flow-step-title {
  font-size: var(--fs20px);
  font-weight: bold;
  color: #1E88E5;
  margin-bottom: 1rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-recruit__flow-step-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
}
.p-recruit__flow-step-text {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  text-align: left;
  margin: 0 auto;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--color-light-black);
}
.p-recruit__flow-arrow {
  color: #1E88E5;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-recruit__flow-arrow {
    width: 100%;
    max-width: 46px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .p-recruit__flow-steps .p-recruit__flow-arrow:nth-child(4) {
    display: none;
  }
  .p-recruit__flow-steps .p-recruit__flow-step:nth-child(5) {
    grid-column: 1;
  }
  .p-recruit__flow-steps .p-recruit__flow-arrow:nth-child(6) {
    grid-column: 2;
  }
  .p-recruit__flow-steps .p-recruit__flow-step:nth-child(7) {
    grid-column: 3;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__flow-steps .p-recruit__flow-arrow:nth-child(4) {
    display: flex;
  }
  .p-recruit__flow-steps .p-recruit__flow-step:nth-child(5),
  .p-recruit__flow-steps .p-recruit__flow-arrow:nth-child(6),
  .p-recruit__flow-steps .p-recruit__flow-step:nth-child(7) {
    grid-column: auto;
  }
}
.p-recruit__faq {
  padding: 8rem 0;
  background-color: var(--color-white);
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-recruit__faq .c-btn {
    max-width: 296px;
    margin: 0 auto;
    font-size: 1.9rem;
  }
}
.p-recruit__faq:after {
  content: "";
  position: absolute;
  width: 140px;
  height: 136px;
  background: url(../../img/recruit/case_decoration_01.svg) no-repeat center center;
  background-size: contain;
  bottom: 0;
  left: 6%;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .p-recruit__faq:after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__faq {
    padding: 5rem 0;
  }
}
.p-recruit__faq-heading {
  text-align: center;
  margin: 0 auto 5.76vh;
}
.p-recruit__faq-heading img {
  width: 100%;
  max-width: clamp(80px, 5.21vw, 100px);
}
@media screen and (max-width: 768px) {
  .p-recruit__faq-heading {
    margin-bottom: 4rem;
  }
}
.p-recruit__faq-title {
  font-size: var(--fs48px);
  font-weight: bold;
  color: var(--color-light-black);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.p-recruit__faq-underline {
  width: 128px;
  height: 7px;
  background-color: var(--color-orange);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-recruit__faq-underline {
    width: 68px;
    height: 5px;
  }
}
.p-recruit__faq-accordion {
  margin-bottom: 9rem;
}
@media screen and (max-width: 768px) {
  .p-recruit__faq-accordion {
    margin-bottom: 4rem;
  }
}
.p-recruit__faq-item {
  margin-bottom: 3rem;
  border-radius: 10px;
  transition: box-shadow 0.3s;
}
@media screen and (max-width: 768px) {
  .p-recruit__faq-item {
    margin-bottom: 1.5rem;
  }
}
.p-recruit__faq-item:hover {
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
}
.p-recruit__faq-item.is-open {
  border-radius: 10px 10px 0 0;
}
.p-recruit__faq-item.is-open .p-recruit__faq-answer {
  display: block;
}
.p-recruit__faq-item.is-open .p-recruit__faq-icon img {
  transform: rotate(180deg);
}
.p-recruit__faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 3rem;
  background-color: var(--color-white);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s;
  border-radius: 10px;
  border: 0.5px solid var(--color-orange);
  background-color: var(--color-white);
  box-shadow: var(--shadow-default);
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-recruit__faq-question {
    padding: 0.7rem 1.5rem;
    gap: 1rem;
    border-radius: 6px;
  }
}
.p-recruit__faq-question:hover {
  background-color: #FFF8F0;
}
.p-recruit__faq-q {
  flex-shrink: 0;
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs24px);
  font-weight: bold;
  border-right: 1px solid var(--color-orange);
  padding-right: 3rem;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-recruit__faq-q {
    font-size: 1.8rem;
    padding-right: 1rem;
  }
}
.p-recruit__faq-question-text {
  flex: 1;
  font-size: var(--fs18px);
  font-weight: bold;
  color: var(--color-light-black);
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-recruit__faq-question-text {
    font-size: 1.4rem;
  }
}
.p-recruit__faq-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--color-orange);
}
@media screen and (max-width: 768px) {
  .p-recruit__faq-icon {
    width: 13px;
    height: 6px;
  }
}
.p-recruit__faq-answer {
  display: none;
  background-color: #FFF6E9;
  position: relative;
  z-index: 1;
  margin-top: -3px;
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 768px) {
  .p-recruit__faq-answer {
    border-radius: 0 0 6px 6px;
  }
}
.p-recruit__faq-answer-inner {
  display: flex;
  gap: 2rem;
  padding: 2rem 3rem;
}
@media screen and (max-width: 768px) {
  .p-recruit__faq-answer-inner {
    padding: 1.5rem;
    gap: 1rem;
  }
}
.p-recruit__faq-a {
  flex-shrink: 0;
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs24px);
  font-weight: bold;
  border-right: 1px solid var(--color-orange);
  padding-right: 3rem;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-recruit__faq-a {
    font-size: 1.8rem;
  }
}
.p-recruit__faq-answer-text {
  flex: 1;
  font-size: var(--fs18px);
  line-height: 1.9;
  color: var(--color-light-black);
  margin: 0;
  padding-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-recruit__faq-answer-text {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

/*
..%%%%...%%%%%....%%%%...%%..%%..%%%%%%..%%..%%..%%%%%%.
.%%..%%..%%..%%..%%..%%..%%..%%....%%....%%..%%..%%.....
.%%%%%%..%%%%%...%%......%%%%%%....%%....%%..%%..%%%%...
.%%..%%..%%..%%..%%..%%..%%..%%....%%.....%%%%...%%.....
.%%..%%..%%..%%...%%%%...%%..%%..%%%%%%....%%....%%%%%%.
........................................................
*/
@media screen and (max-width: 768px) {
  .p-topics__main {
    padding-bottom: 0;
  }
}
.p-topics__main .c-heading {
  display: none;
}
.p-topics__tab-nav {
  margin-bottom: clamp(40px, 6vw, 60px);
}
.p-topics__tab-list {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-topics__tab-list {
    flex-wrap: wrap;
    gap: 1rem 0.5rem;
  }
}
.p-topics__tab-item {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .p-topics__tab-item {
    flex: 1 1 calc(50% - 0.5rem);
  }
}
.p-topics__tab-item--active .p-topics__tab-link {
  background-color: var(--color-navy);
  color: var(--color-white);
}
.p-topics__tab-link {
  display: block;
  padding: 16px 20px;
  font-weight: bold;
  text-align: center;
  background-color: #D1DBE1;
  color: var(--color-white);
  text-decoration: none;
  border-bottom: none;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 768px) {
  .p-topics__tab-link {
    padding: 1rem 0;
    font-size: 14px;
  }
}
.p-topics__heading {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
}
.p-topics__heading-en {
  font-size: clamp(18px, 2.5vw, 24px);
  color: #999;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.p-topics__heading-ja {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  color: #003366;
}
.p-topics__list {
  margin-bottom: clamp(40px, 6vw, 60px);
}
.p-topics__item {
  border-bottom: 1px solid #e0e0e0;
}
.p-topics__item:first-child {
  border-top: 1px solid #e0e0e0;
}
.p-topics__item-link {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.4rem 0;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.3s;
}
@media screen and (max-width: 768px) {
  .p-topics__item-link {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.p-topics__item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-topics__item-header {
    width: 100%;
  }
}
.p-topics__item-date {
  font-size: 14px;
  color: #666;
  white-space: nowrap;
}
.p-topics__item-cat {
  display: inline-block;
  padding: 4px 16px;
  font-size: 12px;
  border: 1px solid currentColor;
  white-space: nowrap;
}
.p-topics__item-cat--directors-message {
  color: #666;
  border-color: #666;
}
.p-topics__item-cat--notice {
  color: #4A90E2;
  border-color: #4A90E2;
}
.p-topics__item-cat--tax-info {
  color: #666;
  border-color: #666;
}
.p-topics__item-title {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-topics__item-title {
    width: calc(100% - 40px);
  }
}
.p-topics__item-arrow {
  flex-shrink: 0;
  color: #003366;
  transition: transform 0.3s;
}
.p-topics__item-link:hover .p-topics__item-arrow {
  transform: translateX(4px);
}

/*
..%%%%...%%%%%%..%%..%%...%%%%...%%......%%%%%%.
.%%........%%....%%%.%%..%%......%%......%%.....
..%%%%.....%%....%%.%%%..%%.%%%..%%......%%%%...
.....%%....%%....%%..%%..%%..%%..%%......%%.....
..%%%%...%%%%%%..%%..%%...%%%%...%%%%%%..%%%%%%.
................................................
*/
.p-single {
  padding-bottom: 0;
}
.p-single__content {
  border: 0.3px solid var(--color-light-grey);
  padding: 8rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 1024px) {
  .p-single__content {
    padding: 5rem 6%;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .p-single__content {
    padding: 1.5rem 2rem 4rem;
    margin-bottom: 3rem;
  }
}

/*
..%%%%....%%%%...%%..%%..%%%%%%...%%%%....%%%%...%%%%%%.
.%%..%%..%%..%%..%%%.%%....%%....%%..%%..%%..%%....%%...
.%%......%%..%%..%%.%%%....%%....%%%%%%..%%........%%...
.%%..%%..%%..%%..%%..%%....%%....%%..%%..%%..%%....%%...
..%%%%....%%%%...%%..%%....%%....%%..%%...%%%%.....%%...
........................................................
*/
.p-contact__fv.c-fv {
  padding: clamp(25rem, 32vh, 30rem) 0 clamp(8rem, 5.21vw, 10rem);
  background-color: var(--color-navy);
}
@media screen and (max-width: 1024px) {
  .p-contact__fv.c-fv {
    padding: 12rem 0;
  }
}
@media screen and (max-width: 768px) {
  .p-contact__fv.c-fv {
    padding: 12rem 0 6rem;
  }
}
.p-contact__info {
  padding: 8rem 0;
  background-color: var(--color-light-sky-blue);
}
@media screen and (max-width: 768px) {
  .p-contact__info {
    padding: 4rem 0;
  }
}
.p-contact__info-card {
  padding: 6rem 8rem;
  background-color: var(--color-white);
  box-shadow: none;
}
@media screen and (max-width: 1280px) {
  .p-contact__info-card {
    padding: 5rem 6rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-contact__info-card {
    padding: 4rem 4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-contact__info-card {
    padding: 0 0 3.5rem;
    border-radius: 0;
  }
}
.p-contact__info-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--fs28px);
  font-weight: bold;
  margin-bottom: 5rem;
  color: var(--color-navy);
}
.p-contact__info-title span {
  padding: 0 3rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.p-contact__info-title::before, .p-contact__info-title::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--color-navy);
}
@media screen and (max-width: 768px) {
  .p-contact__info-title::before, .p-contact__info-title::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .p-contact__info-title {
    margin-bottom: 1.5rem;
    padding: 1.8rem 0;
    background-color: var(--color-navy);
    color: var(--color-white);
  }
  .p-contact__info-title span {
    padding: 0 1rem;
  }
}
.p-contact__info-methods {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  padding: 0 2rem;
}
@media screen and (max-width: 1024px) {
  .p-contact__info-methods {
    flex-direction: column;
    gap: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .p-contact__info-methods {
    gap: 2rem;
  }
}
.p-contact__method {
  flex: 1;
  text-align: center;
}
.p-contact__form {
  padding: 8rem 0;
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .p-contact__form {
    padding: 3.5rem 0 0;
  }
}
.p-contact__form-title {
  font-size: var(--fs31px);
  font-weight: bold;
  text-align: center;
  margin-bottom: 8rem;
  color: var(--color-navy);
}
@media screen and (max-width: 768px) {
  .p-contact__form-title {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }
}

.wpcf7 .wpcf7-form-control-wrap {
  width: 100%;
}
.wpcf7 .p-contact__required {
  color: var(--color-red);
  margin-left: 0.3rem;
  font-weight: bold;
  font-size: 1rem;
  vertical-align: top;
}
.wpcf7 .p-contact__radio-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 4rem;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .wpcf7 .p-contact__radio-group {
    flex-direction: column;
    margin-bottom: 3rem;
    gap: 0.5rem;
  }
}
.wpcf7 .p-contact__radio-group > p {
  font-size: var(--fs16px);
  font-weight: bold;
  min-width: 200px;
  flex-shrink: 0;
  padding-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .wpcf7 .p-contact__radio-group > p {
    font-size: 1.6rem;
    min-width: auto;
  }
}
.wpcf7 .p-contact__radio-group .wpcf7-form-control-wrap {
  flex: 1;
}
.wpcf7 .p-contact__radio-group .wpcf7-list-item {
  display: inline-block;
  margin: 0 1.5rem 1rem 0;
}
@media screen and (max-width: 768px) {
  .wpcf7 .p-contact__radio-group .wpcf7-list-item {
    display: block;
    margin: 0 0 0.5rem 0;
  }
}
.wpcf7 .p-contact__radio-group .wpcf7-list-item label {
  font-size: var(--fs16px);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .wpcf7 .p-contact__radio-group .wpcf7-list-item label {
    font-size: 1.4rem;
  }
}
.wpcf7 .p-contact__radio-group .wpcf7-list-item input[type=radio] {
  margin-right: 0.5rem;
}
.wpcf7 .p-contact__field {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .wpcf7 .p-contact__field {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 2rem;
    gap: 1rem;
  }
}
.wpcf7 .p-contact__field > label {
  display: block;
  font-size: var(--fs18px);
  font-weight: bold;
  color: var(--color-light-black);
  min-width: 200px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .wpcf7 .p-contact__field > label {
    font-size: 1.6rem;
    min-width: auto;
  }
}
.wpcf7 .p-contact__field .wpcf7-form-control-wrap {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .wpcf7 .p-contact__field .wpcf7-form-control-wrap {
    width: 100%;
  }
}
.wpcf7 .p-contact__field--textarea {
  align-items: flex-start;
}
.wpcf7 .p-contact__field--textarea > label {
  padding-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .wpcf7 .p-contact__field--textarea > label {
    padding-top: 0;
  }
}
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 textarea {
  width: 100%;
  padding: 1.5rem 2rem;
  font-size: var(--fs16px);
  border: 1px solid var(--color-grey);
  border-radius: 4px;
  transition: border-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .wpcf7 input[type=text],
  .wpcf7 input[type=email],
  .wpcf7 input[type=tel],
  .wpcf7 textarea {
    padding: 1.2rem 1.5rem;
    font-size: 1.4rem;
    border-radius: 3px;
  }
}
.wpcf7 input[type=text]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 input[type=tel]:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--color-light-blue);
}
.wpcf7 textarea {
  min-height: 200px;
  resize: vertical;
}
@media screen and (max-width: 768px) {
  .wpcf7 textarea {
    min-height: 0;
  }
}
.wpcf7 .p-contact__privacy {
  margin: 4rem 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .wpcf7 .p-contact__privacy {
    margin: 3rem 0 5rem;
  }
}
.wpcf7 .p-contact__privacy .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .p-contact__privacy .wpcf7-list-item label {
  font-size: var(--fs16px);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .wpcf7 .p-contact__privacy .wpcf7-list-item label {
    font-size: 1.4rem;
  }
}
.wpcf7 .p-contact__privacy .wpcf7-list-item input[type=checkbox] {
  margin-right: 0.5rem;
}
.wpcf7 .p-contact__privacy a {
  color: var(--color-light-blue);
  text-decoration: underline;
}
.wpcf7 .p-contact__privacy a:hover {
  opacity: 0.7;
}
.wpcf7 .wpcf7-submit {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding: 1.8rem 0;
  font-size: var(--fs18px);
  font-weight: bold;
  color: var(--color-white);
  background-color: var(--color-navy);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-default);
}
@media screen and (max-width: 768px) {
  .wpcf7 .wpcf7-submit {
    max-width: 100%;
    border-radius: 11px;
    padding: 1.5rem 0;
    font-size: 1.6rem;
  }
}
.wpcf7 .wpcf7-submit:hover {
  opacity: 0.8;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.wpcf7 .wpcf7-not-valid-tip {
  font-size: 1.3rem;
  color: #dc3545;
  margin-top: 0.5rem;
}
.wpcf7 .wpcf7-response-output {
  margin: 2rem 0;
  padding: 1.5rem;
  border-radius: 4px;
  text-align: center;
}
.wpcf7 .wpcf7-response-output.wpcf7-validation-errors {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.grecaptcha-badge {
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .grecaptcha-badge {
    bottom: 80px !important;
  }
}

/*
.%%%%%...%%%%%...%%%%%%..%%..%%...%%%%....%%%%...%%..%%.
.%%..%%..%%..%%....%%....%%..%%..%%..%%..%%..%%...%%%%..
.%%%%%...%%%%%.....%%....%%..%%..%%%%%%..%%........%%...
.%%......%%..%%....%%.....%%%%...%%..%%..%%..%%....%%...
.%%......%%..%%..%%%%%%....%%....%%..%%...%%%%.....%%...
........................................................
*/
.p-privacy-policy .c-fv {
  padding: 30rem 0 8rem;
}
@media screen and (max-width: 1024px) {
  .p-privacy-policy .c-fv {
    padding: 11rem 0 8rem;
  }
}
.p-privacy-policy .c-fv__text {
  border-left: 3px solid var(--color-black);
}
@media screen and (max-width: 768px) {
  .p-privacy-policy .c-fv__text {
    border-left: none;
    padding: 0;
  }
}
.p-privacy-policy .c-fv__text p,
.p-privacy-policy .c-fv__text h1 {
  color: var(--color-black);
}
.p-privacy-policy__main {
  padding: 0 0 8rem;
}
@media screen and (max-width: 768px) {
  .p-privacy-policy__main {
    padding: 0;
  }
}
.p-privacy-policy__content {
  width: 100%;
  max-width: 61.04vw;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .p-privacy-policy__content {
    max-width: 100%;
  }
}
.p-privacy-policy__section {
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .p-privacy-policy__section {
    margin-bottom: 4rem;
  }
}
.p-privacy-policy__heading {
  font-size: var(--fs18px);
  font-weight: bold;
  color: var(--color-black);
  margin-bottom: 3rem;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .p-privacy-policy__heading {
    font-size: var(--fs24px);
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-privacy-policy__heading {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
}
.p-privacy-policy__subheading {
  font-size: var(--fs16px);
  font-weight: bold;
  color: var(--color-light-black);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .p-privacy-policy__subheading {
    font-size: var(--fs18px);
  }
}
@media screen and (max-width: 768px) {
  .p-privacy-policy__subheading {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}
.p-privacy-policy__text {
  font-size: var(--fs16px);
  line-height: 2;
  color: var(--color-light-black);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-privacy-policy__text {
    line-height: 1.85;
    margin-bottom: 0;
  }
}
.p-privacy-policy__text:last-child {
  margin-bottom: 0;
}
.p-privacy-policy__signature {
  text-align: right;
  margin-top: 8rem;
  font-size: var(--fs20px);
}/*# sourceMappingURL=style.css.map */