:root {
  --space-inset-y: 30px;
  --space-inset-x: 20px;
  --space-stack-title: 16px;
  --space-stack-subline: 8px;
}

@media (min-width: 768px) {
  :root {
    --space-inset-y: 48px;
    --space-inset-x: 64px;
    --space-stack-title: 32px;
    --space-stack-subline: 16px;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
  padding: 0;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

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

ul,
ol {
  list-style: none;
}

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

a:hover {
  opacity: 0.7;
}

.txt {
  color: inherit;
}

a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}
a[href^="tel:"]:hover {
  color: inherit;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

tbody {
  display: block;
}
@media (min-width: 768px) {
  tbody {
    display: table-row-group;
  }
}

th,
td {
  text-align: left;
  vertical-align: top;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
}

input[type=submit] {
  cursor: pointer;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  line-height: 1.45;
  font-size: inherit;
}

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

.pc {
  display: none !important;
}
@media (min-width: 768px) {
  .pc {
    display: block !important;
  }
}

.sp-l {
  display: block !important;
}
@media (min-width: 1280px) {
  .sp-l {
    display: none !important;
  }
}

.pc-l {
  display: none !important;
}
@media (min-width: 1280px) {
  .pc-l {
    display: block !important;
  }
}

.base_inner {
  padding: 0 20px;
  max-width: 100%;
}
@media (min-width: 768px) {
  .base_inner {
    margin: 0 auto;
    max-width: 1240px;
  }
}

.section-bg {
  background-color: #f6f8f8;
}

.pg-body,
.pg-policy,
.pg-contact {
  position: relative;
}

.pad {
  padding-top: 30px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .pad {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.pad_top {
  padding-top: 30px;
}
@media (min-width: 768px) {
  .pad_top {
    padding-top: 80px;
  }
}

.pad_top_lg {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .pad_top_lg {
    padding-top: 96px;
    padding-bottom: 80px;
  }
}

.pad_btm {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .pad_btm {
    padding-bottom: 80px;
  }
}

.pad_s {
  padding-top: 25px;
  padding-bottom: 25px;
}
@media (min-width: 768px) {
  .pad_s {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.mb {
  margin-bottom: var(--space-stack-title);
}

.mtop {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .mtop {
    margin-top: 64px;
  }
}

.grid {
  display: grid;
  gap: 32px;
}

.grid-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.flex {
  display: flex;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-accent {
  color: #fa8072;
  font-weight: 700;
}

.tit-label-center {
  margin-bottom: var(--space-stack-title);
  margin-top: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .tit-label-center {
    margin-top: 60px;
  }
}
.tit-label-center .en {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, calc(1.8rem + 0.6rem * ((100vw - 375px) / 865px)), 2.4rem);
  font-weight: 500;
  color: #1e4497;
  position: relative;
  display: block;
  line-height: 1.05;
  padding-top: 10px;
}
@media (min-width: 768px) {
  .tit-label-center .en {
    padding-top: 12px;
  }
}
.tit-label-center .en--small {
  font-size: 1.6rem;
}
.tit-label-center .en::before {
  content: "";
  position: absolute;
  top: -32px;
  left: 50%;
  width: 2px;
  height: 32px;
  margin-left: -1px;
  background-color: #fa8072;
  background-image: linear-gradient(#1e4497, #1e4497);
  background-size: 100% 15px;
  background-repeat: no-repeat;
  background-position: top center;
}
@media (min-width: 768px) {
  .tit-label-center .en::before {
    top: -45px;
    height: 45px;
    background-size: 100% 18px;
  }
}
.tit-label-center .jp {
  font-size: clamp(2.2rem, calc(2.2rem + 1rem * ((100vw - 375px) / 865px)), 3.2rem);
  font-weight: 500;
  color: #333333;
  margin-bottom: var(--space-stack-subline);
}
@media (min-width: 768px) {
  .tit-label-center .jp {
    margin-top: -6px;
  }
}

.tit-label-point {
  margin: 0 0 var(--space-stack-title);
  text-align: left;
}
.tit-label-point .en {
  margin: 0 0 6px;
  padding-top: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, calc(1.8rem + 0.6rem * ((100vw - 375px) / 865px)), 2.4rem);
  font-weight: 500;
  line-height: 1.05;
  color: #00a6e4;
  display: block;
}
.tit-label-point .en .tit-label__txt {
  font-family: inherit;
}
@media (min-width: 768px) {
  .tit-label-point .en {
    margin-bottom: 12px;
    padding-top: 12px;
  }
}
.tit-label-point .jp {
  margin: 0;
  font-size: clamp(2.2rem, calc(2.2rem + 1rem * ((100vw - 375px) / 865px)), 3.2rem);
  font-weight: 700;
  line-height: 1.35;
}
.tit-label-point[data-no] {
  position: relative;
  z-index: 0;
}
.tit-label-point[data-no]::before {
  content: attr(data-no);
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 0;
  transform: translateY(-50%);
  font-family: "Advent Pro", sans-serif;
  font-size: clamp(8rem, 28vw, 22rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(0, 166, 228, 0.16);
  pointer-events: none;
  user-select: none;
}
@media (min-width: 768px) {
  .tit-label-point[data-no]::before {
    top: 40%;
    left: max(0px, 50% - 50vw + 64px);
    font-size: clamp(10rem, 18vw, 20rem);
  }
}
.tit-label-point[data-no] .en,
.tit-label-point[data-no] .jp {
  position: relative;
  z-index: 1;
}

.tit-label {
  margin: 0;
  font-size: inherit;
  font-weight: normal;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tit-label .tit-label__txt {
  flex-shrink: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, calc(1.8rem + 0.6rem * ((100vw - 375px) / 865px)), 2.4rem);
  font-weight: 500;
  color: #1e4497;
}
.tit-label::after {
  content: "";
  flex-shrink: 0;
  align-self: center;
  transform: translateY(2px);
  width: 40px;
  height: 2px;
  background-image: linear-gradient(to right, #1e4497 0, #1e4497 12px, #fa8072 12px, #fa8072 100%);
}
@media (min-width: 768px) {
  .tit-label::after {
    width: 70px;
    background-image: linear-gradient(to right, #1e4497 0, #1e4497 25px, #fa8072 25px, #fa8072 100%);
  }
}

.tit-label + .lead-set {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .tit-label + .lead-set {
    margin-top: 12px;
  }
}

.lead-set {
  margin-bottom: var(--space-stack-title);
}
.lead-set .sub-en {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 1.15;
  color: #333333;
}
@media (min-width: 768px) {
  .lead-set .sub-en {
    margin-bottom: 12px;
  }
}
.lead-set .lead-set__heading {
  margin: 0;
  font-size: clamp(2.2rem, calc(2.2rem + 1rem * ((100vw - 375px) / 865px)), 3.2rem);
  font-weight: 700;
  line-height: 1.35;
  color: #1e4497;
}

.cutch-txt {
  font-weight: 700;
  font-size: clamp(1.7rem, calc(1.7rem + 0.2rem * ((100vw - 375px) / 865px)), 1.9rem);
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .cutch-txt {
    margin-bottom: 15px;
  }
}

.cutch-txt-primary {
  font-weight: 700;
  font-size: clamp(1.7rem, calc(1.7rem + 0.2rem * ((100vw - 375px) / 865px)), 1.9rem);
  margin-bottom: 10px;
  color: #1e4497;
}
@media (min-width: 768px) {
  .cutch-txt-primary {
    margin-bottom: 15px;
  }
}

.main > .p-page-title {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding-top: 56px;
  padding-bottom: clamp(32px, 8vw, 56px);
  min-height: clamp(200px, 28vw, 320px);
  box-sizing: border-box;
  background-color: #1e4497;
  background-image: var(--page-title-bg-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (min-width: 1024px) {
  .main > .p-page-title {
    padding-top: 72px;
  }
}
.main > .p-page-title > .base_inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.main > .p-page-title > .base_inner .p-page-title__inner {
  max-width: 100%;
  padding-top: 15px;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .main > .p-page-title > .base_inner .p-page-title__inner {
    padding-top: 30px;
  }
}
.main > .p-page-title > .base_inner .p-page-title__inner .en {
  margin: 0 0 0.08em;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
  color: #ffffff;
}
.main > .p-page-title > .base_inner .p-page-title__inner .jp {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
}
.main#reason > .p-page-title {
  --page-title-bg-image: url("../images/reason/mv.webp");
}
.main#service > .p-page-title {
  --page-title-bg-image: url("../images/service/mv.webp");
}
.main[id=service-dc] > .p-page-title {
  --page-title-bg-image: url("../images/service-dc/mv.webp");
}
.main[id=service-fc] > .p-page-title {
  --page-title-bg-image: url("../images/service-fc/mv.webp");
}
.main[id=service-consulting] > .p-page-title {
  --page-title-bg-image: url("../images/service-consulting/mv.webp");
}
.main#privacy > .p-page-title {
  --page-title-bg-image: url("../images/privacy/mv.webp");
}
.main#contact > .p-page-title {
  --page-title-bg-image: url("../images/contact/mv.webp");
}
.main#thanks > .p-page-title {
  --page-title-bg-image: url("../images/thanks/mv.webp");
}
.main#flow > .p-page-title {
  --page-title-bg-image: url("../images/flow/mv.webp");
}
.main#faq > .p-page-title {
  --page-title-bg-image: url("../images/faq/mv.webp");
}
.main#index > .p-page-title {
  --page-title-bg-image: url("../images/company/mv.webp");
}

.profile-table__wrap {
  background-color: #ffffff;
  padding: 0 12px 32px;
}
@media (min-width: 768px) {
  .profile-table__wrap {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 32px 32px;
  }
}
.profile-table__wrap .profile-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  color: #333333;
  display: block;
}
@media (min-width: 768px) {
  .profile-table__wrap .profile-table {
    display: table;
  }
}
.profile-table__wrap .profile-table .table__row {
  border-bottom: 1px solid #e7e7e7;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .profile-table__wrap .profile-table .table__row {
    display: table-row;
    width: auto;
    margin-bottom: 0;
  }
}
.profile-table__wrap .profile-table .table__row th {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  padding: 12px 12px 6px 12px;
  text-align: left;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .profile-table__wrap .profile-table .table__row th {
    width: 220px;
    display: table-cell;
    padding: 20px 20px 20px 32px;
    font-weight: 400;
    white-space: nowrap;
  }
}
.profile-table__wrap .profile-table .table__row td {
  padding: 12px 32px;
  display: block;
  width: 100%;
  padding: 6px 12px 12px 12px;
}
@media (min-width: 768px) {
  .profile-table__wrap .profile-table .table__row td {
    width: auto;
    display: table-cell;
    padding: 20px;
  }
}
.profile-table__wrap .profile-table .table__row td a {
  color: inherit;
}
.profile-table__wrap .profile-table .table__row td .profile-table__tel-pc {
  display: none;
}
@media (min-width: 768px) {
  .profile-table__wrap .profile-table .table__row td .profile-table__tel-pc {
    display: inline;
  }
}
@media (min-width: 768px) {
  .profile-table__wrap .profile-table .table__row td .profile-table__tel-sp {
    display: none;
  }
}
.profile-table__wrap .profile-table .table__row td .profile-table__list {
  margin: 0;
  padding-left: 1.2em;
  list-style-type: disc;
}
.profile-table__wrap .profile-table .table__row td .profile-table__list li {
  margin-bottom: 8px;
}

.p-clum2 {
  width: 100%;
  max-width: 100%;
}
.p-clum2 .pic {
  width: 100%;
  max-width: 100%;
  margin-bottom: 32px;
}
.p-clum2 .pic img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .p-clum2 .pic {
    margin-bottom: 0;
    width: calc((100% - 64px) / 2);
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .p-clum2 .set {
    width: calc((100% - 64px) / 2);
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .p-clum2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  .p-clum2.od .set {
    order: -1;
  }
}

.button > a {
  display: inline-block;
  box-sizing: border-box;
  width: 280px;
  max-width: 100%;
  padding: 10px 20px;
  background-image: linear-gradient(to right, #1e4497, #00a6e4);
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, calc(1.7rem + 0.2rem * ((100vw - 375px) / 865px)), 1.9rem);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-radius: 100vh;
  transition: background-image 0.3s ease;
}
@media (min-width: 768px) {
  .button > a {
    width: 320px;
  }
}
.button > a:hover {
  background-image: linear-gradient(to right, #00a6e4, #1e4497);
  color: #ffffff;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 1000;
  min-height: 56px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
@media (min-width: 1024px) {
  .header {
    min-height: 72px;
  }
}
.header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 56px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 1024px) {
  .header .header__inner {
    min-height: 72px;
    padding-left: 64px;
    padding-right: 64px;
  }
}
.header .header__inner .header__logo-wrapper {
  flex-shrink: 0;
  z-index: 1002;
  display: flex;
  align-items: center;
  align-self: stretch;
}
.header .header__inner .header__logo-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
}
.header .header__inner .header__logo-link .header__logo-img {
  height: 22px;
  width: auto;
}
@media (min-width: 1024px) {
  .header .header__inner .header__logo-link .header__logo-img {
    height: 28px;
  }
}
.header .header__inner .header__logo-link .header__logo-text {
  display: inline-flex;
  align-items: baseline;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
@media (min-width: 1024px) {
  .header .header__inner .header__logo-link .header__logo-text {
    font-size: 2.2rem;
  }
}
.header .header__inner .header__logo-link .header__logo-part {
  color: #333333;
}
.header .header__inner .header__logo-link .header__logo-part--en {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}
.header .header__inner .header__logo-link .header__logo-part--accent {
  color: #1e4497;
  font-weight: 700;
}
.header .header__inner .header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
  margin-left: 12px;
}
@media (min-width: 1024px) {
  .header .header__inner .header__right {
    margin-left: 32px;
    gap: 32px;
  }
}
.header .header__inner .header__right .header__nav {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  background-color: #ffffff;
  padding-top: 32px;
  padding-bottom: 64px;
  padding-left: 15px;
  padding-right: 15px;
  transition: transform 0.3s ease;
  transform: translateX(-100%);
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
@media (min-width: 1024px) {
  .header .header__inner .header__right .header__nav {
    position: static;
    max-height: none;
    overflow: visible;
    padding: 0;
    transform: translateX(0);
    box-shadow: none;
    min-width: 0;
    flex: 1 1 auto;
  }
}
.header .header__inner .header__right .header__nav.is-open {
  transform: translateX(0);
}
.header .header__inner .header__right .header__nav a {
  text-decoration: none;
}
.header .header__inner .header__right .header__nav .header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .header__inner .header__right .header__nav .header__nav-list > li {
  margin: 0;
}
@media (min-width: 1024px) {
  .header .header__inner .header__right .header__nav .header__nav-list {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(12px, 2vw, 28px);
  }
  .header .header__inner .header__right .header__nav .header__nav-list > li {
    flex-shrink: 1;
    min-width: 0;
  }
}
.header .header__inner .header__right .header__nav .header__nav-list .header__nav-item {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #333333;
  padding: 12px 0;
  border-bottom: 1px solid #e7e7e7;
  transition: color 0.25s ease, border-color 0.25s ease;
}
@media (min-width: 768px) {
  .header .header__inner .header__right .header__nav .header__nav-list .header__nav-item {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .header .header__inner .header__right .header__nav .header__nav-list .header__nav-item {
    display: inline-block;
    padding: 8px 0;
    border-bottom: none;
    font-size: clamp(1.25rem, 0.65rem + 0.75vw, 1.6rem);
    white-space: nowrap;
    position: relative;
  }
  .header .header__inner .header__right .header__nav .header__nav-list .header__nav-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #1e4497;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease-out;
  }
  .header .header__inner .header__right .header__nav .header__nav-list .header__nav-item:hover::after {
    transform: scaleX(1);
  }
}
.header .header__inner .header__right .header__nav .header__nav-list .header__nav-item:hover {
  opacity: 1;
  color: #1e4497;
  border-bottom-color: #1e4497;
}
.header .header__inner .header__right .header__nav .header__nav-list .header__nav-item--cta {
  margin-top: 12px;
  padding: 14px 32px;
  border: none;
  border-top: 1px solid #e7e7e7;
  text-align: center;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.04em;
  color: #ffffff;
  background-color: #1e4497;
  background-image: linear-gradient(to right, #1e4497, #00a6e4);
  border-radius: 30px;
}
.header .header__inner .header__right .header__nav .header__nav-list .header__nav-item--cta:hover {
  opacity: 1;
  color: #ffffff;
}
.header .header__inner .header__right .header__nav .header__nav-list .header__nav-item--cta::after {
  display: none;
}
@media (min-width: 1024px) {
  .header .header__inner .header__right .header__nav .header__nav-list .header__nav-item--cta {
    display: none;
  }
}
.header .header__inner .header__right .header__nav .header__nav-list .header__nav-item-wrap {
  margin: 0;
}
@media (min-width: 1024px) {
  .header .header__inner .header__right .header__nav .header__nav-list .header__nav-item-wrap {
    position: relative;
    flex-shrink: 1;
    min-width: 0;
  }
}
@media (min-width: 1024px) {
  .header .header__inner .header__right .header__nav .header__nav-list .header__nav-item-wrap--dropdown {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .header .header__inner .header__right .header__nav .header__nav-list .header__nav-item-wrap--dropdown:hover .header__sub-list, .header .header__inner .header__right .header__nav .header__nav-list .header__nav-item-wrap--dropdown:focus-within .header__sub-list {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.header .header__inner .header__right .header__nav .header__nav-list .header__nav-item-wrap--dropdown.is-open .header__nav-toggle-icon::after {
  opacity: 0;
}
@media (max-width: 1023px) {
  .header .header__inner .header__right .header__nav .header__nav-list .header__nav-item-wrap--dropdown.is-open .header__sub-list {
    max-height: 24rem;
  }
}
.header .header__inner .header__right .header__nav .header__nav-list .header__nav-item-wrap .header__nav-item-row {
  display: flex;
  align-items: stretch;
  width: 100%;
  border-bottom: 1px solid #e7e7e7;
}
@media (min-width: 1024px) {
  .header .header__inner .header__right .header__nav .header__nav-list .header__nav-item-wrap .header__nav-item-row {
    border-bottom: none;
    align-items: center;
    width: auto;
  }
}
.header .header__inner .header__right .header__nav .header__nav-list .header__nav-item-wrap .header__nav-item-row .header__nav-item {
  flex: 1 1 auto;
  min-width: 0;
  border-bottom: none;
}
.header .header__inner .header__right .header__nav .header__nav-list .header__nav-item-wrap .header__nav-item-row .header__nav-toggle {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  min-height: 48px;
  margin: 0;
  padding: 0;
  border: none;
  border-left: 1px solid #e7e7e7;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
}
@media (max-width: 1023px) {
  .header .header__inner .header__right .header__nav .header__nav-list .header__nav-item-wrap .header__nav-item-row .header__nav-toggle {
    display: flex;
  }
}
.header .header__inner .header__right .header__nav .header__nav-list .header__nav-item-wrap .header__nav-item-row .header__nav-toggle:focus-visible {
  outline: 2px solid #1e4497;
  outline-offset: 2px;
}
.header .header__inner .header__right .header__nav .header__nav-list .header__nav-item-wrap .header__nav-item-row .header__nav-toggle .header__nav-toggle-icon {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
}
.header .header__inner .header__right .header__nav .header__nav-list .header__nav-item-wrap .header__nav-item-row .header__nav-toggle .header__nav-toggle-icon::before, .header .header__inner .header__right .header__nav .header__nav-list .header__nav-item-wrap .header__nav-item-row .header__nav-toggle .header__nav-toggle-icon::after {
  content: "";
  position: absolute;
  background-color: #333333;
}
.header .header__inner .header__right .header__nav .header__nav-list .header__nav-item-wrap .header__nav-item-row .header__nav-toggle .header__nav-toggle-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.header .header__inner .header__right .header__nav .header__nav-list .header__nav-item-wrap .header__nav-item-row .header__nav-toggle .header__nav-toggle-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
  transition: opacity 0.2s ease;
}
.header .header__inner .header__right .header__nav .header__nav-list .header__nav-item-wrap .header__sub-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023px) {
  .header .header__inner .header__right .header__nav .header__nav-list .header__nav-item-wrap .header__sub-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
}
@media (min-width: 1024px) {
  .header .header__inner .header__right .header__nav .header__nav-list .header__nav-item-wrap .header__sub-list {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1002;
    min-width: 240px;
    padding: 8px 0;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
}
.header .header__inner .header__right .header__nav .header__nav-list .header__nav-item-wrap .header__sub-list .header__sub-link {
  display: block;
  padding: 12px 12px 12px 32px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #333333;
  border-bottom: 1px solid #e7e7e7;
  transition: color 0.25s ease, border-color 0.25s ease;
}
@media (min-width: 768px) {
  .header .header__inner .header__right .header__nav .header__nav-list .header__nav-item-wrap .header__sub-list .header__sub-link {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .header .header__inner .header__right .header__nav .header__nav-list .header__nav-item-wrap .header__sub-list .header__sub-link {
    padding: 8px 32px;
    font-size: clamp(1.25rem, 0.65rem + 0.75vw, 1.6rem);
    white-space: nowrap;
    border-bottom: 1px solid #e7e7e7;
  }
  .header .header__inner .header__right .header__nav .header__nav-list .header__nav-item-wrap .header__sub-list .header__sub-link:last-child {
    border-bottom: none;
  }
}
.header .header__inner .header__right .header__nav .header__nav-list .header__nav-item-wrap .header__sub-list .header__sub-link:hover {
  opacity: 1;
  color: #1e4497;
  border-bottom-color: #1e4497;
}
.header .header__inner .header__cta {
  display: none;
}
@media (min-width: 1024px) {
  .header .header__inner .header__cta {
    display: block;
    flex-shrink: 0;
  }
}
.header .header__inner .header__cta .header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 32px;
  background-color: #00a6e4;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  border-radius: 30px;
  transition: opacity 0.25s ease, background-color 0.25s ease;
  white-space: nowrap;
}
.header .header__inner .header__cta .header__btn:hover {
  opacity: 0.9;
}
.header .header__inner .header__hamburger {
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: fixed;
  top: 13px;
  right: 30px;
  transform: none;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
}
.header .header__inner .header__hamburger::-moz-focus-inner {
  border: 0;
}
.header .header__inner .header__hamburger:focus {
  outline: none;
}
.header .header__inner .header__hamburger:focus-visible {
  outline: 2px solid #1e4497;
  outline-offset: 2px;
}
.header .header__inner .header__hamburger:active {
  background-color: transparent;
  box-shadow: none;
}
@media (min-width: 1024px) {
  .header .header__inner .header__hamburger {
    display: none;
  }
}
.header .header__inner .header__hamburger span {
  width: 100%;
  height: 3px;
  background-color: #333333;
  transition: all 0.3s ease;
  position: absolute;
}
.header .header__inner .header__hamburger span:nth-child(1) {
  top: 6px;
}
.header .header__inner .header__hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header .header__inner .header__hamburger span:nth-child(3) {
  bottom: 6px;
}
.header .header__inner .header__hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header .header__inner .header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header .header__inner .header__hamburger.is-active span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

@media (min-width: 1024px) {
  .header.header--nav-cta-pc .header__inner .header__right .header__nav .header__nav-list .header__nav-item--cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding: 0 32px;
    min-height: 40px;
    border-top: none;
  }
  .header.header--nav-cta-pc .header__inner .header__right .header__nav .header__nav-list .header__nav-item--cta:hover {
    background-image: linear-gradient(to right, #00a6e4, #1e4497);
  }
}

body.menu-open {
  overflow: hidden;
}
@media (min-width: 1024px) {
  body.menu-open {
    overflow: auto;
  }
}

.footer {
  position: relative;
  background-color: #1e4497;
  color: #ffffff;
  padding: 0 var(--space-inset-x) 0;
  overflow: hidden;
}

.footer .footer__banner-nav {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  z-index: 2;
}
.footer .footer__banner-nav .footer__banner-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (min-width: 768px) {
  .footer .footer__banner-nav .footer__banner-list {
    flex-direction: row;
  }
}
.footer .footer__banner-nav .footer__banner-list .footer__banner-item {
  flex: 0 0 auto;
  min-width: 0;
}
@media (min-width: 768px) {
  .footer .footer__banner-nav .footer__banner-list .footer__banner-item {
    flex: 1 1 33.333%;
  }
}
.footer .footer__banner-nav .footer__banner-list .footer__banner-item .footer__banner-link {
  position: relative;
  display: block;
  height: clamp(110px, 32vw, 240px);
  color: #ffffff;
  text-decoration: none;
  overflow: visible;
}
.footer .footer__banner-nav .footer__banner-list .footer__banner-item .footer__banner-link:hover {
  opacity: 1;
}
.footer .footer__banner-nav .footer__banner-list .footer__banner-item .footer__banner-link:hover .footer__banner-img {
  transform: scale(1.04);
}
.footer .footer__banner-nav .footer__banner-list .footer__banner-item .footer__banner-link .footer__banner-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.footer .footer__banner-nav .footer__banner-list .footer__banner-item .footer__banner-link .footer__banner-media .footer__banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}
.footer .footer__banner-nav .footer__banner-list .footer__banner-item .footer__banner-link .footer__banner-media .footer__banner-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 68, 151, 0.15) 0%, rgba(26, 26, 26, 0.55) 100%);
  pointer-events: none;
}
.footer .footer__banner-nav .footer__banner-list .footer__banner-item .footer__banner-link .footer__banner-bottom {
  position: absolute;
  z-index: 1;
  right: clamp(6px, 2vw, 20px);
  bottom: clamp(8px, 2.5vw, 24px);
  left: clamp(6px, 2vw, 20px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-right: 36px;
  pointer-events: none;
  --footer-banner-arrow-stem-right: 1px;
  --footer-banner-arrow-stem-bottom: 10px;
  --footer-banner-arrow-stem-width: 15px;
  --footer-banner-arrow-stem-height: 2px;
  --footer-banner-arrow-head-right: 0;
  --footer-banner-arrow-head-bottom: 6px;
  --footer-banner-arrow-head-size: 10px;
  --footer-banner-arrow-stroke: 2px;
}
@media (min-width: 768px) {
  .footer .footer__banner-nav .footer__banner-list .footer__banner-item .footer__banner-link .footer__banner-bottom {
    --footer-banner-arrow-stem-bottom: 12px;
    --footer-banner-arrow-stem-width: 22px;
    --footer-banner-arrow-head-bottom: 7px;
    --footer-banner-arrow-head-size: 12px;
  }
}
.footer .footer__banner-nav .footer__banner-list .footer__banner-item .footer__banner-link .footer__banner-bottom::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: var(--footer-banner-arrow-stem-right);
  bottom: var(--footer-banner-arrow-stem-bottom);
  width: var(--footer-banner-arrow-stem-width);
  height: var(--footer-banner-arrow-stem-height);
  background: #ffffff;
}
.footer .footer__banner-nav .footer__banner-list .footer__banner-item .footer__banner-link .footer__banner-bottom::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: var(--footer-banner-arrow-head-right);
  bottom: var(--footer-banner-arrow-head-bottom);
  width: var(--footer-banner-arrow-head-size);
  height: var(--footer-banner-arrow-head-size);
  border-top: var(--footer-banner-arrow-stroke) solid #ffffff;
  border-right: var(--footer-banner-arrow-stroke) solid #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  box-sizing: border-box;
  transform-origin: center center;
}
.footer .footer__banner-nav .footer__banner-list .footer__banner-item .footer__banner-link .footer__banner-bottom .footer__banner-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 2px;
  transform: translateY(-20px);
}
.footer .footer__banner-nav .footer__banner-list .footer__banner-item .footer__banner-link .footer__banner-bottom .footer__banner-text .footer__banner-en {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, calc(1.7rem + 0.2rem * ((100vw - 375px) / 865px)), 1.9rem);
  font-weight: 500;
  line-height: 1.1;
  color: #ffffff;
}
.footer .footer__banner-nav .footer__banner-list .footer__banner-item .footer__banner-link .footer__banner-bottom .footer__banner-text .footer__banner-jp {
  font-size: clamp(1.8rem, calc(1.8rem + 0.2rem * ((100vw - 375px) / 865px)), 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
}

.footer .footer__contact-bar {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-color: #00a6e4;
  position: relative;
  z-index: 1;
  padding: 28px 0;
}
@media (min-width: 1024px) {
  .footer .footer__contact-bar {
    padding: 38px 0;
  }
}
.footer .footer__contact {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}
@media (min-width: 1024px) {
  .footer .footer__contact {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
  }
}
.footer .footer__contact .footer__contact-head {
  max-width: 520px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  align-self: center;
}
@media (min-width: 1024px) {
  .footer .footer__contact .footer__contact-head {
    align-self: auto;
    width: auto;
    text-align: left;
  }
}
.footer .footer__contact .footer__contact-head .txt {
  font-size: 1.4rem;
  color: #ffffff;
  margin: 10px 0 0 0;
}
.footer .footer__contact .footer__contact-head .footer__contact-jp {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.35;
}
.footer .footer__contact .footer__contact-methods {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
@media (min-width: 1024px) {
  .footer .footer__contact .footer__contact-methods {
    flex-direction: row;
    align-items: center;
    gap: 56px;
    flex-shrink: 0;
  }
}
.footer .footer__contact .footer__contact-methods > .footer__contact-item + .footer__contact-item {
  margin-top: 12px;
}
@media (min-width: 1024px) {
  .footer .footer__contact .footer__contact-methods > .footer__contact-item + .footer__contact-item {
    margin-top: 0;
  }
}
.footer .footer__contact .footer__contact-methods .footer__contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0;
}
@media (min-width: 1024px) {
  .footer .footer__contact .footer__contact-methods .footer__contact-item {
    justify-content: flex-start;
    width: auto;
  }
}
.footer .footer__contact .footer__contact-methods .footer__contact-item .footer__contact-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.footer .footer__contact .footer__contact-methods .footer__contact-item .footer__contact-icon--phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
}
.footer .footer__contact .footer__contact-methods .footer__contact-item .footer__contact-icon--mail {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E");
}
.footer .footer__contact .footer__contact-methods .footer__contact-item .footer__contact-body {
  text-align: center;
}
@media (min-width: 1024px) {
  .footer .footer__contact .footer__contact-methods .footer__contact-item .footer__contact-body {
    text-align: left;
  }
}
.footer .footer__contact .footer__contact-methods .footer__contact-item .footer__contact-body .footer__contact-tel {
  margin: 0;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer .footer__contact .footer__contact-methods .footer__contact-item .footer__contact-body .footer__contact-tel {
    text-align: left;
  }
}
.footer .footer__contact .footer__contact-methods .footer__contact-item .footer__contact-body .footer__contact-tel a {
  font-size: clamp(2.6rem, 3.6vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  text-decoration: none;
}
.footer .footer__contact .footer__contact-methods .footer__contact-item .footer__contact-body .footer__contact-tel a:hover {
  opacity: 0.9;
}
.footer .footer__contact .footer__contact-methods .footer__contact-item .footer__contact-body .footer__contact-hours {
  font-size: 1.3rem;
  color: #ffffff;
  margin: 0;
}
.footer .footer__contact .footer__contact-methods .footer__contact-item .footer__contact-body .footer__contact-btn {
  display: inline-block;
  min-width: 280px;
  padding: 14px 48px;
  background-color: #ffffff;
  color: #333333;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 100vh;
  transition: opacity 0.3s ease;
}
@media (min-width: 1024px) {
  .footer .footer__contact .footer__contact-methods .footer__contact-item .footer__contact-body .footer__contact-btn {
    min-width: 300px;
  }
}
.footer .footer__contact .footer__contact-methods .footer__contact-item .footer__contact-body .footer__contact-btn:hover {
  opacity: 0.9;
}

.footer .footer__bottom {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-color: #3a3a3a;
  position: relative;
  z-index: 1;
  padding-bottom: 64px;
}
@media (min-width: 1024px) {
  .footer .footer__bottom {
    padding-bottom: 80px;
  }
}
.footer .footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 64px;
}
.footer .footer__inner > * + * {
  margin-top: 64px;
}
@media (min-width: 1024px) {
  .footer .footer__inner {
    padding-top: 80px;
  }
  .footer .footer__inner > * + * {
    margin-top: 64px;
  }
}
@media (min-width: 1280px) {
  .footer .footer__inner .footer__main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 128px;
  }
}
.footer .footer__inner .footer__main .footer__company {
  margin-bottom: 32px;
}
@media (min-width: 1280px) {
  .footer .footer__inner .footer__main .footer__company {
    flex: 0 0 300px;
    min-width: 0;
    margin-bottom: 0;
  }
}
.footer .footer__inner .footer__main .footer__company .footer__company-name {
  font-size: clamp(2rem, 2.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  margin: 0 0 12px 0;
}
.footer .footer__inner .footer__main .footer__company .footer__office-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .footer__inner .footer__main .footer__company .footer__office-list > .footer__office-item + .footer__office-item {
  margin-top: 12px;
}
.footer .footer__inner .footer__main .footer__company .footer__office-list .footer__office-item .footer__office-name {
  margin: 0 0 4px 0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
}
.footer .footer__inner .footer__main .footer__company .footer__office-list .footer__office-item .footer__office-address {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #ffffff;
}
.footer .footer__inner .footer__nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 1024px) {
  .footer .footer__inner .footer__nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 3vw, 48px);
  }
}
@media (min-width: 1280px) {
  .footer .footer__inner .footer__nav {
    min-width: 0;
    max-width: none;
  }
}
.footer .footer__inner .footer__nav .footer__nav-group {
  min-width: 0;
}
.footer .footer__inner .footer__nav .footer__nav-group .footer__nav-heading {
  display: inline-block;
  margin: 0 0 12px 0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .footer__inner .footer__nav .footer__nav-group .footer__nav-heading:hover {
  color: #00a6e4;
  opacity: 1;
}
.footer .footer__inner .footer__nav .footer__nav-group .footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 12px;
}
.footer .footer__inner .footer__nav .footer__nav-group .footer__nav-list > li {
  white-space: normal;
  overflow-wrap: break-word;
}
.footer .footer__inner .footer__nav .footer__nav-group .footer__nav-list li + li {
  margin-top: 10px;
}
.footer .footer__inner .footer__nav .footer__nav-group .footer__nav-list .footer__nav-item {
  display: block;
  max-width: 100%;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .footer__inner .footer__nav .footer__nav-group .footer__nav-list .footer__nav-item:hover {
  color: #00a6e4;
  opacity: 1;
}
.footer .footer__inner .footer__nav .footer__nav-group .footer__nav-list .footer__nav-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  color: #ffffff;
}
.footer .footer__inner .footer__nav .footer__nav-group--links .footer__nav-heading {
  display: none;
}
.footer .footer__inner .footer__nav .footer__nav-group--links .footer__nav-list .footer__nav-item {
  font-size: 1.4rem;
  font-weight: 700;
}
.footer .footer__inner.footer__inner--wide {
  max-width: 1320px;
}
@media (min-width: 1280px) {
  .footer .footer__inner.footer__inner--wide {
    display: grid;
    grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
    gap: 128px;
    align-items: start;
    min-width: 0;
  }
}
.footer .footer__inner.footer__inner--wide > .footer__main + .footer__nav {
  margin-top: 0;
}
@media (min-width: 1024px) {
  .footer .footer__inner.footer__inner--wide > .footer__nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: start;
    width: 100%;
    min-width: 0;
  }
}
@media (min-width: 1280px) {
  .footer .footer__inner.footer__inner--wide > .footer__nav {
    grid-column: 2;
    grid-row: 1;
    overflow-x: visible;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    justify-self: stretch;
  }
}
@media (min-width: 1280px) {
  .footer .footer__inner.footer__inner--wide > .footer__main {
    display: block;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    min-width: 0;
  }
}
.footer .footer__inner.footer__inner--wide .footer__nav-group:not(.footer__nav-group--links) .footer__nav-list > li {
  position: relative;
  padding-left: 14px;
}
.footer .footer__inner.footer__inner--wide .footer__nav-group:not(.footer__nav-group--links) .footer__nav-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(calc(-50% + 1px));
  width: 8px;
  height: 1px;
  background-color: #00a6e4;
}
.footer .footer__inner .footer__affiliations {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
@media (min-width: 1024px) {
  .footer .footer__inner .footer__affiliations {
    padding-top: 64px;
  }
}
.footer .footer__inner .footer__affiliations .footer__affiliations-head {
  margin-bottom: 32px;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer .footer__inner .footer__affiliations .footer__affiliations-head {
    margin-bottom: 64px;
  }
}
.footer .footer__inner .footer__affiliations .footer__affiliations-head .footer__affiliations-title-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: #ffffff;
  margin: 0 0 4px 0;
}
.footer .footer__inner .footer__affiliations .footer__affiliations-head .footer__affiliations-title-jp {
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.footer .footer__inner .footer__affiliations .footer__affiliations-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .footer .footer__inner .footer__affiliations .footer__affiliations-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
.footer .footer__inner .footer__affiliations .footer__affiliations-list .footer__affiliation-item {
  border-radius: 4px;
  text-align: center;
}
.footer .footer__inner .footer__affiliations .footer__affiliations-list .footer__affiliation-item .footer__affiliation-link {
  display: block;
  padding: 12px 32px 14px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #ffffff;
  border-radius: 4px;
  color: inherit;
  text-decoration: none;
}
.footer .footer__inner .footer__affiliations .footer__affiliations-list .footer__affiliation-item .footer__affiliation-link:hover {
  color: inherit;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.12);
}
.footer .footer__inner .footer__affiliations .footer__affiliations-list .footer__affiliation-item .footer__affiliation-link > * + * {
  margin-top: 2px;
}
@media (min-width: 768px) {
  .footer .footer__inner .footer__affiliations .footer__affiliations-list .footer__affiliation-item .footer__affiliation-link > * + * {
    margin-top: 4px;
  }
}
.footer .footer__inner .footer__affiliations .footer__affiliations-list .footer__affiliation-item .footer__affiliation-link .footer__affiliation-label {
  font-size: 1.3rem;
  color: #ffffff;
  display: block;
}
.footer .footer__inner .footer__affiliations .footer__affiliations-list .footer__affiliation-item .footer__affiliation-link .footer__affiliation-name {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  display: block;
}

