@charset "UTF-8";
/* Sass Document */
/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/
@layer components, variations;
@layer components {
  a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
  }
  p {
    font-size: 1.4rem;
    line-height: 2.2;
  }
  @media screen and (max-width: 767px) {
    p {
      font-size: 1.3rem;
    }
  }
  p + p {
    margin-top: 2.1em;
  }
  button {
    border: none;
    font: inherit;
    color: currentColor;
  }
  ol,
ul {
    list-style: none;
  }
}
html {
  line-height: 1;
}

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

strong {
  font-weight: 700;
}

caption,
td,
th {
  text-align: left;
}

blockquote,
q {
  quotes: none;
}

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

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

* {
  box-sizing: border-box;
  word-break: break-word; /* 長い単語を強制的に折り返す */
  overflow-wrap: break-word; /* 同様の目的。対応ブラウザが広い */
  line-break: strict; /* 節での自然な改行を優先（日本語では特に有効） */
  white-space: normal; /* 普通の折り返し挙動に */
}

html {
  width: 100%;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  font-size: min(0.980392vw, 62.5%);
}
@media screen and (max-width: 767px) {
  html {
    font-size: 62.5%;
  }
}

body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  position: relative;
  font-weight: 400;
  color: #000;
  font-size: 1.4rem;
  scroll-behavior: smooth;
  font-family: "Noto Serif", serif;
  letter-spacing: 0.12em;
  line-height: 2.2;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }
}

div[id],
section[id] {
  scroll-margin-top: 0;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    text-decoration: none;
    cursor: default;
    pointer-events: none;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

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

/* ----------------------------------------------------------------------------------------------------
*	header
* --------------------------------------------------------------------------------------------------*/
#header {
  height: 8rem;
}
@media screen and (max-width: 767px) {
  #header {
    height: 6rem;
  }
}

.header__inner {
  max-width: 102rem;
  margin-inline: auto;
  display: flex;
  padding-inline: 2rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header__inner {
    height: 100%;
    padding-inline: 1.7rem;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  -moz-column-gap: 2.2rem;
       column-gap: 2.2rem;
}

.header__logo-link {
  width: 11.8rem;
  flex-shrink: 0;
  letter-spacing: 0;
}
@media (any-hover) {
  .header__logo-link {
    transition: 0.3s opacity;
  }
  .header__logo-link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .header__logo-link {
    width: 9.3rem;
  }
}

.header__logo-text {
  font-size: 1.4rem;
  color: #8c6239;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .header__logo-text {
    font-size: 1rem;
  }
}

.header__nav {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .header__nav {
    padding-top: 6rem;
    position: fixed;
    z-index: 10001;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100svh;
    overflow: auto;
    background-color: #827674;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
  }
  .header__nav.is-show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.header__nav-list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .header__nav-list {
    display: block;
  }
}

.header__nav-item {
  flex-shrink: 0;
}

.header__nav-link {
  white-space: nowrap;
  display: grid;
  height: 8rem;
  font-size: 1.3rem;
  place-content: center;
  text-decoration: none;
  color: currentColor;
  padding-inline: 0.7rem;
}
@media (any-hover) {
  .header__nav-link {
    transition: 0.3s opacity;
  }
  .header__nav-link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-link {
    font-size: 1.8rem;
    height: auto;
    padding-block: 1rem;
    color: #fff;
  }
}

.hamburger {
  background-color: transparent;
  border: none;
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
  }
}
.hamburger.-open {
  width: 3.4rem;
  height: 3.4rem;
  position: relative;
  margin-left: auto;
}
.hamburger.-open .line {
  width: 100%;
  height: 1px;
  background-color: #000;
  left: 0;
  right: 0;
}
.hamburger.-open .line:first-child {
  top: calc(50% - 7px);
}
.hamburger.-open .line:nth-of-type(2) {
  top: 50%;
}
.hamburger.-open .line:last-of-type {
  top: calc(50% + 7px);
}
.hamburger.-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
}
.hamburger.-close .line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  left: 0;
  right: 0;
  top: 50%;
}
.hamburger.-close .line:first-child {
  transform: rotate(45deg);
}
.hamburger.-close .line:last-of-type {
  transform: rotate(-45deg);
}
.hamburger .line {
  position: absolute;
}

/* ----------------------------------------------------------------------------------------------------
*	footer
* --------------------------------------------------------------------------------------------------*/
#footer {
  padding-block: 6rem 0;
  background-color: var(--bgColor);
}

.footer__inner {
  max-width: 102rem;
  position: relative;
  margin-inline: auto;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding-bottom: 7.4rem;
  }
}

