@charset "UTF-8";
/* foundation *******************************************************/
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
}
html {
  font-size: 62.5%;
}
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
ol,
ul {
  list-style: none;
}
img {
  font-size: 0;
  height: auto;
  line-height: 0;
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}
blockquote,
q {
  quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}
:focus {
  outline: none;
}
img {
  -webkit-backface-visibility: hidden;
}
input,
button,
textarea,
select {
  font: inherit;
}
li {
  list-style-type: none;
}
html:lang(ja) body {
  font-family: var(--primaly-font);
}
html:lang(en) body {
  font-family: var(--en-primaly-font);
}
body {
  color: var(--font-primaly-color);
  font-size: 1.5rem;
  line-height: 1.75;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  overflow-x: hidden;
  position: relative;
  min-width: 375px;
  width: 100%;
  z-index: 1;
}
img {
  width: 100%;
  max-width: 100%;
  display: block;
}

@media screen and (min-width: 1000px) {
  body {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .l-container {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
#wrapper {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media screen and (max-width: 999px) {
  body {
    font-size: 1.4rem;
  }
}
:root {
  --font-primaly-color: #040000;
  --main-color: #304c9f;
  --sub-color: #8aa3d4;
  --gray: #c9caca;
  --primaly-font: YakuHanJP, "Noto Sans JP", sans-serif, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic","Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Avenir", sans-serif;
  --serif-font: "Merriweather", serif;
  --roman-font-cond: "Roboto Condensed", "Noto Sans JP", sans-serif;
  --roman-font: "Roboto", sans-serif;
  --en-primaly-font: "Roboto", sans-serif;
}

/* layout **********************************************************/
.l-footer {
  background-color: var(--main-color);
  padding: 45px 0 63px;
  z-index: 2;
  position: relative;
}
.l-foot-nav {
  color: #ffffff;
  font-family: var(--roman-font-cond);
  font-weight: 400;
  margin: 20px 0 0;
}
.l-foot-nav-list {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.l-foot-nav-list-item {
  letter-spacing: 0.12em;
  font-weight: 400;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  padding-bottom: 20px;
}
.l-foot-nav-list-item a, .l-foot-nav-list-item .title {
  padding-bottom: 4px;
  position: relative;
}
.l-foot-nav-list-item a {
  cursor: pointer;
}
.l-foot-nav-list-item a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: center top;
  transform-origin: center top;
}
.l-foot-nav-group {
  margin-top: 5px;
}
.l-foot-nav-group li {
  line-height: 1.5333333333;
}
.p-copyright {
  margin-top: 36px;
  color: #ffffff;
  text-align: right;
  font-family: var(--roman-font-cond);
  letter-spacing: 0.1em;
}

@media (any-hover: hover) {
  .l-foot-nav-list-item a:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@media screen and (min-width: 1000px) {
  .l-footer .inner {
    margin-right: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .l-foot-nav-list-item {
    padding-left: 65px;
  }
}
@media screen and (max-width: 999px) {
  .l-footer {
    padding: 26px 0 26px;
  }
  .l-foot-nav {
    margin: 36px 0 0;
  }
  .l-foot-nav-list {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  .l-foot-nav-list-item {
    font-size: 1.3rem;
    padding-bottom: 16px;
  }
  .p-copyright {
    margin-top: 20px;
    font-size: 1rem;
    text-align: left;
  }
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background-color: #ffffff;
  padding: 35px 43px 31px 0;
}
.l-header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: auto;
}
.logo {
  width: 188px;
  height: 65px;
}
.logo a {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.l-global-nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.l-global-nav-list {
  color: var(--main-color);
  font-size: 1.5rem;
}
.l-global-nav-list li {
  letter-spacing: 0.12em;
  font-family: var(--roman-font-cond);
  display: block;
}
.l-global-nav-list li a {
  position: relative;
}
.l-global-nav-list li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--main-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: center top;
  transform-origin: center top;
}
.l-partners-btn.c-btn-lv1 {
  max-width: 160px;
}
.l-partners-btn.c-btn-lv1 a, .l-partners-btn.c-btn-lv1 span {
  font-size: 1.5rem;
  padding: 10px 10px 9px;
}
.lang {
  font-family: var(--roman-font-cond);
}
.lang ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--main-color);
  line-height: 1;
}
.lang ul li {
  line-height: 1;
}
.lang ul li:not(:last-child) {
  padding-right: 5px;
}
.lang ul li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.8em;
  -webkit-transform: rotate(18deg);
  transform: rotate(18deg);
  background-color: var(--main-color);
  vertical-align: middle;
  margin-left: 3px;
}
.l-global-nav-btn {
  display: none;
}

@media screen and (min-width: 1000px) {
  .l-header {
    padding: 35px 0 31px 0;
  }
  .l-header .inner {
    width: calc(100% - 50px);
  }
  .l-header .logo {
    width: 140px;
    height: 48px;
  }
  .l-global-nav {
    width: calc(100% - 188px);
  }
  .l-global-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 7px;
    font-size: 1.4rem;
  }
  .l-global-nav-list li {
    margin: 0 1.0714285714vw;
  }
  .l-global-nav-list li a {
    padding-bottom: 4px;
  }
  .l-partners-btn {
    margin-right: 1.7142857143vw;
  }
}
@media screen and (min-width: 1240px) {
  .l-header {
    padding: 35px 43px 31px 0;
  }
  .l-header .inner {
    width: calc(100% - 98px);
    max-width: 1800px;
  }
  .l-header .logo {
    width: 188px;
    height: 65px;
  }
  .l-global-nav-list {
    font-size: 1.5rem;
  }
  .l-global-nav-list li {
    margin: 0 21px;
  }
  .l-partners-btn {
    margin-right: 35px;
  }
}
@media screen and (max-width: 999px) {
  .l-header {
    padding: 20px 20px 16px 24px;
  }
  .l-global-nav-btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    background-color: #ffffff;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
  }
  .l-global-nav-btn > span {
    width: 40px;
    height: 40px;
    display: block;
    position: relative;
  }
  .l-global-nav-btn > span::before, .l-global-nav-btn > span::after {
    content: "";
    display: inline-block;
    width: 26px;
    height: 2px;
    background-color: var(--main-color);
    position: absolute;
    left: 4px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .l-global-nav-btn > span::before {
    top: 14px;
  }
  .l-global-nav-btn > span::after {
    top: 26px;
  }
  .l-global-nav-btn.is-open > span::before {
    -webkit-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg);
  }
  .l-global-nav-btn.is-open > span::after {
    -webkit-transform: translateY(-6px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg);
  }
  .logo {
    width: 110px;
    height: 38px;
  }
  .l-global-nav {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: calc(100vh - 76px);
    background-color: var(--main-color);
    position: absolute;
    top: 76px;
    left: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    overflow-y: scroll;
  }
  .l-global-nav nav {
    margin-bottom: 30px;
  }
  .l-global-nav.is-open {
    opacity: 1;
    visibility: visible;
  }
  .l-global-nav-inner {
    display: block;
    padding: 50px 35px;
  }
  .l-global-nav-list li {
    color: #ffffff;
    font-size: 2.4rem;
  }
  .l-global-nav-list li + li {
    margin-top: 12px;
  }
  .lang {
    margin-top: 10px;
  }
  .lang ul {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0.12em;
  }
  .lang ul li:not(:last-child) {
    padding-right: 3px;
  }
  .lang ul li:not(:last-child)::after {
    background-color: #ffffff;
    margin-left: 3px;
  }
  .l-partners-btn {
    margin: auto;
  }
  .l-partners-btn.c-btn-lv1 {
    max-width: 100%;
    margin-left: auto;
  }
  .l-partners-btn.c-btn-lv1 a {
    text-align: left;
    padding: 0;
    font-size: 1.2rem;
  }
}
@media (any-hover: hover) {
  .l-global-nav-list li a:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .logo a:hover {
    opacity: 0.3;
  }
}
.l-main {
  margin-top: 130px;
}
.l-contents {
  padding-bottom: 197px;
  overflow: hidden;
}
.l-lower-header {
  margin-top: 200px;
  margin-bottom: 84px;
}
.l-lower-header.c-ornament::before {
  width: 516px;
  height: 516px;
  right: -241px;
  top: -179px;
}
.l-lower-header h1 {
  font-size: 2.8rem;
  letter-spacing: 0.13em;
  color: var(--main-color);
}
.l-lower-contents.c-ornament::before {
  width: 1256px;
  height: 1256px;
  bottom: -835px;
  left: -318px;
}

