abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
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,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
body {
  line-height: 1;
}
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
summary {
  display: block;
}
li,
ul {
  list-style: none;
}
a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  margin: 0;
  padding: 0;
}
input,
select {
  vertical-align: middle;
}
a img {
  border: none;
}
img {
  vertical-align: top;
  margin: 0;
  padding: 0;
  object-fit: cover;
}
iframe,
img,
video {
  max-width: 100%;
}
html {
  scroll-behavior: smooth;
}
body,
html {
  height: 100%;
}
body {
  font-family: var(--font-family-brand);
  text-align: center;
  position: relative;
  font-weight: var(--weight-normal);
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  line-height: 1.75;
  font-size: var(--fs-default);
  overflow-x: hidden;
  background: var(--color-white);
}
body * {
  box-sizing: border-box;
  word-wrap: break-word;
  word-break: break-all;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-appearance: none;
  letter-spacing: 0.03em;
}
a {
  color: var(--accent-light-blue);
}
a:link {
  color: var(--color-black);
  text-decoration: none;
  outline: none;
}
a:visited {
  color: var(--color-black);
  text-decoration: none;
  outline: none;
}
a:hover {
  color: var(--color-gray);
  text-decoration: none;
  outline: none;
}
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 95%;
  padding: 0 16px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .header-main {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .header-main {
    padding: 12px 16px;
  }
}
.header-main__logo {
  display: inline-flex;
  max-width: 90px;
  width: 100%;
  height: auto;
}
.header-main__logo .-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .header-main__logo .-logo {
    position: relative;
    top: 2px;
  }
}
.header-main__inner {
  display: flex;
  align-items: center;
  gap: 0 32px;
}
@media screen and (max-width: 768px) {
  .header-main__inner {
    display: none;
  }
}
.header-nav {
  display: flex;
  gap: 0 24px;
}
@media screen and (max-width: 880px) {
  .header-nav {
    gap: 0 24px;
  }
}
.header-nav__item {
  position: relative;
}
.header-nav__item + .header-nav__item:before {
  content: "";
  width: 1px;
  height: 60%;
  position: absolute;
  left: -14px;
  bottom: 0;
  top: 0;
  margin: auto 0;
  border-left: 1px dashed rgba(0, 0, 0, 0.1);
}
.header-nav__item .js-ac-head {
  display: none;
}
.header-nav__item-link {
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  white-space: nowrap;
  color: var(--color-black);
  gap: 3px 0;
  position: relative;
}
.header-nav__item-link span {
  color: var(--color-brand-main) !important;
  font-weight: var(--weight-middle);
  font-size: 11px;
  letter-spacing: 1px;
  line-height: 1.5;
}
.header-nav__item-link small {
  font-family: var(--font-family-brand);
  font-weight: var(--weight-middle);
  font-size: 15px;
  color: var(--color-black) !important;
  line-height: 1;
  position: relative;
}
.header-nav__item-link small:before {
  transition: var(--transition);
  content: "";
  width: 0%;
  height: 1px;
  background: var(--color-brand-light-dark2);
  position: absolute;
  bottom: -3px;
}
.header-nav__item-link:hover small:before {
  content: "";
  width: 100%;
}
.pulldown-menu {
  display: none;
  width: 180px;
  position: absolute;
  top: 62px;
  left: -56px;
  background: var(--color-white);
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  padding: 16px 0;
}
.js-header.fixed .pulldown-menu {
  top: 72px;
}
.pulldown-menu__link {
  font-size: var(--fs-default);
  font-weight: var(--weight-middle);
  color: var(--color-black);
  text-align: center;
  display: block;
  padding: 8px 16px;
  line-height: 1.5;
}
.pulldown-menu__link small {
  display: none;
}
@media screen and (max-width: 768px) {
  .pulldown-menu__link small {
    display: block;
  }
}
.pulldown-menu__link:hover {
  background: var(--color-brand-light);
  color: var(--color-black);
}
@media screen and (max-width: 768px) {
  .pulldown-menu__link:hover {
    background: none;
  }
}
.header-nav__item:hover .pulldown-menu {
  display: flex;
  flex-direction: column;
}
.js-header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  z-index: 1000;
  transform: translate(0, 32px);
  transition: all 0.3s cubic-bezier(0, 1, 0.64, 1);
  background: var(--color-white);
}
.js-header.fixed {
  position: fixed;
  transform: translate(0);
  padding: 0;
}
.js-header.fixed .header-nav__item-link {
  padding-top: 26px;
  padding-bottom: 26px;
}
@media screen and (max-width: 768px) {
  .js-header {
    transform: translate(0);
  }
}
.-btn-burger {
  display: none;
  position: relative;
  cursor: pointer;
  transform: rotate(0deg);
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 768px) {
  .-btn-burger {
    display: flex;
  }
}
.-btn-burger span {
  transition: var(--transition);
  font-weight: var(--weight-middle);
  font-size: var(--fs-default);
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  height: 36px;
}
.-btn-burger span.-menu {
  display: flex;
}
.-btn-burger span.-close {
  border-color: var(--color-white);
  display: none;
}
.-sp-header-body {
  transition: var(--transition);
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  width: 100%;
  height: 0;
  background: var(--color-brand-light-dark2);
  z-index: 100;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  .-sp-header-body {
    display: flex;
  }
}
.-sp-header-body .-btn-row {
  padding: 24px 16px;
}
.-sp-header-body .-header-sp-nav {
  padding: 80px 0 0 0;
}
@media screen and (max-width: 768px) {
  .-sp-header-body .-header-sp-nav {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
  }
}
.-sp-header-body .-sp-item {
  position: relative;
  padding: 0 16px;
  font-size: var(--fs-default);
}
.-sp-header-body .-sp-item + .-sp-item:before {
  content: "";
  width: calc(100% - 64px);
  height: 1px;
  border-top: 1px dashed rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.-sp-header-body .-sp-item .pulldown-menu {
  display: flex;
  flex-direction: column;
  position: relative;
  top: 0;
  left: 0;
}
.-sp-header-body .-sp-item .-sp-item__head,
.-sp-header-body .-sp-item .js-ac-head {
  display: none;
  align-items: center;
  gap: 0 16px;
  position: relative;
  cursor: pointer;
  font-weight: var(--weight-middle);
  font-size: var(--fs-x-default);
  color: var(--color-black);
  padding: 14px 40px 14px 16px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .-sp-header-body .-sp-item .-sp-item__head,
  .-sp-header-body .-sp-item .js-ac-head {
    display: flex;
  }
}
.-sp-header-body .-sp-item .-sp-item__head span,
.-sp-header-body .-sp-item .js-ac-head span {
  order: 2;
  letter-spacing: 1px;
  font-size: 12px;
  opacity: 0.6;
}
.-sp-header-body .-sp-item .-sp-item__head small,
.-sp-header-body .-sp-item .js-ac-head small {
  order: 1;
}
.-sp-header-body .-sp-item .-sp-item__head:after,
.-sp-header-body .-sp-item .js-ac-head:after {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2218%22%20height%3D%2212%22%20viewBox%3D%220%200%2018%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M12.5074%200.219671L17.2803%204.99264C17.5732%205.28554%2017.5732%205.76041%2017.2803%206.0533L12.5074%2010.8263C12.2145%2011.1192%2011.7396%2011.1192%2011.4467%2010.8263C11.1538%2010.5334%2011.1538%2010.0585%2011.4467%209.76561L14.9393%206.27297L0.749999%206.27297C0.335786%206.27297%20-5.19045e-07%205.93718%20-4.82834e-07%205.52297C-4.46622e-07%205.10876%200.335786%204.77297%200.75%204.77297L14.9393%204.77297L11.4467%201.28033C11.1538%200.987438%2011.1538%200.512564%2011.4467%200.219671C11.7396%20-0.0732223%2012.2145%20-0.0732223%2012.5074%200.219671Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E");
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  background-size: 16px auto;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 16px;
}
.-sp-header-body .-sp-item .-sp-item__head.open:after,
.-sp-header-body .-sp-item .js-ac-head.open:after {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2216%22%20height%3D%223%22%20viewBox%3D%220%200%2016%203%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M0.25%201.5C0.25%201.08579%200.585786%200.75%201%200.75H15C15.4142%200.75%2015.75%201.08579%2015.75%201.5C15.75%201.91421%2015.4142%202.25%2015%202.25H1C0.585786%202.25%200.25%201.91421%200.25%201.5Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E");
}
.-sp-header-body .-sp-item .js-ac-head:after {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M7.25%2014.75C7.25%2015.1642%207.58579%2015.5%208%2015.5C8.41421%2015.5%208.75%2015.1642%208.75%2014.75V8.5H15C15.4142%208.5%2015.75%208.16421%2015.75%207.75C15.75%207.33579%2015.4142%207%2015%207H8.75V0.75C8.75%200.335787%208.41421%200%208%200C7.58579%200%207.25%200.335787%207.25%200.75V7H1C0.585786%207%200.25%207.33579%200.25%207.75C0.25%208.16421%200.585786%208.5%201%208.5H7.25V14.75Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E");
}
.-sp-header-body .-sp-item.pulldown .-sp-item__head {
  display: none;
}
.-sp-header-body .-sp-item__body {
  display: none;
  padding: 0 0 16px 16px;
}
.-sp-header-body .pulldown-menu__link {
  position: relative;
  font-size: var(--fs-x-default);
  display: flex;
  align-items: center;
  gap: 0 16px;
  padding: 12px 40px 12px 16px;
}
.-sp-header-body .pulldown-menu__link:after {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2218%22%20height%3D%2212%22%20viewBox%3D%220%200%2018%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M12.5074%200.219671L17.2803%204.99264C17.5732%205.28554%2017.5732%205.76041%2017.2803%206.0533L12.5074%2010.8263C12.2145%2011.1192%2011.7396%2011.1192%2011.4467%2010.8263C11.1538%2010.5334%2011.1538%2010.0585%2011.4467%209.76561L14.9393%206.27297L0.749999%206.27297C0.335786%206.27297%20-5.19045e-07%205.93718%20-4.82834e-07%205.52297C-4.46622e-07%205.10876%200.335786%204.77297%200.75%204.77297L14.9393%204.77297L11.4467%201.28033C11.1538%200.987438%2011.1538%200.512564%2011.4467%200.219671C11.7396%20-0.0732223%2012.2145%20-0.0732223%2012.5074%200.219671Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E");
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  background-size: 16px auto;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -8px;
}
.-sp-header-body .pulldown-menu__link span {
  order: 2;
  letter-spacing: 1px;
  font-size: 12px;
  opacity: 0.6;
}
.-sp-header-body .pulldown-menu__link small {
  order: 1;
}
.js-header.menu-open {
  background: none;
  position: fixed;
  top: 0;
}
.js-header.menu-open + .-sp-header-body {
  height: 100%;
}
.js-header.menu-open .-btn-burger span.-menu {
  display: none;
}
.js-header.menu-open .-btn-burger span.-close {
  display: flex;
}
.footer-cta {
  margin-top: 24px;
}
.footer-cta__inner {
  max-width: 1184px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  position: relative;
  display: flex;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .footer-cta__inner {
    max-width: 480px !important;
  }
}
@media screen and (max-width: 768px) {
  .footer-cta__inner {
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.footer-cta__inner .-item {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer-cta__inner .-item {
    width: 100%;
  }
}
.footer-cta__inner .-item + .-item:before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0;
  background-image: linear-gradient(
    to bottom,
    #b28c7e,
    #b28c7e 3px,
    transparent 3px,
    transparent 5px
  );
  background-size: 1px 5px;
  background-repeat: repeat-y;
}
@media screen and (max-width: 768px) {
  .footer-cta__inner .-item + .-item:before {
    width: 100%;
    height: 1px;
    border: none;
    border-top: 1px dashed var(--color-brand-main);
    bottom: auto;
  }
}
.footer-cta__inner .-item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--color-black);
  height: 260px;
  padding: 16px;
  position: relative;
  transition: var(--transition);
}
@media screen and (max-width: 768px) {
  .footer-cta__inner .-item-link {
    height: 200px;
  }
}
.footer-cta__inner .-item-link:before {
  content: "";
  transition: var(--transition);
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
}
.footer-cta__inner .-item-link:hover {
  transform: scale(0.9);
}
.footer-cta__inner .-item-link__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px 0;
}
@media screen and (max-width: 768px) {
  .footer-cta__inner .-item-link__inner {
    gap: 0;
  }
}
.footer-cta__inner .-item-link__title {
  color: var(--color-brand-main);
  font-size: var(--fs-small);
  font-weight: var(--weight-middle);
  letter-spacing: 1px;
}
.footer-cta__inner .-item-link__title-en {
  font-size: 48px;
  font-weight: var(--weight-normal);
  line-height: 1;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .footer-cta__inner .-item-link__title-en {
    font-size: 32px;
  }
}
.-footer {
  position: relative;
}
.-footer-inner {
  width: 90%;
  margin: 0 auto;
  background: var(--color-brand-light);
}
@media screen and (max-width: 768px) {
  .-footer-inner {
    width: 100%;
  }
}
.-footer-inner__main {
  max-width: 1184px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  position: relative;
  padding-top: var(--space14);
  padding-bottom: var(--space14);
}
@media (max-width: 768px) {
  .-footer-inner__main {
    max-width: 480px !important;
  }
}
@media screen and (max-width: 768px) {
  .-footer-inner__main {
    padding-bottom: 48px;
    padding-top: 48px;
  }
}
.-footer-primary {
  display: flex;
  justify-content: space-between;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .-footer-primary {
    display: block;
  }
}
.-footer-primary .-footer-logo {
  width: 100px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.-footer-primary .-footer-logo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.-footer-primary .-footer-description {
  font-family: var(--font-family-brand);
  font-size: 42px;
  line-height: 1.2;
  max-width: 680px;
  width: 100%;
  position: relative;
  top: -8px;
}
@media screen and (max-width: 768px) {
  .-footer-primary .-footer-description {
    font-size: var(--fs-x-large);
    line-height: 1.3;
    margin-top: 48px;
  }
}
.-footer-border {
  max-width: 680px;
  width: 100%;
  margin: 64px 0 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .-footer-border {
    display: none;
  }
}
.-footer-border:before {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  background-image: linear-gradient(
    to right,
    #b28c7e,
    #b28c7e 3px,
    transparent 3px,
    transparent 5px
  );
  background-size: 5px 1px;
  background-repeat: repeat-x;
  position: relative;
  top: 0;
}
.-footer-secondary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .-footer-secondary {
    display: block;
  }
}
.-footer-secondary .-footer-sns {
  display: flex;
  align-items: center;
  gap: 0 8px;
}
@media screen and (max-width: 768px) {
  .-footer-secondary .-footer-sns {
    justify-content: center;
  }
}
.-footer-secondary .-footer-sns a {
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px dashed var(--color-gray-light);
  border-radius: 50rem;
}
.-footer-secondary .-footer-menu {
  display: flex;
  align-items: center;
  gap: 0 32px;
  max-width: 680px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .-footer-secondary .-footer-menu {
    margin-top: 48px;
    flex-direction: column;
    gap: 8px 0;
  }
}
@media screen and (max-width: 768px) {
  .-footer-secondary .-footer-menu li {
    width: 100%;
  }
}
.-footer-secondary .-footer-menu li a {
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--weight-middle);
}
.-footer-inner__short {
  max-width: 1184px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-small);
  margin: 0 auto;
  padding: 48px 16px;
  width: 100%;
}
@media (max-width: 768px) {
  .-footer-inner__short {
    max-width: 480px !important;
  }
}
@media screen and (max-width: 768px) {
  .-footer-inner__short {
    flex-direction: column;
    gap: 16px 0;
  }
}
.-footer-inner__short.center {
  justify-content: center;
}
.-footer-inner__short .-footer-copy {
  font-family: var(--font-family-brand);
  color: var(--color-gray-light);
  font-size: var(--fs-x-small);
  font-weight: var(--weight-middle);
}
@media screen and (max-width: 768px) {
  .-footer-inner__short .-footer-copy {
    order: 2;
  }
}
.-footer-inner__short .-footer-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 16px;
}
@media screen and (max-width: 768px) {
  .-footer-inner__short .-footer-menu {
    order: 1;
  }
}
.-footer-inner__short .-footer-menu li a {
  font-size: var(--fs-small);
  font-weight: var(--weight-middle);
}
.c-title-subHead {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c-title-subHead {
    display: flex;
    align-items: baseline;
    width: 100%;
  }
}
.c-title-subHead .c-label-text {
  margin: 0 auto 0 0;
}
.c-title-subHead .-subTitle {
  font-size: 48px;
  font-weight: var(--weight-normal);
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .c-title-subHead .-subTitle {
    font-size: var(--fs-x-large);
  }
}
.c-titleSub {
  font-weight: var(--weight-normal);
  font-size: var(--fs-x-middle);
  line-height: 1.5;
  letter-spacing: 1px;
}
.c-label-text {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: var(--fs-small);
  font-weight: var(--weight-middle);
  padding: 0 0 0 20px;
}
.c-label-text:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50rem;
  background: var(--color-brand-main);
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -4px;
}
.c-label-text span {
  letter-spacing: 1px;
}
.c-meta-info {
  display: flex;
  align-items: center;
  font-family: var(--font-family-brand);
  gap: 0 40px;
  width: 100%;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .c-meta-info {
    flex-direction: column;
    gap: 8px 0;
    align-items: baseline;
  }
}
.c-meta-info .-time {
  font-size: var(--fs-small) !important;
  font-weight: 400;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .c-meta-info .-time {
    font-size: var(--fs-x-small) !important;
  }
}
.c-meta-info .-category {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 4px;
}
.c-meta-info .-category:before {
  content: "";
  display: block;
  width: 1px;
  height: 80%;
  background: var(--color-brand-main);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: -20px;
}
@media screen and (max-width: 768px) {
  .c-meta-info .-category:before {
    display: none;
  }
}
.c-meta-info .-category a,
.c-meta-info .-category span {
  font-size: var(--fs-small) !important;
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50em;
  line-height: 1;
  white-space: nowrap;
}
.c-meta-info .-category a:first-child,
.c-meta-info .-category span:first-child {
  display: flex;
}
.c-btn-row {
  margin: 40px auto 0 auto;
  gap: 0 16px;
  display: flex;
}
.c-btn-row .c-btn {
  transition: var(--transition);
  background: var(--color-black);
  color: var(--color-white);
  font-weight: var(--weight-middle);
  font-size: var(--fs-default);
  border-radius: var(--border-radius-small);
  max-width: 300px;
  min-width: 300px;
  width: 100%;
  height: 56px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  line-height: 1;
  overflow: hidden;
  box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.1);
}
.c-btn-row .c-btn:before {
  transition: var(--transition);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #444;
  top: 100%;
}
.c-btn-row .c-btn span {
  position: relative;
}
.c-btn-row .c-btn.-white {
  background: var(--color-white);
  color: var(--color-black) !important;
}
@media screen and (max-width: 768px) {
  .c-btn-row .c-btn {
    height: 52px;
  }
}
.c-btn-row .c-btn:hover:before {
  content: "";
  top: 0;
}
.c-btn-row input:hover {
  opacity: 0.7;
}
.c-btn-item {
  display: inline-flex;
  align-items: center;
  color: var(--color-black) !important;
  gap: 0 12px;
}
.c-btn-item span {
  font-size: var(--fs-x-default);
  font-weight: var(--weight-middle);
}
@media screen and (max-width: 768px) {
  .c-btn-item span {
    font-size: var(--fs-default);
  }
}
.c-btn-item:hover {
  color: var(--color-brand-main) !important;
}
.c-btn-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-btn-circle {
    width: 56px;
    height: 56px;
  }
}
.c-btn-circle .-circle {
  transition: var(--transition);
  position: absolute;
  width: 62px;
  height: 62px;
}
@media screen and (max-width: 768px) {
  .c-btn-circle .-circle {
    width: 56px;
    height: 56px;
  }
}
.c-btn-circle .-arrow-next,
.c-btn-circle .-arrow-prev {
  transition: var(--transition);
}
.c-btn-circle .-arrow-prev {
  position: absolute;
  transform: translateX(-44px);
  opacity: 0;
}
.c-btn-circle .-arrow-next {
  position: absolute;
}
.c-btn-circle__group:hover .c-btn-circle .-circle {
  animation: rotation 5s infinite linear;
}
.c-btn-circle__group:hover .c-btn-circle .-arrow-prev {
  transform: translateX(0px);
  opacity: 1;
}
.c-btn-circle__group:hover .c-btn-circle .-arrow-next {
  transform: translateX(44px);
  opacity: 0;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.section-b-table {
  margin-top: 40px;
}
.b-table .-tr,
.b-table tr {
  margin: 0;
  display: flex;
  justify-content: flex-start;
  text-align: justify;
  position: relative;
  border-bottom: 1px solid var(--color-brand-light-dark);
}
.b-table .-td,
.b-table .-th,
.b-table td,
.b-table th {
  margin-top: 0;
  padding-top: 32px;
  padding-bottom: 32px;
  position: relative;
}
.b-table .-th,
.b-table th {
  max-width: 240px;
  width: 100%;
  font-size: var(--fs-default);
  font-weight: var(--weight-middle);
  padding-right: 24px;
}
@media screen and (max-width: 768px) {
  .b-table .-th,
  .b-table th {
    max-width: 120px;
    padding-right: 16px;
  }
}
.b-table .-th:before,
.b-table th:before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: var(--color-brand-dark);
}
.b-table .-td,
.b-table td {
  max-width: 100%;
  width: 100%;
  color: var(--color-gray);
  font-size: var(--fs-default);
}
.b-table .-td > p,
.b-table td > p {
  margin: 0;
}
.section-b-imageBlock {
  margin: 56px auto 0 auto;
}
.section-b-imageBlock__inner .-image {
  margin: 0 -160px;
}
@media screen and (max-width: 768px) {
  .section-b-imageBlock__inner .-image {
    margin: 0 -16px;
  }
}
.section-b-imageBlock__inner .-image img {
  object-fit: cover;
}
.section-b-imageBlock__inner .-description {
  font-size: var(--fs-default);
  margin: 16px auto 0 auto;
}
.-blogcard {
  transition: var(--transition);
  position: relative;
  background: #f5f7fa;
  border: 1px solid #e6e9ed;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 32px;
}
.-blogcard:hover {
  background: #edf0f4;
}
.-blogcard > div {
  margin: 0;
}
.-blogcard-link {
  position: absolute;
  width: 100%;
  height: 100%;
}
.-blogcard-columns {
  display: flex;
  align-items: center;
}
.-blogcard-column__image-container {
  background: var(--color-white);
  min-width: 190px;
  width: 190px;
  height: 190px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .-blogcard-column__image-container {
    min-width: 130px;
    width: 130px;
    height: 130px;
  }
}
.-blogcard-column__image-wrap {
  height: 100%;
}
.-blogcard-column__image-wrap img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center center;
}
.-blogcard-column__meta {
  padding: 24px 32px;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .-blogcard-column__meta {
    padding: 16px 16px;
  }
}
.-blogcard-column__meta-title {
  font-size: var(--fs-middle);
  font-weight: var(--weight-middle);
  line-height: 1.4;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 768px) {
  .-blogcard-column__meta-title {
    font-size: var(--fs-default);
    line-height: 1.4;
  }
}
.-blogcard-column__meta-description {
  margin: 12px 0 0 0;
  font-size: var(--fs-default);
  color: var(--color-gray);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .-blogcard-column__meta-description {
    display: none;
  }
}
.-blogcard-column__meta-url {
  margin: 12px 0 0 0;
  font-size: var(--fs-x-small);
  color: var(--color-gray);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .-blogcard-column__meta-url {
    font-size: 9px;
    margin: 6px 0 0 0;
  }
}
.visual-block {
  max-width: 85%;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  position: relative;
  margin: 0 0 0 auto;
  padding: 180px 0 0 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .visual-block {
    max-width: 480px !important;
  }
}
@media screen and (max-width: 768px) {
  .visual-block {
    padding: 0 0 0 16px;
    max-width: 100%;
    overflow: hidden;
  }
}
.visual-block .visual-block__list {
  position: relative;
  text-align: right;
}
.visual-block .visual-swiper {
  position: relative;
}
.visual-block .visual-block__swiper {
  padding: 180px 0 0 0;
  height: 670px;
}
@media screen and (max-width: 768px) {
  .visual-block .visual-block__swiper {
    padding-top: 250px;
    height: auto;
  }
}
.visual-block .visual-block__swiper .swiper-wrapper {
  align-items: center;
}
.visual-block .swiper-pagination {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px 0;
  width: 8px;
  position: absolute;
  bottom: 186px;
  left: -56px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .visual-block .swiper-pagination {
    flex-direction: row;
    left: 0;
    bottom: 0;
    width: 100%;
    gap: 0 12px;
    position: relative;
    margin: 40px 0 0 0;
  }
}
.visual-block .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  border-radius: 50rem;
  cursor: pointer;
}
.visual-block .swiper-pagination-bullet-active {
  background: var(--color-brand-main) !important;
}
.visual-block .visual-archives__btn {
  position: absolute;
  right: 6%;
  top: 30px;
  z-index: 1;
}
@media screen and (max-width: 1300px) {
  .visual-block .visual-archives__btn {
    right: 16px;
  }
}
@media screen and (max-width: 768px) {
  .visual-block .visual-archives__btn {
    position: relative;
    margin: -32px 0 0 auto;
    top: auto;
    bottom: 16px;
  }
}
.visual-block .swiper-slide-prev {
  opacity: 0;
  pointer-events: none;
  cursor: default;
}
.visual-item {
  text-align: justify;
  position: relative;
  width: 300px;
  height: 350px;
}
@media screen and (max-width: 768px) {
  .visual-item {
    height: auto;
  }
}
.visual-item .-text-link {
  transition: var(--transition);
  width: 100%;
  display: flex;
  flex-direction: column;
  color: var(--color-black);
  opacity: 0;
  height: 0;
  position: absolute;
  top: -160px;
  width: 880px;
}
@media screen and (max-width: 1200px) {
  .visual-item .-text-link {
    width: 740px;
  }
}
@media screen and (max-width: 1060px) {
  .visual-item .-text-link {
    width: 600px;
  }
}
@media screen and (max-width: 930px) {
  .visual-item .-text-link {
    width: 500px;
  }
}
@media screen and (max-width: 768px) {
  .visual-item .-text-link {
    width: calc(100% + 48px);
    top: -140px;
  }
}
.visual-item .-text-link .c-label-text + .--title {
  margin: 8px 0 0 0;
}
.visual-item .-text-link .--title {
  font-size: var(--fs-large);
  font-weight: var(--weight-middle);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .visual-item .-text-link .--title {
    font-size: var(--fs-middle);
    line-height: 1.55;
    -webkit-line-clamp: 3;
  }
}
.visual-item .-text-link .c-meta-info {
  margin: 16px 0 0 0;
}
@media screen and (max-width: 768px) {
  .visual-item .-text-link .c-meta-info {
    margin: 12px 0 0 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 0 16px;
  }
}
.visual-item .-image-link {
  transition: var(--transition);
  margin: 0;
  display: inline-flex;
  width: 100%;
}
.visual-item .-image-link .--thumb {
  height: 100%;
  width: 100%;
}
.visual-item .-image-link .--thumb img {
  transition: var(--transition);
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.visual-item:hover .-text-link .--title {
  color: var(--color-brand-main);
}
.visual-item:hover .-image-link .--thumb img {
  transform: scale(0.94);
}
.visual-item {
  transition: var(--transition);
}
.visual-item.swiper-slide-active {
  width: 420px !important;
  height: 490px !important;
}
@media screen and (max-width: 768px) {
  .visual-item.swiper-slide-active {
    width: 270px !important;
    height: 318px !important;
  }
}
.visual-item.swiper-slide-active .-text-link {
  opacity: 1;
  height: auto;
  display: block;
}
.visual-item.swiper-slide-active .-image-link {
  display: inline-flex;
}
.top-about-section {
  position: relative;
  text-align: justify;
  background: var(--color-brand-light);
  padding: 360px 0 120px 0;
  margin-top: -240px;
}
@media screen and (max-width: 768px) {
  .top-about-section {
    padding: 240px 0 64px 0;
    margin-top: -200px;
  }
}
.top-about-section .c-label-text {
  transform: rotate(90deg);
  position: absolute;
  top: 80px;
  left: 0;
}
@media screen and (max-width: 1000px) {
  .top-about-section .c-label-text {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .top-about-section .c-label-text {
    display: block;
    transform: none;
    position: relative;
    top: 0;
    margin: 0 0 16px 0;
  }
}
.top-about-section .-about-inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.top-about-section .-about-head {
  position: relative;
  display: inline-flex;
  flex-direction: column;
}
.top-about-section .-about-head:before {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  background-image: linear-gradient(
    to right,
    #b28c7e,
    #b28c7e 3px,
    transparent 3px,
    transparent 5px
  );
  background-size: 5px 1px;
  background-repeat: repeat-x;
  position: absolute;
  top: auto;
  bottom: -48px;
}
@media screen and (max-width: 768px) {
  .top-about-section .-about-head:before {
    display: none;
  }
}
.top-about-section .-about-head .--title {
  font-size: 38px;
  font-weight: var(--weight-normal);
  line-height: 1.5;
  display: inline-flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .top-about-section .-about-head .--title {
    font-size: var(--fs-xx-middle);
    line-height: 1.6;
  }
}
.top-about-section .-about-head .--title > span {
  position: relative;
  display: inline-flex;
}
@media screen and (max-width: 768px) {
  .top-about-section .-about-head .--title > span {
    flex-direction: column;
  }
}
.top-about-section .-about-head .--title-en {
  display: inline-flex;
  position: relative;
  top: 18px;
  left: 16px;
  font-size: 14px;
  white-space: nowrap;
  line-height: 1.4;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .top-about-section .-about-head .--title-en {
    top: 0;
    left: 0;
    margin: 16px 0 0 0;
    font-size: 14px;
  }
}
.top-about-section .-about-body {
  line-height: 2.8;
  margin: 96px 0 0 0;
  font-size: var(--fs-x-default);
}
@media screen and (max-width: 768px) {
  .top-about-section .-about-body {
    line-height: 2.2;
    font-size: var(--fs-default);
    margin-top: 40px;
  }
}
.top-about-image {
  position: relative;
  padding: 0 5%;
  margin: 0 auto;
}
.top-about-image:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--color-brand-light);
}
.top-about-image img {
  position: relative;
}
.top-corporate-head {
  max-width: 90%;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  position: relative;
  text-align: right;
  margin-top: 160px;
  padding-bottom: 16px;
}
@media (max-width: 768px) {
  .top-corporate-head {
    max-width: 480px !important;
  }
}
@media screen and (max-width: 768px) {
  .top-corporate-head {
    text-align: left;
    margin-top: 64px;
  }
}
.top-corporate-section {
  display: flex;
}
@media screen and (max-width: 768px) {
  .top-corporate-section {
    display: block;
  }
}
.top-corporate-section .-corporate-image {
  width: 50%;
  background: var(--color-brand-light-dark2);
}
@media screen and (max-width: 768px) {
  .top-corporate-section .-corporate-image {
    max-width: 1184px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 16px;
    padding-left: 16px;
    position: relative;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .top-corporate-section .-corporate-image {
    max-width: 480px !important;
  }
}
.top-corporate-section .-corporate-image_inner {
  padding: 14%;
}
@media screen and (max-width: 768px) {
  .top-corporate-section .-corporate-image_inner {
    padding: 16px 0;
  }
}
.top-corporate-section .-corporate-text {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
}
@media screen and (max-width: 768px) {
  .top-corporate-section .-corporate-text {
    max-width: 1184px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 16px;
    padding-left: 16px;
    position: relative;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .top-corporate-section .-corporate-text {
    max-width: 480px !important;
  }
}
.top-corporate-section .-corporate-text_inner {
  text-align: justify;
  padding: 18%;
}
@media screen and (max-width: 768px) {
  .top-corporate-section .-corporate-text_inner {
    padding: 0;
  }
}
.top-corporate-section .-corporate-text_inner .--point {
  position: relative;
  font-size: var(--fs-small);
  color: var(--color-brand-main);
  font-weight: var(--weight-middle);
  padding: 0 0 0 72px;
}
.top-corporate-section .-corporate-text_inner .--point:before {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  background-image: linear-gradient(
    to right,
    #b28c7e,
    #b28c7e 3px,
    transparent 3px,
    transparent 5px
  );
  background-size: 5px 1px;
  background-repeat: repeat-x;
}
.top-corporate-section .-corporate-text_inner .--title {
  font-size: var(--fs-large);
  font-weight: var(--weight-middle);
  margin: 24px 0 0 0;
  text-wrap: balance;
}
@media screen and (max-width: 768px) {
  .top-corporate-section .-corporate-text_inner .--title {
    font-size: var(--fs-xx-middle);
    margin-top: 16px;
  }
}
.top-corporate-section .-corporate-text_inner .--description {
  font-size: var(--fs-default);
  line-height: 2.2;
  margin: 32px 0 0 0;
}
@media screen and (max-width: 768px) {
  .top-corporate-section .-corporate-text_inner .--description {
    margin-top: 24px;
  }
}
.top-corporate-section:nth-child(odd) .-corporate-image {
  order: 2;
}
.top-corporate-section:nth-child(odd) .-corporate-text {
  order: 1;
}
.top-corporateSub-section {
  margin: 120px 0 0 0;
}
@media screen and (max-width: 768px) {
  .top-corporateSub-section {
    margin-top: 64px;
  }
}
.top-corporateSub-section .-corporateSub-list {
  display: flex;
  margin: 0 -16px;
}
@media screen and (max-width: 768px) {
  .top-corporateSub-section .-corporateSub-list {
    flex-direction: column;
    gap: 40px 0;
  }
}
.top-corporateSub-section .-corporateSub-list li {
  width: 33.3%;
  padding: 0 16px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-corporateSub-section .-corporateSub-list li {
    width: 100%;
  }
}
.top-corporateSub-section .-corporateSub-list li .--image {
  position: relative;
}
.top-corporateSub-section .-corporateSub-list li .--image:before {
  content: attr(data-text);
  font-size: 12px;
  position: absolute;
  top: -10px;
  left: 24px;
  letter-spacing: 2px;
}
.top-corporateSub-section .-corporateSub-list li .--content {
  padding: 24px;
  text-align: justify;
}
.top-corporateSub-section .-corporateSub-list li .--content h3 {
  font-size: var(--fs-x-middle);
  font-weight: var(--weight-middle);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .top-corporateSub-section .-corporateSub-list li .--content h3 {
    font-size: var(--fs-middle);
  }
}
.top-corporateSub-section .-corporateSub-list li .--content p {
  margin: 16px 0 0 0;
  font-weight: var(--weight-normal);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .top-corporateSub-section .-corporateSub-list li .--content p {
    margin-top: 12px;
  }
}
.top-business-section {
  text-align: justify;
  margin: 120px 0 0 0;
}
@media screen and (max-width: 768px) {
  .top-business-section {
    margin-top: 64px;
  }
}
.top-business-section .main-body__inner {
  background: var(--color-brand-light);
}
.top-business-section .-business-inner {
  padding: 64px 56px;
}
@media screen and (max-width: 1000px) {
  .top-business-section .-business-inner {
    padding: 48px 0 16px 0;
  }
}
.top-business-section .-business-list {
  position: relative;
  margin: 0 auto 0 0;
  padding: 0 440px 0 32px;
}
@media screen and (max-width: 1100px) {
  .top-business-section .-business-list {
    padding-left: 0;
    padding-right: 380px;
  }
}
@media screen and (max-width: 768px) {
  .top-business-section .-business-list {
    padding: 0;
  }
}
.top-business-section .-business-item {
  padding: 48px 0;
  display: flex;
  flex-direction: column;
}
.top-business-section .-business-item + .-business-item {
  border-top: 1px dashed rgba(0, 0, 0, 0.2);
}
.top-business-section .-business-itemHead {
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  padding: 0 72px 0 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-business-section .-business-itemHead {
    order: 1;
  }
}
.top-business-section .-business-itemHead strong {
  font-size: var(--fs-small);
  color: var(--color-brand-main);
  font-weight: var(--weight-middle);
}
.top-business-section .-business-itemHead span {
  font-size: var(--fs-xxxx-large);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .top-business-section .-business-itemHead span {
    font-size: var(--fs-large);
  }
}
.top-business-section .-business-itemHead .action {
  width: 60px;
  height: 60px;
  border: 1px dashed rgba(0, 0, 0, 0.2);
  border-radius: 50rem;
  position: absolute;
  top: 50%;
  margin-top: -30px;
  right: 0;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M9.25%2010.75V20H10.75V10.75L20%2010.75V9.25L10.75%209.25V0H9.25V9.25L0%209.25V10.75L9.25%2010.75Z%22%20fill%3D%22%23B28C7E%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
}
.top-business-section .-business-itemHead.open .action {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2220%22%20height%3D%222%22%20viewBox%3D%220%200%2020%202%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M20%201.75L1.31134e-07%201.75L0%200.25L20%200.249998L20%201.75Z%22%20fill%3D%22%23B28C7E%22%2F%3E%3C%2Fsvg%3E");
  background-size: 20px auto;
}
.top-business-section .-business-itemHead.open ~ .-business-itemImage {
  display: block;
  transform: none !important;
}
.top-business-section .-business-itemBody {
  padding: 32px 0 0 0;
  display: none;
}
@media screen and (max-width: 768px) {
  .top-business-section .-business-itemBody {
    order: 3;
  }
}
.top-business-section .-business-itemBody dl + dl {
  margin-top: 16px;
}
.top-business-section .-business-itemBody dl dt {
  font-weight: var(--weight-bold);
}
.top-business-section .-business-itemBody dl dd {
  position: relative;
  padding: 0 0 0 20px;
}
.top-business-section .-business-itemBody dl dd + dd {
  margin-top: 6px;
}
.top-business-section .-business-itemBody dl dd:before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--color-black);
  border-radius: 50rem;
  position: absolute;
  left: 7px;
  top: 11px;
}
.top-business-section .-business-itemImage {
  width: 318px;
  position: absolute;
  right: 0;
  top: 0;
  transition: var(--transition);
  opacity: 0;
  display: block;
}
@media screen and (max-width: 768px) {
  .top-business-section .-business-itemImage {
    position: relative;
    width: 100%;
    opacity: 1;
    padding: 32px 0 0 0;
    margin: 0 0 -8px 0;
    order: 2;
    display: none;
  }
}
.top-business-section .-business-item:first-child:hover .-business-itemImage {
  transform: rotate(3deg);
  opacity: 1;
}
.top-business-section .-business-item:nth-child(2):hover .-business-itemImage {
  transform: rotate(-3deg);
  opacity: 1;
}
.top-business-section .-business-item:nth-child(3):hover .-business-itemImage {
  transform: rotate(6deg);
  opacity: 1;
}
.top-brand-section {
  text-align: justify;
  margin: 120px 0 0 0;
}
@media screen and (max-width: 768px) {
  .top-brand-section {
    margin-top: 64px;
  }
}
.top-brand-section .-brand-copy {
  position: relative;
  max-width: 916px;
  width: 100%;
  margin: 80px auto 0 0;
  padding: 0 0 0 220px;
}
@media screen and (max-width: 768px) {
  .top-brand-section .-brand-copy {
    max-width: 100%;
    padding: 0;
    margin: 48px 0 0 0;
  }
}
.top-brand-section .--brand-title {
  font-size: var(--fs-xxxx-large);
  font-weight: var(--weight-middle);
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .top-brand-section .--brand-title {
    font-size: var(--fs-large);
  }
}
.top-brand-section .--brand-title:before {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  background-image: linear-gradient(
    to right,
    #b28c7e,
    #b28c7e 3px,
    transparent 3px,
    transparent 5px
  );
  background-size: 5px 1px;
  background-repeat: repeat-x;
  width: 112px;
  top: 24px;
}
@media screen and (max-width: 768px) {
  .top-brand-section .--brand-title:before {
    display: none;
  }
}
.top-brand-section .--brand-description {
  margin: 32px 0 0 0;
}
@media screen and (max-width: 768px) {
  .top-brand-section .--brand-description {
    margin-top: 24px;
  }
}
.top-brand-section .--brand-description p {
  font-size: var(--fs-x-default);
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .top-brand-section .--brand-description p {
    font-size: var(--fs-default);
  }
}
.top-serviceLineup-section {
  margin: 80px 0 0 0;
  position: relative;
  padding: 0 0 120px 0;
}
@media screen and (max-width: 768px) {
  .top-serviceLineup-section {
    margin-top: 64px;
    padding: 0 0 64px 0;
  }
}
.top-serviceLineup-section:before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 64px);
  position: absolute;
  bottom: 0;
  background: var(--color-brand-light);
}
@media screen and (max-width: 768px) {
  .top-serviceLineup-section:before {
    height: calc(100% - 100px);
  }
}
.top-serviceLineup-section__inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-serviceLineup-section__inner {
    text-align: justify;
  }
}
.top-serviceLineup-section__inner .c-label-text {
  transform: rotate(90deg);
  position: absolute;
  top: 64px;
  left: -56px;
}
@media screen and (max-width: 768px) {
  .top-serviceLineup-section__inner .c-label-text {
    transform: none;
    position: relative;
    top: 0;
    left: 0;
  }
}
.top-serviceLineup-section__inner .serviceLineup-block {
  padding: 0 0 0 220px;
  width: 100%;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  .top-serviceLineup-section__inner .serviceLineup-block {
    padding: 0;
    margin: 24px auto 0 auto;
  }
}
.serviceLineup-list {
  display: flex;
  flex-wrap: wrap;
  text-align: justify;
  margin: 0 -24px;
  gap: 48px 0;
}
@media screen and (max-width: 768px) {
  .serviceLineup-list {
    margin: 0 -8px;
    gap: 24px 0;
  }
}
.serviceLineup-list li {
  width: 50%;
  padding: 0 24px;
}
@media screen and (max-width: 768px) {
  .serviceLineup-list li {
    padding: 0 8px;
  }
}
.serviceLineup-list li a {
  display: block;
  color: var(--color-black);
}
.serviceLineup-list li a:hover .--image img {
  transform: scale(0.94);
}
.serviceLineup-list li .--image img {
  transition: var(--transition);
}
.serviceLineup-list li .--content {
  margin: 20px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .serviceLineup-list li .--content {
    flex-direction: column;
    margin-top: 16px;
  }
  .serviceLineup-list li .--content .c-btn-circle {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .serviceLineup-list li .--content-head {
    width: 100%;
  }
}
.serviceLineup-list li .--content-meta {
  display: flex;
  align-items: center;
  gap: 0 28px;
  font-size: var(--fs-small);
  font-weight: var(--weight-middle);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .serviceLineup-list li .--content-meta {
    font-size: var(--fs-x-small);
    gap: 0 16px;
  }
}
.serviceLineup-list li .--content-meta span {
  position: relative;
  letter-spacing: 1px;
}
.serviceLineup-list li .--content-meta span + span:before {
  content: "";
  width: 1px;
  height: 8px;
  background: var(--color-brand-light-dark2);
  position: absolute;
  left: -14px;
  top: 50%;
  margin-top: -4px;
}
@media screen and (max-width: 768px) {
  .serviceLineup-list li .--content-meta span + span:before {
    left: -8px;
  }
}
.serviceLineup-list li .--content-title {
  font-size: var(--fs-x-middle);
  font-weight: var(--weight-normal);
  line-height: 1.5;
  margin: 10px 0 0 0;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .serviceLineup-list li .--content-title {
    font-size: var(--fs-default);
    font-weight: var(--weight-middle);
    line-height: 1.3;
    letter-spacing: 1px;
    margin-top: 4px;
  }
}
.-item-list {
  margin: -40px auto;
}
.-item-news {
  position: relative;
}
.-item-news + .-item-news .-item-news__link:before {
  transition: var(--transition);
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  background-image: linear-gradient(
    to right,
    #b28c7e,
    #b28c7e 3px,
    transparent 3px,
    transparent 5px
  );
  background-size: 5px 1px;
  background-repeat: repeat-x;
  opacity: 0.3;
  top: 0;
}
.-item-news__link {
  color: var(--color-black);
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px 0;
  gap: 0 48px;
  text-decoration: none !important;
  color: initial !important;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .-item-news__link {
    padding: 32px 0;
    gap: 0 24px;
  }
}
.-item-news__thumb {
  position: relative;
  max-width: 193px;
  min-width: 140px;
  width: 100%;
  height: 225px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .-item-news__thumb {
    max-width: 140px;
    width: 100%;
    height: 200px;
  }
}
.-item-news__thumb img {
  transition: var(--transition);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.-item-news__link:hover .-item-news__thumb img {
  transform: scale(0.9);
}
.-item-news__main {
  width: 100%;
}
.-item-news__title {
  position: relative;
  width: 100%;
  font-size: var(--fs-x-middle);
  font-weight: var(--weight-middle);
  line-height: 1.6;
  text-align: justify;
  margin: 24px 0 0 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .-item-news__title {
    font-size: var(--fs-default);
    margin-top: 16px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
  }
}
.-item-news__title br {
  display: none;
}
.-item-news__more {
  position: relative;
  margin: 32px 0 0 0;
  display: flex;
  align-items: center;
  color: var(--color-brand-main);
  font-size: var(--fs-default);
  padding: 0 0 0 72px;
}
.-item-news__more:before {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  background-image: linear-gradient(
    to right,
    #b28c7e,
    #b28c7e 3px,
    transparent 3px,
    transparent 5px
  );
  background-size: 5px 1px;
  background-repeat: repeat-x;
}
@media screen and (max-width: 768px) {
  .-item-news__more {
    display: none;
  }
}
.-item-news__more span {
  text-decoration: underline;
  font-size: var(--fs-small);
  font-weight: var(--weight-middle);
}
#editor .-item-news__link {
  color: var(--color-gray) !important;
  text-decoration: none !important;
}
.recommend-section {
  padding: 80px 0 0 0;
}
@media screen and (max-width: 768px) {
  .recommend-section {
    padding-top: 64px;
  }
}
.recommend-title {
  text-align: left;
  font-size: var(--fs-middle);
  font-weight: var(--weight-middle);
  line-height: 1.6;
}
.recommend-list {
  display: flex;
  flex-wrap: wrap;
  margin: 32px -48px 0 -48px;
  gap: 32px 0;
}
@media screen and (max-width: 768px) {
  .recommend-list {
    flex-direction: column;
    margin: 24px auto 0 auto;
  }
}
.recommend-list .-item-news {
  width: 50%;
  padding: 0 48px;
}
@media screen and (max-width: 992px) {
  .recommend-list .-item-news {
    padding: 0;
  }
  .recommend-list .-item-news:before {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .recommend-list .-item-news {
    width: 100%;
  }
}
.recommend-list .-item-news:nth-of-type(2n):before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0;
  background-image: linear-gradient(
    to bottom,
    #b28c7e,
    #b28c7e 3px,
    transparent 3px,
    transparent 5px
  );
  background-size: 1px 5px;
  background-repeat: repeat-y;
}
.recommend-list .-item-news__link {
  padding: 0 0;
  gap: 0 40px;
}
@media screen and (max-width: 768px) {
  .recommend-list .-item-news__link {
    gap: 0 24px;
  }
}
.recommend-list .-item-news__link:before {
  display: none !important;
}
.recommend-list .-item-news__title {
  font-size: var(--fs-x-default);
  font-weight: var(--weight-middle);
  line-height: 1.7;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .recommend-list .-item-news__title {
    font-size: var(--fs-default);
  }
}
.recommend-list .-item-news__more {
  display: none;
}
.single-head__container {
  padding: 180px 0 0 0;
  margin: 0 0 -140px 0;
}
@media screen and (max-width: 768px) {
  .single-head__container {
    padding-top: 104px;
    margin-bottom: -360px;
  }
}
.single-head__inner {
  max-width: 1184px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  position: relative;
  display: flex;
  gap: 0 96px;
}
@media (max-width: 768px) {
  .single-head__inner {
    max-width: 480px !important;
  }
}
@media screen and (max-width: 992px) {
  .single-head__inner {
    gap: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .single-head__inner {
    flex-direction: column;
  }
}
.single-head__thumb {
  position: relative;
  max-width: 528px;
  width: 100%;
  height: 615px;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .single-head__thumb {
    height: auto;
  }
}
.single-head__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-head__main {
  width: 100%;
  text-align: left;
}
.single-head__main .-head-info {
  padding: 56px 0 0 0;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .single-head__main .-head-info {
    padding-top: 24px;
  }
}
.single-head__main .-head-info .c-label-text + .--title {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .single-head__main .-head-info .c-label-text + .--title {
    margin-top: 8px;
  }
}
.single-head__main .-head-info .--title {
  font-size: var(--fs-x-large);
  font-weight: var(--weight-middle);
  line-height: 1.6;
}
@media screen and (max-width: 992px) {
  .single-head__main .-head-info .--title {
    font-size: var(--fs-x-middle);
  }
}
.single-head__main .-head-info .c-meta-info {
  margin: 48px 0 0 0;
}
@media screen and (max-width: 992px) {
  .single-head__main .-head-info .c-meta-info {
    margin-top: 24px;
  }
}
.head-title {
  font-size: var(--fs-x-large);
  font-weight: var(--weight-xbold);
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .head-title {
    font-size: var(--fs-x-middle);
    line-height: 1.5;
  }
}
.head-title small {
  display: block;
  font-size: 12px;
}
.head-title span {
  display: block;
}
.single-content__body {
  position: relative;
  margin: 0 auto;
  max-width: 768px;
  width: 100%;
}
.-single-content {
  text-align: justify;
}
.-single-content > :first-child {
  margin-top: 0 !important;
}
.-single-content.custom h1,
.-single-content.custom h2,
.-single-content.custom h3,
.-single-content.custom h4,
.-single-content.custom h5,
.-single-content.custom h6 {
  margin-top: 56px;
  font-weight: var(--weight-bold);
  color: var(--color-black);
  margin-bottom: 16px;
}
.-single-content.custom h1 + *,
.-single-content.custom h2 + *,
.-single-content.custom h3 + *,
.-single-content.custom h4 + *,
.-single-content.custom h5 + *,
.-single-content.custom h6 + * {
  margin-top: 32px;
}
.-single-content.custom h1 {
  font-size: var(--fs-x-large);
  line-height: 1.35;
}
@media (max-width: 768px) {
  .-single-content.custom h1 {
    font-size: var(--fs-large);
    line-height: 1.45;
  }
}
.-single-content.custom h2 {
  font-size: var(--fs-large);
  font-weight: var(--weight-middle);
  color: var(--color-black);
  margin-top: var(--space14);
  line-height: 1.45;
  position: relative;
}
.-single-content.custom h2:before {
  content: "";
  width: 60px;
  height: 2px;
  position: absolute;
  top: -32px;
  border-top: 1px dashed var(--color-brand-main);
}
@media (max-width: 768px) {
  .-single-content.custom h2 {
    font-size: var(--fs-x-middle);
  }
}
.-single-content.custom h3 {
  font-size: var(--fs-x-middle);
  font-weight: var(--weight-middle);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .-single-content.custom h3 {
    font-size: var(--fs-middle);
    line-height: 1.3;
  }
}
.-single-content.custom h4 {
  font-size: var(--fs-middle);
  font-weight: var(--weight-middle);
  line-height: 1.5;
  position: relative;
}
.-single-content.custom h5 {
  font-size: var(--fs-x-default);
  font-weight: var(--weight-middle);
  line-height: 1.5;
}
.-single-content.custom h6 {
  font-size: var(--fs-default);
  font-weight: var(--weight-middle);
  line-height: 1.65;
}
.-single-content.custom p {
  margin-top: 24px;
}
.-single-content.custom .wp-block-image,
.-single-content.custom blockquote,
.-single-content.custom figure,
.-single-content.custom ol,
.-single-content.custom pre,
.-single-content.custom ul {
  margin-top: 32px;
}
.-single-content.custom .wp-block-audio {
  margin-top: 24px;
}
.-single-content.custom iframe,
.-single-content.custom video {
  max-width: 100%;
}
.-single-content.custom b,
.-single-content.custom strong {
  font-weight: var(--weight-bold);
}
.-single-content.custom mark {
  font-style: normal;
}
.-single-content.custom img {
  transition: var(--transition);
  object-fit: cover;
  display: block;
  height: auto;
  text-decoration: none;
}
.-single-content.custom a {
  color: var(--color-brand-main);
  text-decoration: underline;
  outline: none;
}
.-single-content.custom a:visited {
  color: var(--color-brand-main);
  text-decoration: none;
  outline: none;
}
.-single-content.custom a:hover {
  color: var(--color-brand-main);
  text-decoration: none;
  outline: none;
}
.-single-content.custom a:hover img {
  opacity: 0.7;
}
.-single-content.custom ol,
.-single-content.custom ul {
  padding: 0 0 0 24px !important;
  line-height: 1.6;
}
.-single-content.custom ol::marker,
.-single-content.custom ul::marker {
  font-size: 14px !important;
  font-family: var(--font-family-en);
}
.-single-content.custom ol li + li,
.-single-content.custom ul li + li {
  margin-top: 6px;
}
.-single-content.custom ol li ol,
.-single-content.custom ol li ul,
.-single-content.custom ul li ol,
.-single-content.custom ul li ul {
  margin-top: 8px;
}
.-single-content.custom ul li {
  list-style-type: disc !important;
  list-style-position: outside !important;
  padding: 0 !important;
  text-indent: 0 !important;
}
.-single-content.custom ul li ul li {
  list-style-type: disc !important;
  list-style-position: outside !important;
}
.-single-content.custom ul li ol li {
  list-style-type: decimal !important;
  list-style-position: outside !important;
}
.-single-content.custom ol li {
  list-style-type: decimal !important;
  list-style-position: outside !important;
  padding: 0 !important;
  text-indent: 0 !important;
}
.-single-content.custom ol li ul li {
  list-style-type: disc !important;
  list-style-position: outside !important;
}
.-single-content.custom ol li ol li {
  list-style-type: decimal !important;
  list-style-position: outside !important;
}
.-single-content.custom blockquote {
  margin-top: 24px;
  padding: 32px;
  border-radius: var(--border-radius-small);
  line-height: 1.65;
  background-color: #f0f2f5;
  border: none;
  text-align: justify;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20enable-background%3D%22new%200%200%2016%2012%22%20viewBox%3D%220%200%2016%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22%23999%22%3E%3Cpath%20d%3D%22m4.3.3c-2.7%202-4.3%204.4-4.3%207.7%200%202.6%201.6%204%203.4%204%201.7%200%203-1.1%203-2.8s-1.2-2.7-2.7-2.7c-.5%200-.7-.2-.7-.6%200-1.7%201-3.1%202.7-4.3.3-.2.4-.4.4-.7%200-.6-.5-.9-1-.9-.3%200-.5.1-.8.3z%22%2F%3E%3Cpath%20d%3D%22m13.9.3c-2.8%202-4.3%204.4-4.3%207.6%200%202.6%201.6%204%203.4%204%201.7%200%203-1.1%203-2.8s-1.2-2.7-2.7-2.7c-.5%200-.8-.2-.8-.6%200-1.7%201-3.1%202.7-4.3.3-.2.4-.4.4-.7%200-.6-.5-.9-1-.9-.2.1-.4.2-.7.4z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"),
    url("data:image/svg+xml;charset=utf8,%3Csvg%20enable-background%3D%22new%200%200%2016%2012%22%20viewBox%3D%220%200%2016%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22%23999%22%3E%3Cpath%20d%3D%22m11.7%2011.7c2.7-2%204.3-4.4%204.3-7.7%200-2.6-1.6-4-3.4-4-1.7%200-3%201.1-3%202.8s1.2%202.7%202.7%202.7c.5%200%20.8.2.8.6%200%201.7-1%203.1-2.7%204.3-.3.2-.4.4-.4.7%200%20.6.5.9%201%20.9.2%200%20.4-.1.7-.3z%22%2F%3E%3Cpath%20d%3D%22m2.1%2011.7c2.8-2%204.3-4.4%204.3-7.6%200-2.6-1.6-4-3.4-4-1.7-.1-3%201-3%202.7s1.2%202.7%202.7%202.7c.5%200%20.8.2.8.6%200%201.7-1%203.1-2.7%204.3-.3.2-.4.4-.4.7%200%20.6.5.9%201%20.9.2%200%20.4-.1.7-.3z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: 10px 10px, calc(100% - 10px) calc(100% - 10px);
  background-size: 16px auto, 16px auto;
  border: none !important;
}
@media (max-width: 768px) {
  .-single-content.custom blockquote {
    background-size: 10px auto, 10px auto;
    padding: 20px;
    line-height: 1.6;
  }
}
.-single-content.custom blockquote > :first-child {
  margin-top: 0;
}
.-single-content.custom blockquote > * {
  margin-top: 16px;
}
.-single-content.custom blockquote cite {
  color: var(--color-gray);
  font-size: var(--fs-small);
  display: block;
  margin: 12px 0 0 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .-single-content.custom blockquote cite {
    margin-top: 8px;
    font-size: var(--fs-x-small);
  }
}
.-single-content.custom pre {
  background: var(--color-light-gray);
  padding: 24px;
  border-radius: var(--border-radius-small);
  white-space: pre-wrap;
}
@media (max-width: 768px) {
  .-single-content.custom pre {
    padding: 20px;
  }
}
.-single-content.custom pre.wp-block-code {
  background: var(--color-black);
  color: var(--color-gray);
  white-space: pre-wrap !important;
}
.-single-content.custom pre code {
  overflow-x: auto;
  font-size: var(--fs-default);
}
.-single-content.custom figure figcaption {
  color: var(--color-gray);
  font-size: var(--fs-small);
  margin: 12px 0 0 0;
  text-align: left;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .-single-content.custom figure figcaption {
    font-size: var(--fs-small);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.-single-content.custom figure figcaption a {
  color: var(--color-gray) !important;
  text-decoration: underline;
}
.has-small-font-size {
  font-size: 13px;
}
.has-medium-font-size {
  font-size: 18px;
}
.has-large-font-size {
  font-size: 24px;
}
.has-x-large-font-size {
  font-size: 28px;
}
.has-pale-pink-background-color {
  background-color: #f78da7;
}
.has-vivid-red-background-color {
  background-color: #cf2e2e;
}
.has-luminous-vivid-orange-background-color {
  background-color: #ff6900;
}
.has-luminous-vivid-amber-background-color {
  background-color: #fcb900;
}
.has-light-green-cyan-background-color {
  background-color: #7bdcb5;
}
.has-vivid-green-cyan-background-color {
  background-color: #00d084;
}
.has-pale-cyan-blue-background-color {
  background-color: #8ed1fc;
}
.has-vivid-cyan-blue-background-color {
  background-color: #0693e3;
}
.has-very-light-gray-background-color {
  background-color: #eee;
}
.has-cyan-bluish-gray-background-color {
  background-color: #abb8c3;
}
.has-very-dark-gray-background-color {
  background-color: #313131;
}
.has-pale-pink-color {
  color: #f78da7 !important;
}
.has-vivid-red-color {
  color: #cf2e2e !important;
}
.has-luminous-vivid-orange-color {
  color: #ff6900 !important;
}
.has-luminous-vivid-amber-color {
  color: #fcb900 !important;
}
.has-light-green-cyan-color {
  color: #7bdcb5 !important;
}
.has-vivid-green-cyan-color {
  color: #00d084 !important;
}
.has-pale-cyan-blue-color {
  color: #8ed1fc !important;
}
.has-vivid-cyan-blue-color {
  color: #0693e3 !important;
}
.has-very-light-gray-color {
  color: #eee !important;
}
.has-cyan-bluish-gray-color {
  color: #abb8c3 !important;
}
.has-very-dark-gray-color {
  color: #313131 !important;
}
.has-black-color {
  color: #313131 !important;
}
.wp-block-preformatted {
  white-space: normal;
}
.wp-block-calendar.scroll-x,
.wp-block-table.scroll-x {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.wp-block-calendar.scroll-x table td,
.wp-block-table.scroll-x table td {
  white-space: pre;
}
.wp-block-calendar.is-style-stripes table tbody tr:nth-child(odd),
.wp-block-table.is-style-stripes table tbody tr:nth-child(odd) {
  background: var(--color-light-gray) !important;
}
.wp-block-calendar.is-style-regular table tbody tr > :first-child,
.wp-block-table.is-style-regular table tbody tr > :first-child {
  background: var(--color-light-gray) !important;
}
.wp-block-calendar caption,
.wp-block-table caption {
  font-weight: var(--weight-bold);
  font-size: var(--fs-middle);
  text-align: justify;
  line-height: 1.5;
  padding: 0 0 8px 0;
}
.wp-block-calendar tfoot,
.wp-block-calendar thead,
.wp-block-table tfoot,
.wp-block-table thead {
  background: var(--color-light-gray) !important;
}
.wp-block-calendar tfoot *,
.wp-block-calendar thead *,
.wp-block-table tfoot *,
.wp-block-table thead * {
  color: var(--color-gray);
  font-weight: var(--weight-bold);
}
.wp-block-calendar table,
.wp-block-table table {
  border-collapse: collapse;
  border-spacing: 0;
  background: #f7f9fa;
  width: 100%;
  position: relative;
}
.wp-block-calendar table.has-fixed-layout tr > :first-child,
.wp-block-table table.has-fixed-layout tr > :first-child {
  min-width: 240px;
}
@media (max-width: 768px) {
  .wp-block-calendar table.has-fixed-layout tr > :first-child,
  .wp-block-table table.has-fixed-layout tr > :first-child {
    min-width: 180px;
  }
}
.wp-block-calendar table tr,
.wp-block-table table tr {
  border-bottom: 1px solid #ddd !important;
  border-right: 1px solid #ddd !important;
  border-left: 1px solid #ddd !important;
  background: none !important;
}
.wp-block-calendar table tr:first-child,
.wp-block-table table tr:first-child {
  border-top: 1px solid #ddd !important;
}
.wp-block-calendar table td,
.wp-block-calendar table th,
.wp-block-table table td,
.wp-block-table table th {
  padding: 12px 16px;
  white-space: normal;
  line-height: 1.6 !important;
  border: none !important;
}
@media (max-width: 768px) {
  .wp-block-calendar table td,
  .wp-block-calendar table th,
  .wp-block-table table td,
  .wp-block-table table th {
    min-width: 120px;
    line-height: 1.35 !important;
  }
}
.wp-block-calendar table td + td,
.wp-block-calendar table td + th,
.wp-block-calendar table th + td,
.wp-block-calendar table th + th,
.wp-block-table table td + td,
.wp-block-table table td + th,
.wp-block-table table th + td,
.wp-block-table table th + th {
  border-left: 1px dashed #ddd !important;
}
.wp-block-image {
  clear: both;
}
.wp-block-image.is-style-rounded img {
  border-radius: 50rem;
}
.wp-block-image a {
  display: block;
}
.wp-block-image .alignleft {
  display: block;
  margin: 0 auto 0 0;
}
.wp-block-image .alignright {
  display: block;
  margin: 0 0 0 auto;
}
.wp-block-image .aligncenter {
  display: block;
  margin: 0 auto;
}
.wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin-left: -8px;
  margin-right: -8px;
  gap: 0;
}
.wp-block-gallery .wp-block-image {
  list-style: none;
  margin: 0 !important;
  padding: 8px !important;
  height: 100%;
  width: 100%;
}
.wp-block-gallery.columns-2 .blocks-gallery-item,
.wp-block-gallery.columns-2 .wp-block-image {
  max-width: 50%;
}
.wp-block-gallery.columns-3 .blocks-gallery-item,
.wp-block-gallery.columns-3 .wp-block-image {
  max-width: 33.3%;
}
@media (max-width: 768px) {
  .wp-block-gallery.columns-3 .blocks-gallery-item,
  .wp-block-gallery.columns-3 .wp-block-image {
    max-width: 50%;
  }
}
.wp-block-gallery.columns-4 .blocks-gallery-item,
.wp-block-gallery.columns-4 .wp-block-image {
  max-width: 25%;
}
@media (max-width: 768px) {
  .wp-block-gallery.columns-4 .blocks-gallery-item,
  .wp-block-gallery.columns-4 .wp-block-image {
    max-width: 50%;
  }
}
.wp-block-gallery .blocks-gallery-caption {
  margin-top: 0;
}
.wp-block-cover {
  position: relative;
  overflow: hidden;
}
.wp-block-cover .wp-block-cover__background {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
}
.wp-block-cover .wp-block-cover__image-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wp-block-cover .wp-block-cover__inner-container {
  padding: 24px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.wp-block-cover .wp-block-cover__inner-container p {
  color: var(--color-white);
  line-height: 1.4;
}
.wp-block-cover .wp-block-cover__inner-container p + p {
  margin-top: 8px;
}
.wp-block-cover .wp-block-cover__inner-container p.has-large-font-size {
  font-size: var(--fs-middle);
  font-weight: var(--weight-bold);
}
.wp-block-file {
  margin-top: var(--space3);
  border: 1px solid var(--color-gray-dark);
  border-radius: var(--border-radius-small);
  padding: 16px 16px;
  display: flex;
  align-items: center;
  gap: 0 10px;
}
@media (max-width: 768px) {
  .wp-block-file {
    flex-direction: column;
    gap: 8px 0;
  }
}
.wp-block-file a {
  text-decoration: none;
}
.wp-block-file .wp-block-file__button {
  background: var(--color-light-gray);
  font-size: var(--fs-small);
  color: var(--color-gray) !important;
  border-radius: var(--border-radius-small);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
}
.wp-block-media-text {
  margin-top: var(--space3);
  display: flex;
  align-items: center;
  gap: 0 24px;
}
@media (max-width: 768px) {
  .wp-block-media-text {
    flex-direction: column;
    gap: 24px 0;
  }
}
.wp-block-media-text.is-vertically-aligned-top {
  align-items: flex-start;
}
.wp-block-media-text.is-vertically-aligned-bottom {
  align-items: flex-end;
}
.wp-block-media-text__media {
  flex: 1;
}
.wp-block-media-text__content {
  flex: 2;
  padding: 0;
}
.wp-block-media-text__content h1,
.wp-block-media-text__content h2,
.wp-block-media-text__content h3,
.wp-block-media-text__content h4,
.wp-block-media-text__content h5,
.wp-block-media-text__content h6 {
  margin-top: var(--space3) !important;
}
.wp-block-media-text__content > :first-child {
  margin-top: 0 !important;
}
.wp-block-embed {
  margin-top: var(--space3);
}
.wp-block-embed iframe {
  object-fit: cover;
}
.wp-block-pullquote {
  background-color: var(--color-light-gray-light);
  border-radius: var(--border-radius-small);
  padding: 16px;
}
.wp-block-pullquote blockquote {
  margin-top: 0;
}
.wp-block-pullquote cite {
  color: var(--color-gray);
  font-style: normal;
  margin-top: 4px;
}
.wp-block-buttons {
  display: flex;
  margin: var(--space3) -4px 0 -4px;
  gap: 0 !important;
}
@media (max-width: 768px) {
  .wp-block-buttons {
    flex-wrap: wrap;
  }
}
.wp-block-buttons .wp-block-button {
  display: inline-flex;
  width: 100%;
  padding: 4px;
}
.wp-block-buttons .wp-block-button .wp-block-button__link {
  transition: var(--transition);
  font-size: var(--fs-default);
  border: 2px solid var(--color-black);
  background: var(--color-black);
  font-weight: var(--weight-bold);
  color: var(--color-white) !important;
  border-radius: 2px !important;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 16px;
  line-height: 1.4;
  cursor: pointer;
  width: 100%;
}
.wp-block-buttons .wp-block-button .wp-block-button__link:hover {
  background: var(--color-white);
  color: var(--color-black) !important;
}
.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link {
  background: var(--color-white);
  border-color: var(--color-black);
  color: var(--color-black) !important;
}
.wp-block-buttons
  .wp-block-button.is-style-outline
  .wp-block-button__link:hover {
  background: var(--color-black);
  color: var(--color-white) !important;
}
.wp-block-buttons .wp-block-button.wp-block-button__width-100 {
  max-width: 100%;
}
.wp-block-buttons .wp-block-button.wp-block-button__width-75 {
  max-width: 75%;
}
@media (max-width: 768px) {
  .wp-block-buttons .wp-block-button.wp-block-button__width-75 {
    max-width: 100%;
  }
}
.wp-block-buttons .wp-block-button.wp-block-button__width-50 {
  max-width: 50%;
}
@media (max-width: 768px) {
  .wp-block-buttons .wp-block-button.wp-block-button__width-50 {
    max-width: 100%;
  }
}
.wp-block-buttons .wp-block-button.wp-block-button__width-25 {
  max-width: 25%;
}
@media (max-width: 768px) {
  .wp-block-buttons .wp-block-button.wp-block-button__width-25 {
    max-width: 100%;
  }
}
.wp-block-columns {
  margin: var(--space3) auto 0 auto;
}
.wp-calendar-table tr th {
  background: none;
  font-weight: var(--weight-bold);
}
.wp-calendar-table tr td,
.wp-calendar-table tr th {
  text-align: center;
  white-space: nowrap;
  padding-left: 0;
  padding-right: 0;
}
.wp-calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: var(--space1) auto 0 auto;
}
.wp-block-archives-list li + li,
.wp-block-categories-list li + li {
  margin-top: 4px;
}
.wp-block-latest-comments {
  margin-top: var(--space3);
  background: var(--color-gray);
  padding: 24px !important;
}
@media (max-width: 768px) {
  .wp-block-latest-comments {
    padding: 16px !important;
  }
}
.wp-block-latest-comments__comment {
  display: flex;
  align-items: flex-start;
}
.wp-block-latest-comments__comment + .wp-block-latest-comments__comment {
  margin-top: var(--space2);
}
.wp-block-latest-comments__comment .wp-block-latest-comments__comment-avatar {
  border-radius: 50rem;
  width: 40px;
  height: 40px;
  object-fit: cover;
}
.wp-block-latest-comments__comment article {
  width: 100%;
  padding: 0 0 0 16px;
  font-size: var(--fs-small);
}
.wp-block-latest-comments__comment-meta time {
  font-size: var(--fs-x-small);
}
.wp-block-latest-comments__comment-excerpt {
  margin-top: 0;
}
.wp-block-latest-comments__comment-excerpt p {
  margin-top: 0;
}
.is-layout-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0 24px;
  margin: var(--space3) auto 0 auto;
}
.is-layout-flex h1,
.is-layout-flex h2,
.is-layout-flex h3,
.is-layout-flex h4,
.is-layout-flex h5,
.is-layout-flex h6 {
  font-size: 18px;
  margin: 0 !important;
  padding: 0;
  background: none;
  border: none;
}
.is-layout-flex h1 + p,
.is-layout-flex h2 + p,
.is-layout-flex h3 + p,
.is-layout-flex h4 + p,
.is-layout-flex h5 + p,
.is-layout-flex h6 + p {
  margin-top: 8px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .is-layout-flex {
    flex-wrap: wrap;
  }
}
.is-layout-flex.wp-block-columns {
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 24px;
}
@media (max-width: 768px) {
  .is-layout-flex.wp-block-columns.is-not-stacked-on-mobile {
    flex-direction: column;
    gap: 16px 0;
  }
}
.is-layout-flex.wp-block-columns .wp-block-column {
  width: 100%;
}
.is-layout-flex.wp-block-columns .wp-block-column .wp-block-image img {
  width: 100%;
}
.is-layout-flex.wp-block-columns .wp-block-column > :first-child {
  margin-top: 0 !important;
}
.is-layout-flex.is-nowrap {
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .is-layout-flex.is-nowrap {
    flex-wrap: wrap;
  }
}
.is-layout-flex.is-vertical {
  flex-direction: column;
}
.has-text-align-center {
  text-align: center !important;
}
.has-text-align-left {
  text-align: left !important;
}
.has-text-align-right {
  text-align: right !important;
}
@media (max-width: 768px) {
  .wp-block-spacer {
    max-height: 32px;
  }
}
.lowerVisual-section {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .lowerVisual-section {
    padding: 48px 0;
    height: auto;
  }
}
.lowerVisual-section .-inner {
  max-width: 1184px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  position: relative;
  text-align: justify;
  padding-top: 96px;
}
@media (max-width: 768px) {
  .lowerVisual-section .-inner {
    max-width: 480px !important;
  }
}
@media screen and (max-width: 768px) {
  .lowerVisual-section .-inner {
    padding-top: 64px;
  }
}
.lowerVisual-section.xmiddle .-inner {
  max-width: var(--width-xmiddle);
}
.lowerVisual-section.middle .-inner {
  max-width: var(--width-middle);
}
.lowerVisual-section .-head-visualMain {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
}
.lowerVisual-section .-head-visualMain__title-sub {
  font-size: 48px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .lowerVisual-section .-head-visualMain__title-sub {
    font-size: var(--fs-xx-large);
  }
}
.lowerVisual-section .-head-visualMain__title-sub .--contact-required {
  font-size: 13px;
  padding: 0 0 0 24px;
}
@media screen and (max-width: 768px) {
  .lowerVisual-section .-head-visualMain__title-sub .--contact-required {
    padding-left: 16px;
  }
}
.lowerVisual-section .-head-visualMain__title-sub .--contact-required i {
  color: var(--color-brand-main);
  font-size: 20px;
  line-height: 1;
  font-style: normal;
}
.main-body__inner {
  max-width: 1184px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  position: relative;
  text-align: justify;
}
@media (max-width: 768px) {
  .main-body__inner {
    max-width: 480px !important;
  }
}
.main-body__inner.full {
  max-width: 90%;
}
.main-body__inner.xmiddle {
  max-width: var(--width-xmiddle);
}
.main-body__inner.middle {
  max-width: var(--width-middle);
}
.lower-body {
  background: var(--color-brand-light);
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .lower-body {
    padding-top: 48px;
  }
}
.lower-body.single {
  padding-top: 220px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .lower-body.single {
    padding-top: 400px;
    padding-bottom: 80px;
  }
}
.lower-category__nav .-category-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 32px;
  overflow: hidden;
}
.lower-category__nav .-category-nav li {
  position: relative;
  line-height: 1.4;
  padding: 0 0 24px 0;
}
.lower-category__nav .-category-nav li:before {
  content: "";
  transition: var(--transition);
  background: var(--color-black);
  display: block;
  width: 0%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.lower-category__nav .-category-nav li.current-cat:before,
.lower-category__nav .-category-nav li:hover:before {
  content: "";
  width: 100%;
}
.lower-category__nav .-category-nav li a {
  color: var(--color-black);
  font-weight: var(--weight-middle);
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-company-profileBlock {
  padding: 0 0 120px 0;
}
@media screen and (max-width: 768px) {
  .p-company-profileBlock {
    padding-bottom: 64px;
  }
}
.p-company-profile {
  text-align: justify;
}
.p-company-profile .-company-list {
  display: flex;
  flex-wrap: wrap;
  margin: 40px -16px 0 -16px;
}
@media screen and (max-width: 768px) {
  .p-company-profile .-company-list {
    flex-direction: column;
  }
}
.p-company-profile .-company-list li {
  width: 50%;
  padding: 0 16px;
  font-weight: var(--fs-default);
}
@media screen and (max-width: 768px) {
  .p-company-profile .-company-list li {
    width: 100%;
  }
}
.p-company-profile .-company-list li:first-of-type dl,
.p-company-profile .-company-list li:nth-of-type(2) dl {
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}
.p-company-profile .-company-list li dl {
  display: flex;
  align-items: flex-start;
  gap: 0 24px;
  padding: 40px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.p-company-profile .-company-list li dt {
  max-width: 120px;
  font-weight: var(--weight-middle);
  width: 100%;
  line-height: 1.4;
  opacity: 0.6;
}
.p-company-profile .-company-list li dd {
  width: 100%;
}
.p-company-profile .-company-list li dd b {
  font-weight: var(--weight-middle);
  color: var(--color-brand-main);
}
.p-company-membersBlock {
  background: var(--color-brand-light);
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .p-company-membersBlock {
    padding: 64px 0;
  }
}
.p-company-members .-company-president {
  margin: 40px auto 0 auto;
  display: flex;
  gap: 0 72px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-company-members .-company-president {
    display: block;
  }
}
.p-company-members .-company-president .--image {
  max-width: 460px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-company-members .-company-president .--image {
    max-width: 100%;
  }
}
.p-company-members .-company-president .--content {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-company-members .-company-president .--content {
    margin: 24px 0 0 0;
  }
}
.p-company-members .-company-president .--content-position {
  opacity: 0.6;
}
.p-company-members .-company-president .--content-name {
  max-width: 200px;
  width: 100%;
  margin: 24px 0 0 0;
}
@media screen and (max-width: 768px) {
  .p-company-members .-company-president .--content-name {
    max-width: 120px;
    margin-top: 16px;
  }
}
.p-company-members .-company-president .--content-description {
  margin: 40px 0 0 0;
}
@media screen and (max-width: 768px) {
  .p-company-members .-company-president .--content-description {
    margin: 24px 0 0 0;
  }
}
.p-company-members .-company-members {
  display: flex;
  flex-wrap: wrap;
  margin: 80px -16px 0 -16px;
}
@media screen and (max-width: 768px) {
  .p-company-members .-company-members {
    flex-direction: column;
    margin-top: 48px;
  }
}
.p-company-members .-company-members li {
  width: 50%;
  padding: 0 16px;
}
@media screen and (max-width: 768px) {
  .p-company-members .-company-members li {
    width: 100%;
  }
}
.p-company-members .-company-members li .--members-inner {
  padding: 48px 80px 48px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .p-company-members .-company-members li .--members-inner {
    padding: 48px 0;
  }
}
.p-company-members .-company-members li:first-of-type .--members-inner,
.p-company-members .-company-members li:nth-of-type(2) .--members-inner {
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}
.p-company-members .-company-members li h4 {
  display: flex;
  flex-direction: column;
}
.p-company-members .-company-members li h4 small {
  font-weight: var(--weight-middle);
  font-size: var(--fs-default);
  opacity: 0.6;
}
.p-company-members .-company-members li h4 strong {
  font-size: var(--fs-large);
  font-weight: var(--weight-middle);
}
@media screen and (max-width: 768px) {
  .p-company-members .-company-members li h4 strong {
    font-size: var(--fs-x-middle);
  }
}
.p-company-members .-company-members li p {
  margin: 16px 0 0 0;
}
@media screen and (max-width: 768px) {
  .p-company-members .-company-members li p {
    margin-top: 12px;
  }
}
.rd-body {
  max-width: 1180px;
  text-align: center;
}
.rd-title {
  font-size: var(--fs-x-middle);
  font-weight: var(--weight-normal);
  line-height: 1.5;
  letter-spacing: 1px;
  padding-bottom: 16px;
}
.rd-item {
  text-align: left;
  padding: 48px 0 32px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.rd-list-title {
  font-weight: var(--weight-middle);
  width: 100%;
  margin-bottom: 8px;
  line-height: 1.4;
  opacity: 0.6;
}
.rd-list {
  margin-bottom: 16px;
}

.media-item {
  text-align: left;
  padding: 32px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.media-link {
  font-size: var(--fs-x-default);
  color: var(--color-brand-main) !important;
}
.media-link:hover {
  opacity: 0.7;
}
.media-title {
  font-size: var(--fs-x-default);
}
.media-list {
  margin-bottom: 16px;
}

.about {
  margin-bottom: 120px;
  text-align: center;
}
.sub-title {
  color: #b28c7e;
  font-size: 14px;
  margin-bottom: 20px;
}
.sub-title-point {
  color: #b28c7e;
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  width: fit-content;
}
.sub-title-point::before {
  content: "";
  flex-grow: 1;
  border-top: #b28c7e 1px dashed;
  display: block;
  margin: auto 10px auto 0;
  width: 40px;
}

/* 全体設定 */
.css-carousel-slider6 {
  width: 100vw;
  overflow: hidden;
  position: relative;
  margin: 0 calc(50% - 50vw);
}

/* スライド設定 */
.css-carousel-slider6 .slide-wrap {
  display: flex;
  animation: css-carousel-slider6 120s linear infinite;
}

.css-carousel-slider6 .slide {
  flex: 0 0 1000px;
  margin-right: 50px;
}

/* スライダーアニメーションの設定 */
@keyframes css-carousel-slider6 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * (1000px + 50px) * 5));
  }
}
.solution {
  margin: 120px auto 120px auto;
  text-align: left;
  width: 100%;
}
.title-career {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
}
.subtitle-career {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}
.point-number {
  color: #b28c7e;
  font-size: 18px;
  margin-right: 10px;
}
.solution-name {
  display: flex;
}
.flex-box {
  display: flex;
  margin: 40px auto 0 auto;
  align-items: center;
  width: 90%;
}
.solution-list {
  margin-right: 60px;
}
.solution-text {
  margin-bottom: 20px;
}
.solution-img {
  width: 45%;
}
.history {
  display: flex;
  align-items: center;
  background-color: #f7f6f4;
  margin: 0 calc(50% - 50vw);
}
.histroy-text {
  margin: 0 auto 0 0;
  width: 50%;
  text-align: left;
}
.history-contents {
  margin-left: 60px;
  width: 70%;
}
.history-img {
  width: 50%;
}
.history-img img {
  object-fit: cover;
  width: 100%;
  height: 500px;
}
.career-link element.style {
  /* display: flex; */
}
.career-link {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
}
.mvv {
  width: 100%;
  margin: 120px auto 120px auto;
}
.mvv-box {
  margin: 0 auto 50px auto;
  padding: 50px 50px 10px 50px;
  background-color: #f7f6f4;
}
.mvv-li {
  margin-bottom: 20px;
  border-bottom: #e1d5cd 1px dashed;
  padding-bottom: 20px;
  text-align: left;
}
.mvv-li:last-child {
  border-bottom: none;
}
.value-box {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.value-lavel {
  padding: 0 5px;
  border: #874f3b 1px solid;
  color: #874f3b;
  width: fit-content;
  font-size: 12px;
  border-radius: 4px;
}
.mvv-img {
  width: 70%;
  margin: 0 auto;
}
.policy {
  background-color: #ddd4cc;
  padding: 120px 0;
  margin: 0 calc(50% - 50vw);
  text-align: center;
}
.work-style {
  width: 100%;
  margin: 120px auto 120px auto;
  text-align: left;
}
.entry {
  width: 100%;
  background-color: #f5f5f2;
  display: flex;
  margin: 0 auto;
  padding: 50px;
  align-items: center;
}
.entry-link {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .flex-box {
    display: block;
    width: 100%;
  }
  .solution-list {
    margin-right: 0;
  }
  .solution-img {
    width: 100%;
    margin-top: 40px;
  }
  .history {
    display: block;
    padding-bottom: 60px;
  }
  .histroy-text {
    margin: 60px auto 0 0;
    width: 100%;
  }
  .history-contents {
    margin: 60px auto 0;
    width: 60%;
  }
  .history-img {
    width: 100%;
  }
  .history-img img {
    object-fit: cover;
    width: 100%;
    height: auto;
  }
  .policy-contents {
    width: 60%;
    margin: 0 auto;
  }
  .entry {
    display: block;
    text-align: center;
    padding: 40px 20px;
  }
  .entry-link {
    width: fit-content;
    margin: 0 auto;
  }
  .mvv-img {
    width: 100%;
  }
}

/*サステナビリティページ*/
.sec-social-issues{
	background-color: #f7f6f4;
    padding: 50px;
	text-align: center;
}
.solution-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
    justify-content: space-between; 
	margin-top: 40px;
}
.solution-box-child {
    flex: 0 1 calc(50% - 10px); 
    box-sizing: border-box; 
    padding: 0 0 50px 0;
    border: 1px solid #B28C7E;
    text-align: center;
}
.solution-number{
    display: flex;
    width: 50px;
    height: 50px;
    border-bottom: #B28C7E 1px solid;
	border-right: #B28C7E 1px solid;
    align-items: center;
    justify-content: center;
	color:#B28C7E;
}
.box-value-creation-story {
    position: relative; 
    background-color: #f7f6f4;
    margin: 0 calc(50% - 50vw);
    padding: 40px 40px 140px 40px;
	background-image: url(https://corporate.yourkins.com/wp-content/uploads/2025/01/bg-value-1.png);  
	background-position: top;
    background-size: cover;
}

.box-value-creation-story-child {
    max-width: 960px;
	align-items: center;
	margin:0 auto;
}
.box-value-creation-story-child-group{
	display:flex;
	align-items:center;
	margin-bottom:50px;
}
.box-value-creation-story-child-img {
    max-width: 45%;
	margin-left:60px;
}
.sec-sdgs{
	text-align:center;
	margin-bottom: 160px;
}
.box-sdgs{
	text-align:left;
}
.box-sdgs img{
	width:150px;
	height:150px;
	margin-right:30px;
}
.sdgs-li{
	display:flex;
	margin-bottom: 20px;
}
.sdgs-sub-title {
    color: #b28c7e;
    font-size: 14px;
    margin-bottom: 10px;
}
.value-story-sp{
	display:none;
}
.social-issue-sp{
	display:none;
}
.issue{
	margin-bottom: 120px;
}
.value-story{
	margin-bottom: 120px;
}
@media screen and (max-width: 500px) {
	.sec-social-issues{
		padding:50px 20px;
	}
	.solution-box{
		display:block;
	}
	.solution-box-child {
	margin-bottom:20px;
	}
	.box-value-creation-story-child-group{
	display:block;
	}
	.box-value-creation-story-child-img{
		max-width:100%;
		margin:40px 0 0 0;
	}
	.box-value-creation-story{
		padding: 0 20px 60px 20px;
	}
	.box-sdgs img{
		width:90px;
		height:90px;
		margin-right: 20px;
	}
	.sec-sdgs{
		margin-bottom:70px;
	}
	.sdgs-sub-title{
		margin-bottom:5px;
	}
}
@media screen and (max-width: 768px) {
	.box-value-creation-story-child{
		max-width:480px;
		padding: 0 15px;
	}
	.box-value-creation-story-child-group{
	display:block;
	}
	.box-value-creation-story-child-img{
		max-width:100%;
		margin:40px 0 0 0;
	}
	.box-value-creation-story{
		padding: 0 20px 60px 20px;
	}
		.value-story-pc{
	display:none;
	}
	.social-issue-pc{
	display:none;
	}
	.value-story-sp{
	display:block;
	}
	.social-issue-sp{
	display:block;
	margin-top: 40px;
	}	
	.issue{
	margin-bottom: 70px;
	}
	.value-story{
	margin-bottom: 70px;
	}
	.sec-social-issues{
	padding: 50px 30px;
	}
	.solution-box{
		display:block;
	}
	.solution-box-child {
	margin-bottom:20px;
	}
	.box-value-creation-story-child-group{
	display:block;
	}
}
@media screen and (max-width: 500px) {
  .value-box {
    display: block;
  }
  .history-contents {
    width: 80%;
  }
  .policy-contents {
    width: 80%;
  }

  .css-carousel-slider6 .slide {
    flex: 0 0 500px;
    margin-right: 30px;
  }

  @keyframes css-carousel-slider6 {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-1 * (500px + 30px) * 5));
    }
  }
}

.form-section_inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form-section_inner {
    height: auto;
  }
}
.form-section_inner .-form-inner {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
}
.c-form-row {
  display: flex;
  gap: 0 16px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-form-row {
    flex-direction: column;
  }
}
.c-form-row .c-form-item {
  width: 100%;
}
.c-form-item {
  margin: 40px 0 0 0;
  font-size: var(--fs-default);
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .c-form-item {
    margin-top: 24px;
  }
}
.c-form-item span.error {
  font-size: var(--fs-small) !important;
  color: #ee5c5c;
  font-weight: var(--weight-middle);
  display: block;
  margin: 6px 0 0 0;
  border-radius: 2px;
  text-align: left;
  line-height: 1.4;
}
.c-form-item .-input,
.c-form-item .-textarea,
.c-form-item select {
  transition: all 0.3s cubic-bezier(0, 1, 0.64, 1);
  outline: 0;
  background-color: var(--color-white);
  border: 1px solid var(--color-light-gray);
  font-family: var(--font-family-brand);
  border-radius: 3px;
  font-size: var(--fs-x-default);
  display: block;
  width: 100%;
  padding: 10px 12px;
  height: 56px;
  -webkit-appearance: none;
  appearance: none;
  color: var(--color-black);
}
@media screen and (max-width: 768px) {
  .c-form-item .-input,
  .c-form-item .-textarea,
  .c-form-item select {
    height: 52px;
  }
}
.c-form-item .-input:focus,
.c-form-item .-textarea:focus,
.c-form-item select:focus {
  background: rgba(178, 140, 126, 0.05);
  box-shadow: 0 0 0 0.2rem rgba(90, 60, 55, 0.2);
}
.c-form-item .-input::placeholder,
.c-form-item .-textarea::placeholder,
.c-form-item select::placeholder {
  color: #aaa;
}
.c-form-item .-input.error,
.c-form-item .-textarea.error,
.c-form-item select.error {
  background-color: rgba(238, 92, 92, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #ee5c5c;
  font-size: 100%;
}
.c-form-item .checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
@media screen and (max-width: 768px) {
  .c-form-item .checkbox .horizontal-item {
    min-width: calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}
.c-form-item .checkbox .horizontal-item + .horizontal-item {
  margin: 0;
}
.c-form-item .checkbox .horizontal-item label {
  font-size: var(--fs-default);
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.c-form-item .checkbox .horizontal-item label input[type="checkbox"],
.c-form-item .checkbox .horizontal-item label input[type="radio"] {
  position: relative;
  width: 22px;
  height: 22px;
  margin: 0 8px 0 0;
  padding: 0;
  cursor: pointer;
}
.c-form-item .checkbox .horizontal-item label input[type="checkbox"]:before,
.c-form-item .checkbox .horizontal-item label input[type="radio"]:before {
  content: "";
  outline: none;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background-color: var(--color-light-gray);
}
.c-form-item
  .checkbox
  .horizontal-item
  label
  input[type="checkbox"].error:before,
.c-form-item .checkbox .horizontal-item label input[type="radio"].error:before {
  background-color: rgba(238, 92, 92, 0.1);
}
.c-form-item .checkbox .horizontal-item label input[type="checkbox"]:after {
  transition: var(--transition);
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M4.75502%2012.0149L0.205017%207.46495C-0.0683389%207.19159%20-0.0683389%206.74838%200.205017%206.47499L1.19494%205.48504C1.4683%205.21166%201.91154%205.21166%202.1849%205.48504L5.24999%208.55011L11.8151%201.98505C12.0884%201.71169%2012.5317%201.71169%2012.805%201.98505L13.795%202.975C14.0683%203.24835%2014.0683%203.69157%2013.795%203.96495L5.74497%2012.015C5.47159%2012.2883%205.02837%2012.2883%204.75502%2012.0149V12.0149Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px auto;
  transform: scale(0);
}
.c-form-item
  .checkbox
  .horizontal-item
  label
  input[type="checkbox"]:checked:after {
  content: "";
  transform: scale(1);
}
.c-form-item .checkbox .horizontal-item label input[type="radio"] {
  width: 22px;
  height: 22px;
}
.c-form-item .checkbox .horizontal-item label input[type="radio"]:before {
  content: "";
  background-image: none;
  border-radius: 50rem;
}
.c-form-item .checkbox .horizontal-item label input[type="radio"]:after {
  content: "";
  transform: scale(0);
  transition: var(--transition);
  background-image: none;
  background: #323133;
  width: 12px;
  height: 12px;
  display: block;
  border-radius: 50rem;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.c-form-item
  .checkbox
  .horizontal-item
  label
  input[type="radio"]:checked:before {
  background-image: none;
}
.c-form-item
  .checkbox
  .horizontal-item
  label
  input[type="radio"]:checked:after {
  content: "";
  transform: scale(1);
}
.c-form-item select {
  color: var(--color-gray);
}
.c-form-item select ~ .icon-select__right {
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 22px;
  right: 16px;
}
@media screen and (max-width: 768px) {
  .c-form-item select ~ .icon-select__right {
    top: 20px;
  }
}
.c-form-item select ~ .icon-select__right:before {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2212%22%20height%3D%2220%22%20viewBox%3D%220%200%2012%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1.53772%2010.8H10.4627C11.2652%2010.8%2011.6665%2011.7712%2011.1002%2012.3375L6.63772%2016.8C6.28522%2017.1525%205.71522%2017.1525%205.36647%2016.8L0.900217%2012.3375C0.333967%2011.7712%200.735217%2010.8%201.53772%2010.8ZM11.1002%206.86249L6.63772%202.4C6.28522%202.0475%205.71522%202.0475%205.36647%202.4L0.900217%206.86249C0.333967%207.42874%200.735217%208.39999%201.53772%208.39999H10.4627C11.2652%208.39999%2011.6665%207.42874%2011.1002%206.86249Z%22%20fill%3D%22%23666666%22%2F%3E%3C%2Fsvg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.c-form-item .-textarea {
  height: auto;
  resize: vertical;
}
.c-form-item__title {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  font-weight: var(--weight-middle);
  font-size: var(--fs-default);
  cursor: pointer;
}
.c-form-item__title.required:after {
  content: "*";
  color: var(--color-brand-main);
  font-size: var(--fs-default);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  padding: 0 0 0 4px;
}
.c-form-item__conts {
  position: relative;
  width: 100%;
  text-align: justify;
  margin-top: 6px;
}
/* プラポリページ */
.pp-a {
  color: #b58f82;
}
.pp-box ol {
  list-style: none;
  counter-reset: number;
}
.pp-box li {
  position: relative;
  padding-left: 40px;
}
.pp-box li::before {
  counter-increment: number;
  content: "（" counter(number) "）";
  position: absolute;
  left: 0;
}
.pp-box table {
  width: 100%;
  border-collapse: collapse;
}

.pp-box th,
td {
  border: 1px solid #b3b3b3;
  padding: 10px;
}
.pp-box h2 {
  font-size: 22px;
  font-weight: 500;
}
.pp-box h3 {
  font-size: 16px;
  font-weight: 500;
}
.scroll-box {
  margin-top: 40px;
  padding: 10px;
  height: 210px;
  overflow-y: scroll;
  background-color: #eeebe6;
  border-radius: 3px;
}
.scroll-box h2 {
  font-size: 14px;
  margin-bottom: 10px;
}
.scroll-box h3 {
  font-size: 14px;
  margin: 10px 0;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .c-form-item__conts {
    margin-top: 4px;
  }
}
.c-form-item__conts.flex-column {
  flex-direction: column;
}
.c-form-item__conts .privacy-text {
  text-align: left;
}
.c-form-item__conts .privacy-text a {
  color: var(--color-gray);
  font-size: var(--fs-small);
  text-decoration: underline;
}
body.contact .c-btn-row .c-btn {
  font-weight: var(--weight-bold);
}
@media screen and (max-width: 768px) {
  body.contact .c-btn-row .c-btn {
    max-width: 100%;
  }
}
body.confirm .c-form-item__title {
  cursor: default;
}
body.confirm .c-form-item__conts {
  color: var(--color-gray);
  background: #fafafa;
  box-shadow: 0px 0px 1px 1px var(--color-brand-light-dark);
  box-shadow: 0px 0px 1px 1px var(--color-brand-light-dark);
  padding: 16px 16px;
  border-radius: 4px;
}
body.confirm .-policy-checkbox {
  display: none;
}
@media screen and (max-width: 768px) {
  body.confirm .c-btn-row {
    gap: 0 8px;
  }
}
body.confirm .c-btn-row .c-btn {
  max-width: 100%;
  min-width: auto;
  font-weight: var(--weight-bold);
}
body.complete .-complete-content h2 {
  font-size: var(--fs-x-middle);
  font-weight: var(--weight-middle);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  body.complete .-complete-content h2 {
    font-size: var(--fs-middle);
    text-align: justify !important;
  }
}
body.complete .-complete-content p {
  line-height: 2;
  margin: 16px auto 0 auto;
}
@media screen and (max-width: 768px) {
  body.complete .-complete-content p {
    text-align: justify !important;
  }
  body.complete .-complete-content p br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  body.complete .c-btn-row {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  body.complete .c-btn-row .c-btn {
    max-width: 100%;
  }
}
.main-body__contact {
  display: flex;
  gap: 0 48px;
}
@media screen and (max-width: 1060px) {
  .main-body__contact {
    gap: 0 32px;
  }
}
@media screen and (max-width: 768px) {
  .main-body__contact {
    flex-direction: column;
  }
}
.main-body__contact .p-contact-border {
  width: 1px;
  min-height: 100%;
  border-left: 1px dashed rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .main-body__contact .p-contact-border {
    width: 100%;
    height: 1px;
    border: none;
    border-top: 1px dashed rgba(0, 0, 0, 0.2);
    margin: 48px 0;
  }
}
.main-body__contact .p-contact-sidebar {
  max-width: 240px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .main-body__contact .p-contact-sidebar {
    max-width: 100%;
  }
}
.c-access-list {
  text-align: justify;
}
.c-access-list li {
  line-height: 1.6;
  font-size: 13px;
}
.c-access-list li + li {
  margin-top: 56px;
}
.c-access-list li .-title {
  font-weight: var(--weight-normal);
  opacity: 0.6;
  letter-spacing: 2px;
}
.c-access-list li .-access {
  margin: 16px 0 0 0;
  letter-spacing: 1px;
}
.c-access-list li .-access-en {
  margin: 8px 0 0 0;
  line-height: 1.5;
  letter-spacing: 1px;
}
.c-access-list li .-map {
  margin: 12px 0 0 0;
}
.c-access-list li .-map a {
  color: var(--color-black);
  font-weight: var(--weight-middle);
  display: inline-flex;
  align-items: center;
  position: relative;
  letter-spacing: 1px;
}
.c-access-list li .-map a:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-black);
  position: absolute;
  bottom: 0px;
}
.p404-container {
  padding: 240px 0 200px 0;
}
@media screen and (max-width: 768px) {
  .p404-container {
    padding: 120px 0 56px 0;
  }
}
.p404-container .main-body__inner {
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 40px;
}
@media screen and (max-width: 768px) {
  .p404-container .main-body__inner {
    flex-direction: column;
  }
}
.p404-title {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.p404-title small {
  font-size: 40px;
  font-weight: 200;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p404-title small {
    font-size: 24px;
  }
}
.p404-title span {
  font-size: 200px;
  font-weight: 300;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p404-title span {
    font-size: 100px;
  }
}
.p404-text {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p404-text {
    width: 100%;
  }
}
.p404-text p {
  margin: 24px 0 0 0;
}
.p404-text .c-btn-row {
  margin: 32px auto 0 0;
  justify-content: start;
}
@media screen and (max-width: 768px) {
  .p404-text .c-btn-row {
    margin: 32px auto 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .p404-text .c-btn-row .c-btn {
    max-width: 100%;
  }
}
.breadcrumbs {
  text-align: left;
  padding: 16px 0 16px 0;
  max-width: 90%;
  width: 100%;
  margin: 80px auto 20px;
  background: #f7f6f4;
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    margin-top: 48px;
  }
}
.breadcrumbs-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .breadcrumbs-inner {
    max-width: 480px !important;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumbs-inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    justify-content: start;
  }
}
.breadcrumbs-inner a {
  opacity: 0.4;
}
.breadcrumbs-inner i {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%229%22%20height%3D%2212%22%20viewBox%3D%220%200%209%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M7.29588%206L0.345703%200.903203L0.937067%200.0967979L8.43707%205.5968C8.5655%205.69099%208.64139%205.84073%208.64139%206C8.64139%206.15927%208.5655%206.30902%208.43707%206.4032L0.937067%2011.9032L0.345703%2011.0968L7.29588%206Z%22%20fill%3D%22%23B28C7E%22%2F%3E%3C%2Fsvg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9px;
  height: 9px;
  margin: 0 12px;
}
@media screen and (max-width: 768px) {
  .breadcrumbs-inner i {
    margin: 0 6px;
  }
}
.breadcrumbs-inner span {
  font-size: var(--fs-small);
  color: var(--color-black);
  font-weight: var(--weight-middle);
  line-height: 1.3;
}
.breadcrumbs-inner span br {
  display: none;
}
@media screen and (max-width: 768px) {
  .breadcrumbs-inner span {
    font-size: 10px;
  }
}
@media screen and (min-width: 769px) and (max-width: 2000px) {
  .breadcrumbs-inner span:last-of-type {
    max-width: 500px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
.wp-pagenavi {
  margin: var(--space8) auto 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 16px;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi {
    margin-top: 48px;
  }
}
.wp-pagenavi > .pages {
  display: none;
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-small);
}
.wp-pagenavi .first,
.wp-pagenavi .last {
  display: none;
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink,
.wp-pagenavi a.page,
.wp-pagenavi span.current {
  font-weight: var(--weight-middle);
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  text-align: center;
  width: auto;
  height: 30px;
  font-size: var(--fs-small);
  color: var(--color-black);
}
.wp-pagenavi a.page:hover {
  color: var(--color-brand-main);
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  border-radius: 50rem;
  width: 32px;
  height: 32px;
}
.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .previouspostslink:hover {
  background-color: var(--color-brand-light);
}
.wp-pagenavi span.current {
  position: relative;
  color: var(--color-brand-main);
}
.wp-pagenavi span.current:before {
  content: "";
  transition: var(--transition);
  border-bottom: 1px dashed var(--color-brand-main);
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.wp-pagenavi .extend {
  line-height: 1;
  color: var(--color-gray);
  position: relative;
  bottom: 4px;
}
.wp-pagenavi .previouspostslink {
  margin-right: 24px;
}
.wp-pagenavi .nextpostslink {
  margin-left: 24px;
}
.wp-pagenavi .pagenavi-nav {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.wp-pagenavi .pagenavi-nav.prev {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10.0832%2014.0668L4.46655%208.4668C4.39988%208.40014%204.35255%208.32792%204.32455%208.25014C4.29655%208.17236%204.28277%208.08903%204.28321%208.00014C4.28321%207.91125%204.29699%207.82792%204.32455%207.75014C4.3521%207.67236%204.39944%207.60014%204.46655%207.53347L10.0832%201.9168C10.2388%201.76125%2010.4332%201.68347%2010.6665%201.68347C10.8999%201.68347%2011.0999%201.76681%2011.2665%201.93347C11.4332%202.10014%2011.5165%202.29458%2011.5165%202.51681C11.5165%202.73903%2011.4332%202.93347%2011.2665%203.10014L6.36655%208.00014L11.2665%2012.9001C11.4221%2013.0557%2011.4999%2013.2475%2011.4999%2013.4755C11.4999%2013.7035%2011.4165%2013.9006%2011.2499%2014.0668C11.0832%2014.2335%2010.8888%2014.3168%2010.6665%2014.3168C10.4443%2014.3168%2010.2499%2014.2335%2010.0832%2014.0668Z%22%20fill%3D%22%23B28C7E%22%2F%3E%3C%2Fsvg%3E");
}
.wp-pagenavi .pagenavi-nav.next {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5.9168%201.9332L11.5334%207.5332C11.6001%207.59986%2011.6474%207.67208%2011.6754%207.74986C11.7034%207.82764%2011.7172%207.91097%2011.7168%207.99986C11.7168%208.08875%2011.703%208.17208%2011.6754%208.24986C11.6479%208.32764%2011.6006%208.39986%2011.5334%208.46653L5.9168%2014.0832C5.7612%2014.2387%205.5668%2014.3165%205.3335%2014.3165C5.1001%2014.3165%204.9001%2014.2332%204.7335%2014.0665C4.5668%2013.8999%204.4835%2013.7054%204.4835%2013.4832C4.4835%2013.261%204.5668%2013.0665%204.7335%2012.8999L9.63345%207.99986L4.7335%203.0999C4.5779%202.9443%204.5001%202.7525%204.5001%202.5245C4.5001%202.2965%204.5835%202.0994%204.7501%201.9332C4.9168%201.7665%205.1112%201.6832%205.3335%201.6832C5.5557%201.6832%205.7501%201.7665%205.9168%201.9332Z%22%20fill%3D%22%23B28C7E%22%2F%3E%3C%2Fsvg%3E");
}
#toc_container {
  background: var(--color-light-gray);
  padding: 24px 24px 24px 16px;
  border-radius: var(--border-radius-middle);
  margin: 24px auto 0 auto;
}
#toc_container .toc_title {
  margin: 0;
  font-weight: var(--weight-bold);
}
#toc_container .toc_list {
  margin: 8px auto 0 auto;
}
#toc_container .toc_list li::marker {
  color: var(--color-gray);
  font-size: 10px;
}
#toc_container .toc_list li a {
  color: var(--color-gray);
}
.on a img {
  text-decoration: none;
  transition: var(--transition);
}
.on a img:hover {
  opacity: 0.8;
}
.fs-en {
  font-family: var(--font-family-brand) !important;
}
.fs-jp {
  font-family: var(--font-family-brand-jp) !important;
}
.w-auto {
  width: auto !important;
}
.w-full {
  width: 100% !important;
  max-width: 100% !important;
}
.w-75 {
  width: 75% !important;
  max-width: 100% !important;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .w-75 {
    width: 100% !important;
  }
}
.w-50 {
  width: 50% !important;
  max-width: 100% !important;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .w-50 {
    width: 100% !important;
  }
}
.t-left {
  text-align: left;
}
.t-right {
  text-align: right;
}
.t-center {
  text-align: center;
}
.t-justify {
  text-align: justify;
}
.weightw-light {
  font-weight: var(--weight-light);
}
.weightw-normal {
  font-weight: var(--weight-normal);
}
.weight-middle {
  font-weight: var(--weight-middle);
}
.weight-bold {
  font-weight: var(--weight-bold);
}
.space-xlarge {
  height: 160px;
}
@media screen and (max-width: 768px) {
  .space-xlarge {
    height: 80px;
  }
}
.space-large {
  height: 120px;
}
@media screen and (max-width: 768px) {
  .space-large {
    height: 60px;
  }
}
.space-middle {
  height: 80px;
}
@media screen and (max-width: 768px) {
  .space-middle {
    height: 40px;
  }
}
.space-small {
  height: 40px;
}
@media screen and (max-width: 768px) {
  .space-small {
    height: 20px;
  }
}
.color-black {
  color: var(--color-black);
}
.color-gray {
  color: var(--color-gray);
}
.bg-white {
  background: var(--color-white) !important;
}
.bg-gray {
  background: var(--color-light-gray-light) !important;
}
.bg-gray-dark {
  background: var(--color-light-gray) !important;
}
.pc-block {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-block {
    display: none;
  }
}
.sp-block {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-block {
    display: block;
  }
}
.pc-flex {
  display: flex;
}
@media screen and (max-width: 768px) {
  .pc-flex {
    display: none;
  }
}
.sp-flex {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-flex {
    display: flex;
  }
}
.pc-inline-flex {
  display: inline-flex;
}
@media screen and (max-width: 768px) {
  .pc-inline-flex {
    display: none;
  }
}
.sp-inline-flex {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-inline-flex {
    display: inline-flex;
  }
}
.flex-direction-column {
  flex-direction: column;
}
.mt0 {
  margin-top: 0px !important;
}
@media (max-width: 768px) {
  .mt0 {
    margin-top: 0px !important;
  }
}
.mt1 {
  margin-top: 8px !important;
}
@media (max-width: 768px) {
  .mt1 {
    margin-top: 5.3333333333px !important;
  }
}
.mt2 {
  margin-top: 16px !important;
}
@media (max-width: 768px) {
  .mt2 {
    margin-top: 10.6666666667px !important;
  }
}
.mt3 {
  margin-top: 24px !important;
}
@media (max-width: 768px) {
  .mt3 {
    margin-top: 16px !important;
  }
}
.mt4 {
  margin-top: 32px !important;
}
@media (max-width: 768px) {
  .mt4 {
    margin-top: 21.3333333333px !important;
  }
}
.mt5 {
  margin-top: 40px !important;
}
@media (max-width: 768px) {
  .mt5 {
    margin-top: 26.6666666667px !important;
  }
}
.mt6 {
  margin-top: 48px !important;
}
@media (max-width: 768px) {
  .mt6 {
    margin-top: 32px !important;
  }
}
.mt7 {
  margin-top: 56px !important;
}
@media (max-width: 768px) {
  .mt7 {
    margin-top: 37.3333333333px !important;
  }
}
.mt8 {
  margin-top: 64px !important;
}
@media (max-width: 768px) {
  .mt8 {
    margin-top: 42.6666666667px !important;
  }
}
.mt9 {
  margin-top: 72px !important;
}
@media (max-width: 768px) {
  .mt9 {
    margin-top: 48px !important;
  }
}
.mt10 {
  margin-top: 80px !important;
}
@media (max-width: 768px) {
  .mt10 {
    margin-top: 53.3333333333px !important;
  }
}
.mt11 {
  margin-top: 88px !important;
}
@media (max-width: 768px) {
  .mt11 {
    margin-top: 58.6666666667px !important;
  }
}
.mt12 {
  margin-top: 96px !important;
}
@media (max-width: 768px) {
  .mt12 {
    margin-top: 64px !important;
  }
}
.mt13 {
  margin-top: 104px !important;
}
@media (max-width: 768px) {
  .mt13 {
    margin-top: 69.3333333333px !important;
  }
}
.mt14 {
  margin-top: 112px !important;
}
@media (max-width: 768px) {
  .mt14 {
    margin-top: 74.6666666667px !important;
  }
}
.mt15 {
  margin-top: 120px !important;
}
@media (max-width: 768px) {
  .mt15 {
    margin-top: 80px !important;
  }
}
.mb0 {
  margin-bottom: 0px !important;
}
@media (max-width: 768px) {
  .mb0 {
    margin-bottom: 0px !important;
  }
}
.mb1 {
  margin-bottom: 8px !important;
}
@media (max-width: 768px) {
  .mb1 {
    margin-bottom: 5.3333333333px !important;
  }
}
.mb2 {
  margin-bottom: 16px !important;
}
@media (max-width: 768px) {
  .mb2 {
    margin-bottom: 10.6666666667px !important;
  }
}
.mb3 {
  margin-bottom: 24px !important;
}
@media (max-width: 768px) {
  .mb3 {
    margin-bottom: 16px !important;
  }
}
.mb4 {
  margin-bottom: 32px !important;
}
@media (max-width: 768px) {
  .mb4 {
    margin-bottom: 21.3333333333px !important;
  }
}
.mb5 {
  margin-bottom: 40px !important;
}
@media (max-width: 768px) {
  .mb5 {
    margin-bottom: 26.6666666667px !important;
  }
}
.mb6 {
  margin-bottom: 48px !important;
}
@media (max-width: 768px) {
  .mb6 {
    margin-bottom: 32px !important;
  }
}
.mb7 {
  margin-bottom: 56px !important;
}
@media (max-width: 768px) {
  .mb7 {
    margin-bottom: 37.3333333333px !important;
  }
}
.mb8 {
  margin-bottom: 64px !important;
}
@media (max-width: 768px) {
  .mb8 {
    margin-bottom: 42.6666666667px !important;
  }
}
.mb9 {
  margin-bottom: 72px !important;
}
@media (max-width: 768px) {
  .mb9 {
    margin-bottom: 48px !important;
  }
}
.mb10 {
  margin-bottom: 80px !important;
}
@media (max-width: 768px) {
  .mb10 {
    margin-bottom: 53.3333333333px !important;
  }
}
.mb11 {
  margin-bottom: 88px !important;
}
@media (max-width: 768px) {
  .mb11 {
    margin-bottom: 58.6666666667px !important;
  }
}
.mb12 {
  margin-bottom: 96px !important;
}
@media (max-width: 768px) {
  .mb12 {
    margin-bottom: 64px !important;
  }
}
.mb13 {
  margin-bottom: 104px !important;
}
@media (max-width: 768px) {
  .mb13 {
    margin-bottom: 69.3333333333px !important;
  }
}
.mb14 {
  margin-bottom: 112px !important;
}
@media (max-width: 768px) {
  .mb14 {
    margin-bottom: 74.6666666667px !important;
  }
}
.mb15 {
  margin-bottom: 120px !important;
}
@media (max-width: 768px) {
  .mb15 {
    margin-bottom: 80px !important;
  }
}
.pt0 {
  padding-top: 0px !important;
}
@media (max-width: 768px) {
  .pt0 {
    padding-top: 0px !important;
  }
}
.pt1 {
  padding-top: 8px !important;
}
@media (max-width: 768px) {
  .pt1 {
    padding-top: 5.3333333333px !important;
  }
}
.pt2 {
  padding-top: 16px !important;
}
@media (max-width: 768px) {
  .pt2 {
    padding-top: 10.6666666667px !important;
  }
}
.pt3 {
  padding-top: 24px !important;
}
@media (max-width: 768px) {
  .pt3 {
    padding-top: 16px !important;
  }
}
.pt4 {
  padding-top: 32px !important;
}
@media (max-width: 768px) {
  .pt4 {
    padding-top: 21.3333333333px !important;
  }
}
.pt5 {
  padding-top: 40px !important;
}
@media (max-width: 768px) {
  .pt5 {
    padding-top: 26.6666666667px !important;
  }
}
.pt6 {
  padding-top: 48px !important;
}
@media (max-width: 768px) {
  .pt6 {
    padding-top: 32px !important;
  }
}
.pt7 {
  padding-top: 56px !important;
}
@media (max-width: 768px) {
  .pt7 {
    padding-top: 37.3333333333px !important;
  }
}
.pt8 {
  padding-top: 64px !important;
}
@media (max-width: 768px) {
  .pt8 {
    padding-top: 42.6666666667px !important;
  }
}
.pt9 {
  padding-top: 72px !important;
}
@media (max-width: 768px) {
  .pt9 {
    padding-top: 48px !important;
  }
}
.pt10 {
  padding-top: 80px !important;
}
@media (max-width: 768px) {
  .pt10 {
    padding-top: 53.3333333333px !important;
  }
}
.pt11 {
  padding-top: 88px !important;
}
@media (max-width: 768px) {
  .pt11 {
    padding-top: 58.6666666667px !important;
  }
}
.pt12 {
  padding-top: 96px !important;
}
@media (max-width: 768px) {
  .pt12 {
    padding-top: 64px !important;
  }
}
.pt13 {
  padding-top: 104px !important;
}
@media (max-width: 768px) {
  .pt13 {
    padding-top: 69.3333333333px !important;
  }
}
.pt14 {
  padding-top: 112px !important;
}
@media (max-width: 768px) {
  .pt14 {
    padding-top: 74.6666666667px !important;
  }
}
.pt15 {
  padding-top: 120px !important;
}
@media (max-width: 768px) {
  .pt15 {
    padding-top: 80px !important;
  }
}
.pb0 {
  padding-bottom: 0px !important;
}
@media (max-width: 768px) {
  .pb0 {
    padding-bottom: 0px !important;
  }
}
.pb1 {
  padding-bottom: 8px !important;
}
@media (max-width: 768px) {
  .pb1 {
    padding-bottom: 5.3333333333px !important;
  }
}
.pb2 {
  padding-bottom: 16px !important;
}
@media (max-width: 768px) {
  .pb2 {
    padding-bottom: 10.6666666667px !important;
  }
}
.pb3 {
  padding-bottom: 24px !important;
}
@media (max-width: 768px) {
  .pb3 {
    padding-bottom: 16px !important;
  }
}
.pb4 {
  padding-bottom: 32px !important;
}
@media (max-width: 768px) {
  .pb4 {
    padding-bottom: 21.3333333333px !important;
  }
}
.pb5 {
  padding-bottom: 40px !important;
}
@media (max-width: 768px) {
  .pb5 {
    padding-bottom: 26.6666666667px !important;
  }
}
.pb6 {
  padding-bottom: 48px !important;
}
@media (max-width: 768px) {
  .pb6 {
    padding-bottom: 32px !important;
  }
}
.pb7 {
  padding-bottom: 56px !important;
}
@media (max-width: 768px) {
  .pb7 {
    padding-bottom: 37.3333333333px !important;
  }
}
.pb8 {
  padding-bottom: 64px !important;
}
@media (max-width: 768px) {
  .pb8 {
    padding-bottom: 42.6666666667px !important;
  }
}
.pb9 {
  padding-bottom: 72px !important;
}
@media (max-width: 768px) {
  .pb9 {
    padding-bottom: 48px !important;
  }
}
.pb10 {
  padding-bottom: 80px !important;
}
@media (max-width: 768px) {
  .pb10 {
    padding-bottom: 53.3333333333px !important;
  }
}
.pb11 {
  padding-bottom: 88px !important;
}
@media (max-width: 768px) {
  .pb11 {
    padding-bottom: 58.6666666667px !important;
  }
}
.pb12 {
  padding-bottom: 96px !important;
}
@media (max-width: 768px) {
  .pb12 {
    padding-bottom: 64px !important;
  }
}
.pb13 {
  padding-bottom: 104px !important;
}
@media (max-width: 768px) {
  .pb13 {
    padding-bottom: 69.3333333333px !important;
  }
}
.pb14 {
  padding-bottom: 112px !important;
}
@media (max-width: 768px) {
  .pb14 {
    padding-bottom: 74.6666666667px !important;
  }
}
.pb15 {
  padding-bottom: 120px !important;
}
@media (max-width: 768px) {
  .pb15 {
    padding-bottom: 80px !important;
  }
}
.pr0 {
  padding-right: 0px !important;
}
@media (max-width: 768px) {
  .pr0 {
    padding-right: 0px !important;
  }
}
.pr1 {
  padding-right: 8px !important;
}
@media (max-width: 768px) {
  .pr1 {
    padding-right: 5.3333333333px !important;
  }
}
.pr2 {
  padding-right: 16px !important;
}
@media (max-width: 768px) {
  .pr2 {
    padding-right: 10.6666666667px !important;
  }
}
.pr3 {
  padding-right: 24px !important;
}
@media (max-width: 768px) {
  .pr3 {
    padding-right: 16px !important;
  }
}
.pr4 {
  padding-right: 32px !important;
}
@media (max-width: 768px) {
  .pr4 {
    padding-right: 21.3333333333px !important;
  }
}
.pr5 {
  padding-right: 40px !important;
}
@media (max-width: 768px) {
  .pr5 {
    padding-right: 26.6666666667px !important;
  }
}
.pr6 {
  padding-right: 48px !important;
}
@media (max-width: 768px) {
  .pr6 {
    padding-right: 32px !important;
  }
}
.pr7 {
  padding-right: 56px !important;
}
@media (max-width: 768px) {
  .pr7 {
    padding-right: 37.3333333333px !important;
  }
}
.pr8 {
  padding-right: 64px !important;
}
@media (max-width: 768px) {
  .pr8 {
    padding-right: 42.6666666667px !important;
  }
}
.pr9 {
  padding-right: 72px !important;
}
@media (max-width: 768px) {
  .pr9 {
    padding-right: 48px !important;
  }
}
.pr10 {
  padding-right: 80px !important;
}
@media (max-width: 768px) {
  .pr10 {
    padding-right: 53.3333333333px !important;
  }
}
.pr11 {
  padding-right: 88px !important;
}
@media (max-width: 768px) {
  .pr11 {
    padding-right: 58.6666666667px !important;
  }
}
.pr12 {
  padding-right: 96px !important;
}
@media (max-width: 768px) {
  .pr12 {
    padding-right: 64px !important;
  }
}
.pr13 {
  padding-right: 104px !important;
}
@media (max-width: 768px) {
  .pr13 {
    padding-right: 69.3333333333px !important;
  }
}
.pr14 {
  padding-right: 112px !important;
}
@media (max-width: 768px) {
  .pr14 {
    padding-right: 74.6666666667px !important;
  }
}
.pr15 {
  padding-right: 120px !important;
}
@media (max-width: 768px) {
  .pr15 {
    padding-right: 80px !important;
  }
}
.pl0 {
  padding-left: 0px !important;
}
@media (max-width: 768px) {
  .pl0 {
    padding-left: 0px !important;
  }
}
.pl1 {
  padding-left: 8px !important;
}
@media (max-width: 768px) {
  .pl1 {
    padding-left: 5.3333333333px !important;
  }
}
.pl2 {
  padding-left: 16px !important;
}
@media (max-width: 768px) {
  .pl2 {
    padding-left: 10.6666666667px !important;
  }
}
.pl3 {
  padding-left: 24px !important;
}
@media (max-width: 768px) {
  .pl3 {
    padding-left: 16px !important;
  }
}
.pl4 {
  padding-left: 32px !important;
}
@media (max-width: 768px) {
  .pl4 {
    padding-left: 21.3333333333px !important;
  }
}
.pl5 {
  padding-left: 40px !important;
}
@media (max-width: 768px) {
  .pl5 {
    padding-left: 26.6666666667px !important;
  }
}
.pl6 {
  padding-left: 48px !important;
}
@media (max-width: 768px) {
  .pl6 {
    padding-left: 32px !important;
  }
}
.pl7 {
  padding-left: 56px !important;
}
@media (max-width: 768px) {
  .pl7 {
    padding-left: 37.3333333333px !important;
  }
}
.pl8 {
  padding-left: 64px !important;
}
@media (max-width: 768px) {
  .pl8 {
    padding-left: 42.6666666667px !important;
  }
}
.pl9 {
  padding-left: 72px !important;
}
@media (max-width: 768px) {
  .pl9 {
    padding-left: 48px !important;
  }
}
.pl10 {
  padding-left: 80px !important;
}
@media (max-width: 768px) {
  .pl10 {
    padding-left: 53.3333333333px !important;
  }
}
.pl11 {
  padding-left: 88px !important;
}
@media (max-width: 768px) {
  .pl11 {
    padding-left: 58.6666666667px !important;
  }
}
.pl12 {
  padding-left: 96px !important;
}
@media (max-width: 768px) {
  .pl12 {
    padding-left: 64px !important;
  }
}
.pl13 {
  padding-left: 104px !important;
}
@media (max-width: 768px) {
  .pl13 {
    padding-left: 69.3333333333px !important;
  }
}
.pl14 {
  padding-left: 112px !important;
}
@media (max-width: 768px) {
  .pl14 {
    padding-left: 74.6666666667px !important;
  }
}
.pl15 {
  padding-left: 120px !important;
}
@media (max-width: 768px) {
  .pl15 {
    padding-left: 80px !important;
  }
}
.single-head__main .-head-interview {
  padding: 0 0 56px 0;
  display: flex;
  flex-direction: column;
}
.lower-body.single-interview {
  padding-top: 80px;
  padding-bottom: 120px;
}
.single-head__container-interview {
  padding: 180px 0 0 0;
  margin: 0;
}
.single-head__main .-head-interview .--title {
  font-size: var(--fs-x-large);
  font-weight: var(--weight-middle);
  line-height: 1.6;
  padding: 48px 0;
}
@media screen and (max-width: 992px) {
  .single-head__main .-head-interview .--title {
    font-size: var(--fs-x-middle);
  }
}
@media screen and (max-width: 768px) {
  .lower-body.single-interview {
    padding-top: 46px;
    padding-bottom: 72px;
  }
  .single-head__container-interview {
    padding: 100px 0 0 0;
  }
  .single-head__main .-head-interview .--title {
    padding: 24px 0;
  }
}