#index .company-message__en {
  margin: 0 0 0.35em;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1.15;
  color: #1e4497;
}
#index .company-message__greet {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
}
#index .company-message__greet-line {
  flex-shrink: 0;
  width: 28px;
  height: 2px;
  background-color: #fa8072;
}
#index .company-message__greet-txt {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: #333333;
}
#index .company-message__lead {
  margin: 0 0 32px;
  font-size: clamp(1.8rem, calc(1.8rem + 0.6rem * ((100vw - 375px) / 865px)), 2.4rem);
  font-weight: 700;
  line-height: 1.4;
  color: #1e4497;
}
@media (min-width: 768px) {
  #index .company-message__lead {
    font-size: clamp(2.2rem, calc(2.2rem + 1rem * ((100vw - 375px) / 865px)), 3.2rem);
  }
}
#index .message-block {
  margin-top: 32px;
}
#index .message-block .cutch-txt {
  color: #1e4497;
}
#index .pg-company-message {
  position: relative;
}
#index .pg-company-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background-color: #f6f8f8;
  z-index: 0;
  pointer-events: none;
}
#index .pg-company-message > .pad {
  position: relative;
  z-index: 1;
}
#index .pg-company-message .base_inner {
  background-color: #ffffff;
}
@media (min-width: 768px) {
  #index .pg-company-message .message-in {
    padding: 50px 0 50px 60px;
  }
}
#index .pg-company-message .p-clum2 .pic {
  margin-top: 20px;
}
@media (min-width: 768px) {
  #index .pg-company-message .p-clum2 .pic {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  #index .profile-table__wrap .profile-table .table__row th {
    background-color: #f6f8f8;
  }
}
#index .profile-table__wrap .profile-table td .txt {
  font-weight: 700;
}
#index .profile-table__wrap .profile-table td ul {
  margin: 0 0 0.75em;
  padding-left: 1.25em;
  list-style: disc;
}
#index .profile-table__wrap .profile-table td ul:last-child {
  margin-bottom: 0;
}
#index .profile-table__wrap .profile-table td p + ul {
  margin-top: 0.25em;
}
#index .profile-table__wrap .profile-table td ul + p {
  margin-top: 0.75em;
}
#index .location-tit {
  margin-bottom: 12px;
  padding: 8px 0 8px 12px;
  border-left: 4px solid #1e4497;
  border-bottom: 1px solid #ccc;
  font-size: clamp(1.8rem, calc(1.8rem + 0.2rem * ((100vw - 375px) / 865px)), 2rem);
  font-weight: 700;
  line-height: 1.35;
  color: #333333;
}
#index .company-block-address {
  margin-bottom: 32px;
}
#index .company-block-address a {
  color: inherit;
}
#index .company-map {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  background-color: #e7e7e7;
  aspect-ratio: 16/10;
}
@media (min-width: 768px) {
  #index .company-map {
    aspect-ratio: auto;
    height: 300px;
  }
}
#index .company-map__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
#index .company-map-link {
  margin: 12px 0 0;
  font-size: 1.4rem;
}
#index .company-map-link a {
  color: #1e4497;
}

body.page-index .header .header__logo-link .header__logo-img {
  height: 32px;
}
@media (min-width: 1024px) {
  body.page-index .header .header__logo-link .header__logo-img {
    height: 40px;
  }
}

/*# sourceMappingURL=main.css.map */
