@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  line-height: 1.5;
}

body {
  font-size: 100%;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

ol,
ul {
  list-style: none;
}

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

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

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

body,
button,
input,
select,
textarea {
  font-size: 1rem;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}
a:visited {
  color: inherit;
}

img {
  width: 100%;
  max-width: initial;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
}
img[src$=".svg"] {
  max-width: 100%;
}

label {
  margin-bottom: 0;
}

input[type=search] {
  color: inherit;
  border: 1px solid #333;
  border-radius: 0;
  padding: 0.3em 0.3em 0.3em 35px;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

ul,
ol {
  margin: 0;
}

figure {
  margin: 0;
}

h1 {
  font-size: inherit;
}

p {
  margin: 0;
}

h2 {
  color: inherit;
  font-size: 1rem;
}

h3 {
  color: inherit;
}

dl {
  margin: 0;
}

dd {
  margin: 0;
}

h3 {
  font-size: 1rem;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 0;
}

h4 {
  color: inherit;
  font-size: inherit;
  font-weight: normal;
}

button,
input[type=button],
input[type=submit] {
  background-color: transparent;
}

ol {
  list-style: none;
}

a:hover,
a:active {
  color: inherit;
}

/*================================
	サイトごとに設定
=================================*/
/*================================
	メディアクエリの設定
=================================*/
/*================================
	サイト共通設定
=================================*/
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  word-wrap: break-word;
  color: #0F1A21;
  width: 100%;
  height: 100%;
}
html * {
  font-weight: inherit;
  box-sizing: border-box;
}

/*================================
	PC 共通設定
=================================*/
@media print, screen and (min-width: 768px) {
  html {
    overflow-y: scroll;
  }
  .inner {
    width: 90.9090909091%;
    max-width: 1000px;
    margin: auto;
  }
}
/*================================
	PC 相対値範囲設定
=================================*/
@media print, screen and (min-width: 768px) and (max-width: 1100px) {
  html {
    font-size: 1vw;
  }
}
/*================================
	SP 共通設定
=================================*/
@media only screen and (max-width: 768px) {
  html {
    font-size: 3.6458333333vw;
  }
  .inner {
    width: 90%;
    margin: auto;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* BASE STYLE
--------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

iframe {
  vertical-align: middle;
}

/* CLEAR-FIX */
.clearfix {
  zoom: 1;
}

a {
  text-decoration: none;
}

.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

.wrap {
  overflow: hidden;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.is-between {
  justify-content: space-between;
}

.flexdry {
  flex-direction: row-reverse;
}

.sp {
  display: none !important;
}

.pc {
  display: block !important;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
/*------------------------------------------------

l-header

-------------------------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  height: 65px;
  transition: all 0.3s ease;
}
.l-header.active {
  background-color: #fff;
}
.l-header .l-header-inner {
  align-items: center;
  height: 100%;
}
.l-header .l-header-logo__ttl {
  width: 140px;
  margin-left: 20px;
}
.l-header .l-header-logo__ttl .-link {
  display: block;
  height: 100%;
}
.l-header .l-header-logo__ttl .-link img {
  height: 100%;
}
.l-header .l-header-area {
  align-items: center;
}
.l-header .l-header-area__list {
  margin-right: 200px;
  gap: 0px 30px;
}
.l-header .l-header-area__list-item .-link {
  position: relative;
  display: block;
  font-family: "Montserrat", sans-serif;
  color: #1F1F1F;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  font-weight: bold;
  padding-bottom: 3px;
}
.l-header .l-header-area__list-item .-link:hover {
  opacity: 0.7;
}
.l-header .l-header-area__insta {
  position: absolute;
  right: 155px;
  width: 20px;
  height: 20px;
}
.l-header .l-header-area__insta a {
  display: flex;
}
.l-header .l-header-area__contact-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 130px;
  transition: all 0.3s ease;
  background-color: #000;
}
.l-header .l-header-area__contact-btn:hover {
  opacity: 0.8;
}
.l-header .l-header-area__contact-btn .-link {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: bold;
  color: #fff;
}
.l-header .l-header-area__contact-btn .-icon {
  position: relative;
  padding-left: 18px;
}
.l-header .l-header-area__contact-btn .-icon::before {
  content: "";
  position: absolute;
  display: block;
  background: url(../../../img/common/mail-icon.svg) no-repeat;
  background-size: contain;
  width: 14px;
  height: 10px;
  top: 52%;
  transform: translateY(-50%);
  left: 0px;
}
.l-header .l-header-area__list-item--posi:has(.l-hader-area__listselect li:hover) > .-accdion::before {
  transform: rotate(-90deg);
}
.l-header .l-header-area__list-item--posi:has(.l-hader-area__listselect li:hover) > .-accdion::after {
  opacity: 0;
}
.l-header .l-header-area__list-item--posi {
  position: relative;
  cursor: default;
}
.l-header .l-header-area__list-item--posi .-accdion {
  position: relative;
  padding-right: 12px;
}
.l-header .l-header-area__list-item--posi .-accdion::before {
  content: "";
  position: absolute;
  display: block;
  width: 2px;
  height: 10px;
  background-color: #1F1F1F;
  top: 5px;
  right: 2px;
  transition: all 0.3s ease;
}
.l-header .l-header-area__list-item--posi .-accdion::after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 2px;
  background-color: #1F1F1F;
  top: 9px;
  right: -2px;
  transition: all 0.3s ease;
}
.l-header .l-header-area__list-item--posi .-accdion:hover::before {
  transform: rotate(-90deg);
}
.l-header .l-header-area__list-item--posi .-accdion:hover::after {
  opacity: 0;
}
.l-header .l-header-area__list-item--posi:hover .l-hader-area__listselect {
  opacity: 1;
  pointer-events: auto;
}
.l-header .l-hader-area__listselect {
  position: absolute;
  width: 200px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.l-header .l-hader-area__listselect ul {
  gap: 1px;
}
.l-header .l-hader-area__listselect li {
  width: 100%;
  text-align: center;
}
.l-header .l-hader-area__listselect .-num {
  color: #D9CCC0;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  margin-right: 6px;
}
.l-header .l-hader-area__listselect a {
  display: block;
  background-color: #1F1F1F;
  color: #fff;
  font-size: 12px;
  padding: 10px 10px 10px 10px;
  letter-spacing: 0.02em;
}
.l-header .l-hader-area__listselect a:hover {
  opacity: 1;
}
.l-header .l-header-humbtn {
  display: none;
}
@media screen and (max-width: 840px) {
  .l-header .l-header-area__list {
    gap: 0px 20px;
  }
  .l-header .l-header-area__list-item .-link {
    font-size: 12px;
  }
  .l-header .l-header-area__list-item--posi {
    position: relative;
    cursor: default;
  }
  .l-header .l-header-area__list-item--posi .-accdion {
    position: relative;
    padding-right: 12px;
  }
  .l-header .l-header-area__list-item--posi .-accdion::before {
    top: 3px;
    right: 2px;
  }
  .l-header .l-header-area__list-item--posi .-accdion::after {
    top: 7px;
    right: -2px;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    position: fixed;
    height: 18.6666666667vw;
  }
  .l-header.open {
    background-color: #f5f5f5 !important;
  }
  .l-header .l-header-logo__ttl {
    width: 32vw;
    transition: all 0.3s ease;
    margin-top: 0;
    margin-left: 2.6666666667vw;
  }
  .l-header .l-header-area {
    position: fixed;
    height: calc(100vh - 18.6666666667vw);
    top: 18.6666666667vw;
    padding: 0 13.3333333333vw 13.3333333333vw;
    width: 100%;
    background-color: #f5f5f5;
    left: 0;
    opacity: 0;
    pointer-events: none;
    pointer-events: none;
    transition: all 0.3s ease;
    overflow: scroll;
    border-radius: 0 0 8vw 8vw;
  }
  .l-header .l-header-area.open {
    opacity: 1;
    transform: translateX(0%);
    z-index: 1000;
    pointer-events: auto;
  }
  .l-header .l-header-area__list {
    width: 100%;
    justify-content: center;
    margin-top: 5.3333333333vw;
    margin-right: 0px;
  }
  .l-header .l-header-area__list-item {
    width: 100%;
    position: relative;
  }
  .l-header .l-header-area__list-item .-link {
    position: relative;
    display: inline-block;
    color: #1f1f1f;
    margin-top: 5.3333333333vw;
    font-size: 8.5333333333vw;
  }
  .l-header .l-header-area__list-item.l-header-area__list-item--posi:has(.l-hader-area__listselect li:hover) > .-accdion::before {
    transform: 0;
  }
  .l-header .l-header-area__list-item.l-header-area__list-item--posi:has(.l-hader-area__listselect li:hover) > .-accdion::after {
    opacity: 1;
  }
  .l-header .l-header-area__list-item.l-header-area__list-item--posi .-accdion {
    position: relative;
    border-bottom: none;
    padding-right: 0;
  }
  .l-header .l-header-area__list-item.l-header-area__list-item--posi .-accdion::before {
    display: none;
  }
  .l-header .l-header-area__list-item.l-header-area__list-item--posi .-accdion::after {
    display: none;
  }
  .l-header .l-header-area__list-item.l-header-area__list-item--posi .-accdion-click {
    position: absolute;
    display: block;
    width: 6.6666666667vw;
    height: 6.6666666667vw;
    top: 3.4666666667vw;
    right: -10.6666666667vw;
  }
  .l-header .l-header-area__list-item.l-header-area__list-item--posi .-accdion-click.open::before {
    opacity: 1;
  }
  .l-header .l-header-area__list-item.l-header-area__list-item--posi .-accdion-click.open::after {
    transform: translateY(-50%) rotate(-90deg);
  }
  .l-header .l-header-area__list-item.l-header-area__list-item--posi .-accdion-click::before {
    content: "";
    position: absolute;
    display: block;
    width: 4vw;
    height: 1px;
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    right: 2.1333333333vw;
    background-color: #1f1f1f;
    transition: all 0.3s ease;
  }
  .l-header .l-header-area__list-item.l-header-area__list-item--posi .-accdion-click::after {
    content: "";
    position: absolute;
    display: block;
    width: 1px;
    height: 4vw;
    top: 50%;
    transform: translateY(-50%);
    right: 4vw;
    background-color: #1f1f1f;
    transition: all 0.3s ease;
  }
  .l-header .l-header-area__list-item.l-header-area__list-item--posi .-link:hover {
    color: #454545;
  }
  .l-header .l-header-area__list-item.l-header-area__list-item--posi .-link:hover::before {
    opacity: 1;
  }
  .l-header .l-header-area__list-item.l-header-area__list-item--posi .-link:hover::after {
    opacity: 1;
  }
  .l-header .l-header-area__list-item .l-hader-area__listselect {
    position: static;
    display: none;
    width: 100%;
    left: 0%;
    transform: translateX(0%);
    opacity: 1;
    pointer-events: auto;
    transition: all 0s ease;
  }
  .l-header .l-header-area__list-item .l-hader-area__listselect ul {
    gap: 0px;
  }
  .l-header .l-header-area__list-item .l-hader-area__listselect li {
    width: 100%;
  }
  .l-header .l-header-area__list-item .l-hader-area__listselect li:first-child a {
    padding-top: 0;
  }
  .l-header .l-header-area__list-item .l-hader-area__listselect li:last-child a {
    padding-bottom: 5.3333333333vw;
  }
  .l-header .l-header-area__list-item .l-hader-area__listselect .-num {
    color: #1f1f1f;
    font-size: 3.7333333333vw;
  }
  .l-header .l-header-area__list-item .l-hader-area__listselect a {
    position: relative;
    display: block;
    text-align: left;
    font-weight: bold;
    background-color: #f5f5f5;
    color: #1f1f1f;
    padding: 2.6666666667vw 0;
    padding-left: 5.3333333333vw;
    font-size: 4.2666666667vw;
    letter-spacing: 0.02em;
  }
  .l-header .l-header-area__list-item .l-hader-area__listselect a:hover {
    opacity: 1;
  }
  .l-header .l-header-area__insta {
    position: static;
    margin-top: 13.3333333333vw;
  }
  .l-header .l-header-area__contact {
    margin: auto;
    margin-top: 8vw;
    gap: 4vw 0;
    flex-direction: column-reverse;
  }
  .l-header .l-header-area__contact-btn {
    position: static;
    width: 100%;
    margin: auto;
    margin-top: 13.3333333333vw;
    background-color: #000;
  }
  .l-header .l-header-area__contact-btn .-link {
    position: relative;
    font-size: 4.2666666667vw;
    padding: 5.3333333333vw 0;
    color: #fff;
  }
  .l-header .l-header-area__contact-btn .-link span {
    font-size: 4.2666666667vw;
  }
  .l-header .l-header-area__contact-btn .-icon {
    padding-left: 4.8vw;
  }
  .l-header .l-header-area__contact-btn .-icon::before {
    background-size: contain;
    top: 53%;
    width: 3.7333333333vw;
    height: 2.6666666667vw;
  }
  .l-header .l-header-area__contact-btn .-sp-txt {
    display: inline-block;
  }
  .l-header .l-header-area__contact-block {
    position: fixed;
    width: 18.6666666667vw;
    height: 18.6666666667vw;
    top: 0;
    right: 18.6666666667vw;
    background-color: #0E1A21;
    transition: all 0.3s ease;
  }
  .l-header .l-header-area__contact-block a {
    display: block;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .l-header .l-header-area__contact-block.open {
    opacity: 0;
    pointer-events: none;
  }
  .l-header .l-header-area__contact-block-img {
    width: 5.8666666667vw;
    height: 4.2666666667vw;
    margin-top: -1.3333333333vw;
  }
  .l-header .l-header-humbtn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 18.6666666667vw;
    height: 18.6666666667vw;
    background-color: #fff;
    border: 1px solid #1F1F1F;
  }
  .l-header .l-header-humbtn.open .l-header-humbtn__line {
    position: absolute;
    width: 8.5333333333vw;
    height: 0.5333333333vw;
    background-color: #1F1F1F;
    top: 50%;
    left: 28%;
  }
  .l-header .l-header-humbtn.open .l-header-humbtn__line:nth-child(1) {
    transform: translateY(0px) rotate(30deg);
    left: 28%;
  }
  .l-header .l-header-humbtn.open .l-header-humbtn__line:nth-child(2) {
    transform: translateY(0px) rotate(-30deg);
    left: 28%;
  }
  .l-header .l-header-humbtn__line {
    position: absolute;
    width: 8.5333333333vw;
    height: 0.5333333333vw;
    background-color: #1F1F1F;
    top: 55%;
    left: 28%;
    transition: all 0.3s ease;
  }
  .l-header .l-header-humbtn__line:nth-child(1) {
    transform: translateY(-0.5714285714rem);
  }
}

/*------------------------------------------------

l-footer

-------------------------------------------------*/
.l-footer {
  position: relative;
  background-color: #fff;
  padding: 100px 0 90px;
}
.l-footer .l-footer-pagetop {
  position: absolute;
  top: 20px;
  right: 10px;
}
.l-footer .l-footer-pagetop a {
  position: relative;
  background-color: #263036;
  color: #fff;
  font-size: 16px;
  display: block;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  padding: 50px 3px 20px 3px;
}
.l-footer .l-footer-pagetop a::after {
  content: "";
  position: absolute;
  display: block;
  background: url(../../../img/common/pagetop-arrow.png) no-repeat;
  background-size: contain;
  width: 4px;
  height: 28px;
  top: 14px;
  left: 14px;
  transition: all 0.3s ease;
}
.l-footer .l-footer-pagetop a:hover {
  opacity: 1;
}
.l-footer .l-footer-pagetop a:hover::after {
  top: 9px;
}
.l-footer .l-footer--inner {
  max-width: 1200px;
}
.l-footer .l-footer-area {
  align-items: flex-start;
  padding-bottom: 110px;
  border-bottom: 1px solid #0F1A21;
}
.l-footer .l-footer-area__left {
  width: 400px;
}
.l-footer .l-footer-area__left .-logo {
  width: 280px;
}
.l-footer .l-footer-area__left .-address {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 400;
}
.l-footer .l-footer-area__left .-privacy {
  margin-top: 70px;
}
.l-footer .l-footer-area__left .-privacy a {
  font-size: 14px;
  text-decoration: underline;
  font-weight: 400;
  letter-spacing: 0.2em;
}
.l-footer .l-footer-area__left .-copy {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  margin-top: 10px;
}
.l-footer .l-footer-area__menu {
  width: 310px;
  border-top: 1px solid #0F1A21;
}
.l-footer .l-footer-area__menu .-home {
  margin-top: 25px;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.l-footer .l-footer-area__menu .-home a {
  position: relative;
  display: block;
}
.l-footer .l-footer-area__menu ul {
  margin-top: 20px;
}
.l-footer .l-footer-area__menu ul li {
  margin-top: 15px;
}
.l-footer .l-footer-area__menu ul li:first-child {
  margin-top: 0;
}
.l-footer .l-footer-area__menu ul a {
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
.l-footer .l-footer-area__menu ul a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 16vw 0;
  }
  .l-footer .l-footer-pagetop {
    top: 5.3333333333vw;
    right: 5.3333333333vw;
  }
  .l-footer .l-footer-pagetop a {
    font-size: 4.2666666667vw;
    padding: 13.3333333333vw 0.8vw 5.3333333333vw 0.8vw;
  }
  .l-footer .l-footer-pagetop a::after {
    width: 1.0666666667vw;
    height: 7.4666666667vw;
    top: 3.7333333333vw;
    left: 3.7333333333vw;
  }
  .l-footer .l-footer-pagetop a:hover::after {
    top: 2.4vw;
  }
  .l-footer .l-footer--inner {
    width: 100%;
    padding: 0 5.3333333333vw;
  }
  .l-footer .l-footer-area {
    align-items: flex-start;
    padding-bottom: 10.6666666667vw;
  }
  .l-footer .l-footer-area__left {
    width: 100%;
    display: contents;
  }
  .l-footer .l-footer-area__left .-logo {
    width: 58.6666666667vw;
    order: 1;
  }
  .l-footer .l-footer-area__left .-address {
    width: 100%;
    margin-top: 5.3333333333vw;
    font-size: 3.7333333333vw;
    order: 3;
  }
  .l-footer .l-footer-area__left .-privacy {
    margin-top: 10.6666666667vw;
    order: 5;
  }
  .l-footer .l-footer-area__left .-privacy a {
    font-size: 3.7333333333vw;
    letter-spacing: 0.04em;
  }
  .l-footer .l-footer-area__left .-copy {
    font-size: 2.6666666667vw;
    margin-top: 8vw;
    order: 5;
  }
  .l-footer .l-footer-area__menu {
    width: 100%;
    order: 4;
    margin-top: 8vw;
  }
  .l-footer .l-footer-area__menu .-home {
    margin-top: 13.3333333333vw;
    font-size: 3.7333333333vw;
  }
  .l-footer .l-footer-area__menu ul {
    margin-top: 4vw;
  }
  .l-footer .l-footer-area__menu ul li {
    margin-top: 4vw;
  }
  .l-footer .l-footer-area__menu ul a {
    font-size: 3.7333333333vw;
  }
}

/*------------------------------------------------

c-ttl01

-------------------------------------------------*/
.c-ttl01.c-ttl01--center {
  text-align: center;
}
.c-ttl01 .c-ttl01-in {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  line-height: 1.3;
  text-transform: uppercase;
}
.c-ttl01 .-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  display: block;
}
@media screen and (max-width: 768px) {
  .c-ttl01 .c-ttl01-in {
    font-size: 11.2vw;
  }
  .c-ttl01 .-jp {
    font-size: 4.2666666667vw;
  }
}

/*------------------------------------------------

c-ttl02

-------------------------------------------------*/
.c-ttl02 {
  text-align: center;
}
.c-ttl02.c-ttl02-wh .-jp {
  color: #fff;
}
.c-ttl02.c-ttl02-wh .-en {
  color: #fff;
}
.c-ttl02 .-jp {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  display: block;
}
.c-ttl02 .-en {
  font-family: "Outfit", sans-serif;
  font-size: 64px;
  letter-spacing: 0.08em;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .c-ttl02 .-jp {
    font-size: 1rem;
  }
  .c-ttl02 .-en {
    font-size: 3.8571428571rem;
  }
}

/*------------------------------------------------

c-btn01

-------------------------------------------------*/
.c-btn01 {
  width: 240px;
  margin: auto;
  margin-top: 60px;
}
.c-btn01 a {
  position: relative;
  display: block;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 70px;
  padding: 18px 0;
  padding-left: 30px;
  letter-spacing: 0.04em;
  font-size: 14px;
  transition: all 0.3s ease;
}
.c-btn01 a::after {
  content: "";
  position: absolute;
  display: block;
  background: url(../../../img/common/btn-arrow.png) no-repeat;
  background-size: contain;
  width: 12px;
  height: 11px;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  transition: all 0.3s ease;
}
.c-btn01 a:hover::after {
  right: 25px;
}
@media screen and (max-width: 768px) {
  .c-btn01 {
    width: 64vw;
    margin-top: 10.6666666667vw;
  }
  .c-btn01 a {
    padding: 4.8vw 0;
    padding-left: 8vw;
    font-size: 3.7333333333vw;
  }
  .c-btn01 a::after {
    width: 3.2vw;
    height: 2.9333333333vw;
    right: 8vw;
  }
  .c-btn01 a:hover::after {
    right: 6.6666666667vw;
  }
}

/*------------------------------------------------

c-company

-------------------------------------------------*/
.c-company {
  background-color: #F5F5F5;
  border-radius: 80px 80px 0 0;
}
.c-company .c-company__outer {
  position: relative;
  padding: 80px 0 100px;
}
.c-company .c-company__bgtxt {
  position: absolute;
  z-index: 0;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 1;
  font-size: 115px;
  color: #fff;
  right: 0px;
  top: 60px;
}
.c-company .c-company__area {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}
.c-company .c-company__area.isActive {
  transform: translateY(0);
  opacity: 1;
}
.c-company .c-company__area .-img {
  width: 420px;
  margin-right: 80px;
}
.c-company .c-company__area .-txtbox {
  width: calc(100% - 500px);
}
.c-company .c-company__area .-txtbox-item {
  position: relative;
  display: flex;
  padding: 15px 5px;
  border-bottom: 1px solid #C1C1C1;
}
.c-company .c-company__area .-txtbox-item:first-child {
  border-top: 1px solid #c1c1c1;
}
.c-company .c-company__area .-txtbox-item:first-child::after {
  content: "";
  position: absolute;
  display: block;
  background-color: #385680;
  width: 100px;
  height: 1px;
  left: 0;
  top: -1px;
}
.c-company .c-company__area .-txtbox-item::before {
  content: "";
  position: absolute;
  display: block;
  background-color: #385680;
  width: 100px;
  height: 1px;
  left: 0;
  bottom: -1px;
}
.c-company .c-company__area .-txtbox-item .-ttl {
  width: 100px;
  font-size: 14px;
  font-weight: bold;
}
.c-company .c-company__area .-txtbox-item .-txt {
  width: calc(100% - 100px);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.c-company .c-company__map {
  position: relative;
  margin-top: 50px;
}
.c-company .c-company__map iframe {
  width: 100%;
  height: 230px;
}
@media screen and (max-width: 1300px) {
  .c-company .c-company__area {
    padding-right: 5%;
  }
  .c-company .c-company__map {
    padding-right: 5%;
  }
}
@media screen and (max-width: 1024px) {
  .c-company .c-company__area .-img {
    width: 320px;
    margin-right: 40px;
  }
  .c-company .c-company__area .-txtbox {
    width: calc(100% - 360px);
  }
}
@media screen and (max-width: 768px) {
  .c-company {
    padding: 0;
    border-radius: 10.6666666667vw 10.6666666667vw 0 0;
  }
  .c-company .c-company__outer {
    padding: 16vw 0;
    margin-right: 0px;
    border-radius: 0;
  }
  .c-company .c-company__bgtxt {
    font-size: 24vw;
    right: 0;
    top: 5.3333333333vw;
  }
  .c-company .c-company__area {
    margin-top: 6.6666666667vw;
    padding-right: 0;
    flex-direction: column-reverse;
  }
  .c-company .c-company__area .-img {
    width: 100%;
    margin-top: 10.6666666667vw;
    margin-right: 0;
  }
  .c-company .c-company__area .-txtbox {
    width: 100%;
  }
  .c-company .c-company__area .-txtbox-item {
    padding: 6.6666666667vw 0;
  }
  .c-company .c-company__area .-txtbox-item::before {
    width: 22.6666666667vw;
  }
  .c-company .c-company__area .-txtbox-item .-ttl {
    width: 26.6666666667vw;
    font-size: 3.7333333333vw;
  }
  .c-company .c-company__area .-txtbox-item .-txt {
    width: 100%;
    font-size: 3.7333333333vw;
  }
  .c-company .c-company__map {
    margin-top: 8vw;
    padding-right: 0;
  }
  .c-company .c-company__map iframe {
    width: 100%;
    height: 45.3333333333vw;
  }
}

/*------------------------------------------------

c-group

-------------------------------------------------*/
.c-group {
  padding-top: 50px;
  border-top: 1px solid #0F1A21;
}
.c-group .c-group-area {
  margin-top: 40px;
  border-top: 1px solid #0F1A21;
  border-bottom: 1px solid #0F1A21;
}
.c-group .c-group-area .c-group-area__item:last-child {
  border-right: none;
}
.c-group .c-group-area__item {
  width: 33.3333333333%;
  border-right: 1px solid #0F1A21;
}
.c-group .c-group-area__item a {
  display: block;
  padding: 40px 0;
}
.c-group .c-group-area__item .-img {
  margin: auto;
  width: 220px;
}
.c-group .c-group-area__item .-name {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  color: #1F1F1F;
}
.c-group .c-group-link {
  background-color: #f5f5f5;
}
.c-group .c-group-link a {
  padding: 20px 0;
  display: block;
  text-align: center;
}
.c-group .c-group-link a:hover .-txt::after {
  right: -5px;
}
.c-group .c-group-link .-txt {
  position: relative;
  padding-right: 40px;
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.c-group .c-group-link .-txt::after {
  content: "";
  position: absolute;
  display: block;
  background: url(../../../img/common/group-arrow.png) no-repeat;
  background-size: contain;
  width: 28px;
  height: 6px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .c-group .c-group-area__item .-img {
    width: 160px;
  }
  .c-group .c-group-link .-txt {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .c-group {
    padding-top: 13.3333333333vw;
  }
  .c-group .c-group-area {
    margin-top: 10.6666666667vw;
    border-top: 1px solid #0F1A21;
    border-bottom: 1px solid #0F1A21;
  }
  .c-group .c-group-area__item {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #0F1A21;
  }
  .c-group .c-group-area__item:last-child {
    border-bottom: none;
  }
  .c-group .c-group-area__item a {
    display: block;
    padding: 5.3333333333vw 0;
  }
  .c-group .c-group-link a {
    padding: 5.3333333333vw 0;
  }
  .c-group .c-group-link a:hover .-txt::after {
    right: -1.3333333333vw;
  }
  .c-group .c-group-link .-txt {
    padding-right: 10.6666666667vw;
    font-size: 5.3333333333vw;
  }
  .c-group .c-group-link .-txt::after {
    width: 7.4666666667vw;
    height: 1.6vw;
  }
}

/*------------------------------------------------

c-contact

-------------------------------------------------*/
.c-contact .c-contact-link {
  padding: 100px 0;
  background-color: #222;
  display: block;
}
.c-contact .c-contact-link:hover .c-contact-arrow::before {
  transform: scale(1.5);
}
.c-contact .c-contact-link--inner {
  position: relative;
  max-width: 1200px;
}
.c-contact .c-contact--ttl {
  color: #fff;
}
.c-contact .-txt {
  margin-top: 30px;
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.875;
}
.c-contact .c-contact-arrow {
  width: 120px;
  height: 120px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.c-contact .c-contact-arrow::before {
  content: "";
  position: absolute;
  display: block;
  border-radius: 50%;
  border: 1px solid #D9CCC0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.c-contact .c-contact-arrow::after {
  content: "";
  position: absolute;
  display: block;
  background: url(../../../img/common/contact-arrow.png) no-repeat;
  background-size: contain;
  width: 50px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .c-contact .c-contact-link {
    padding: 18.6666666667vw 0;
  }
  .c-contact .-txt {
    margin-top: 4vw;
    font-size: 4.2666666667vw;
  }
  .c-contact .c-contact-arrow {
    margin-left: auto;
    width: 21.3333333333vw;
    height: 21.3333333333vw;
    position: relative;
    transform: translateY(0%);
    margin-top: 5.3333333333vw;
  }
  .c-contact .c-contact-arrow::after {
    width: 13.3333333333vw;
    height: 2.6666666667vw;
  }
}

/*------------------------------------------------

c-breadcrumbs-area

-------------------------------------------------*/
.c-breadcrumbs-area {
  padding: 30px 0 0;
}
.c-breadcrumbs-area ul {
  gap: 5px 0;
  align-items: center;
}
.c-breadcrumbs-area li {
  font-size: 12px;
  font-weight: bold;
  color: #A8A8A8;
}
.c-breadcrumbs-area li a {
  position: relative;
  margin-right: 60px;
  color: #000;
  font-weight: bold;
  font-family: "Outfit", sans-serif;
}
.c-breadcrumbs-area li a::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #373737;
  width: 30px;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  right: -45px;
}
@media screen and (max-width: 768px) {
  .c-breadcrumbs-area {
    padding: 8vw 0 0;
  }
  .c-breadcrumbs-area ul {
    gap: 1.3333333333vw 0;
  }
  .c-breadcrumbs-area li {
    font-size: 3.2vw;
  }
  .c-breadcrumbs-area li a {
    margin-right: 16vw;
  }
  .c-breadcrumbs-area li a::after {
    width: 8vw;
    right: -12vw;
  }
}

/*------------------------------------------------

c-submv

-------------------------------------------------*/
.c-sub-mv {
  position: relative;
  height: 300px;
  margin-top: 65px;
}
.c-sub-mv.c-sub-mv--contact {
  background: url(../../../img/contact/submv-pc.jpg) no-repeat center center/cover;
}
.c-sub-mv.c-sub-mv--privacy {
  background: url(../../../img/privacy/submv-pc.jpg) no-repeat center center/cover;
}
.c-sub-mv.c-sub-mv--service {
  background: url(../../../img/service/submv-pc.jpg) no-repeat center center/cover;
}
.c-sub-mv.c-sub-mv--group {
  background: url(../../../img/group/submv-pc.jpg) no-repeat center center/cover;
}
.c-sub-mv .c-sub-mv__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.c-sub-mv .c-sub-mv__bgtxt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Outfit", sans-serif;
  font-size: 110px;
  letter-spacing: 0.14em;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}
.c-sub-mv .c-sub-mv__ttl {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-sub-mv .c-sub-mv__ttl .-ttl {
  font-size: 32px;
  letter-spacing: 0.08em;
  font-weight: bold;
  line-height: 1.8;
  color: #fff;
  letter-spacing: 0.08em;
}
.c-sub-mv .c-sub-mv__ttl .-ttl span {
  display: block;
  text-transform: uppercase;
  color: #fff;
  margin: auto;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.14em;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .c-sub-mv {
    height: 48vw;
    margin-top: 18.6666666667vw;
  }
  .c-sub-mv.c-sub-mv--contact {
    background: url(../../../img/contact/submv-sp.jpg) no-repeat center center/cover;
  }
  .c-sub-mv.c-sub-mv--privacy {
    background: url(../../../img/privacy/submv-sp.jpg) no-repeat center center/cover;
  }
  .c-sub-mv.c-sub-mv--service {
    background: url(../../../img/service/submv-sp.jpg) no-repeat center center/cover;
  }
  .c-sub-mv.c-sub-mv--group {
    background: url(../../../img/group/submv-sp.jpg) no-repeat center center/cover;
  }
  .c-sub-mv .c-sub-mv__bgtxt {
    font-size: 13.8666666667vw;
    width: 100%;
    text-align: center;
  }
  .c-sub-mv .c-sub-mv__ttl {
    width: 100%;
  }
  .c-sub-mv .c-sub-mv__ttl .-ttl {
    font-size: 6.9333333333vw;
  }
  .c-sub-mv .c-sub-mv__ttl .-ttl span {
    font-size: 3.2vw;
  }
}

/*------------------------------------------------

c-item-area

-------------------------------------------------*/
.c-item-area {
  margin-top: 40px;
}
.c-item-area .c-item-area__block {
  margin-top: 30px;
}
.c-item-area .c-item-area__block:first-child {
  margin-top: 0;
}
.c-item-area .c-item-area__block .-imgbox {
  position: relative;
  width: 280px;
  margin-right: 50px;
}
.c-item-area .c-item-area__block .-subttl {
  position: absolute;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  writing-mode: vertical-lr;
  background-color: #fff;
  padding: 6px;
}
.c-item-area .c-item-area__block .-txtbox {
  width: calc(100% - 330px);
}
.c-item-area .c-item-area__block .-txtbox-ttl {
  padding: 5px 17px;
  position: relative;
  font-size: 18px;
  background-color: #F7F7F7;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.c-item-area .c-item-area__block .-txtbox-ttl.-txtbox-ttl-bg {
  background-color: #fff;
}
.c-item-area .c-item-area__block .-txtbox-ttl::before {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  background-color: #000;
  top: 0;
  left: 0;
  bottom: 0;
}
.c-item-area .c-item-area__block .-txtbox-txt {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .c-item-area .c-item-area {
    margin-top: 10.6666666667vw;
  }
  .c-item-area .c-item-area__block {
    margin-top: 10.6666666667vw;
  }
  .c-item-area .c-item-area__block .-imgbox {
    position: relative;
    width: 100%;
    margin-right: 0px;
  }
  .c-item-area .c-item-area__block .-subttl {
    font-size: 3.4666666667vw;
    padding: 1.3333333333vw;
  }
  .c-item-area .c-item-area__block .-txtbox {
    width: 100%;
    margin-top: 5.3333333333vw;
  }
  .c-item-area .c-item-area__block .-txtbox-ttl {
    padding: 1.3333333333vw 4.5333333333vw;
    font-size: 4.2666666667vw;
  }
  .c-item-area .c-item-area__block .-txtbox-ttl::before {
    width: 1.0666666667vw;
  }
  .c-item-area .c-item-area__block .-txtbox-txt {
    margin-top: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}

_::-webkit-full-page-media, _:future, :root .l-footer-pagetop {
  right: 40px !important;
}
@media screen and (max-width: 768px) {
  _::-webkit-full-page-media, _:future, :root .l-footer-pagetop {
    right: 10.6666666667vw !important;
  }
}/*# sourceMappingURL=common.css.map */