@media screen and (max-width: 999px) {
  .l-main {
    margin-top: 52px;
    padding-bottom: 64px;
  }
  .l-lower-header {
    margin-top: 160px;
    margin-bottom: 64px;
  }
  .l-lower-header.c-ornament::before {
    width: 264px;
    height: 264px;
    right: -118px;
    top: -150px;
  }
  .l-lower-header h1 {
    font-size: 2.4rem;
  }
  .l-lower-contents.c-ornament::before {
    width: 682px;
    height: 682px;
    bottom: -100px;
    left: -327px;
  }
}
html:lang(en) .l-lower-header {
  font-family: var(--roman-font);
}
.l-inner-lv1 {
  max-width: 1140px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.l-inner-lv2 {
  max-width: 1340px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.l-inner-lv3 {
  max-width: 1040px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (max-width: 999px) {
  .l-inner-lv1,
  .l-inner-lv2,
  .l-inner-lv3 {
    max-width: 100%;
    padding: 0 15px;
  }
}
/* object **********************************************************/
.c-btn-lv1 {
  max-width: 234px;
  width: 100%;
}
.c-btn-lv1 a, .c-btn-lv1 span {
  display: inline-block;
  width: 100%;
  text-align: center;
  border-radius: 100vh;
  padding: 16px 10px 15px;
  font-size: 2rem;
  font-family: var(--roman-font-cond);
  font-weight: 400;
  letter-spacing: 0.12em;
}
.c-btn-lv1 span {
  border: 1px solid var(--gray);
  color: var(--gray);
  background-color: #ffffff;
}
.c-btn-lv1 a {
  border: 1px solid var(--main-color);
  background-color: var(--main-color);
  color: #ffffff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media (any-hover: hover) {
  .c-btn-lv1 a:hover {
    opacity: 0.3;
  }
}
@media screen and (max-width: 999px) {
  .c-btn-lv1 a, .c-btn-lv1 span {
    padding: 12px 10px 11px;
    font-size: 1.4rem;
  }
}
.c-ornament {
  position: relative;
}
.c-ornament::before {
  content: "";
  display: inline-block;
  background-image: url("../images/common/bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.15;
  position: absolute;
  z-index: -1;
}

/* 共通 */
.l-sct-header .title {
  display: block;
  font-family: var(--roman-font-cond);
  font-weight: 400;
  letter-spacing: 0.12em;
  font-size: 1.5rem;
  margin-bottom: 11px;
  color: var(--main-color);
}
.l-sct-header h2 {
  color: var(--main-color);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6666666666;
  letter-spacing: 0.1em;
}
.l-sct-header h2 .strong {
  font-size: 3.2rem;
}
.l-sct-txt p {
  font-size: 1.3rem;
  line-height: 1.923076923;
  letter-spacing: 0.1em;
}
.l-home .l-contents, .l-en .l-contents {
  padding-bottom: 58px;
}

@media screen and (min-width: 1000px) {
  .l-sct:nth-of-type(even) .l-home-unit {
    margin-left: auto;
  }
  .l-home-unit {
    max-width: 621px;
    width: 100%;
  }
}
@media screen and (max-width: 999px) {
  .l-sct-header .title {
    font-size: 1.3rem;
    margin-bottom: 11px;
  }
  .l-sct-header h2 {
    font-size: 1.8rem;
  }
  .l-sct-header h2 .strong {
    font-size: 2rem;
  }
  .l-sct-txt p {
    font-size: 1.4rem;
  }
  .l-home .l-contents {
    padding-bottom: 58px;
  }
}
/* key visual */
.p-key {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-key .inner {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 5;
}
.p-key-visual {
  overflow: hidden;
  position: relative;
}
.p-key-visual::before {
  content: "";
  display: inline-block;
  width: 729px;
  height: 729px;
  background-image: url("../images/common/bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.15;
  position: absolute;
  right: -240px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}
.p-key-copy {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 12px auto 0;
  z-index: 5;
}
.p-key-copy p {
  color: var(--main-color);
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.875;
}
.p-key-copy p em {
  color: var(--sub-color);
  font-style: normal;
}
.p-key-copy .sub {
  font-size: 2.8rem;
  font-family: var(--roman-font);
  line-height: 1.8460928571;
  margin-top: 8px;
  margin-left: 3px;
  letter-spacing: 0.015em;
}

@media screen and (min-width: 1000px) {
  .p-key .inner {
    width: calc(100% - 183px);
    max-width: 1300px;
  }
}
@media screen and (max-width: 999px) {
  .p-key {
    height: calc(100vh - 50px);
  }
  .p-key .inner {
    padding: 0 20px;
  }
  .p-key-visual {
    width: 100%;
    height: 100%;
  }
  .p-key-visual::before {
    width: 520px;
    height: 520px;
  }
  .p-key-visual img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .p-key-copy {
    margin: 12px auto 0;
  }
  .p-key-copy p {
    font-size: 1.8rem;
  }
  .p-key-copy .sub {
    font-size: 1.4rem;
    margin-top: 8px;
    margin-left: 3px;
  }
}
/* WHO WE ARE */
.p-home-who {
  margin-top: 74px;
}
.p-home-who.c-ornament::before {
  width: 867px;
  height: 867px;
  bottom: -880px;
  left: -471px;
}
.p-home-who .l-sct-txt {
  margin-top: 23px;
}
.p-home-who-img {
  width: 370px;
}

@media screen and (min-width: 1000px) {
  .p-home-who .l-home-unit {
    max-width: 650px;
  }
  .p-home-who .l-sct-txt {
    max-width: 621px;
  }
  .p-home-who-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .p-home-who-img {
    margin-right: -26px;
    margin-bottom: -42px;
  }
}
@media screen and (max-width: 999px) {
  .p-home-who {
    margin-top: 40px;
  }
  .p-home-who.c-ornament::before {
    width: 626px;
    height: 626px;
    bottom: -514px;
    left: -302px;
  }
  .p-home-who .l-sct-txt {
    margin-top: 20px;
  }
  .p-home-who-img {
    max-width: 370px;
    width: 100%;
    margin: 10px auto 0;
  }
}
/* WHAT WE DO */
.p-home-what {
  margin-top: 126px;
}
.p-home-what.c-ornament::before {
  width: 516px;
  height: 516px;
  bottom: -81px;
  right: -241px;
}
.p-home-what h2 .title {
  margin-bottom: 17px;
}
.p-home-what .l-sct-txt {
  margin-top: 21px;
}
.p-home-what-list {
  margin-top: 22px;
}
.p-home-what-list-item-ttl {
  color: var(--main-color);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5833333333;
  letter-spacing: 0.12em;
}
.p-home-what-list-item-ttl .sub {
  font-size: 2rem;
  display: block;
  line-height: 1.9;
}
.p-home-what-list-item {
  border-top: 1px solid var(--sub-color);
  padding: 29px 0;
}
.p-home-what-list-item:last-child {
  border-bottom: 1px solid var(--sub-color);
}
.p-home-what-list-item-ttl {
  margin-bottom: 15px;
}
.p-home-what-list-item-txt {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: 1.923076923;
}
.p-home-what-list-item-txt ul {
  margin-top: 16px;
  font-weight: 500;
}
.p-home-what-list-item-txt ul li {
  color: var(--main-color);
  letter-spacing: 0.03em;
}

@media screen and (max-width: 999px) {
  .p-home-what {
    margin-top: 50px;
  }
  .p-home-what.c-ornament::before {
    width: 420px;
    height: 420px;
    bottom: -74px;
    right: -202px;
  }
  .p-home-what .l-sct-txt {
    margin-top: 15px;
  }
  .p-home-what-list-item {
    padding: 24px 0;
  }
  .p-home-what-list-item-ttl {
    font-size: 1.8rem;
  }
  .p-home-what-list-item-ttl .sub {
    font-size: 1.6rem;
  }
  .p-home-what-list-item-txt {
    font-size: 1.5rem;
  }
}
/* コミュニティー */
.p-home-community {
  margin-top: 92px;
}
.p-home-community h2 {
  margin-bottom: 25px;
}

@media screen and (min-width: 1000px) {
  .p-home-community .l-home-unit {
    max-width: 657px;
  }
}
@media screen and (max-width: 999px) {
  .p-home-community {
    margin-top: 64px;
  }
}
/* COMPANY */
.p-home-company {
  margin-top: 105px;
}
.p-home-company.c-ornament::before {
  width: 590px;
  height: 590px;
  top: -96px;
  left: 209px;
}
.p-home-company h2 {
  margin-bottom: 26px;
}
.p-home-company dl {
  color: var(--main-color);
}
.p-home-company dl div {
  border-bottom: 1px solid var(--sub-color);
  padding: 11px 0 10px;
}
.p-home-company dl div dt {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.p-home-company dl div dd {
  letter-spacing: 0.1em;
}
.p-home-company dl div dd a {
  display: block;
  margin-top: 25px;
  font-weight: 300;
  letter-spacing: 0.03em;
}
.p-home-company dl div:last-child {
  padding-bottom: 22px;
}
.p-home-company-link {
  margin-top: 10px;
  color: var(--main-color);
}
.p-home-company-link a {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media screen and (min-width: 1000px) {
  .p-home-company dl div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-home-company dl div dt {
    width: 13em;
  }
  .p-home-company dl div dd {
    margin-left: 7px;
  }
}
@media screen and (max-width: 999px) {
  .p-home-company {
    margin-top: 64px;
  }
  .p-home-company.c-ornament::before {
    width: 258px;
    height: 258px;
    top: initial;
    bottom: -166px;
    left: 174px;
  }
  .p-home-company h2 {
    margin-bottom: 14px;
  }
  .p-home-company dl div {
    padding: 9px 0 8px;
  }
  .p-home-company dl div dt, .p-home-company dl div dd {
    font-size: 1.2rem;
  }
  .p-home-company dl div dd a {
    margin-top: 14px;
  }
  .p-home-company dl div:last-child {
    padding-bottom: 18px;
  }
  .p-home-company-link {
    margin-top: 6px;
    font-size: 1.2rem;
  }
}
@media (any-hover: hover) {
  .p-home-company dl div dd a:hover {
    text-decoration: underline;
  }
  .p-home-company-link a:hover {
    opacity: 0.6;
  }
}
/* CONTACT */
.p-home-contact {
  margin-top: 94px;
  margin-right: auto;
}
.p-home-contact .l-sct-header {
  margin-bottom: 31px;
}
.p-home-contact h2 {
  color: var(--main-color);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  display: inline-block;
  font-family: var(--roman-font);
}
.p-home-contact .title {
  margin-bottom: 0;
}
.p-home-contact .l-home-unit {
  margin-left: auto;
}
.p-home-contact-wrap {
  margin-bottom: 34px;
  width: 100%;
}
.p-home-contact-list-item {
  border-bottom: 1px solid var(--sub-color);
  padding: 11px 0 10px;
}
.p-home-contact-list-item:first-child {
  padding-top: 0;
}
.p-home-contact-list-item small {
  font-family: var(--primaly-font);
}
.p-home-contact-link {
  vertical-align: baseline;
  display: inline-block;
}
.p-home-contact-link a {
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--main-color);
  font-family: var(--roman-font);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media (any-hover: hover) {
  .p-home-contact-link a:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 1000px) {
  .p-home-contact ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-home-contact-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .p-home-contact-wrap {
    display: inline-block;
  }
  .p-home-contact-link {
    margin-left: 59px;
  }
  .p-home-contact-btns {
    margin: 0 -10px;
  }
  .p-home-contact-btns li {
    margin: 10px;
  }
}
@media screen and (max-width: 999px) {
  .p-home-contact {
    margin-top: 64px;
  }
  .p-home-contact h2 {
    font-size: 2rem;
    margin-bottom: 5px;
  }
  .p-home-contact ul .c-btn-lv1 {
    margin: 10px auto;
  }
  .p-home-contact-list-item {
    padding-bottom: 16px;
  }
  .p-home-contact-list-item:not(:first-child) {
    padding-top: 16px;
  }
  .p-home-contact-wrap {
    margin-bottom: 24px;
  }
  .p-home-contact-btns {
    margin: 0 auto;
  }
  .p-home-contact-link {
    display: block;
  }
  .p-home-contact-link a {
    font-size: 1.4rem;
  }
}
/* NEWS */
.p-home-news {
  margin-top: 64px;
}
.p-home-news .p-home-news-more {
  text-align: center;
  margin: auto;
}

@media screen and (max-width: 999px) {
  .p-home-news .p-news-units {
    padding: 0 0 16px;
  }
}
html:lang(ja) {
  /* WHO WE ARE */
}
html:lang(ja) .p-home-who .l-sct-txt {
  margin-left: 4px;
}
@media (any-hover: hover) {
  html:lang(ja) .lang .-en:hover {
    color: var(--main-color);
  }
}
@media (any-hover: hover) {
  html:lang(en) .lang .-ja:hover {
    color: var(--main-color);
  }
}
html:lang(en) .l-sct-header h2 {
  font-size: 5.2rem;
  line-height: 1.1153846153;
  font-weight: 400;
  letter-spacing: 0.03em;
}
html:lang(en) .l-sct-header .title {
  margin-bottom: 16px;
}
html:lang(en) .l-sct-txt p {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.4666666666;
}
html:lang(en) .p-key-copy {
  margin: 0;
}
html:lang(en) .p-key-copy p {
  font-size: 6rem;
  font-weight: 400;
  line-height: 1.2333333333;
  letter-spacing: 0.02em;
}
html:lang(en) .p-key-copy .sub {
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.7857142857;
  margin-top: 6px;
  letter-spacing: 0.04em;
}
html:lang(en) .p-home-who.c-ornament::before {
  bottom: -964px;
}
html:lang(en) .p-home-who .l-sct-txt {
  margin-top: 31px;
}
html:lang(en) .p-home-who .l-sct-txt p {
  letter-spacing: 0.02em;
}
html:lang(en) .p-home-what.c-ornament::before {
  bottom: -189px;
}
html:lang(en) .p-home-what-list {
  margin-top: 29px;
}
html:lang(en) .p-home-what-list-item {
  padding: 20px 0 23px;
}
html:lang(en) .p-home-what-list-item-txt ul {
  margin-top: 17px;
}
html:lang(en) .p-home-what-list-item-txt ul li {
  font-size: 1.8rem;
  line-height: 1.8333333333;
}
html:lang(en) .p-home-what-list-item-ttl {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.63955;
  letter-spacing: 0.03em;
  margin-bottom: 15px;
}
html:lang(en) .p-home-what-list-item-txt p {
  font-weight: 300;
  line-height: 1.4666666666;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
}
html:lang(en) .p-home-community {
  margin-top: 60px;
}
html:lang(en) .p-home-community h2 {
  margin-bottom: 28px;
}
html:lang(en) .p-home-company h2 {
  margin-bottom: 31px;
}
html:lang(en) .p-home-company dl div dd {
  letter-spacing: 0.03em;
}
html:lang(en) .p-home-contact .title {
  margin-bottom: 0;
}
@media screen and (min-width: 1000px) {
  html:lang(en) .p-home-who-img {
    margin-right: -24px;
  }
}
@media screen and (max-width: 999px) {
  html:lang(en) .l-sct-header h2 {
    font-size: 2.2rem;
  }
  html:lang(en) .l-sct-header .title {
    margin-bottom: 16px;
  }
  html:lang(en) .l-sct-txt p {
    font-size: 1.6rem;
  }
  html:lang(en) .p-key-copy p {
    font-size: 3rem;
  }
  html:lang(en) .p-key-copy .sub {
    font-size: 1.6rem;
    margin-top: 6px;
  }
  html:lang(en) .p-home-who.c-ornament::before {
    bottom: -514px;
  }
  html:lang(en) .p-home-who .l-sct-txt {
    margin-top: 20px;
  }
  html:lang(en) .p-home-what {
    margin-top: 64px;
  }
  html:lang(en) .p-home-what.c-ornament::before {
    bottom: -74px;
  }
  html:lang(en) .p-home-what-list {
    margin-top: 22px;
  }
  html:lang(en) .p-home-what-list-item {
    padding: 16px 0 18px;
  }
  html:lang(en) .p-home-what-list-item-txt ul {
    margin-top: 10px;
  }
  html:lang(en) .p-home-what-list-item-txt ul li {
    font-size: 1.6rem;
  }
  html:lang(en) .p-home-what-list-item-ttl {
    font-size: 2rem;
    margin-bottom: 11px;
  }
  html:lang(en) .p-home-what-list-item-txt p {
    font-size: 1.6rem;
  }
  html:lang(en) .p-home-community {
    margin-top: 64px;
  }
  html:lang(en) .p-home-community h2 {
    margin-bottom: 20px;
  }
  html:lang(en) .p-home-company {
    margin-top: 64px;
  }
  html:lang(en) .p-home-company h2 {
    margin-bottom: 24px;
  }
}

@media screen and (min-width: 1000px) {
  html:lang(ja) .lang .-en {
    color: var(--gray);
  }
  html:lang(en) .lang .-ja {
    color: var(--gray);
  }
}
@media screen and (max-width: 999px) {
  html:lang(ja) .lang .-en {
    opacity: 0.6;
  }
  html:lang(en) .lang .-ja {
    opacity: 0.6;
  }
}
.p-contact-form-item {
  margin: 30px 0;
}
.p-contact-form-title {
  color: var(--main-color);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 13px;
}
.p-contact-form-detail input, .p-contact-form-detail textarea {
  border: 1px solid var(--sub-color);
  font-size: 1.8rem;
  padding: 29px 40px;
  width: 100%;
  letter-spacing: 0.1em;
  background-color: rgba(255, 255, 255, 0.5);
}
.p-contact-form-detail input::-webkit-input-placeholder, .p-contact-form-detail textarea::-webkit-input-placeholder {
  color: #918c8a;
}
.p-contact-form-detail input::-moz-placeholder, .p-contact-form-detail textarea::-moz-placeholder {
  color: #918c8a;
}
.p-contact-form-detail input:-ms-input-placeholder, .p-contact-form-detail textarea:-ms-input-placeholder {
  color: #918c8a;
}
.p-contact-form-detail input::-ms-input-placeholder, .p-contact-form-detail textarea::-ms-input-placeholder {
  color: #918c8a;
}
.p-contact-form-detail input::placeholder, .p-contact-form-detail textarea::placeholder {
  color: #918c8a;
}
.p-contact-submit {
  margin-top: 60px;
}
.p-contact-submit input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid var(--main-color);
  background-color: var(--main-color);
  width: 100%;
  color: #ffffff;
  font-family: var(--roman-font);
  font-size: 2.8rem;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding: 35px 10px 30px;
  letter-spacing: 0.13em;
}

@media screen and (min-width: 1000px) {
  .p-contact-form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 30px -24px;
  }
  .p-contact-form-group .p-contact-form-item {
    margin: 0 24px;
  }
}
@media screen and (max-width: 999px) {
  .p-contact-form-item {
    margin: 20px 0;
  }
  .p-contact-form-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .p-contact-form-detail input, .p-contact-form-detail textarea {
    font-size: 1.6rem;
    padding: 8px 10px;
  }
  .p-contact-submit {
    margin-top: 42px;
    text-align: center;
  }
  .p-contact-submit input[type=submit] {
    font-size: 1.8rem;
    padding: 10px 10px 10px;
    max-width: 270px;
  }
}
@media (any-hover: hover) {
  .p-contact-submit input[type=submit]:hover {
    background-color: #ffffff;
    color: var(--main-color);
  }
}
html:lang(en) .p-contact-form-title {
  margin-bottom: 10px;
}
html:lang(en) .p-contact-form-detail input, html:lang(en) .p-contact-form-detail textarea {
  font-size: 2.4rem;
  padding: 26px 40px 20px;
}
@media screen and (max-width: 999px) {
  html:lang(en) .p-contact-form-title {
    margin-bottom: 8px;
  }
  html:lang(en) .p-contact-form-detail input, html:lang(en) .p-contact-form-detail textarea {
    font-size: 1.6rem;
    padding: 8px 10px;
  }
}
.p-disclaimer ul li + li {
  margin-top: 24px;
}

@media screen and (max-width: 999px) {
  .p-disclaimer ul li + li {
    margin-top: 16px;
  }
}
.p-policy h2 {
  text-align: center;
  margin-bottom: 16px;
  font-size: 2rem;
}
.p-policy-intro {
  margin-bottom: 64px;
}
.p-common-sct:not(:last-child) {
  margin-bottom: 40px;
}
.p-common-sct section + section {
  margin-top: 40px;
}
.p-common-sct h3 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.p-common-sct h4 {
  margin-bottom: 8px;
  font-size: 1.6rem;
}
.p-common-sct h5 {
  margin-top: 24px;
  margin-bottom: 8px;
}
.p-common-sct p {
  margin: 0.5em 0;
}
.p-common-sct ol, .p-common-sct ul {
  margin: 0.5em 0 0.5em 1em;
  padding: 0 0 0 0.5em;
}
.p-common-sct ol li {
  list-style: decimal;
}
.p-common-sct ul li {
  list-style: disc;
}
.p-common-sct li + li {
  margin-top: 8px;
}
.p-policy-btn {
  margin-top: 16px;
}

@media screen and (max-width: 999px) {
  .p-policy-contents h2 {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
  .p-policy-intro {
    margin-bottom: 40px;
  }
  .p-common-sct section + section {
    margin-top: 24px;
  }
  .p-common-sct h3 {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  .p-common-sct h4 {
    margin-bottom: 5px;
    font-size: 1.5rem;
  }
  .p-common-sct h5 {
    margin-top: 24px;
    margin-bottom: 5px;
  }
  .p-common-sct li + li {
    margin-top: 5px;
  }
}
.p-404 {
  text-align: center;
}
.p-404-back {
  margin: 40px auto 0;
}

@media screen and (max-width: 999px) {
  .p-404-back {
    margin: 24px auto 0;
  }
}
html:lang(ja) .p-404-back a {
  font-family: var(--primaly-font);
}
.p-news-year {
  margin-bottom: 24px;
}
.p-news-year ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  font-family: var(--roman-font);
  font-weight: 500;
  color: var(--gray);
}
.p-news-year ul li {
  margin: 0 16px;
  position: relative;
  font-size: 2.2rem;
  line-height: 1;
  padding-bottom: 6px;
}
.p-news-year ul li::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--main-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: center top;
  transform-origin: center top;
}
.p-news-year ul li.is-current {
  font-size: 2.6rem;
  color: var(--main-color);
}
.p-news-year ul li.is-current::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.p-news-units {
  padding: 40px 60px;
}
.p-news-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 0;
  border-bottom: 1px solid;
  border-bottom-color: rgba(48, 76, 159, 0.5);
}
.p-news-unit-date {
  color: var(--main-color);
  font-family: var(--roman-font-cond);
}
.p-news-unit-title {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 400;
}
.p-news-unit-title a {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.p-common-pagination {
  margin-top: 6.6rem;
}
.p-common-pagination ul.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-common-pagination ul.page-numbers li {
  margin: 0 5px;
}
.p-common-pagination ul.page-numbers li .page-numbers:not(.next) {
  padding: 7px 15px;
  line-height: 1.6;
  background-color: #ffffff;
  color: var(--font-primaly-color);
  border-radius: 100vh;
  display: inline-block;
  border: 2px solid;
  border-color: transparent;
}
.p-common-pagination ul.page-numbers li .page-numbers.current {
  border-color: var(--main-color);
}
.p-common-pagination ul.page-numbers li a {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.pagetitle {
  padding-bottom: 64px;
  border-bottom: 1px solid var(--gray);
}
.pagetitle h1 {
  font-size: 2.8rem;
}
.pagetitle .date {
  display: block;
  font-family: var(--roman-font);
  color: var(--main-color);
  margin-top: 24px;
}
.p-news .eyecatch {
  margin-bottom: 64px;
}
.p-news .wysiwyg {
  position: relative;
  z-index: 1;
}
.p-news .wysiwyg h2 {
  color: var(--main-color);
  background-color: #f8faff;
  border-left: 3px solid var(--main-color);
  font-size: 2.6rem;
  margin-bottom: 24px;
  padding: 12px 16px 14px 16px;
  line-height: 1.45;
}
.p-news .wysiwyg h3 {
  font-size: 2rem;
  background-color: #ffffff;
  padding: 5px 16px 14px 16px;
  border-left: 3px solid var(--sub-color);
  border-bottom: 1px solid var(--sub-color);
  line-height: 1.45;
  margin-top: 32px;
  margin-bottom: 24px;
}
.p-news .wysiwyg h4 {
  font-size: 1.6rem;
  position: relative;
  padding-left: 16px;
  margin-top: 32px;
  margin-bottom: 16px;
}
.p-news .wysiwyg h4::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background-color: var(--main-color);
  position: absolute;
  top: 11px;
  left: 0;
}
.p-news .wysiwyg p {
  margin: 0.5em 0;
}
.p-news .wysiwyg a {
  font-weight: 500;
  color: var(--main-color);
  text-decoration: underline;
}
.p-news .wysiwyg figure {
  margin: 0.5em 0;
}
.p-news .wysiwyg figure img {
  width: auto;
}
.p-news .wysiwyg figure figcaption {
  margin-top: 3px;
  font-size: 1.4rem;
}
.p-news .wysiwyg .tableScroll {
  margin: 3em 0;
  overflow: auto;
  overflow-y: hidden;
  width: 100%;
  max-width: none;
  min-height: 0.01%;
}
.p-news .wysiwyg .tableScroll table {
  margin: 0;
  max-width: none;
}
.p-news .wysiwyg .tableScroll th, .p-news .wysiwyg .tableScroll td {
  white-space: nowrap;
}
.p-news .wysiwyg table {
  border-color: inherit;
  text-indent: 0;
  margin: 3em 0;
}
.p-news .wysiwyg table th, .p-news .wysiwyg table td {
  padding: 0.5em;
  vertical-align: top;
  border: 1px solid #cccccc;
  word-break: break-word;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  background-color: #ffffff;
}
.p-news .wysiwyg table th {
  font-weight: 700;
  text-align: left;
  background-color: #f2f3f7;
}
.p-news-back {
  text-align: center;
  margin: 64px auto 0;
}

@media screen and (min-width: 1000px) {
  .p-news-unit-date {
    margin-right: 32px;
  }
  .p-news .eyecatch {
    margin-bottom: 64px;
  }
  .p-news .wysiwyg {
    padding-left: 16px;
  }
  .p-news .wysiwyg h2, .p-news .wysiwyg h3, .p-news .wysiwyg h4, .p-news .wysiwyg h5, .p-news .wysiwyg h6 {
    margin-left: -16px;
  }
}
@media screen and (max-width: 999px) {
  .p-news-year {
    margin-bottom: 16px;
  }
  .p-news-year ul li {
    margin: 0 10px;
    font-size: 1.8rem;
    padding-bottom: 4px;
  }
  .p-news-year ul li.is-current {
    font-size: 2.2rem;
  }
  .p-news-units {
    padding: 0;
  }
  .p-news-unit {
    padding: 16px 0;
    display: block;
  }
  .p-common-pagination {
    margin-top: 2rem;
  }
  .p-common-pagination ul.page-numbers li {
    margin: 0 5px;
  }
  .p-common-pagination ul.page-numbers li .page-numbers:not(.next) {
    padding: 7px 15px;
    line-height: 1.6;
  }
  .pagetitle {
    padding-bottom: 40px;
  }
  .pagetitle h1 {
    font-size: 2.4rem;
  }
  .pagetitle .date {
    margin-top: 16px;
    font-size: 1.2rem;
  }
  .p-news .eyecatch {
    margin-bottom: 32px;
  }
  .p-news .wysiwyg h2 {
    border-left-width: 2px;
    font-size: 2rem;
    margin-bottom: 20px;
    padding: 12px 16px 14px 16px;
    line-height: 1.45;
  }
  .p-news .wysiwyg h3 {
    font-size: 1.6rem;
    padding: 3px 10px 10px 11px;
    border-left-width: 2px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .p-news .wysiwyg h4 {
    font-size: 1.4rem;
    padding-left: 16px;
    margin-top: 30px;
    margin-bottom: 14px;
  }
  .p-news .wysiwyg h4::before {
    width: 8px;
    height: 8px;
    top: 9px;
  }
  .p-news .wysiwyg figure figcaption {
    margin-top: 2px;
    font-size: 1.2rem;
  }
  .p-news-back {
    margin: 40px auto 0;
  }
}
@media (any-hover: hover) {
  .p-news-year ul li:hover {
    color: var(--main-color);
  }
  .p-news-year ul li:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .p-news-unit-title a:hover {
    opacity: 0.6;
  }
  .p-common-pagination ul.page-numbers li .page-numbers:hover {
    border-color: var(--main-color);
  }
  .p-common-pagination ul.page-numbers li a:hover {
    opacity: 0.6;
  }
  .p-news .wysiwyg a:hover {
    text-decoration: none;
  }
}
/* utility **********************************************************/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.only-pc {
  display: block;
}
.only-pc.-inline {
  display: inline-block;
}
.only-sp {
  display: none;
}
.only-sp.-inline {
  display: none;
}

/*Mobile*/
@media screen and (max-width: 999px) {
  .only-pc {
    display: none;
  }
  .only-pc.-inline {
    display: none;
  }
  .only-sp {
    display: block;
  }
  .only-sp.-inline {
    display: inline-block;
  }
}