.footer__nav-list {
  display: flex;
  justify-content: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .footer__nav-list {
    display: block;
    font-size: 1.3rem;
    text-align: center;
  }
}
.footer__nav-list a {
  text-decoration: none;
  color: currentColor;
}
@media (any-hover) {
  .footer__nav-list a {
    transition: 0.3s opacity;
  }
  .footer__nav-list a:hover {
    opacity: 0.7;
  }
}

.footer__nav-item {
  padding-inline: 1em;
}
.footer__nav-item:not(:first-of-type) {
  position: relative;
  letter-spacing: 0;
}
.footer__nav-item:not(:first-of-type)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #000;
  width: 1px;
  height: 1em;
}
@media screen and (max-width: 767px) {
  .footer__nav-item:not(:first-of-type)::before {
    display: none;
  }
}

.copyright {
  margin-top: 0.4rem;
  font-size: 1.4rem;
  display: block;
  text-align: center;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .copyright {
    font-size: 1.3rem;
    margin-top: 3rem;
  }
}

.link-top {
  width: 5rem;
  height: 5rem;
  display: block;
  background-color: red;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 0.5rem;
}
@media (any-hover) {
  .link-top {
    transition: 0.3s opacity;
  }
  .link-top:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .link-top {
    width: 4.8rem;
    height: 4.8rem;
    right: 2rem;
  }
}
.link-top::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  margin: auto;
}

.link-top-wrapper {
  position: fixed;
  right: 4rem;
  bottom: 2rem;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 10001;
}
@media screen and (max-width: 767px) {
  .link-top-wrapper {
    right: 2rem;
  }
}
.link-top-wrapper.is-show {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

/* ----------------------------------------------------------------------------------------------------
*	common
* --------------------------------------------------------------------------------------------------*/
:root {
  --bgColor: #f3f3ef;
}

#main {
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  #main {
    padding-bottom: 9rem;
  }
}

.breadcrumb {
  max-width: 102rem;
  margin-inline: auto;
  font-size: 1.4rem;
  padding: 1.8rem 5rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
}

.breadcrumb__list {
  display: flex;
}

.breadcrumb__item:not(:first-of-type) {
  position: relative;
  margin-left: 1em;
  padding-left: 0.5em;
}
.breadcrumb__item:not(:first-of-type)::before {
  content: ">";
  left: -0.5em;
  position: relative;
}
.breadcrumb__item a {
  color: currentColor;
  text-decoration: none;
}
@media (any-hover) {
  .breadcrumb__item a {
    transition: 0.3s opacity;
  }
  .breadcrumb__item a:hover {
    opacity: 0.7;
  }
}

.content__inner {
  max-width: 102rem;
  padding-inline: 5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .content__inner {
    padding-inline: 4rem;
  }
}

