@charset "UTF-8";
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

RESET CSS

html5doctor.com Reset Stylesheet

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
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;
  width: 100%;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
} /* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
} /* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

button {
  padding: 0;
}

/* ------------------------- 使い方 ----------------------------------------------------------

    @include sizing(width, wide, 365px, sp, 276px);
    ==> width: clamp(276px, 7.46vw + 248px, 365px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を上限下限をつけて設定）

    @include sizing(width, wide, 365px, sp, 276px, noClamp);
    ==> width: calc(7.46vw + 248px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を設定）

    @include sizingRem(font-size, wide, 14px, sp, 12px);
    ==> font-size: clamp(0.75rem, 0.17vw + 0.70625rem, 0.875rem;
    （ビューポートがwide(1568px)のとき14px, sp(375px)のとき12pxになる自動補完値をremに変換して設定）
　　
    ※使いたいsassファイル上で@useしてください。
    ※scssファイル上での読みやすさ重視のため、mixinの引数に単位[px]が必要な仕様にしてあります。

// ---------------------------------------------------------------------------------------- */
/*
  Base
-----------------------------------------------------*/
*,
:before,
:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
  line-height: 2;
}

body {
  color: #000000;
  background-color: #FFF;
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-family: "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 500;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.035em;
  font-size: clamp(0.875rem, 0.19vw + 13.3px, 1rem);
}
@media screen and (min-width: 960px) {
  body {
    line-height: 2;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -ms-interpolation-mode: nearest-neighbor;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
}

video {
  max-width: 100%;
  height: auto;
}

a,
a:link,
a:visited {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a:active,
a:hover {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
li {
  list-style-type: none;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  border: 0;
  line-height: 0;
  vertical-align: bottom;
}

svg {
  vertical-align: bottom;
}

hr {
  display: none;
}

table {
  margin: 0;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
  margin: 0;
}

td {
  margin: 0;
}

em {
  font-weight: bold;
  font-style: normal;
}

form {
  margin: 0;
  padding: 0;
}

label {
  margin: 0;
  padding: 0;
}

input.btn {
  margin: 0 0.5em;
  padding: 0 1em;
}

button {
  border: none;
  font: inherit;
  line-height: inherit;
  background: none;
  margin: 0;
}

address {
  font-style: normal;
}

/* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
.js-focus-visible :focus:not(.focus-visible) {
  outline: 0;
}

/*
header
-----------------------------------------------------*/
.is-menu-open {
  visibility: hidden;
}
.is-menu-open .l-header {
  visibility: visible;
}
.is-menu-open .l-header__logo {
  visibility: hidden;
}

.l-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: clamp(20px, 0.38vw + 18.6px, 24px) clamp(20px, 0.38vw + 18.6px, 24px) clamp(20px, 0.38vw + 18.6px, 24px) clamp(20px, 4.32vw + 3.8px, 66px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .l-header.simple {
    width: 40%;
    right: auto;
  }
}
.l-header__logo-img {
  width: clamp(114px, 5.35vw + 93.9px, 171px);
  display: block;
}
.l-header__hamburger {
  position: fixed;
  top: 20px;
  right: clamp(25px, 0.47vw + 23.2px, 30px);
  margin: auto;
  z-index: 99999;
  font-family: "urw-din", sans-serif;
  font-size: 0.75rem;
  color: #333;
}
@media screen and (min-width: 960px) {
  .l-header__hamburger {
    display: none;
  }
}
.l-header__hamburger-icon {
  width: 2.4em;
  height: 2.4em;
  display: block;
  margin: 0 auto;
}
.l-header__hamburger-text {
  display: block;
}
.l-header__mainmenu {
  position: fixed;
  top: 0;
  right: 0;
  margin: auto;
  background: #FFF;
  width: 100%;
  min-height: 100vh;
  padding: 4rem 7.5%;
  font-size: 0.9375rem;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  visibility: hidden;
}
.l-header__mainmenu.is-open {
  opacity: 1;
  pointer-events: all;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  visibility: visible;
}
@media screen and (min-width: 960px) {
  .l-header__mainmenu {
    padding: 0;
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    height: auto;
    min-height: 0;
    margin: 0;
    background: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}
@media screen and (min-width: 1280px) {
  .l-header__mainmenu {
    font-size: clamp(0.875rem, 1.25vw - 2px, 1rem);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-header__mainmenu::after {
  content: "";
  width: 125px;
  height: 77px;
  display: block;
  position: absolute;
  right: clamp(20px, 0.38vw + 18.6px, 24px);
  bottom: clamp(20px, 0.38vw + 18.6px, 24px);
  margin: auto;
  background: url(../img/common/logo.svg) no-repeat center center/100% 100%;
  opacity: 0.2;
}
@media screen and (min-width: 960px) {
  .l-header__mainmenu::after {
    display: none;
  }
}
.l-header__mainmenu-secondary {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) clamp(11px, 0.28vw + 9.9px, 14px) minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(11px, 0.28vw + 9.9px, 14px);
  line-height: 1.5;
  margin: 2em 0;
}
@media screen and (min-width: 960px) {
  .l-header__mainmenu-secondary {
    font-size: 0.875rem;
    margin: 0 0 1em;
  }
}
@media screen and (min-width: 1280px) {
  .l-header__mainmenu-secondary {
    margin-bottom: 0;
    margin-left: 1.5em;
  }
}
.l-header__mainmenu-secondary .link {
  display: block;
  border-radius: 4px;
  padding: 0.5em;
  text-align: center;
  border: 1px solid #333;
  font-weight: 700;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
@media screen and (min-width: 960px) {
  .l-header__mainmenu-secondary .link {
    padding: 0.5em 1em;
  }
}
.l-header__mainmenu-secondary .link.-contact {
  background: #333;
  color: #FFF;
}
@media (hover: hover) {
  .l-header__mainmenu-secondary .link:hover {
    background: #333;
    color: #FFF;
  }
  .l-header__mainmenu-secondary .link.-contact:hover {
    background: transparent;
    color: #333;
  }
}
.l-header__mainmenu-sns {
  margin-top: 3em;
}
@media screen and (min-width: 960px) {
  .l-header__mainmenu-sns {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .l-header.-pre-fixed {
    position: fixed;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .l-header.-fixed, .-loaded .l-header.-fixed {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .l-header.-fixed.-show, .-loaded .l-header.-fixed.-show {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-filter: invert(1);
            filter: invert(1);
    mix-blend-mode: exclusion;
  }
}

/*
footer
-----------------------------------------------------*/
.l-footer {
  padding: clamp(40px, 2.82vw + 29.4px, 70px) 0 clamp(50px, -0.94vw + 63.5px, 60px);
}
@media screen and (min-width: 768px) {
  .l-footer__inner {
    display: -ms-grid;
    display: grid;
        grid-template-areas: "address nav" "copy nav";
    -ms-grid-columns: minmax(0, 1fr) auto;
    grid-template-columns: minmax(0, 1fr) auto;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__address {
    grid-area: adderss;
  }
}
.l-footer__nav {
  margin-top: 5em;
}
@media screen and (min-width: 768px) {
  .l-footer__nav {
    margin-top: 0;
    grid-area: nav;
  }
}
.l-footer__sns {
  margin: 3em 0 0;
}
.l-footer__info {
  margin-top: clamp(130px, -14.08vw + 332.8px, 280px);
}
@media screen and (min-width: 768px) {
  .l-footer__copy {
    grid-area: copy;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media screen and (min-width: 768px){
  .l-footer__nav {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
  }
  .l-footer__copy {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
}

.l-footer--small {
  padding: 30px 0;
  width: clamp(325px, 98.69vw - 45.1px, 1376px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-footer--small {
    width: calc(100% - 4rem);
  }
}
.l-footer--small__copyright {
  font-size: clamp(0.625rem, 0.19vw + 9.3px, 0.75rem);
  font-family: "urw-din", sans-serif;
  text-align: right;
  display: block;
}

/*
 container
-----------------------------------------------------*/
.l-container.-primary {
  width: clamp(325px, 98.69vw - 45.1px, 1376px);
  max-width: 90%;
  margin: 0 auto;
}
.l-container.-secondary {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-container.-tab-full {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 960px) {
  .l-container.-pc-primary {
    width: clamp(325px, 98.69vw - 45.1px, 1376px);
    max-width: 90%;
    margin: 0 auto;
  }
  .l-container.-pc-wide {
    width: calc(100% - clamp(160px, 8.33vw + 80px, 200px));
  }
  .l-container.-pc-full {
    width: 100%;
    max-width: 100%;
  }
  .l-container.-pc-primary-right {
    width: calc(50vw + clamp(325px, 98.69vw - 45.1px, 1376px) / 2);
    max-width: 95%;
    margin: 0 0 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .l-conts-lr.-sp-reverse {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (min-width: 768px) {
  .l-conts-lr {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 45% 55%;
    grid-template-columns: 45% 55%;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.l-conts-lr__text-inner {
  width: clamp(325px, 98.69vw - 45.1px, 1376px);
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-conts-lr__text-inner {
    width: 66%;
    margin: 0 auto;
  }
}

/*
spacer
-----------------------------------------------------*/
.l-spacer.-xlarge {
  padding-top: clamp(80px, 11.27vw + 37.7px, 200px);
}
.l-spacer.-xlarge.-both {
  padding-bottom: clamp(80px, 11.27vw + 37.7px, 200px);
}
.l-spacer.-large {
  padding-top: clamp(70px, 7.51vw + 41.8px, 150px);
}
.l-spacer.-large.-both {
  padding-bottom: clamp(70px, 7.51vw + 41.8px, 150px);
}
.l-spacer.-medium {
  padding-top: clamp(50px, 4.69vw + 32.4px, 100px);
}
.l-spacer.-medium.-both {
  padding-bottom: clamp(50px, 4.69vw + 32.4px, 100px);
}
.l-spacer.-small {
  padding-top: clamp(40px, 2.82vw + 29.4px, 70px);
}
.l-spacer.-small.-both {
  padding-bottom: clamp(40px, 2.82vw + 29.4px, 70px);
}
.l-spacer.-em1 {
  margin-top: 1em;
}
.l-spacer.-em2 {
  margin-top: 2em;
}
.l-spacer.-em3 {
  margin-top: 3em;
}

/*
main
-----------------------------------------------------*/
.l-main--onecolumn {
  padding-top: 200px;
}
@media screen and (min-width: 768px) {
  .l-main--onecolumn {
    padding-top: 200px;
  }
}

@media screen and (min-width: 768px) {
  .l-main--lr {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 40% 60%;
    grid-template-columns: 40% 60%;
    min-height: 100vh;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .l-main--lr__side {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    margin-top: 150px;
  }
}
.l-main--lr__side-inner {
  width: clamp(325px, 98.69vw - 45.1px, 1376px);
  max-width: 90%;
  margin: 0 auto;
  padding-top: 200px;
  padding-bottom: 50px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .l-main--lr__side-inner {
    width: 80%;
    margin: 0 0 0 auto;
    padding-right: clamp(40px, 8.33vw - 24px, 96px);
    padding-top: 100px;
  }
}
.l-main--lr__main {
  width: 768px;
  margin: 0 auto;
  max-width: 90%;
  padding-top: clamp(30px, 1.88vw + 22.9px, 50px);
}
@media screen and (min-width: 768px) {
  .l-main--lr__main {
    padding-top: 110px;
  }
}
.l-main--lr__main-inner {
  padding: 10vw 0;
  min-height: calc(100vh - 480px);
}
@media screen and (min-width: 768px) {
  .l-main--lr__main-inner {
    min-height: calc(100vh - 192px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
  }
}

/*
category
-----------------------------------------------------*/
.c-category {
  font-size: 0.8rem;
}
.c-category a {
  margin-right: 1em;
  text-decoration: underline;
}
.c-category span {
  margin-right: 1em;
}

.c-category-list a {
  text-decoration: underline;
  margin-right: 2em;
}

/*
title
-----------------------------------------------------*/
.c-title-page-main {
  background: #D9DADE;
  text-align: center;
  padding: 50px 0;
}
.c-title-page-main__title {
  font-size: 2rem;
}

.c-title-page-side__en {
  font-size: clamp(0.875rem, 2.44vw + 4.8px, 2.5rem);
  font-family: "urw-din", sans-serif;
  margin-bottom: 1em;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 960px) {
  .c-title-page-side__en {
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 0.5em;
    line-height: 1.2;
  }
}
.c-title-page-side__en::before {
  content: "";
  width: 1em;
  height: 1em;
  background: url(../img/common/symbol.svg) no-repeat center center/contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5em;
}
@media screen and (min-width: 960px) {
  .c-title-page-side__en::before {
    width: 0.7em;
    height: 0.7em;
    margin-left: -1.5em;
    margin-right: 0.8em;
  }
}
.c-title-page-side__ja {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .c-title-page-side__ja {
    font-size: clamp(1.125rem, 0.56vw + 15.9px, 1.5rem);
  }
}
@media screen and (min-width: 960px) {
  .c-title-page-side__ja::before {
    content: "";
    width: 1em;
    height: 1px;
    display: inline-block;
    margin-right: 0.3em;
    background: currentColor;
    vertical-align: middle;
  }
}

.c-title--section {
  font-size: clamp(1.5625rem, 1.41vw + 19.7px, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  padding-left: 1em;
}
.c-title--section.-small {
  font-size: clamp(1.5625rem, 0.94vw + 21.5px, 2.1875rem);
}
.c-title--section__en {
  font-family: "urw-din", sans-serif;
  font-size: clamp(0.875rem, 0.38vw + 12.6px, 1.125rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-weight: 500;
}
.c-title--section__en::before {
  content: "";
  width: 1em;
  height: 1em;
  background: url(../img/common/symbol.svg) no-repeat center center/100% 100%;
  display: inline-block;
  vertical-align: middle;
  margin-left: -1.5em;
  margin-right: 0.5em;
}

.c-title--std {
  font-size: clamp(1.25rem, 1.13vw + 15.8px, 2rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1em;
}

.c-title--line {
  font-size: clamp(1rem, 0.85vw + 12.8px, 1.5625rem);
  font-weight: bold;
  border-bottom: 1px solid;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
}

.c-title--note {
  width: 145px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-title--note {
    margin: 0;
  }
}

/*
text
-----------------------------------------------------*/
.c-text--center {
  text-align: center;
}

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

.c-text--underline {
  text-decoration: underline;
}

.c-text--en {
  font-family: "urw-din", sans-serif;
}

.c-text--icon-r .icon {
  vertical-align: middle;
  margin-left: 0.5em;
}

.c-text--notice {
  font-size: 0.875rem;
  font-weight: 400;
}

/*button
-----------------------------------------------------*/
.c-button--block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
  background: #333;
  padding: 1em 4em 1em 1.25em;
  border-radius: 3px;
  font-size: clamp(0.875rem, 0.19vw + 13.3px, 1rem);
  font-weight: bold;
  width: 100%;
  line-height: 1.5;
  position: relative;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
  border: 1px solid #333;
}
@media screen and (min-width: 768px) {
  .c-button--block {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.c-button--block .arrow {
  content: "";
  width: 2.5em;
  height: 1.25em;
  display: block;
  position: absolute;
  right: 0.625em;
  top: 0;
  bottom: 0;
  margin: auto;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-button--block .arrow img {
  display: block;
  width: 50%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (hover: hover) {
  .c-button--block:hover {
    background: transparent;
    color: #333;
  }
  .c-button--block:hover .arrow {
    -webkit-filter: brightness(0);
            filter: brightness(0);
  }
  .c-button--block:hover .arrow img {
    -webkit-animation: arrow 0.5s ease-in-out;
            animation: arrow 0.5s ease-in-out;
  }
  .c-button--block:hover::after {
    -webkit-filter: brightness(0);
            filter: brightness(0);
  }
}
.c-button--block.-wide {
  width: 100%;
}
.c-button--block.-external::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.5em;
  margin: auto;
  background: url(../img/common/external.svg) no-repeat center center/contain;
  -webkit-animation: none;
          animation: none;
}
.c-button--block.-center {
  margin: 0 auto;
  text-align: center;
}
.c-button--block.-gotop {
  width: 300px;
}

@-webkit-keyframes arrow {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  49% {
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
    visibility: hidden;
  }
  50% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
    visibility: hidden;
  }
  52% {
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes arrow {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  49% {
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
    visibility: hidden;
  }
  50% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
    visibility: hidden;
  }
  52% {
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.c-button--icon.-external::after {
  content: "";
  width: 1rem;
  height: 1rem;
  display: inline-block;
  vertical-align: middle;
  background: url(../img/common/external.svg) no-repeat center center/contain;
  margin-left: 0.5em;
  -webkit-filter: brightness(0.6);
          filter: brightness(0.6);
}

/*
list
-----------------------------------------------------*/
.c-list--dot > li {
  padding-left: 1em;
  position: relative;
}
.c-list--dot > li::before {
  content: "・";
  display: inline-block;
  margin-left: -1em;
  width: 1em;
}

.c-list--num {
  counter-reset: listnum;
}
.c-list--num > li {
  counter-increment: listnum;
  padding-left: 2em;
}
.c-list--num > li + li {
  margin-top: 1em;
}
.c-list--num > li::before {
  content: counter(listnum) ".";
  width: 2em;
  margin-left: -2em;
  display: inline-block;
}

.c-list--hyphen > li {
  padding-left: 1em;
  position: relative;
}
.c-list--hyphen > li::before {
  content: "-";
  display: inline-block;
  margin-left: -1em;
  width: 1em;
}

.c-list--check {
  counter-reset: listnum;
}
.c-list--check > li {
  counter-increment: listnum;
  padding-left: 2em;
}
.c-list--check > li + li {
  margin-top: 1em;
}
.c-list--check > li::before {
  content: "✔";
  width: 2em;
  margin-left: -2em;
  display: inline-block;
}

/*
gmenu
-----------------------------------------------------*/
@media screen and (min-width: 960px) {
  .c-gmenu-primary {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.c-gmenu-primary__item {
  font-weight: 700;
  border-bottom: 1px solid #CCC;
}
@media screen and (min-width: 960px) {
  .c-gmenu-primary__item {
    border: none;
  }
}
@media screen and (min-width: 960px) {
  .c-gmenu-primary__item + .c-gmenu-primary__item {
    margin-left: 1em;
  }
}
@media screen and (min-width: 1280px) {
  .c-gmenu-primary__item + .c-gmenu-primary__item {
    margin-left: 2em;
  }
}
.c-gmenu-primary__item .link {
  padding: 1em 0;
  display: block;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .c-gmenu-primary__item .link {
    padding: 0;
  }
}

/*
 mainvisual
-----------------------------------------------------*/
.c-mainvisual {
  width: 100%;
  height: 80vh;
  background: #F8F8F8;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
.c-mainvisual__title {
  font-size: 2rem;
  margin-bottom: 1em;
}

/*
breadcrumb
-----------------------------------------------------*/
.c-breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  font-size: 0.8rem;
  margin: 1em 0;
}
.c-breadcrumb__item {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.c-breadcrumb__item + .c-breadcrumb__item::before {
  content: ">";
  margin: 0 0.5em;
}

/*
title
-----------------------------------------------------*/
.c-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 5em;
  position: relative;
}
.c-pagination .page-numbers {
  width: 2em;
  height: 2em;
  border: 1px solid;
  text-align: center;
  line-height: 2em;
  margin: 5px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.c-pagination .page-numbers.current {
  background: #333;
  color: #FFF;
}
.c-pagination .page-numbers.prev, .c-pagination .page-numbers.next {
  width: auto;
  border: none;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-pagination .page-numbers.prev {
  left: 0;
}
.c-pagination .page-numbers.next {
  right: 0;
}

.c-post-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 5em;
  position: relative;
}
.c-post-pagination a[rel=prev],
.c-post-pagination a[rel=next] {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-post-pagination a[rel=prev] {
  left: 0;
}
.c-post-pagination a[rel=next] {
  right: 0;
}

/*
loading
-----------------------------------------------------*/
.c-loading {
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  background: #FFF;
  z-index: 9999;
}

.-loading .l-header,
.-loading .p-mv__wrap::before,
.-loading .p-mv__10th,
.-loading .p-mv__canvas,
.-loading .p-mv__movie,
.-loading .p-mv__text,
.-loading .p-mv__note {
  opacity: 0;
  -webkit-transition: opacity 0s;
  transition: opacity 0s;
}
.-loading .p-mv__canvas {
  -webkit-transform: scale(1.5) translateY(0%) rotate(5deg);
          transform: scale(1.5) translateY(0%) rotate(5deg);
}

.-loaded .p-mv__canvas {
  opacity: 1;
  -webkit-transform: scale(1) translateY(0%) rotate(0deg);
          transform: scale(1) translateY(0%) rotate(0deg);
  -webkit-transition: all 1.5s ease-out;
  transition: all 1.5s ease-out;
}
.-loaded .p-mv__wrap::before {
  opacity: 1;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.-loaded .l-header,
.-loaded .p-mv__10th {
  opacity: 1;
  -webkit-transition: opacity 2s 1s;
  transition: opacity 2s 1s;
}
.-loaded .p-mv__text {
  opacity: 1;
  -webkit-transition: opacity 2s 1.5s;
  transition: opacity 2s 1.5s;
}
.-loaded .p-mv__note {
  opacity: 1;
  -webkit-transition: opacity 2s 2s;
  transition: opacity 2s 2s;
}
.-loaded .p-mv__movie {
  opacity: 1;
  -webkit-transition: opacity 2s 2.5s;
  transition: opacity 2s 2.5s;
}
.-loaded.-short .p-mv__canvas {
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.-loaded.-short .p-mv__wrap::before {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.-loaded.-short .l-header,
.-loaded.-short .p-mv__10th {
  opacity: 1;
  -webkit-transition: opacity 1s 0.5s;
  transition: opacity 1s 0.5s;
}
.-loaded.-short .p-mv__text {
  opacity: 1;
  -webkit-transition: opacity 1s 0.5s;
  transition: opacity 1s 0.5s;
}
.-loaded.-short .p-mv__note {
  opacity: 1;
  -webkit-transition: opacity 1s 1s;
  transition: opacity 1s 1s;
}
.-loaded.-short .p-mv__movie {
  opacity: 1;
  -webkit-transition: opacity 1s 1.2s;
  transition: opacity 1s 1.2s;
}

/*hover
-----------------------------------------------------*/
.c-hover-img {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .c-hover-wrap:hover .c-hover-img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-hover-transparent:hover {
    opacity: 0.6;
  }
}
.c-hover-text {
  background: -webkit-linear-gradient(225deg, currentColor 50%, transparent 50%) repeat-x 100% 100%/200% 1px;
  background: linear-gradient(225deg, currentColor 50%, transparent 50%) repeat-x 100% 100%/200% 1px;
  -webkit-animation: hide-bg-line 0.3s ease-out forwards;
          animation: hide-bg-line 0.3s ease-out forwards;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (hover: hover) and (pointer: fine) {
  .c-hover-text:hover {
    -webkit-animation: show-bg-line 0.3s ease-out forwards;
            animation: show-bg-line 0.3s ease-out forwards;
  }
  .c-hover-wrap:hover .c-hover-text {
    -webkit-animation: show-bg-line 0.3s ease-out forwards;
            animation: show-bg-line 0.3s ease-out forwards;
  }
}

.c-hover-text-reverse {
  background: -webkit-linear-gradient(225deg, currentColor 50%, transparent 50%) repeat-x 100% 100%/200% 1px;
  background: linear-gradient(225deg, currentColor 50%, transparent 50%) repeat-x 100% 100%/200% 1px;
}
@media (hover: hover) and (pointer: fine) {
  .c-hover-text-reverse:hover {
    -webkit-animation: move-bg-line 0.3s ease-out forwards;
            animation: move-bg-line 0.3s ease-out forwards;
  }
  .c-hover-wrap:hover .c-hover-text-reverse {
    -webkit-animation: move-bg-line 0.3s ease-out forwards;
            animation: move-bg-line 0.3s ease-out forwards;
  }
}

@-webkit-keyframes hide-bg-line {
  to {
    background-position: 0% 100%;
  }
}

@keyframes hide-bg-line {
  to {
    background-position: 0% 100%;
  }
}
@-webkit-keyframes show-bg-line {
  from {
    background-position: 200% 100%;
  }
}
@keyframes show-bg-line {
  from {
    background-position: 200% 100%;
  }
}
@-webkit-keyframes move-bg-line {
  0% {
    background-position: 100% 100%;
  }
  50% {
    background-position: 0% 100%;
  }
  100% {
    background-position: -100% 100%;
  }
}
@keyframes move-bg-line {
  0% {
    background-position: 100% 100%;
  }
  50% {
    background-position: 0% 100%;
  }
  100% {
    background-position: -100% 100%;
  }
}
/*
 bg
-----------------------------------------------------*/
.c-bg--white {
  background: #FFF;
}
.c-bg--blue-tex {
  background: url(../img/common/texture.jpg);
}
@media screen and (max-width: 767px) {
  .c-bg--blue-tex {
    background-size: 75px 75px;
  }
}
.c-bg--darkgray {
  background: #5F5F5F;
}
@media screen and (min-width: 768px) {
  .c-bg--download-head::before {
    content: "";
    width: 30%;
    height: calc(100% - 100px);
    background: url(../img/download/contour.svg) no-repeat left bottom/100% auto;
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    margin: auto;
  }
}
@media screen and (min-width: 768px) {
  .c-bg--contact-head::before {
    content: "";
    width: 30%;
    height: 60%;
    background: url(../img/contact/contour.svg) no-repeat left bottom/contain;
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    margin: auto;
  }
}

/*mv
-----------------------------------------------------*/
.p-mv {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mv {
    height: 100svh;
  }
}
.p-mv__wrap {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
  position: relative;
  padding-bottom: 2rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (min-width: 768px) {
  .p-mv__wrap {
    height: 300vh;
    margin-bottom: -150vh;
  }
}
.p-mv__wrap .bg {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  margin: auto;
  background: url(../img/common/texture.jpg);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-mv__wrap .bg {
    background-size: 75px 75px;
  }
}
.p-mv__canvas {
  width: 120%;
  max-width: none;
  height: 120vh;
  position: absolute;
  inset: 0;
  margin: -10vh -10% 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-mv__canvas {
    position: fixed;
  }
}
.p-mv__10th {
  position: absolute;
  top: calc(clamp(114px, 5.35vw + 93.9px, 171px) * 0.77 + clamp(20px, 0.38vw + 18.6px, 24px) - (clamp(56px, 2.54vw + 46.5px, 83px) - 10px));
  left: calc(clamp(20px, 4.32vw + 3.8px, 66px) + clamp(114px, 5.35vw + 93.9px, 171px) + clamp(10px, 1.31vw + 5.1px, 24px));
  margin: auto;
  width: clamp(56px, 2.54vw + 46.5px, 83px);
  height: clamp(56px, 2.54vw + 46.5px, 83px);
  z-index: 2;
  background: #FFF;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-mv__10th img {
  width: 70%;
}
.p-mv__movie {
  width: clamp(100px, 16.43vw + 38.4px, 275px);
  display: block;
  position: absolute;
  top: 50svh;
  left: 55%;
  margin: auto;
  -webkit-transform: translateY(-200%);
          transform: translateY(-200%);
}
@media screen and (min-width: 768px) {
  .p-mv__movie {
    top: 50vh;
    -webkit-transform: translateY(-130%);
            transform: translateY(-130%);
  }
}
.p-mv__multiple {
  width: clamp(46px, 1.88vw + 38.9px, 66px);
  position: absolute;
  top: 50svh;
  left: 0;
  right: 0;
  margin: auto;
  margin: auto;
  z-index: 2;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media screen and (min-width: 768px) {
  .p-mv__multiple {
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.p-mv__inner {
  position: relative;
  padding: 0 clamp(20px, 4.32vw + 3.8px, 66px);
  padding-top: calc(100svh - clamp(140px, 10.18vw + 101.8px, 180px) - clamp(14px, 0.19vw + 13.3px, 16px) * 9);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-mv__inner {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: clamp(20px, 2.82vw + 9.4px, 50px);
    padding-top: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.p-mv__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .p-mv__text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-mv__text-lead {
  font-size: clamp(0.875rem, 0.19vw + 13.3px, 1rem);
  margin-top: 1.5em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-mv__text-lead {
    margin: 0 0 2em;
  }
}
.p-mv__text-copy {
  width: clamp(282px, 20.17vw + 206.4px, 400px);
}
@media screen and (min-width: 960px) {
  .p-mv__text-copy {
    width: clamp(420px, 60.12vw - 41.7px, 824px);
  }
}
.p-mv__text-copy picture,
.p-mv__text-copy img {
  width: 100%;
  display: block;
}
.p-mv__note {
  margin-top: clamp(30px, 2.82vw + 19.4px, 60px);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 63px 16px minmax(0, 1fr);
  grid-template-columns: 63px minmax(0, 1fr);
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-mv__note {
    width: clamp(230px, 13.39vw + 127.2px, 320px);
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.p-mv__note-title {
  padding-top: 0.5em;
}
@media screen and (min-width: 768px) {
  .p-mv__note-title {
    width: 78px;
  }
}
.p-mv__note-title img {
  display: block;
}
.p-mv__note-post {
  font-size: 0.875rem;
}
.p-mv__note-post::after {
  content: "";
  width: 1em;
  height: 1em;
  display: inline-block;
  background: url(../img/common/external.svg) no-repeat center center/contain;
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
  margin-left: 0.5em;
}

.page-id-70 .p-mv__canvas {
  position: absolute;
}
.page-id-70 .p-mv__movie {
  position: absolute;
}
.page-id-70 .p-mv__multiple {
  position: absolute;
}
.page-id-70 .p-mv__wrap {
  height: auto;
  margin: 0;
}
.page-id-70 .p-home__service-wrap {
  margin-top: 0;
}

.page-id-90 .p-mv__movie {
  position: absolute;
}

/*
 page head
-----------------------------------------------------*/
.p-page-head {
  height: 50vw;
  max-height: 400px;
  position: relative;
}
.p-page-head__canvas {
  width: 100% !important;
  height: 80% !important;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
}

.p-page-title__en {
  font-family: "urw-din", sans-serif;
  font-size: clamp(0.875rem, 1.5vw + 8.4px, 1.875rem);
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .p-page-title__en {
    text-align: center;
    font-size: clamp(1.25rem, 5.16vw + 0.6px, 4.6875rem);
    line-height: 1.5;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0.5em auto 0.5em;
    position: relative;
    background: #FFF;
    display: block;
  }
}
.p-page-title__en .title {
  -webkit-transform: rotate(10deg) translateY(100%);
          transform: rotate(10deg) translateY(100%);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.25s;
  transition: -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.25s;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.25s;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.25s, -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.25s;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  display: block;
}
.-loaded .p-page-title__en .title {
  -webkit-transform: rotate(0) translateY(0);
          transform: rotate(0) translateY(0);
}
@media screen and (max-width: 959px) {
  .p-page-title__en::before {
    content: "";
    width: clamp(0.9375rem, 1.69vw + 8.7px, 2.0625rem);
    height: clamp(0.9375rem, 1.69vw + 8.7px, 2.0625rem);
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.2em;
    background: url(../img/common/symbol.svg) no-repeat center center/100% 100%;
  }
}
@media screen and (min-width: 960px) {
  .p-page-title::before {
    content: "";
    width: clamp(0.9375rem, 1.69vw + 8.7px, 2.0625rem);
    height: clamp(0.9375rem, 1.69vw + 8.7px, 2.0625rem);
    display: block;
    background: url(../img/common/symbol.svg) no-repeat center center/100% 100%;
    margin: 0 auto -1rem;
  }
}
.p-page-title__ja {
  font-size: 1.5625rem;
  font-weight: 700;
}
@media screen and (min-width: 960px) {
  .p-page-title__ja {
    margin-top: 3em;
  }
  .p-page-title__ja::before {
    content: "―";
    margin-left: -1.5em;
    margin-right: 0.5em;
    display: inline-block;
    margin-right: 0.5em;
  }
}

/*home
-----------------------------------------------------*/
@media screen and (min-width: 768px) {
  .p-home__title {
    margin-left: -1em;
  }
}

.p-home__service {
  position: relative;
}
.p-home__service-wrap {
  background: url(../img/home/curve.svg) no-repeat center calc(15vw + 2em)/140% auto;
}
@media screen and (min-width: 768px) {
  .p-home__service-wrap {
    background-size: 90% auto;
    background-position: center 100px;
    margin-top: 50vh;
  }
}
.p-home__service-title {
  font-size: clamp(1.5625rem, 2.35vw + 16.2px, 3.125rem);
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 2em;
  padding-top: 3em;
}
@media screen and (min-width: 768px) {
  .p-home__service-title {
    margin-top: 1.5em;
    padding-top: 1.5em;
    margin-bottom: 3em;
  }
}
.p-home__service-title .tm {
  font-weight: normal;
  font-size: 1.25rem;
  vertical-align: super;
  display: inline-block;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-home__service-title .tm {
    -webkit-transform: translateY(-0.5em);
            transform: translateY(-0.5em);
  }
}
.p-home__service-subtitle {
  text-align: center;
  font-size: clamp(1rem, 0.85vw + 12.8px, 1.5625rem);
  margin-bottom: 2em;
}
.p-home__service-text {
  font-size: clamp(0.875rem, 0.56vw + 11.9px, 1.25rem);
}
@media screen and (min-width: 768px) {
  .p-home__service-text {
    width: 50%;
    max-width: 470px;
    margin: 0 auto;
  }
}
.p-home__service-text p {
  margin-bottom: 1.5em;
}
.p-home__service .photo1 {
  width: 50%;
  margin-right: -10%;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-home__service .photo1 {
    width: 20%;
    max-width: 318px;
    position: absolute;
    right: 80%;
    top: 20rem;
    margin: auto;
  }
}
@media screen and (min-width: 960px) {
  .p-home__service .photo1 {
    width: 25%;
    right: 76%;
  }
}
@media screen and (min-width: 1280px) {
  .p-home__service .photo1 {
    top: 21rem;
  }
}
.p-home__service .photo2 {
  width: 60%;
  margin: -2em 0 0 auto;
  position: relative;
  z-index: 2;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-home__service .photo2 {
    width: 25%;
    max-width: 340px;
    position: absolute;
    left: 80%;
    top: 25rem;
    margin: auto;
  }
}
@media screen and (min-width: 960px) {
  .p-home__service .photo2 {
    width: 28%;
    left: 76%;
    bottom: 35%;
    top: auto;
  }
}
.p-home__service .photo3 {
  width: 40%;
  margin: 2em auto 0 10%;
  float: left;
}
@media screen and (min-width: 768px) {
  .p-home__service .photo3 {
    width: 18%;
    max-width: 250px;
    position: absolute;
    right: 80%;
    top: 70%;
    margin: auto;
    float: none;
  }
}
@media screen and (min-width: 960px) {
  .p-home__service .photo3 {
    right: 76%;
  }
}
.p-home__service .standbyyou {
  width: 28%;
  margin: 15vw 0 0 5%;
}
@media screen and (min-width: 768px) {
  .p-home__service .standbyyou {
    width: 10%;
    max-width: 154px;
    position: absolute;
    left: 83%;
    top: 75%;
    margin: auto;
  }
}
@media screen and (min-width: 960px) {
  .p-home__service .standbyyou {
    left: 80%;
  }
}
.p-home__service-more {
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .p-home__service-more {
    max-width: 470px;
    width: 50%;
    margin: 4em auto 0;
  }
}

.p-home__project {
  position: relative;
}
.p-home__project-wrap {
  background: url(../img/common/texture.jpg);
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  .p-home__project-wrap {
    background-size: 75px 75px;
  }
}
@media screen and (min-width: 768px) {
  .p-home__project-wrap {
    background: none;
    padding: 0;
    margin-top: clamp(100px, 7.44vw + 42.9px, 150px);
  }
}
@media screen and (min-width: 768px) {
  .p-home__project-slider {
    width: 100%;
    padding-left: calc(50vw - clamp(325px, 98.69vw - 45.1px, 1376px) / 2);
    margin: 2em 0 0 auto;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .p-home__project-slider {
    margin-top: 2em;
  }
  .p-home__project-slider .swiper-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.p-home__project-slider::before {
  content: "";
  width: calc(50% + clamp(325px, 98.69vw - 45.1px, 1376px) / 2 - 3vw);
  background: url(../img/common/texture.jpg);
  display: block;
  position: absolute;
  top: 5vw;
  right: 0;
  margin: auto;
  z-index: -1;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-home__project-slider::before {
    background-size: 75px 75px;
  }
}
.p-home__project-slider-wrap {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-home__project-slider .swiper-slide {
    width: calc(clamp(325px, 98.69vw - 45.1px, 1376px) * 0.4 - 40px);
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
  }
}
@media screen and (min-width: 960px) {
  .p-home__project-slider .swiper-slide {
    width: calc((50vw + clamp(325px, 98.69vw - 45.1px, 1376px) / 2) * 0.3 - 40px);
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
  }
}
@media screen and (max-width: 767px) {
  .p-home__project-slider .swiper-slide:nth-child(n+4) {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-home__project-slider .swiper-slide-large {
    width: calc(clamp(325px, 98.69vw - 45.1px, 1376px) * 0.55 - 40px);
    padding: 0;
  }
  .p-home__project-slider .swiper-slide-large .p-home__project-text {
    padding-left: clamp(50px, 10.42vw - 30px, 120px);
  }
}
@media screen and (min-width: 960px) {
  .p-home__project-slider .swiper-slide-large {
    width: calc((50vw + clamp(325px, 98.69vw - 45.1px, 1376px) / 2) * 0.4 - 40px);
  }
}
.p-home__project-slider-control {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-home__project-slider-control {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: clamp(30px, 1.49vw + 18.6px, 40px) 50px clamp(30px, 1.49vw + 18.6px, 40px);
    grid-template-columns: repeat(2, clamp(30px, 1.49vw + 18.6px, 40px));
    gap: 50px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    bottom: 100%;
    right: 0;
    margin: auto;
  }
}
@media screen and (min-width: 960px) {
  .p-home__project-slider-control {
    right: 5vw;
  }
}
.p-home__project-slider-control button {
  cursor: pointer;
}
.p-home__project-slider-control .swiper-button-disabled {
  pointer-events: none;
  opacity: 0.3;
}
.p-home__project-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: #FFF;
  border: 1px solid #CCC;
  overflow: hidden;
}
.p-home__project-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-home__project-text {
  margin-top: clamp(18px, 0.66vw + 15.5px, 25px);
  padding-left: clamp(30px, 2.44vw + 20.8px, 56px);
}
.p-home__project-client {
  font-size: 0.875rem;
  margin-bottom: 1em;
}
.p-home__project-title {
  font-size: clamp(0.9375rem, 0.47vw + 13.2px, 1.25rem);
  font-weight: bold;
  line-height: 1.5;
}
.p-home__project-tag {
  font-size: 0.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 1em;
  color: #666;
  line-height: 1.5;
}
.p-home__project-tag > li {
  margin: 0 10px 5px 0;
}
.p-home__project-more {
  width: 100%;
  margin: 3em 0;
}
@media screen and (min-width: 768px) {
  .p-home__project-more {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 1em 5% 5em auto;
  }
}

@media screen and (min-width: 768px) {
  .p-home__about {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-home__about-wrap {
  position: relative;
}
.p-home__about-mountain {
  position: absolute;
  width: 100%;
  height: 34vw;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 80% center;
     object-position: 80% center;
  top: 12rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 3;
  mix-blend-mode: multiply;
}
@media screen and (min-width: 768px) {
  .p-home__about-mountain {
    height: 17vw;
    top: 8rem;
    top: clamp(120px, 12.21vw + 74.2px, 250px);
  }
}
.p-home__about-title {
  margin-top: clamp(30px, 7.44vw - 27.1px, 80px);
}
.p-home__about-uji {
  width: 60%;
  display: block;
  margin: clamp(90px, 10.33vw + 51.3px, 200px) auto 0;
}
@media screen and (min-width: 768px) {
  .p-home__about-uji {
    width: 360px;
    max-width: 90%;
    margin-left: 0;
  }
}
.p-home__about-text {
  padding: 0 1rem;
}
@media screen and (min-width: 768px) {
  .p-home__about-text {
    width: 50%;
    max-width: 543px;
    padding: calc(clamp(200px, 4.69vw + 182.4px, 250px) + clamp(40px, 2.82vw + 29.4px, 70px)) 0 0;
    position: relative;
  }
}
.p-home__about-img {
  position: relative;
  margin: 2rem 0;
}
@media screen and (min-width: 768px) {
  .p-home__about-img {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    margin: auto;
    max-width: 420px;
  }
}
.p-home__about-img .img1 {
  width: 35%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-home__about-img .img1 {
    display: none;
  }
}
.p-home__about-img .img2 {
  width: 75%;
  margin: -15% 0 0 auto;
  display: block;
  z-index: 2;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-home__about-img .img2 {
    margin: 0 auto;
  }
}
.p-home__about-desc {
  font-size: clamp(0.875rem, 0.56vw + 11.9px, 1.25rem);
  margin-bottom: 2em;
}

/*about
-----------------------------------------------------*/
.p-about__main {
  position: relative;
}
.p-about__main-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  margin: auto;
  overflow: hidden;
}
.p-about__main-bg::before {
  content: "";
  width: 100%;
  height: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  display: block;
  background-image: url(../img/about-us/contour1.svg), url(../img/about-us/contour2.svg);
  background-repeat: no-repeat;
  background-position: left top, right top;
  background-size: clamp(100px, 18.78vw + 29.6px, 300px) auto, clamp(200px, 46.95vw + 23.9px, 700px) auto;
  -webkit-transform: scale(1.1) rotate(3deg);
          transform: scale(1.1) rotate(3deg);
  -webkit-transform-origin: center 10%;
          transform-origin: center 10%;
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-about__main-bg::before {
    background-position: left top, right clamp(-100px, -7.44vw + 7.1px, -50px);
  }
}
.-loaded .p-about__main-bg::before {
  -webkit-transform: scale(1) rotate(0deg);
          transform: scale(1) rotate(0deg);
}

.p-about__lead-img {
  margin-bottom: 2em;
}
@media screen and (min-width: 768px) {
  .p-about__lead-img {
    margin-bottom: 0;
  }
}
.p-about__lead-text {
  font-size: clamp(0.875rem, 0.19vw + 13.3px, 1rem);
}
@media screen and (min-width: 768px) {
  .p-about__lead-text {
    font-size: clamp(1rem, 0.38vw + 14.6px, 1.25rem);
  }
}

.p-about__purpose {
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .p-about__purpose {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: clamp(180px, 10.42vw + 100px, 250px) minmax(0, 1fr);
    grid-template-columns: clamp(180px, 10.42vw + 100px, 250px) minmax(0, 1fr);
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-about__purpose-toc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-about__purpose-toc {
    display: block;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    padding: 64px clamp(40px, 3.57vw + 12.6px, 64px);
  }
}
.p-about__purpose-toclist {
  font-family: "urw-din", sans-serif;
}
.p-about__purpose-toclist > li {
  opacity: 0.2;
}
.p-about__purpose-toclist > li.is-active {
  opacity: 1;
}
.p-about__purpose-toclist > li:not(:last-child) {
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .p-about__purpose-conts {
    padding-top: 50px;
  }
}
.p-about__purpose-item {
  padding: clamp(30px, 3.19vw + 18px, 64px) 0 clamp(60px, 8.45vw + 28.3px, 150px);
}
.p-about__purpose-item:not(:last-of-type) {
  border-bottom: 1px solid #888;
}
@media screen and (min-width: 960px) {
  .p-about__purpose-item {
    position: relative;
    padding-left: clamp(80px, 41.67vw - 320px, 280px);
    padding-right: clamp(80px, 8.33vw + 0px, 120px);
  }
}
.p-about__purpose-title {
  font-size: clamp(0.875rem, 0.94vw + 10.5px, 1.5rem);
  font-family: "urw-din", sans-serif;
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
  .p-about__purpose-title {
    position: absolute;
    left: 0;
    top: clamp(30px, 3.19vw + 18px, 64px);
    margin: auto;
  }
}
.p-about__purpose-detail {
  padding: 2em 0 0 1em;
  font-size: clamp(0.875rem, 0.56vw + 11.9px, 1.25rem);
  line-height: 2;
}
@media screen and (min-width: 960px) {
  .p-about__purpose-detail {
    padding: 0;
  }
}
.p-about__purpose-title1 {
  width: auto;
  height: clamp(107px, 4.41vw + 90.5px, 154px);
}
.p-about__purpose-title2, .p-about__purpose-title3 {
  width: auto;
  height: clamp(70px, 2.82vw + 59.4px, 100px);
}
.p-about__purpose-text1 {
  margin-top: clamp(28px, 6.76vw + 2.6px, 100px);
  line-height: 2;
}
.p-about__purpose-wrap {
  position: relative;
}
.p-about__purpose-wrap .raicho {
  position: absolute;
  right: 5%;
  bottom: 100%;
  width: clamp(150px, 14.08vw + 97.2px, 300px);
  margin-bottom: clamp(-50px, -1.88vw - 22.9px, -30px);
}
.p-about__purpose-wrap .theodolite {
  position: absolute;
  width: clamp(150px, 4.69vw + 132.4px, 200px);
  right: 10%;
  bottom: -3rem;
  margin: auto;
}
@media screen and (min-width: 960px) {
  .p-about__purpose-wrap .theodolite {
    right: auto;
    left: 120px;
  }
}
.p-about__purpose-wrap .contour {
  position: absolute;
  right: 0;
  top: 0;
  margin: auto;
  width: clamp(193px, 14.65vw + 138.1px, 349px);
}

.p-about__value {
  counter-reset: listnum;
}
.p-about__value-item {
  counter-increment: listnum;
  padding-left: 2rem;
  position: relative;
}
.p-about__value-item::before {
  content: counter(listnum);
  font-family: "urw-din", sans-serif;
  width: 2rem;
  display: inline-block;
  font-size: clamp(0.625rem, 0.38vw + 8.6px, 0.875rem);
  position: absolute;
  left: 0;
  top: 0.5em;
  margin: auto;
  line-height: calc(clamp(0.9375rem, 0.85vw + 11.8px, 1.5rem) * 1.5);
}
.p-about__value-item:not(:last-child) {
  margin-bottom: 1.5em;
}
@media screen and (min-width: 960px) {
  .p-about__value-item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(40%, 18em) 2em minmax(50%, 1fr);
    grid-template-columns: minmax(40%, 18em) minmax(50%, 1fr);
    gap: 2em;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-about__value-ja {
  font-size: clamp(0.9375rem, 0.85vw + 11.8px, 1.5rem);
  font-weight: 500;
}
.p-about__value-en {
  font-size: clamp(0.625rem, 0.38vw + 8.6px, 0.875rem);
  font-family: "urw-din", sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .p-about__company {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 250px minmax(0, 1fr);
    grid-template-columns: 250px minmax(0, 1fr);
  }
}
@media screen and (min-width: 960px) {
  .p-about__company {
    -ms-grid-columns: clamp(330px, 41.67vw - 70px, 530px) minmax(0, 1fr);
    grid-template-columns: clamp(330px, 41.67vw - 70px, 530px) minmax(0, 1fr);
  }
}
.p-about__company-outline {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 5em 1em minmax(0, 1fr);
  grid-template-columns: 5em minmax(0, 1fr);
  gap: 1em;
  font-size: clamp(0.875rem, 0.56vw + 11.9px, 1.25rem);
}

.p-about__profile {
  border-top: 1px solid #CCC;
}
@media screen and (min-width: 960px) {
  .p-about__profile {
    display: -ms-grid;
    display: grid;
        grid-template-areas: "title title" "text img";
    gap: 60px;
  }
}
.p-about__profile-role {
  font-size: clamp(0.875rem, 0.19vw + 13.3px, 1rem);
}
.p-about__profile-name {
  font-size: clamp(1.125rem, 0.66vw + 15.5px, 1.5625rem);
  display: block;
  margin-top: 0.2em;
}
.p-about__profile-name ruby {
  font-size: 0.6em;
}
.p-about__profile-prof {
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .p-about__profile-prof {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: clamp(80px, 10.42vw + 0px, 150px) 1em minmax(0, 1fr);
    grid-template-columns: clamp(80px, 10.42vw + 0px, 150px) minmax(0, 1fr);
    gap: 1em;
  }
}
.p-about__profile-title {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-about__profile-title {
    display: block;
  }
}
.p-about__profile-text {
  margin-bottom: 2em;
}
@media screen and (min-width: 960px) {
  .p-about__profile-text {
    grid-area: text;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 960px) {
  .p-about__profile-img {
    grid-area: img;
  }
}
.p-about__profile-sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: clamp(24px, 1.03vw + 20.1px, 35px);
}
.p-about__profile-sns-item img {
  display: block;
}
.p-about__profile-sns-item:not(:last-child) {
  margin-right: clamp(20px, 1.41vw + 14.7px, 35px);
}

.p-about__bnrlist {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) clamp(15px, 1.69vw + 8.7px, 33px) minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(15px, 1.69vw + 8.7px, 33px);
}
@media screen and (min-width: 768px) {
  .p-about__bnrlist {
    -ms-grid-columns: (minmax(0, 1fr))[3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (min-width: 960px) {
  .p-about__bnrlist {
    -ms-grid-columns: (minmax(0, 1fr))[6];
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.p-about__bnrlist-item {
  border: 1px solid #CCC;
}

/*
 business
-----------------------------------------------------*/
.p-businessarea {
  overflow: hidden;
}
.p-businessarea__list {
  counter-reset: listnum;
  margin: 3em 0;
}
@media screen and (min-width: 768px) {
  .p-businessarea__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media screen and (min-width: 768px) and (min-width: 960px) {
  .p-businessarea__list {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
.p-businessarea__list-item {
  position: relative;
  counter-increment: listnum;
  width: 23em;
  height: 16em;
  margin: 0 auto;
  padding-top: 1em;
}
@media screen and (min-width: 520px) {
  .p-businessarea__list-item {
    width: 22em;
    height: 16em;
  }
}
@media screen and (min-width: 768px) {
  .p-businessarea__list-item {
    width: 50%;
    height: 18em;
  }
}
@media screen and (min-width: 960px) {
  .p-businessarea__list-item {
    width: min(40%, 33em);
    height: min(24em, 25vw);
    padding-top: 0;
  }
}
.p-businessarea__list-item:nth-child(2) {
  margin-top: -1em;
}
@media screen and (min-width: 768px) {
  .p-businessarea__list-item:nth-child(2) {
    margin-top: 0;
    margin-left: -16%;
  }
}
@media screen and (min-width: 960px) {
  .p-businessarea__list-item:nth-child(2) {
    margin-left: -10%;
    padding-top: 0;
  }
}
.p-businessarea__list-item:nth-child(3) {
  margin-top: -1em;
}
@media screen and (min-width: 768px) {
  .p-businessarea__list-item:nth-child(3) {
    margin-top: -3em;
    margin-left: 15%;
    padding-top: 3em;
  }
}
@media screen and (min-width: 960px) {
  .p-businessarea__list-item:nth-child(3) {
    margin-top: 0;
    margin-left: -10%;
    padding-top: 0;
  }
}
.p-businessarea__list-item::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: -1;
  inset: 0;
  margin: auto;
  background: url(../img/common/texture.jpg);
  border-radius: 50%;
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .p-businessarea__list-item::before {
    background-size: 75px 75px;
  }
}
.p-businessarea__text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.p-businessarea__text::before {
  content: counter(listnum, decimal-leading-zero);
  font-family: "urw-din", sans-serif;
  font-size: clamp(2.1875rem, 2.35vw + 26.2px, 3.75rem);
  color: #666;
  opacity: 0.5;
  display: block;
  margin-bottom: 0.5em;
  text-align: right;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-businessarea__text::before {
    margin-bottom: 0.3em;
  }
}
@media screen and (min-width: 960px) {
  .p-businessarea__text::before {
    margin-bottom: 0.6em;
  }
}
.p-businessarea__title {
  font-size: clamp(0.9375rem, 1.03vw + 11.1px, 1.625rem);
  font-weight: 700;
}
.p-businessarea__title .en {
  display: block;
  font-family: "urw-din", sans-serif;
  font-size: 0.6155em;
}
.p-businessarea__desc {
  font-size: clamp(0.75rem, 0.28vw + 10.9px, 0.9375rem);
  max-width: 200px;
}
@media screen and (min-width: 768px) {
  .p-businessarea__desc {
    max-width: clamp(200px, 7.44vw + 142.9px, 250px);
  }
}

/*project
-----------------------------------------------------*/
.p-project__main {
  margin-bottom: 150px;
  position: relative;
}
.p-project__main-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  overflow: hidden;
  pointer-events: none;
}
.p-project__main-bg::before {
  content: "";
  width: 100%;
  height: 50vw;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  margin: auto;
  background: url(../img/project/contour.svg) no-repeat right 150% top/130% auto;
  -webkit-transform: scale(1.1) rotate(3deg);
          transform: scale(1.1) rotate(3deg);
  -webkit-transform-origin: center 70%;
          transform-origin: center 70%;
  -webkit-transition: -webkit-transform 1.5s;
  transition: -webkit-transform 1.5s;
  transition: transform 1.5s;
  transition: transform 1.5s, -webkit-transform 1.5s;
}
@media screen and (min-width: 768px) {
  .p-project__main-bg::before {
    background-size: 80% auto;
    background-position: right top;
  }
}
.-loaded .p-project__main-bg::before {
  -webkit-transform: scale(1) rotate(0deg);
          transform: scale(1) rotate(0deg);
}

.p-project__single-main {
  background: url(../img/project/single-contour.svg) no-repeat left 250px/30% auto;
}
@media screen and (min-width: 768px) {
  .p-project__single-main {
    background-size: 30% auto;
    background-position: left 30vh;
  }
}

.p-project__catnavi {
  margin-top: 4em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  font-size: clamp(0.8125rem, 0.09vw + 12.7px, 0.875rem);
}
.p-project__catnavi-item {
  margin-right: 1.5em;
  margin-bottom: 1em;
}
.p-project__catnavi .-current {
  position: relative;
}
.p-project__catnavi .-current::after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  display: block;
  margin: 0 auto;
  background: url(../img/common/symbol.svg) no-repeat center center/contain;
}

.p-project__list-item {
  margin-top: 70px;
}
@media screen and (min-width: 768px) {
  .p-project__list-item {
    margin: 0;
  }
}

.p-project__card {
  display: -ms-grid;
  display: grid;
  gap: clamp(16px, 7.51vw - 12.2px, 96px);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-project__card {
    -ms-grid-columns: 28% minmax(0, 1fr);
    grid-template-columns: 28% minmax(0, 1fr);
    padding: 70px 0;
    border-bottom: 1px solid #CCC;
  }
  .p-project__card::after {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    background: #333;
    position: absolute;
    left: 0;
    bottom: -1px;
    -webkit-transform-origin: right center;
            transform-origin: right center;
    margin: auto;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  .p-project__card:hover::after {
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .p-project__list-item:first-of-type .p-project__card {
    -ms-grid-columns: 42% minmax(0, 1fr);
    grid-template-columns: 42% minmax(0, 1fr);
  }
}
.p-project__card-img {
  border: 1px solid #CCC;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.p-project__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-project__card-text {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-project__card-text {
    width: 100%;
    margin: 0;
  }
}
.p-project__card-client {
  font-size: 0.875rem;
  margin-bottom: 1em;
}
.p-project__card-title {
  font-size: clamp(0.9375rem, 1.41vw + 9.7px, 1.875rem);
  font-weight: bold;
  margin-bottom: 0.7em;
  line-height: 1.5;
}
.p-project__card-tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  font-size: 0.75rem;
  font-weight: 400;
  color: #666;
  line-height: 1.5;
}
.p-project__card-tags > li {
  margin: 0 10px 5px 0;
}

.p-project__post {
  padding-bottom: clamp(100px, 8.92vw + 66.5px, 195px);
}
@media screen and (min-width: 960px) {
  .p-project__post {
    display: -ms-grid;
    display: grid;
        grid-template-areas: "title title" "meta thumbnail" "meta content";
    -ms-grid-columns: 25% 2rem minmax(0, 1fr);
    grid-template-columns: 25% minmax(0, 1fr);
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
}
@media screen and (min-width: 960px) {
  .p-project__post-head {
    display: contents;
  }
}
.p-project__post-title {
  font-size: clamp(1.25rem, 1.88vw + 12.9px, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1em;
}
@media screen and (min-width: 960px) {
  .p-project__post-title {
    max-width: 970px;
    width: 80%;
    grid-area: title;
    margin-bottom: 2em;
  }
}
.p-project__post-meta {
  margin-bottom: 2rem;
}
@media screen and (min-width: 960px) {
  .p-project__post-meta {
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start;
    position: -webkit-sticky;
    position: sticky;
    top: 200px;
    margin: 0;
  }
}
.p-project__post-meta > dd {
  padding-left: 1rem;
}
.p-project__post-meta > dd:not(:last-of-type) {
  margin-bottom: 2rem;
}
.p-project__post-metatitle {
  font-size: 0.625rem;
  font-family: "urw-din", sans-serif;
  font-weight: 400;
  color: #999;
  line-height: 1.5;
  margin-bottom: 0.3em;
}
.p-project__post-tag {
  font-size: clamp(0.625rem, 0.19vw + 9.3px, 0.75rem);
  color: #666;
}
.p-project__post-clientname {
  font-size: clamp(1.25rem, 0.94vw + 16.5px, 1.875rem);
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
  .p-project__post-body {
    display: contents;
  }
}
@media screen and (min-width: 960px) {
  .p-project__post-thumbnail {
    grid-area: thumbnail;
  }
}
@media screen and (min-width: 960px) {
  .p-project__post-content {
    grid-area: content;
  }
}

.p-project-section {
  margin-top: clamp(50px, 4.69vw + 32.4px, 100px);
}
@media screen and (min-width: 768px) {
  .p-project-section {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 150px minmax(0, 1fr);
    grid-template-columns: 150px minmax(0, 1fr);
  }
}
.p-project-section__title {
  font-family: "urw-din", sans-serif;
  font-size: clamp(0.875rem, 0.19vw + 13.3px, 1rem);
  color: #999;
}
.p-project-section__body {
  width: 94%;
  margin: 2em 0 0 auto;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-project-section__body {
    width: 100%;
    margin: 0;
  }
}
.p-project-section__data {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: clamp(130px, 9.39vw + 94.8px, 230px) minmax(0, 1fr);
  grid-template-columns: clamp(130px, 9.39vw + 94.8px, 230px) minmax(0, 1fr);
  font-size: clamp(0.75rem, 0.38vw + 10.6px, 1rem);
}
.p-project-section__data-item, .p-project-section__data-conts {
  border-bottom: 1px solid #CCC;
  padding: 1em 0;
}
.p-project-section__data-item:first-of-type, .p-project-section__data-conts:first-of-type {
  border-top: 1px solid #CCC;
}
.p-project-section__data-conts {
  padding-left: 1em;
  word-break: break-all;
}

.p-project-gallery {
  margin-top: clamp(50px, 4.69vw + 32.4px, 100px);
}
.p-project-gallery img + img {
  margin-top: clamp(20px, 3.76vw + 5.9px, 60px);
}

.p-project__interview {
  display: -ms-grid;
  display: grid;
  gap: clamp(16px, 0.94vw + 12.5px, 26px);
}
@media screen and (min-width: 768px) {
  .p-project__interview {
    -ms-grid-columns: 28% minmax(0, 1fr);
    grid-template-columns: 28% minmax(0, 1fr);
  }
}
.p-project__interview-title {
  font-size: clamp(1rem, 0.75vw + 13.2px, 1.5rem);
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-project__interview-title {
    margin-top: -0.25em;
  }
}
.p-project__interview-title::after {
  content: "";
  width: 0.7em;
  height: 0.5em;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5em;
  background: url(../img/common/external-dark.svg) no-repeat center center/contain;
}
.p-project__interview-img {
  margin: 0 !important;
}

/*news
-----------------------------------------------------*/
.p-news-card__thumbnail {
  margin-bottom: 1rem;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-news-card__title {
  font-size: 1.25rem;
}
.p-news-card__date {
  font-size: 0.8rem;
}
.p-news-card__info {
  border-top: 1px solid;
  border-bottom: 1px solid;
  padding: 1em 0;
  margin-top: 1em;
  font-size: 0.8rem;
}
.p-news-card__bottom-link {
  margin: 5em auto 0;
  text-align: center;
  width: 300px;
  display: block;
}

.p-news-list {
  display: -ms-grid;
  display: grid;
  gap: 2rem;
  -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
  grid-template-columns: repeat(3, 1fr);
}

/*note
-----------------------------------------------------*/
@media screen and (min-width: 960px) {
  .p-note {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 230px minmax(0, 1fr);
    grid-template-columns: 230px minmax(0, 1fr);
  }
}
.p-note__title {
  margin-bottom: 38px;
}
@media screen and (min-width: 960px) {
  .p-note__title {
    margin: 0;
  }
}

.p-note__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media screen and (min-width: 768px) {
  .p-note__item {
    display: -ms-grid;
    display: grid;
        grid-template-areas: "date img text";
    -ms-grid-columns: 20% 1.5rem 25% 1.5rem minmax(0, 1fr);
    grid-template-columns: 20% 25% minmax(0, 1fr);
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.5rem;
  }
  .p-note__item > .p-about__profile-text {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .p-note__item > .p-about__profile-img {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}
.p-note__item-title {
  font-size: clamp(1rem, 1.31vw + 11.1px, 1.875rem);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
.p-note__item-title::after {
  content: "";
  width: 0.7em;
  height: 0.5em;
  background: url(../img/common/external-dark.svg) no-repeat center center/contain;
  display: inline-block;
  margin-left: 0.3em;
  vertical-align: middle;
}
.p-note__item-date {
  font-family: "urw-din", sans-serif;
  font-size: clamp(0.6875rem, 0.38vw + 9.6px, 0.9375rem);
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .p-note__item-date {
    grid-area: date;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-note__item-date::after {
    content: "";
    height: 1px;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    background: #CCC;
    display: block;
    margin-left: 1em;
  }
}
.p-note__item-body {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.p-note__item-img {
  margin-bottom: 1em;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
}
@media screen and (min-width: 768px) {
  .p-note__item-img {
    grid-area: img;
  }
}
.p-note__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-note__item-text {
    grid-area: text;
  }
}
@media screen and (min-width: 960px){
  .p-about__profile-text {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .p-about__profile-img {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .p-project__post-title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .p-project__post > .p-project__post-title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .p-project__post-thumbnail {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
  .p-project__post-content {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .p-note__item-img {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .p-note__item-text {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
}
@media screen and (min-width: 768px){
  .p-note__item-date {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .p-note__item > .p-note__item-img {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .p-note__item > .p-note__item-text {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
}

.p-note__more {
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/*post
-----------------------------------------------------*/
.p-post-head {
  margin-bottom: 1.5em;
}
.p-post-head__title {
  font-size: 2rem;
  font-weight: bold;
}
.p-post-head__date {
  font-size: 0.8rem;
}

.p-post-body * {
  max-width: 100%;
}
.p-post-body h2 {
  font-size: clamp(1.125rem, 0.94vw + 14.5px, 1.75rem);
  font-weight: bold;
  margin-bottom: 0.5em;
}
.p-post-body h3 {
  font-size: clamp(1rem, 0.75vw + 13.2px, 1.5rem);
  font-weight: bold;
  margin-bottom: 0.5em;
}
.p-post-body p {
  margin-bottom: 1.5em;
}
.p-post-body img {
  margin-bottom: 2em;
  max-width: 100%;
}
.p-post-body .wp-caption {
  margin-bottom: 2em;
}
.p-post-body .wp-caption img {
  margin-bottom: 0.5em;
}
.p-post-body .wp-caption-text {
  font-size: clamp(0.8125rem, 0.09vw + 12.7px, 0.875rem);
}
.p-post-body ul {
  margin-bottom: 2em;
}
.p-post-body ul > li {
  padding-left: 1em;
}
.p-post-body ul > li::before {
  content: "・";
  width: 1em;
  display: inline-block;
  margin-left: -1em;
}
.p-post-body .project-process {
  counter-reset: listnum;
}
.p-post-body .project-process .title {
  counter-increment: listnum;
}
.p-post-body .project-process .title::before {
  content: counter(listnum) ".";
}

/*form
-----------------------------------------------------*/
.p-form__item {
  margin-bottom: 2em;
}
.p-form__label {
  font-size: clamp(0.9375rem, 0.28vw + 13.9px, 1.125rem);
  margin-bottom: 0.5em;
  display: block;
  font-weight: 500;
}
.p-form input[type=text],
.p-form input[type=email],
.p-form input[type=number],
.p-form input[type=tel],
.p-form select,
.p-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  font-weight: inherit;
  border: none;
  padding: 1em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit;
  border-radius: 5px;
}
.p-form select {
  background: #FFF url(../img/common/icon-down.svg) no-repeat right 1em top 1.5em/0.8em auto;
  line-height: 1.5;
}
.p-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item,
.p-form .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
  display: block;
}
.p-form .wpcf7-form-control.wpcf7-radio input,
.p-form .wpcf7-form-control.wpcf7-checkbox input {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
}
.p-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label,
.p-form .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item-label {
  padding-left: 2.5em;
  display: block;
  margin-bottom: 0.5em;
}
.p-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label::before,
.p-form .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item-label::before {
  content: "";
  width: 1.5em;
  height: 1.5em;
  display: inline-block;
  border: none;
  background: #FFF;
  vertical-align: text-bottom;
  margin-right: 1em;
  margin-left: -2em;
}
.p-form .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item-label::before {
  background: url(../img/common/check-off.svg) no-repeat center center/100% 100%;
}
.p-form .wpcf7-form-control.wpcf7-checkbox input:checked + .wpcf7-list-item-label::before {
  background-image: url(../img/common/check-on.svg);
}
.p-form .wpcf7-form-control.wpcf7-checkbox input:focus + .wpcf7-list-item-label::before {
  outline: auto;
  outline: auto -webkit-focus-ring-color; /* for Chrome */
}
.p-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label::before {
  background: url(../img/common/radio-off.svg) no-repeat center center/100% 100%;
}
.p-form .wpcf7-form-control.wpcf7-radio input:checked + .wpcf7-list-item-label::before {
  background-image: url(../img/common/radio-on.svg);
}
.p-form .wpcf7-form-control.wpcf7-radio input:focus + .wpcf7-list-item-label::before {
  outline: auto;
  outline: auto -webkit-focus-ring-color; /* for Chrome */
}
.p-form .wpcf7-submit {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: clamp(1rem, 0.38vw + 14.6px, 1.25rem);
  font-weight: 700;
  border: none;
  width: 100%;
  background: #333;
  color: #FFF;
  text-align: center;
  padding: 1em 2em;
  margin: 1em auto 0;
  border-radius: 5px;
  display: block;
}
.p-form .wpcf7-submit:disabled {
  background: #C4CBD1;
}

.privacy-check {
  border-top: 1px solid #CCC;
  padding: 1.5rem 0;
}

.cf7-cf-turnstile {
  text-align: center;
}

/*footer
-----------------------------------------------------*/
.p-footer {
  background: url(../img/common/foot-contour.svg) no-repeat left bottom/clamp(239px, 10.33vw + 200.3px, 349px) auto;
}
.p-footer__address-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.p-footer__address-text {
  font-size: clamp(0.875rem, 0.09vw + 13.7px, 0.9375rem);
  line-height: 1.5;
  margin-bottom: 0.5em;
}
.p-footer__menu {
  font-size: clamp(0.75rem, 0.28vw + 10.9px, 0.9375rem);
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -ms-grid-rows: minmax(0, 1fr) 0.5em minmax(0, 1fr) 0.5em minmax(0, 1fr) 0.5em minmax(0, 1fr) 0.5em minmax(0, 1fr);
  grid-template-rows: repeat(5, minmax(0, 1fr));
  gap: 0.5em 3em;
}
.p-footer__menu a {
  padding: 0.5em 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-footer__menu a {
    padding: 0;
  }
}
.p-footer__menu-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-footer__menu-column img {
  width: auto;
  height: 0.6em;
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.p-footer__menu-privacy {
  font-size: 0.75rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-footer__menu-privacy {
    line-height: 2.5;
  }
}
.p-footer__logo {
  width: 90%;
  max-width: 320px;
  display: block;
  margin-left: 2px;
}
@media screen and (min-width: 768px) {
  .p-footer__info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.p-footer__copyright {
  display: block;
  text-align: right;
  font-size: 0.75rem;
  margin-top: 5em;
  white-space: nowrap;
  font-family: "urw-din", sans-serif;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    margin-left: 1em;
  }
}
.p-footer__copy {
  margin-top: 120px;
  width: clamp(172px, 7.51vw + 143.8px, 252px);
}
@media screen and (min-width: 768px) {
  .p-footer__copy {
    margin-top: 0;
  }
}
.p-footer__copy img {
  display: block;
  width: 100%;
}

/*service
-----------------------------------------------------*/
.p-service__main {
  position: relative;
}
.p-service__main-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  pointer-events: none;
}
.p-service__main-bg::before {
  content: "";
  width: 100%;
  height: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  background: url(../img/service/contour.svg) no-repeat right 4em/100% auto;
  -webkit-transform: scale(1.05) rotate(-3deg);
          transform: scale(1.05) rotate(-3deg);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}
@media screen and (min-width: 768px) {
  .p-service__main-bg::before {
    background-position: right top;
    background-size: 80% auto;
  }
}
.-loaded .p-service__main-bg::before {
  -webkit-transform: scale(1) rotate(0deg);
          transform: scale(1) rotate(0deg);
}

.p-service__wrapper {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-service__wrapper .sky {
    width: 45%;
    height: 100vh;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    background: url(../img/service/sky.jpg) no-repeat center center/100% 100%;
    display: block;
  }
}
.p-service__wrapper .sky .standbyyou {
  position: absolute;
  width: clamp(80px, 2.82vw + 69.4px, 110px);
  z-index: 2;
  top: 2rem;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-service__wrapper .sky .standbyyou {
    top: 2rem;
    right: 2rem;
    left: auto;
  }
}

.p-service__text {
  line-height: 2;
  font-size: clamp(0.875rem, 0.56vw + 11.9px, 1.25rem);
}
.p-service__needs {
  font-size: clamp(0.875rem, 0.38vw + 12.6px, 1.125rem);
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .p-service__layout.-first {
    margin-top: -100vh;
  }
}
.p-service__layout-outline {
  text-align: center;
}
.p-service__layout-outline.-first {
  background: url(../img/service/sky.jpg) no-repeat center center/100% 100%;
  padding: 10rem 0 3rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-service__layout-outline.-first {
    background: none;
    padding: 0;
    margin: 0;
    min-height: 500px;
  }
}
.p-service__layout-outline.-first img {
  mix-blend-mode: multiply;
}
@media screen and (min-width: 768px) {
  .p-service__layout-outline {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100vh;
  }
}

.p-service-title-trade {
  font-weight: 500;
  font-size: 0.6em;
  margin-top: -0.5em;
  vertical-align: super;
}

/*workflow
-----------------------------------------------------*/
.p-workflow__list {
  counter-reset: listnum;
  margin-top: 30px;
}
.p-workflow__list-item {
  counter-increment: listnum;
}
.p-workflow__list-item:not(:last-child) {
  margin-bottom: clamp(43px, -0.66vw + 52.5px, 50px);
}
.p-workflow__list-title {
  font-size: clamp(1.125rem, 0.66vw + 15.5px, 1.5625rem);
  font-weight: 700;
  border-bottom: 1px solid #666;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
.p-workflow__list-title::before {
  content: counter(listnum, decimal-leading-zero);
  font-size: 0.6em;
  margin-right: 0.5em;
  font-family: "urw-din", sans-serif;
  font-weight: 400;
  vertical-align: text-top;
}
.p-workflow__list-text {
  font-size: clamp(0.875rem, 0.19vw + 13.3px, 1rem);
}
.p-workflow__list-conts {
  display: -ms-grid;
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-workflow__list-conts {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/*cv
-----------------------------------------------------*/
.p-recruit__main {
  position: relative;
}
.p-recruit__main-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  overflow: hidden;
  pointer-events: none;
}
.p-recruit__main-bg::before {
  content: "";
  width: 100%;
  height: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  -webkit-transform: scale(1.1) rotate(-3deg);
          transform: scale(1.1) rotate(-3deg);
  -webkit-transform-origin: center 30%;
          transform-origin: center 30%;
  -webkit-transition: -webkit-transform 1.5s;
  transition: -webkit-transform 1.5s;
  transition: transform 1.5s;
  transition: transform 1.5s, -webkit-transform 1.5s;
  background: url(../img/recruit/contour.svg) no-repeat left -30% top 10vw/120% auto;
}
@media screen and (min-width: 768px) {
  .p-recruit__main-bg::before {
    background-size: 80% auto;
    background-position: right top 100px;
  }
}
.-loaded .p-recruit__main-bg::before {
  -webkit-transform: scale(1) rotate(0deg);
          transform: scale(1) rotate(0deg);
}

@media screen and (min-width: 768px) {
  .p-recruit__lead {
    margin-bottom: 100px;
  }
}
.p-recruit__lead-text {
  font-size: clamp(0.875rem, 0.19vw + 13.3px, 1rem);
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-recruit__lead-text {
    font-size: clamp(1rem, 0.38vw + 14.6px, 1.25rem);
  }
}
.p-recruit__lead-img {
  width: 100%;
  height: 80vw;
  position: relative;
  margin-bottom: 50vw;
}
@media screen and (min-width: 768px) {
  .p-recruit__lead-img {
    height: calc(100% - min(22vw, 163px));
    margin-bottom: 0;
  }
}
.p-recruit__lead-img .sky {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-recruit__lead-img .sky img,
.p-recruit__lead-img .sky video {
  width: 100%;
  height: 150%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-recruit__lead-img .img {
  width: 50%;
  max-width: 326px;
  margin: 0 auto;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
.p-recruit__lead-img .img img {
  width: 100%;
}
.p-recruit__lead-img::after {
  content: "";
  width: 50%;
  max-width: 326px;
  aspect-ratio: 1/1;
  position: absolute;
  top: calc(100% - min(25vw, 126px));
  left: 0;
  right: 0;
  margin: auto;
  background: #D9E5EF;
  -webkit-transform: translate(10%, 5%) rotate(3deg);
          transform: translate(10%, 5%) rotate(3deg);
  mix-blend-mode: multiply;
}
@media screen and (min-width: 768px) {
  .p-recruit__lead-img::after {
    top: calc(100% - min(11vw, 126px));
    -webkit-transform: translate(10%, 2%) rotate(3deg);
            transform: translate(10%, 2%) rotate(3deg);
  }
}

.p-recruit__merit-list {
  counter-reset: listnum;
  display: -ms-grid;
  display: grid;
  gap: clamp(32px, 3vw + 20.7px, 64px);
  margin-top: clamp(30px, 3.76vw + 15.9px, 70px);
  font-size: clamp(0.875rem, 0.19vw + 13.3px, 1rem);
}
@media screen and (min-width: 768px) {
  .p-recruit__merit-list {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1100px) {
  .p-recruit__merit-list {
    -ms-grid-columns: (minmax(0, 1fr))[4];
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.p-recruit__merit-item {
  counter-increment: listnum;
  padding-left: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-recruit__merit-item {
    padding: 0;
  }
}
.p-recruit__merit-item::before {
  content: counter(listnum, decimal-leading-zero);
  font-family: "urw-din", sans-serif;
  color: #666666;
  opacity: 0.5;
  position: absolute;
  left: 0;
  top: 0;
  margin: auto;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-recruit__merit-item::before {
    font-size: clamp(2rem, 2.38vw + 13.7px, 3rem);
    display: block;
    position: relative;
  }
}
.p-recruit__merit-title {
  font-weight: bold;
  font-size: clamp(1rem, 0.38vw + 14.6px, 1.25rem);
  margin-bottom: 1em;
}

.p-recruit__fromnow {
  margin-top: clamp(30px, 3.76vw + 15.9px, 70px);
}
@media screen and (min-width: 768px) {
  .p-recruit__fromnow {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit__fromnow-img {
    width: 50%;
  }
}
.p-recruit__fromnow-text {
  margin-top: 2em;
  font-size: clamp(0.875rem, 0.56vw + 11.9px, 1.25rem);
}
@media screen and (min-width: 768px) {
  .p-recruit__fromnow-text {
    margin: 0;
    width: 45%;
  }
}
.p-recruit__fromnow-text p:not(:last-child) {
  margin-bottom: 1.5em;
}

.p-recruit__workstyle-head {
  font-size: clamp(0.875rem, 0.19vw + 13.3px, 1rem);
}
@media screen and (min-width: 768px) {
  .p-recruit__workstyle-head {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(0, 1fr) 50px minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px;
  }
}
.p-recruit__workstyle-detail {
  display: -ms-grid;
  display: grid;
  gap: clamp(60px, 3.76vw + 45.9px, 100px) 50px;
  margin-top: clamp(60px, 3.76vw + 45.9px, 100px);
  font-size: clamp(0.875rem, 0.19vw + 13.3px, 1rem);
}
@media screen and (min-width: 768px) {
  .p-recruit__workstyle-detail {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.p-recruit__cv-form .c-button--block {
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-recruit__cv-wantedly {
  margin: 2em auto 0;
  text-align: center;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-recruit__cv-wantedly {
    margin: 3em auto 0;
  }
  .p-recruit__cv-wantedly img {
    width: 179px;
  }
}

/*newsletter
-----------------------------------------------------*/
.p-newsletter__backnumber-title {
  font-size: clamp(0.75rem, 0.38vw + 10.6px, 1rem);
  font-family: "urw-din", sans-serif;
  font-weight: bold;
}
.p-newsletter__backnumber-lists {
  margin-top: clamp(22px, 2.63vw + 12.1px, 50px);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .p-newsletter__backnumber-lists {
    -ms-grid-columns: (minmax(0, 1fr))[3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1280px) {
  .p-newsletter__backnumber-lists {
    -ms-grid-columns: (minmax(0, 1fr))[4];
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.p-newsletter__backnumber-year {
  font-size: clamp(1.125rem, 0.56vw + 15.9px, 1.5rem);
  font-weight: bold;
  margin-bottom: 1em;
}

/*footer
-----------------------------------------------------*/
.p-sns__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(0.75rem, 0.38vw + 10.6px, 1rem);
}
.p-sns__list-item:not(:last-child) {
  margin-right: 2em;
}
.p-sns__list .icon {
  width: auto;
  height: 2em;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-sns__list .icon {
    height: 20px;
  }
}
.p-sns__list .icon.note {
  height: 1.5em;
}
@media screen and (min-width: 768px) {
  .p-sns__list .icon.note {
    height: 12px;
  }
}

/*cv
-----------------------------------------------------*/
.p-cv {
  background: #5F5F5F;
  padding: clamp(25px, 3.31vw + 12.6px, 38px) 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-cv {
    padding: clamp(38px, 8.48vw - 27.1px, 95px) 0;
  }
}
.p-cv__inner {
  container-type: inline-size;
  width: clamp(350px, 105.35vw - 45.1px, 1472px);
  max-width: 95%;
  margin: 0 0 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 960px) {
  .p-cv__inner {
    width: calc(100% - clamp(80px, 4.17vw + 40px, 100px));
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto 1px auto;
        grid-template-areas: "contact download" "recruit recruit";
    -ms-grid-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
  }
}
.p-cv__button {
  display: block;
  margin-bottom: 1px;
  padding: 32px 25px 25px 50px;
}
@container (min-width: 600px) {
  .p-cv__button {
    padding-right: 10em;
    position: relative;
  }
}
@media screen and (min-width: 960px) {
  .p-cv__button {
    padding: 40px calc(12% + 5rem) 40px clamp(40px, 7.44vw - 17.1px, 90px);
  }
}
.p-cv__button .c-title--section {
  margin-left: -1em;
}
.p-cv__arrow {
  margin: 0.5em 0 0 auto;
  display: block;
  background: #333;
  width: clamp(55px, 5.16vw + 35.6px, 110px);
  height: clamp(55px, 5.16vw + 35.6px, 110px);
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@container (min-width: 600px) {
  .p-cv__arrow {
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 5rem;
    height: 5rem;
  }
}
@container (min-width: 800px) {
  .p-cv__arrow {
    right: 6%;
  }
}
@media (hover: hover) {
  .p-cv .p-cv__button:hover .p-cv__arrow {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .p-cv .p-cv__button:hover .p-cv__arrow .arrow {
    -webkit-animation: arrow 0.3s ease-out;
            animation: arrow 0.3s ease-out;
  }
}
@media screen and (min-width: 960px) {
  .p-cv__contact {
    grid-area: contact;
  }
}
@media screen and (min-width: 960px) {
  .p-cv__download {
    grid-area: download;
  }
}
.p-cv__recruit {
  margin-top: 6px;
}
@media screen and (min-width: 960px) {
  .p-cv__recruit {
    grid-area: recruit;
    margin-top: 10px;
  }
}
@media screen and (min-width: 960px){
  .p-cv__contact {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .p-cv__download {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .p-cv__recruit {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
}
@container (min-width: 800px) {
  .p-cv__recruit {
    padding-left: clamp(40px, 7.44vw - 17.1px, 90px);
    padding-right: clamp(40px, 7.44vw - 17.1px, 90px);
    padding-bottom: 60px;
  }
}
@container (min-width: 800px) {
  .p-cv__recruit-conts {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(0, 1fr) 5% clamp(180px, 14.58vw + 68px, 278px) 5% minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr) clamp(180px, 14.58vw + 68px, 278px) minmax(0, 1fr);
    gap: 5%;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-cv__recruit-img {
  width: 55%;
  margin: 1em 25% 3em 20%;
  position: relative;
  z-index: 2;
}
@container (min-width: 800px) {
  .p-cv__recruit-img {
    width: 100%;
    margin: 0 0 0 -10%;
  }
}
.p-cv__recruit-img::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: #D9E5EF url(../img/common/texture.jpg);
  background-blend-mode: multiply;
  position: absolute;
  left: 10%;
  top: 8%;
  margin: auto;
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-cv__recruit-img::after {
    background-size: 75px 75px;
  }
}
.p-cv__recruit-links {
  width: calc(100% + 25px);
  margin-left: -25px;
}
@container (min-width: 800px) {
  .p-cv__recruit-links {
    width: 100%;
    margin: 0;
  }
}
.p-cv__recruit-formlink {
  margin: 0 auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-cv__recruit-wantedly {
  display: block;
  width: clamp(151px, 2.63vw + 141.1px, 179px);
  margin: clamp(26px, 1.41vw + 20.7px, 41px) auto clamp(26px, 1.41vw + 20.7px, 41px);
}
@media screen and (min-width: 768px) {
  .p-cv__recruit-wantedly {
    margin-bottom: 0;
  }
}
.p-cv__recruit-wantedly img {
  width: 100%;
}
.p-cv__desc {
  font-size: clamp(0.875rem, 0.19vw + 13.3px, 1rem);
  margin-top: 1em;
  font-weight: 500;
}
.p-cv__canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  inset: 0;
  margin: auto;
  opacity: 0.3;
}

/*
  Responsive
-----------------------------------------------------*/
@media screen and (min-width: 768px) {
  .u-sp-visible {
    display: none;
  }
}

@media screen and (min-width: 960px) {
  .u-tab-visible {
    display: none;
  }
}

.u-sp-hidden {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-sp-hidden {
    display: initial;
  }
}

.u-tab-hidden {
  display: none;
}
@media screen and (min-width: 960px) {
  .u-tab-hidden {
    display: initial;
  }
}

.u-br-wrap {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/*
  Screen Reader Text
-----------------------------------------------------*/
.screen-reader-text {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
}

/*
  Screen Reader Text
-----------------------------------------------------*/
.js-inview-contents.inview-show {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.js-inview-contents.inview-show.inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.5s 0.3s, -webkit-transform 0.5s 0.3s;
  transition: opacity 0.5s 0.3s, -webkit-transform 0.5s 0.3s;
  transition: opacity 0.5s 0.3s, transform 0.5s 0.3s;
  transition: opacity 0.5s 0.3s, transform 0.5s 0.3s, -webkit-transform 0.5s 0.3s;
}