.section__title {
  text-align: center;
  font-size: 2.5rem;
  letter-spacing: 0.4em;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.section__title.-vertical {
  writing-mode: vertical-rl;
  text-align: right;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .section__title.-spleft {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .section__title {
    font-size: 2rem;
  }
}

.ls-minus {
  letter-spacing: -0.05em;
}

.nowrap {
  white-space: nowrap;
}

.red {
  color: #ff0000;
}

.center {
  text-align: center;
}

.link-wrapper.-right {
  text-align: right;
  margin-top: 3.8rem;
}
@media screen and (max-width: 767px) {
  .link-wrapper.-right {
    margin-top: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .spleft {
    text-align: left !important;
  }
}

@media screen and (max-width: 767px) {
  .spcenter {
    text-align: center !important;
    margin-inline: auto;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .spls {
    letter-spacing: 0.01em;
  }
}

.anchor {
  display: flex;
  justify-content: center;
  font-size: 1.4rem;
  flex-wrap: wrap;
  gap: 2rem 12rem;
  margin-top: 2.6rem;
}
@media screen and (max-width: 767px) {
  .anchor {
    margin-top: 1.6rem;
    display: block;
    font-size: 1.2rem;
  }
  .anchor li + li {
    margin-top: 1rem;
  }
  .anchor li {
    text-align: center;
  }
}
.anchor a {
  text-decoration: none;
  color: currentColor;
  position: relative;
  padding-right: 6rem;
  display: inline-block;
}
@media (any-hover) {
  .anchor a {
    transition: 0.3s opacity;
  }
  .anchor a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .anchor a {
    padding-right: 4rem;
  }
}
.anchor a::after {
  content: "";
  position: absolute;
  width: 3.6rem;
  height: 3.6rem;
  background: url(../img/common/icn_arrow.svg) no-repeat center/contain;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .anchor a::after {
    width: 3rem;
    height: 3rem;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	MV
* --------------------------------------------------------------------------------------------------*/
.mv {
  overflow: hidden;
  width: 100%;
  display: grid;
}
.mv .splide__slide {
  min-height: 69rem;
}
@media screen and (max-width: 767px) {
  .mv .splide__slide {
    min-height: inherit;
  }
}
.mv img {
  width: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv .splide__slide {
    min-height: 74rem;
  }
}
.mvSlide {
  grid-row: 1;
  grid-column: 1;
}

.mv__text-wrapper {
  display: grid;
  place-content: center;
  grid-row: 1;
  grid-column: 1;
  position: relative;
  z-index: 2;
}
.mv__text-wrapper .content__title {
  margin-top: -4rem;
  width: 9.6rem;
}
@media screen and (max-width: 767px) {
  .mv__text-wrapper .content__title {
    width: 17.0666666667vw;
    margin: 0;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	TOP-NEWS
* --------------------------------------------------------------------------------------------------*/
.top-news {
  padding-block: 10.3rem 12rem;
  background: url(../img/top/txt_news.svg) no-repeat top 6.6rem center/22.3rem auto;
}
@media screen and (max-width: 767px) {
  .top-news {
    background-size: 19rem auto;
    padding-bottom: 6rem;
  }
}

.news__item {
  border-bottom: 1px solid #000;
}
.news__item:first-of-type {
  border-top: 1px solid #000;
}

.top-news__content {
  margin-top: 1.1rem;
}

.news__item a {
  color: currentColor;
  text-decoration: none;
  display: block;
}
@media (any-hover) {
  .news__item a {
    transition: 0.3s opacity;
  }
  .news__item a:hover {
    opacity: 0.7;
  }
}

.news__inner {
  padding-block: 1.4rem;
  display: flex;
  align-items: flex-start;
}
.news__inner .date {
  width: 14.5rem;
  flex-shrink: 0;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .news__inner .date {
    font-size: 1.2rem;
    width: 10em;
  }
}
@media screen and (max-width: 767px) {
  .news__inner p {
    font-size: 1.2rem;
    line-height: 1.6;
  }
}

.news__text-content {
  flex-grow: 1;
}

.link-arrow {
  text-decoration: none;
  color: currentColor;
  font-size: 1.4rem;
  padding-right: 6rem;
  position: relative;
  display: inline-block;
}
@media (any-hover) {
  .link-arrow {
    transition: 0.3s opacity;
  }
  .link-arrow:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .link-arrow {
    font-size: 1.2rem;
    padding-right: 4rem;
  }
}
.link-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 3.6rem;
  height: 3.6rem;
  background: url(../img/common/icn_arrow.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .link-arrow::after {
    width: 3rem;
    height: 3rem;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	top-programs
* --------------------------------------------------------------------------------------------------*/
.top-programs {
  padding-block: 7.7rem 3.3rem;
  background: url(../img/top/txt_programs.svg) var(--bgColor) no-repeat top 3.3rem center/37.9rem auto;
}
@media screen and (max-width: 767px) {
  .top-programs {
    background-size: 32.2rem;
    background-position: top 4rem center;
  }
}

.top-programs__content {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .top-programs__content {
    margin-top: 2rem;
  }
}

.media {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
@media screen and (max-width: 767px) {
  .media {
    display: block;
  }
}
.media figure {
  flex-shrink: 0;
  max-width: 37.5%;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .media figure {
    width: 100%;
    max-width: inherit;
    margin-top: 0;
  }
}
.media figure img {
  width: 100%;
}

.media__body {
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .media__body {
    padding-top: 2rem;
  }
}

.media__title {
  font-size: 2rem;
  margin-bottom: 2.6rem;
  letter-spacing: 0.4em;
}
@media screen and (max-width: 767px) {
  .media__title {
    line-height: 1.8;
    margin-bottom: 1.6rem;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	top-case-study
* --------------------------------------------------------------------------------------------------*/
.top-case-study {
  padding-block: 19.5rem 7rem;
  background: url(../img/top/text_case-study.svg) no-repeat top 14.6rem center/43.4rem auto;
}
@media screen and (max-width: 767px) {
  .top-case-study {
    padding-top: 9.1rem;
    background-size: 36.6rem auto;
    background-position: top 5rem center;
  }
}
.top-case-study .link-wrapper {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .top-case-study .link-wrapper {
    margin-top: 2rem;
  }
}

.top-case-study__content {
  margin-top: 4rem;
}
.top-case-study__content .splide__arrow {
  background-color: transparent;
  width: 3.6rem;
  top: min(8.7vw, 9.5rem);
}
@media screen and (max-width: 767px) {
  .top-case-study__content .splide__arrow {
    width: 3rem;
    height: 3rem;
    top: 25vw;
  }
}
.top-case-study__content .splide__arrow--prev {
  left: -1.3em;
}
.top-case-study__content .splide__arrow--next {
  right: -1.3em;
}

.splide__slide a {
  text-decoration: none;
  color: currentColor;
  display: block;
  will-change: opacity;
}
@media (any-hover) {
  .splide__slide a {
    transition: 0.3s opacity;
  }
  .splide__slide a:hover {
    opacity: 0.7;
  }
}

.case-study__card .img-wrapper {
  border-radius: 0.5rem;
  overflow: hidden;
  aspect-ratio: 277/174;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 767px) {
  .case-study__card .img-wrapper {
    margin-bottom: 1.6rem;
  }
}
.case-study__card .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.case-study__card p {
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .case-study__card p {
    font-size: 1.3rem;
    line-height: 2;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	top-call-for-proposals
* --------------------------------------------------------------------------------------------------*/
.top-call-for-proposals {
  padding-block: 9.6rem 8rem;
  background: url(../img/top/txt_call-for-proposals.svg) var(--bgColor) no-repeat top 5rem center/71.6rem auto;
}
@media screen and (max-width: 767px) {
  .top-call-for-proposals {
    padding-block: 7.1rem 3.2rem;
    background-size: 35.9rem auto;
  }
}
.top-call-for-proposals .link-wrapper {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .top-call-for-proposals .link-wrapper {
    margin-top: 3rem;
  }
}

.top-call-for-proposals__content {
  margin-top: 3.6rem;
}

/* ----------------------------------------------------------------------------------------------------
*	top-contact
* --------------------------------------------------------------------------------------------------*/
.top-contact-us {
  padding-block: 19.7rem 10rem;
  background: url(../img/top/txt_contact-us.svg) no-repeat top 15.1rem center/44.6rem auto;
}
@media screen and (max-width: 767px) {
  .top-contact-us {
    padding-block: 9.8rem 4rem;
    background-size: 37.2rem auto;
    background-position: top 6rem center;
  }
}

.top-contact-us__content {
  text-align: center;
  margin-top: 4rem;
}
.top-contact-us__content p {
  letter-spacing: 0;
}
.top-contact-us__content .-hour {
  margin-top: 2.7rem;
}
.top-contact-us__content .text {
  line-height: 1.4;
}

.contact-tel,
.contact-mail {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: currentColor;
  justify-content: center;
  font-size: 2.5rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .contact-tel,
.contact-mail {
    font-size: 1.7rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
.contact-tel a,
.contact-mail a {
  line-height: 1;
}
.contact-tel p,
.contact-mail p {
  font-size: inherit;
  letter-spacing: 0;
  line-height: 1.2;
}
.contact-tel i,
.contact-mail i {
  display: block;
  line-height: 1;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.contact-tel {
  margin-top: 1.7rem;
}
.contact-tel i {
  width: 2.4rem;
}
@media screen and (max-width: 767px) {
  .contact-tel i {
    width: 1.8rem;
  }
}

.contact-mail {
  margin-top: 1.7rem;
}
@media (any-hover) {
  .contact-mail {
    transition: 0.3s opacity;
  }
  .contact-mail:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .contact-mail {
    margin-top: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .contact-mail i {
    width: 2rem;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	バナー
* --------------------------------------------------------------------------------------------------*/
.top-links {
  padding-block: 8.4rem 0;
}

.top-links__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 6.6rem;
}
@media screen and (max-width: 767px) {
  .top-links__list {
    justify-content: space-between;
    gap: 1.4rem 0;
  }
}
.top-links__list li {
  width: calc((100% - 19.8rem) / 4);
}
@media screen and (max-width: 767px) {
  .top-links__list li {
    width: 47%;
  }
}
.top-links__list li img {
  width: 100%;
}
@media (any-hover) {
  .top-links__list li a {
    transition: 0.3s opacity;
  }
  .top-links__list li a:hover {
    opacity: 0.7;
  }
}

.top-links__content {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .top-links__content {
    margin-top: 0.3rem;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	事業紹介
* --------------------------------------------------------------------------------------------------*/
.programs .section__title {
  letter-spacing: 0.45em;
}

.programs__content {
  background: url(../img/common/txt_programs.svg) no-repeat top 1rem center/70.2rem auto;
  padding-top: 11rem;
}
@media screen and (max-width: 767px) {
  .programs__content {
    background-size: 32.2rem auto;
    padding-top: 4.8rem;
  }
}

@media screen and (max-width: 767px) {
  .about .section__title {
    margin-bottom: 1.6rem;
  }
}

.-about01 {
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .-about01 {
    margin-top: 3rem;
  }
}

.-about02 {
  margin-top: 5.3rem;
  padding-bottom: 7rem;
}
.-about02 p {
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .-about02 {
    padding-bottom: 5rem;
  }
}

.goal {
  position: relative;
  background-color: var(--bgColor);
  padding-block: 4rem 9.3rem;
}
@media screen and (max-width: 767px) {
  .goal {
    padding-block: 2rem 4.6rem;
  }
}
.goal .section__title {
  position: absolute;
  right: 4rem;
  top: 0;
}
@media screen and (max-width: 767px) {
  .goal .section__title {
    font-size: 1.3rem;
  }
}
.goal .content__inner {
  position: relative;
  padding-top: 5.2rem;
}
@media screen and (max-width: 767px) {
  .goal .content__inner {
    padding-top: 3rem;
  }
}

.goal__content {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 18rem 18rem 18rem;
  gap: 0px 0px;
  max-width: 70.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .goal__content {
    grid-template-rows: 7.5rem 7.5rem 7.5rem;
    max-width: 29.5rem;
  }
}

.block {
  display: grid;
  place-content: center;
  border-radius: 0.5rem;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .block {
    padding: 0;
    border-radius: 0.2rem;
  }
}
@media screen and (max-width: 767px) {
  .block * {
    font-size: 0.66rem;
    letter-spacing: 0;
  }
}
.block.bg-arrow {
  position: relative;
}
.block.bg-arrow::after {
  content: "";
  position: absolute;
  width: 5.8rem;
  height: 4.9rem;
  background: url(../img/common/icn_graph-arrow.svg) no-repeat center center/contain;
  top: 50%;
  left: 50%;
  transform: translate(-8%, -62%);
}
@media screen and (max-width: 767px) {
  .block.bg-arrow::after {
    width: 2.4rem;
    height: 2rem;
  }
}
.block.bg-color {
  background-color: #999393;
  color: #fff;
}
.block li {
  text-indent: -0.5em;
  padding-left: 0.5em;
}
.block .title {
  font-size: 2rem;
  color: #6c0000;
  line-height: 1.8;
  letter-spacing: 0.2em !important;
}
@media screen and (max-width: 767px) {
  .block .title {
    font-size: 1rem;
  }
}
.block.-block03 {
  grid-column: 3;
  grid-row: 1;
}
.block.-block03::after {
  transform: translate(-74%, -43%) rotate(90deg);
}
.block.-block05 {
  grid-column: 3;
  grid-row: 3;
}
.block.-block05::after {
  transform: translate(-89%, -39%) rotate(180deg);
}
.block.-block07 {
  grid-column: 1;
  grid-row: 3;
}
.block.-block07::after {
  transform: translate(-25%, -57%) rotate(270deg);
}

.-block01 {
  grid-row: 2;
  grid-column: 2;
  text-align: center;
}

.-block02 {
  grid-column: 2;
  grid-row: 1;
}

.-block04 {
  grid-column: 3;
  grid-row: 2;
}

.-block06 {
  grid-column: 2;
  grid-row: 3;
  text-align: center;
}

.-block08 {
  grid-column: 1;
  grid-row: 2;
  text-align: center;
}

.-block09 {
  grid-column: 1;
  grid-row: 1;
}

.guide {
  padding-block: 8.5rem 7rem;
}

.link__title {
  text-align: center;
  font-size: 2.4rem;
  letter-spacing: 0.45em;
  margin-bottom: 1.4rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .link__title {
    font-size: 1.5rem;
  }
}

.guide__list {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .guide__list {
    text-align: left;
  }
}
.guide__list a {
  color: #0071bc;
  text-decoration: none;
}
@media (any-hover) {
  .guide__list a {
    transition: 0.3s opacity;
  }
  .guide__list a:hover {
    opacity: 0.7;
  }
}
.guide__list li + li {
  margin-top: 3.2rem;
}

a.pdf-link {
  position: relative;
  display: inline-block;
  padding-left: 4rem;
  padding-right: 2rem;
  text-decoration: none;
  color: #0071bc;
}
@media (any-hover) {
  a.pdf-link {
    transition: 0.3s opacity;
  }
  a.pdf-link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  a.pdf-link {
    margin-inline: 2rem;
    font-size: 1.3rem;
    padding-right: 0;
  }
}
a.pdf-link::before {
  content: "";
  position: absolute;
  width: 2.5rem;
  height: 3.3rem;
  background: url(../img/common/icn_pdf.svg) no-repeat center/contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.jigyou-contact {
  background-color: #e1d7db;
  padding-block: 5.3rem 7rem;
}
.jigyou-contact .section__title {
  letter-spacing: 0.37em;
  line-height: 1.8;
  margin-bottom: 0.7rem;
}
@media screen and (max-width: 767px) {
  .jigyou-contact .section__title {
    letter-spacing: 0.25em;
    margin-bottom: 4rem;
  }
}
.jigyou-contact a {
  text-decoration: none;
  color: currentColor;
}
.jigyou-contact a[href^="mailto:"] {
  color: #0071bc;
}
@media (any-hover) {
  .jigyou-contact a[href^="mailto:"] {
    transition: 0.3s opacity;
  }
  .jigyou-contact a[href^="mailto:"]:hover {
    opacity: 0.7;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	
* --------------------------------------------------------------------------------------------------*/
.call-for-proposals__content {
  padding-top: 11.3rem;
  background: url(../img/common/txt_call-for-proposals.svg) no-repeat top 3.6rem center/92.6rem auto;
}
@media screen and (max-width: 767px) {
  .call-for-proposals__content {
    background-size: 35.9rem;
    padding-top: 6.3rem;
  }
}

.document__title {
  border: 1px solid #000;
  font-size: 2rem;
  text-align: center;
  line-height: 1.8;
  padding: 1.8rem 1rem;
  letter-spacing: 0.25em;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .document__title {
    font-size: 1.3rem;
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }
}

.document__block {
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .document__block .heading-text {
    letter-spacing: 0;
    font-size: 1.2rem;
  }
}
.document__block.-block01 {
  margin-top: 9rem;
}
.document__block.-block01 + .document__block {
  margin-top: 0.4rem;
}
.document__block + .document__block {
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .document__block + .document__block {
    margin-top: 1rem;
  }
}
.document__block a[href^="mailto:"] {
  text-decoration: none;
  color: currentColor;
}
@media (any-hover) {
  .document__block a[href^="mailto:"] {
    transition: 0.3s opacity;
  }
  .document__block a[href^="mailto:"]:hover {
    opacity: 0.7;
  }
}
.document__block.-faq {
  text-align: center;
  margin-top: 9rem;
  padding-bottom: 14rem;
}
@media screen and (max-width: 767px) {
  .document__block.-faq {
    margin-top: 3rem;
    padding-bottom: 8rem;
  }
}
.document__block.-faq a {
  text-decoration: none;
  color: currentColor;
}

@media screen and (max-width: 767px) {
  .document__list {
    margin-top: 1rem;
  }
}
.document__list a {
  color: #0071bc;
  text-decoration: none;
}
@media (any-hover) {
  .document__list a {
    transition: 0.3s opacity;
  }
  .document__list a:hover {
    opacity: 0.7;
  }
}

.txtsize-large {
  font-size: 2rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .txtsize-large {
    font-size: 1.5rem;
  }
}

.table-content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3.3rem;
}
@media screen and (max-width: 767px) {
  .table-content table {
    margin-top: 1rem;
  }
}
.table-content tr:first-of-type th,
.table-content tr:first-of-type td {
  border-top: 1px solid #000;
}
.table-content th,
.table-content td {
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .table-content th,
.table-content td {
    font-size: 1rem;
    letter-spacing: 0;
    line-height: 1.6;
  }
  .table-content th *,
.table-content td * {
    font-size: 1rem;
    letter-spacing: 0.1em;
    line-height: 1.8;
  }
}
.table-content th {
  vertical-align: middle;
  background-color: #e8e8e1;
  padding: 0.6rem;
  text-align: center;
}
.table-content th + td {
  background-color: #f3f3ef;
  width: 21.5rem;
  vertical-align: middle;
  padding-inline: 4.8rem;
}
@media screen and (max-width: 767px) {
  .table-content th + td {
    width: auto;
    padding: 0.5rem;
    width: 7em;
    box-sizing: content-box;
  }
}
.table-content td {
  padding: 2rem 3.4rem;
}
@media screen and (max-width: 767px) {
  .table-content td {
    padding: 1rem 0.5rem 1rem 1rem;
  }
}
.table-content td:last-child {
  border-right: 1px solid #000;
}
.table-content td li {
  text-indent: -0.5em;
  padding-left: 0.5em;
}
.table-content ul + p {
  margin-top: 2.8rem;
}
@media screen and (max-width: 767px) {
  .table-content ul + p {
    margin-top: 2rem;
  }
}
.table-content .note {
  padding-left: 1em;
  text-indent: -1em;
}

/* ----------------------------------------------------------------------------------------------------
*	事例
* --------------------------------------------------------------------------------------------------*/
.case-study__content {
  padding-top: 12rem;
  background: url(../img/common/txt_casestudy.svg) no-repeat top center/80.4rem auto;
}
@media screen and (max-width: 767px) {
  .case-study__content {
    background-size: 36.6rem auto;
    padding-top: 8.7rem;
    background-position: top 4rem center;
  }
}

.case-study__year {
  margin-top: 14rem;
  border: 1px solid #000;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.8;
  padding: 1rem 1rem;
  letter-spacing: 0.25em;
  scroll-margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .case-study__year {
    margin-top: 4rem;
    font-size: 1.3rem;
    padding: 1rem 1rem;
  }
}

.case-study__list {
  margin-top: 4rem;
  counter-reset: item;
}
@media screen and (max-width: 767px) {
  .case-study__list {
    margin-top: 3rem;
  }
  .case-study__list + .case-study__year {
    margin-top: 9rem;
  }
}

.case-study__item {
  counter-increment: item;
  position: relative;
  display: flex;
  -moz-column-gap: 1.6rem;
       column-gap: 1.6rem;
  align-items: flex-start;
  scroll-margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .case-study__item {
    display: block;
  }
}
.case-study__item + .case-study__item {
  margin-top: 13.2rem;
}
@media screen and (max-width: 767px) {
  .case-study__item + .case-study__item {
    margin-top: 7rem;
  }
}

.case-study-image {
  width: 32rem;
  flex-shrink: 0;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .case-study-image {
    width: auto;
    margin-top: 0;
  }
}
.case-study-image figure {
  aspect-ratio: 120/90;
  overflow: hidden;
  border-radius: 0.5rem;
}
.case-study-image figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.case-study-image .splide__pagination {
  bottom: -2em;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .case-study-image .splide__pagination {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
}
.case-study-image .splide__pagination .splide__pagination__page {
  transform: scale(1) !important;
  width: 1.2rem;
  height: 1.2rem;
  border: 1px solid #000;
  background-color: #fff;
  opacity: 1 !important;
}
@media screen and (max-width: 767px) {
  .case-study-image .splide__pagination .splide__pagination__page {
    width: 0.84rem;
    height: 0.84rem;
  }
}
.case-study-image .splide__pagination .splide__pagination__page.is-active {
  background-color: #000;
}

.place {
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .place {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
}

.case-study__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-height: 24.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .case-study__body {
    padding-top: 5rem;
    display: block;
    min-height: inherit;
  }
}
.case-study__body::after {
  content: counter(item, decimal-leading-zero);
  position: absolute;
  font-family: "EB Garamond", serif;
  top: 0;
  right: 0;
  font-size: 9.5rem;
  font-style: italic;
  color: #f3f3ef;
  z-index: -1;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .case-study__body::after {
    top: -0.6rem;
  }
}
.case-study__body table {
  margin-top: auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .case-study__body table {
    margin-top: 1rem;
  }
}
.case-study__body table a {
  color: #0071bc;
  text-decoration: none;
}
@media (any-hover) {
  .case-study__body table a {
    transition: 0.3s opacity;
  }
  .case-study__body table a:hover {
    opacity: 0.7;
  }
}
.case-study__body table tr:first-of-type td,
.case-study__body table tr:first-of-type th {
  border-top: 1px solid #000;
}
.case-study__body table td,
.case-study__body table th {
  font-size: 1.4rem;
  line-height: 1.4;
  padding: 0.5rem;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .case-study__body table td,
.case-study__body table th {
    font-size: 1.2rem;
    padding-block: 1.8rem;
    line-height: 1.8;
  }
}
.case-study__body table th {
  letter-spacing: 0;
  width: 6.8em;
}
.case-study__body table td {
  padding-inline: 1rem;
  border-left: 1px solid #000;
}

.case-study__title {
  font-size: 2rem;
  line-height: 1.8;
  margin-bottom: 0.7rem;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 767px) {
  .case-study__title {
    font-size: 1.3rem;
    text-align: center;
    letter-spacing: 0;
    line-height: 2;
    margin-bottom: 0;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	news
* --------------------------------------------------------------------------------------------------*/
.news__content {
  padding-top: 12.4rem;
  background: url(../img/common/txt_news.svg) no-repeat top 2rem center/41.3rem auto;
}
@media screen and (max-width: 767px) {
  .news__content {
    background-size: 19rem auto;
    padding-top: 6.4rem;
  }
}

.news__container:first-of-type {
  margin-top: 3.2rem;
}
.news__container:first-of-type .year__title-wrapper {
  border-top: 1px solid #000;
}

.year__title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.4rem 0;
}

.year__title {
  writing-mode: vertical-rl;
  text-align: center;
}
.year__title .year__number {
  position: relative;
  left: 0.14rem;
}
.mobile .year__title .year__number {
  left: 0.2rem;
}
.safari .year__title .year__number {
  left: 0.02rem;
}

.news__post {
  max-width: 102rem;
  margin-inline: auto;
  padding-inline: 5rem;
  padding-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .news__post {
    padding-top: 3rem;
    padding-inline: 4rem;
  }
}
.news__post h1 {
  font-size: 2.5rem;
  margin-bottom: 5.4rem;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 767px) {
  .news__post h1 {
    font-size: 2rem;
    letter-spacing: 0.3em;
    line-height: 1.8;
    margin-bottom: 1.4em;
  }
}
.news__post h2 {
  font-size: 2.2rem;
  margin-block: 2em 1em;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 767px) {
  .news__post h2 {
    font-size: 1.8rem;
    letter-spacing: 0.2em;
    line-height: 1.8;
  }
}
.news__post h3 {
  font-size: 2rem;
  margin-block: 2em 1em;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 767px) {
  .news__post h3 {
    font-size: 1.6rem;
    letter-spacing: 0.2em;
    line-height: 1.8;
  }
}
.news__post h4 {
  font-size: 1.8rem;
  margin-block: 2em 1em;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 767px) {
  .news__post h4 {
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    line-height: 1.8;
  }
}
.news__post h5 {
  font-size: 1.6rem;
  margin-block: 2em 1em;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 767px) {
  .news__post h5 {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    line-height: 1.8;
  }
}
.news__post p {
  letter-spacing: 0.1em;
}
.news__post p + p {
  margin-top: 4em;
}
@media screen and (max-width: 767px) {
  .news__post p + p {
    margin-top: 2em;
  }
}
.news__post a {
  color: #0071bc;
  text-decoration: none;
}
@media (any-hover) {
  .news__post a {
    transition: 0.3s opacity;
  }
  .news__post a:hover {
    opacity: 0.7;
  }
}
.news__post .link-wrapper {
  margin-top: 8rem;
  text-align: right;
}
.news__post .link-wrapper a {
  color: #000 !important;
}
@media screen and (max-width: 767px) {
  .news__post .link-wrapper {
    margin-top: 3rem;
  }
}

.news__video {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .news__video {
    margin-top: 3rem;
  }
}
.news__video figure {
  border: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .news__video p {
    font-size: 1rem;
  }
}

.video-link {
  position: relative;
  display: block;
  margin-top: 2.7rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .video-link {
    margin-top: 2rem;
  }
}
.video-link::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  display: block;
  width: 5.3rem;
  height: 5.3rem;
  background: url(../img/common/icn_play.svg) no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .video-link::before {
    width: 4.2rem;
    height: 4.2rem;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	関連動画
* --------------------------------------------------------------------------------------------------*/
.video__content {
  padding-top: 12rem;
  background: url(../img/common/txt_video.svg) no-repeat top 2rem center/92.2rem auto;
}
@media screen and (max-width: 767px) {
  .video__content {
    background-size: 29.4rem auto;
    background-position: top 3rem center;
    padding-top: 5.5rem;
  }
}

.video__list {
  display: flex;
  max-width: 92rem;
  margin: 9rem auto 0;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 9rem 0;
}
@media screen and (max-width: 767px) {
  .video__list {
    display: block;
    padding-inline: 4rem;
    margin-top: 4rem;
  }
}

.video__item {
  width: 46.1956521739%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .video__item {
    width: 100%;
  }
}
.video__item figure {
  border: 1px solid #000;
  margin-bottom: 2rem;
  aspect-ratio: 425/225;
  overflow: hidden;
}
.video__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video__item a {
  color: currentColor;
  text-decoration: none;
  display: block;
  will-change: opacity;
}
@media (any-hover) {
  .video__item a {
    transition: 0.3s opacity;
  }
  .video__item a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .video__item + .video__item {
    margin-top: 4rem;
  }
}
/*# sourceMappingURL=style.css.map */