@charset "utf-8";

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    border: 0;
    outline: 0;
}
header,
footer,
article,
section,
aside,
hgroup,
nav,
menu,
figure,
figcaption,
time {
    display: block;
}
li {
    list-style: none;
}
ol li {
    list-style: decimal;
}
img {
    max-width: 100%;
    height: auto;
    font-size: 0;
    line-height: 0;
    vertical-align: top;
    border: 0;
}
table {
    border-spacing: 0;
    border-collapse: collapse;
}
caption,
th {
    text-align: left;
}
hr {
    display: block;
    height: 1px;
    margin: 1em 0;
    padding: 0;

    border: 0;
    border-top: 1px solid #ccc;
}
input,
select {
    vertical-align: middle;
}
input,
textarea {
    margin: 0;
    padding: 0;
}
/*----------------------------------------
	Common
----------------------------------------*/
html {
    width: 100%;
    font-size: 62.5%;
}
body {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","Osaka","ＭＳ Ｐゴシック", "MS P Gothic",Verdana,Arial, Helvetica, sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: #282B2B;
    position:relative;
    z-index: 0;
    line-height: 2;
    letter-spacing: .03em;
    -webkit-font-feature-settings: "palt" 1;
    font-feature-settings: "palt" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
    height: 100%;
}
a {
    color: #282B2B;
    outline: none;
    overflow: hidden;
    text-decoration: underline;
}
a:hover {
    color: #282B2B;
    text-decoration: none;
}
a[href^="tel:"] {
	cursor: default;
}
.show-mobile-inline,
.show-mobile {
    display: none;
}
.hide-mobile {
    display: block;
}
.hide-mobile-inline {
	display: inline-block;
}
.br-mobile {
    display: none !important;
}
@media (min-width: 768px) and (max-width: 1439px){

}
@media only screen and (max-width: 767px) {
	.show-mobile {
		display: block;
	}
	.show-mobile-inline {
		display: inline-block;
	}
	.hide-mobile {
		display: none;
	}
	.hide-mobile-inline {
		display: none;
	}
    .br-mobile {
        display: block !important;
    }
    main {
        overflow-x: hidden;
    }
}
@media only screen and (max-width: 999px) {
    body {
        font-size: 1.5rem;
    }
}
@media only screen and (max-width: 767px) {
    body {
        font-size: 1.4rem;
    }
}
/*----------------------------------------
	Animation
----------------------------------------*/
.fadeIn {
    transition: opacity 1s .1s;
    transition: transform 1s cubic-bezier(.4, 0, .2, 1) .1s, opacity 1s .1s;
    transform: translateY(30px);
    opacity: 0;
}
.fadeIn.inview {
    transform: translateY(0);
    opacity: 1;
}
.blurIn {
    animation-name: blurInAnime;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    opacity: 0;
}
@keyframes blurInAnime {
    0% {
        filter:blur(15px);
        transform:scale(1.02);
        opacity:0
    }
    100% {
        filter:blur(0);
        transform:scale(1);
        opacity:1
    }
}
.maskIn {
    color: transparent;
    /* display: inline-block; */
    max-width: fit-content;
    overflow: hidden;
    position: relative;
    transition: color 0ms 450ms;
}
.maskIn::after {
    background: #000;
    bottom: 0;
    content: '';
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(-101%, 0)
}
.maskIn.inview {
    color: inherit;
}
.maskIn.inview::after {
    animation: maskIn 1.2s cubic-bezier(0.8, 0, 0.170, 1);
}
@keyframes maskIn {
    0% {
        transform: translate(-101%, 0)
    }
    40%, 60% {
        transform: translate(0, 0)
    }
    100% {
        transform: translate(101%, 0)
    }
}
/*----------------------------------------
	Misc
----------------------------------------*/
.inner {
    width: 91.667vw;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}
.full-width {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.t-blue {
    color: #01b2de;
}
.f-bold {
    font-weight: bold;
}
@media only screen and (max-width: 767px) {
    .inner {
        width: 86.666vw;
    }
}
/*----------------------------------------
	Components
----------------------------------------*/
.c-button {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #999;
    border-radius: 40px;
    line-height: 1;
    text-decoration: none;
    padding: 1.2rem 3.4rem 1.6rem 3.6rem;
    font-weight: bold;
    max-width: fit-content;
    height: 6.2rem;
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: all .5s cubic-bezier(0.43, 0.05, 0.17, 1);
}
.c-button:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    width: 0%;
    height: 0;
    padding-bottom: 0;
    border-radius: 50%;
    background: #000;
    transition: all .5s cubic-bezier(0.43, 0.05, 0.17, 1);
}
.c-button:hover {
    color: #fff !important;
    border: 1px solid #000;
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 20%);
}
.c-button:hover:before {
    width: 100%;
    padding-bottom: 100%;
}
.c-button .emoji {
    margin-left: .6rem;
    font-size: 2.2rem;
}
.c-more-block {
    text-align: center;
    margin-top: 4rem;
}
.c-more-block .c-button {
    margin: 0 auto;
}
.c-linelink {
    text-decoration: none;
    will-change: background-size;
    background: url(../img/common/line.png) no-repeat left bottom;
    background-size: 100% 1px;
}
.c-linelink:hover {
    animation: linelink 1s cubic-bezier(0.43, 0.05, 0.17, 1) 0s;
}
@keyframes linelink {
    0%{
        background-position:right bottom;background-size:100% 1px
    }
    50%{
        background-position:right bottom;background-size:0 1px
    }
    51%{
        background-position:left bottom;background-size:0 1px
    }
    100%{
        background-position:left bottom;background-size:100% 1px
    }
}
.c-table {
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.c-table td {
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    padding: 1.8rem 1.5rem;
}
.c-input {
    width: 100%;
    padding: 2rem;
    transition: all .3s ease;
    color: #757575;
    font-size: 1.5rem;
    border: 1px solid #ebebeb;
    border-radius: 4px;
    outline: none;
    background-color: #ebebeb;
    appearance: none;
}
.c-textarea {
    font-size: 1.5rem;
    box-sizing: border-box;
    width: 100%;
    height: 360px;
    padding: 2rem;
    transition: all .3s ease;
    color: #757575;
    border: 1px solid #ebebeb;
    border-radius: 4px;
    outline: none;
    background-color: #ebebeb;
    appearance: none;
}
.c-page-heading {
    margin: 8rem auto 11rem auto;
}
.c-page-heading h1,
.c-page-heading h2 {
    display: flex;
    flex-direction: column;
}
.c-page-heading h1 .en,
.c-page-heading h2 .en {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10rem;
    letter-spacing: 0;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 1rem;
}
.c-page-heading h1 .jp,
.c-page-heading h2 .jp {
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1;
}
.c-bread-crumb {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
}
.c-bread-crumb ul {
    display: flex;
}
.c-bread-crumb ul li {
    position: relative;
    flex: 0 0 auto;
    list-style: none;
}
.c-bread-crumb ul li:not(:first-child):before {
    position: absolute;
    top: 50%;
    display: block;
    content: '・';
    transform: translate(-50%, -50%);
}
.c-bread-crumb ul li a {
    padding-right: 1.4rem;
    text-decoration: none;
}
.c-bread-crumb ul li:not(:first-child) a {
    padding-left: 1.4rem;
}
.c-bread-crumb ul li span {
    color: #929292;
    padding-left: 1.4rem;
}
.c-article:not(:last-of-type) {
    padding-bottom: 10rem;
}
.c-article-heading {
    display: flex;
    margin: 8rem auto 10rem auto;
}
.c-article-heading .title {
    word-break: break-all;
    flex: 1;
    font-size: 4.4rem;
    line-height: 1.3;
    margin-right: 4rem;
}
.c-article-heading .meta {
    min-width: fit-content;
    text-align: right;
    margin-top: 1rem;
}
.c-article-heading .meta .category {
    margin-bottom: 1rem;
}
.c-article-heading .meta .category span {
    font-size: 1.1rem;
    line-height: 1;
    border: 1px solid #282B2B;
    border-radius: 4rem;
    padding: 0.22rem 1.2rem 0.3rem 1.2rem;
}
.c-article-heading .meta .client {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #929292;
}

.c-article-content {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}
@media only screen and (max-width: 767px) {
    .c-page-heading {
        margin: 7rem auto 8rem auto;
    }
    .c-page-heading h1 .en, .c-page-heading h2 .en {
        font-size: 7rem;
    }
    .c-page-heading h1 .jp, .c-page-heading h2 .jp {
        font-size: 1.4rem;
    }
    .c-bread-crumb {
        font-size: 1.4rem;
    }
    .c-article-heading {
        margin-bottom: 6rem;
    }
}
/*----------------------------------------
	Common Parts
----------------------------------------*/
.p-section-heading {
    line-height: 1;
    margin: 6rem 0;
    display: flex;
    align-items: baseline;
}
.p-section-heading .en {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 6rem;
    margin-right: 1rem;
}
.p-section-heading .jp {
    font-size: 1.4rem;
    letter-spacing: 1px;
}
@media only screen and (max-width: 767px) {
    .p-section-heading {
        margin: 3rem 0;
    }
    .p-section-heading .en {
        font-size: 4rem;
        margin-right: 1rem;
        letter-spacing: .02em;
    }
    .p-section-heading .jp {
        font-size: 1.2rem;
        letter-spacing: .03em;
    }
}
/*----------------------------------------
	Custom Cursor
----------------------------------------*/
#cursor {
    pointer-events: none;
    position: fixed;
    top: -6px;
    left: -6px;
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 1);
    border-radius: 50%;
    transition: transform 0.6s, top, 0.5s, left 0.5s, width .5s, height .5s, background-color .5s;
    transition-timing-function: cubic-bezier(0.000, 1.005, 0.975, 1.000);
    z-index: 999;
}
#cursor.is_hover {
    top: -32px;
    left: -32px;
    width: 64px;
    height: 64px;
    transition: .5s;
    background: rgba(0, 0, 0, 0.4);
}
@media only screen and (max-width: 999px) {
    #cursor {
        display: none;
    }
}
/*----------------------------------------
	layout
----------------------------------------*/
.l-header {
    width: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
    height: 12rem;
    position: fixed;
    top: 0;
    /* background-color: rgba(255, 255, 255, .7); */
    transition: all .3s ease;
}
.when_scroll:not(.sp-menu-open) .l-header {
    transform: translateY(-120%);
}
.l-main {
    padding-top: 14rem;
}
.l-footer {
    padding: 6rem 0;
    margin-top: 6rem;
}
@media only screen and (max-width: 999px) {
    .l-header {
        display: block;
        height: 6.4rem;
    }
    .l-main {
        padding-top: 6.4rem;
    }
    .l-footer {
        padding: 2rem 0;
    }
}
/*----------------------------------------
	Header
----------------------------------------*/
.p-header-container {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    position: relative;
}
.p-header-logo,
.p-header-logo img {
    width: 86px;
    display: flex;
    align-items: center;
}
#p-header-message {
    position: absolute;
    left: 12rem;
    top: 0.4rem;
    background-color: #282B2B;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    font-weight: bold;
    border-radius: 4rem;
    padding: 1.3rem 2rem 1.4rem 2rem;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-header-navi {
    display: flex;
    align-items: baseline;
}
.p-header-navi__gnavi {
    display: flex;
    align-items: center;
    margin-right: 3.6rem;
}
.p-header-navi__gnavi li:not(:last-of-type) {
    margin-right: 3.2rem;
}
.p-header-navi__gnavi li a {
    display: flex;
    text-decoration: none;
    letter-spacing: 0.01em;
}
.p-header-navi__gnavi li a span {
    display: inline;
    position: relative;
}
.p-header-navi__gnavi li a span::before {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    border-bottom: 2px solid #282B2B;
    position: absolute;
    left: 0;
    top: 50%;
    transition: .2s linear;
}
.p-header-navi__gnavi li a:hover span::before {
    width: 100%;
}
.p-header-navi__gnavi li.current a {
    color: #929292;;
}
.p-header-navi__gnavi li.current a span::before {
    width: 100%;
    border-bottom: 2px solid #929292;
}
.p-header-navi > a {
    padding: 0.8rem 2.6rem 1.4rem 2.8rem;
    width: 15rem;
    max-width: initial;
    height: 5.6rem;
    font-weight: normal;
    background-color: #fff;
}
.p-header-navi > a .emoji {
    font-size: 2.2rem;
    margin-left: .8rem;
    display: block;
    transform: rotate(-6deg);
    transform-origin: right bottom;
    animation: wave-hands 6s 3s linear infinite;
}
@keyframes wave-hands {
    0%   { transform: rotate(-6deg); }
    3%  { transform: rotate(20deg); }
    6%   { transform: rotate(-6deg); }
    9%  { transform: rotate(20deg); }
    12%   { transform: rotate(-6deg); }
}
.p-header-sp-btn {
    position: absolute;
    z-index: 1000;
    top: .5rem;
    right: calc( 6.667vw - 2rem );
    width: 5rem;
    height: 5rem;
    display: none;
    border-radius: 2.5rem;
}
.p-header-sp-btn span {
    position: absolute;
    left: 1rem;
    display: block;
    width: 3rem;
    height: 3px;
    margin: 0 auto;
    transition: .2s ease-in-out;
    background-color: #363637;
}
.p-header-sp-btn span.l1 {
    top: 1.9rem;
}
.p-header-sp-btn span.l2 {
    top: 2.7rem;
}
@media only screen and (max-width: 999px) {
    .p-header-container {
        width: 100%;
        height: 6.4rem;
        margin-top: 0;
    }
    .p-header-logo {
        position: absolute;
        top: 1.3rem;
        left: 4.1665vw;
        z-index: 1000;
    }
    .p-header-logo,
    .p-header-logo img {
        width: 64px;
    }
    #p-header-message {
        font-size: 1.2rem;
        padding: 1.3rem 1rem 1.4rem 1rem;
        left: 10.4rem;
        top: 1.2rem;
        max-width: 20rem;
    }
    .p-header-sp-btn {
        display: block;
    }
    .p-header-navi {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100vw;
        height: 100vh;
        padding: 3rem 4rem;
        position: absolute;
        top: 0;
        left: -100vw;
        transition: .3s;
        background: #fff;
    }
    .p-header-navi__gnavi {
        display: block;
        width: 100%;
        margin-right: 0;
    }
    .p-header-navi__gnavi li:not(:last-of-type) {
        margin-right: 0;
        margin-bottom: 2rem;
    }
    .p-header-navi__gnavi li a {
        display: block;
        font-size: 2.4rem;
        text-align: center;
    }
    /* SP Menu Opened */
    .sp-menu-open .p-header-sp-btn .l1 {
        top: 2.4rem;
        transform: rotate(135deg);
    }
    .sp-menu-open .p-header-sp-btn .l2 {
        top: 2.4rem;
        transform: rotate(-135deg);
    }
    .sp-menu-open .p-header-navi {
        left: 0;
    }
    .p-header-navi > a {
        width: 22rem;
        max-width: initial;
        margin-top: 5rem;
        margin-left: auto;
        margin-right: auto;
        font-size: 2.4rem;
    }
}
@media only screen and (max-width: 767px) {
    .p-header-logo {
        left: 6.667vw;
    }
}
/*----------------------------------------
	Footer
----------------------------------------*/
.p-footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.p-footer-logo {
    display: flex;
    flex-direction: column;
    width: 9rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}
.p-footer-logo img {
    width: 100%;
    height: auto;
}
.p-footer-logo img {
    margin-bottom: .6rem;
}
.p-gotop {
    opacity: 0;
    position: fixed;
    bottom: 4rem;
    right: 3%;
    width: 9rem;
    height: 9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s linear;
    background: rgba(255, 255, 2555, .7);
    border-radius: 4.5rem;
}
.when_scroll .p-gotop {
    opacity: 1;
}
.p-gotop:hover {
    cursor: pointer;
    background: rgba(255, 255, 2555, 1);
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 20%);
}
.p-gotop img {
    width: 50%;
    height: auto;
    margin-bottom: .5rem;
}
@media only screen and (max-width: 960px) {
    .p-footer-logo {
        font-size: 1rem;
    }
    .p-footer-logo img {
        width: 6rem;
    }
    .p-gotop {
        bottom: 2rem;
        right: 1rem;
        width: 5rem;
        height: 5rem;
    }
}
/*----------------------------------------
	Loading
----------------------------------------*/
.p-progress {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    background: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
}
body::before {
    content: '';
    display: block;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}
body::before {
    z-index: 100001;
    background-color: #000;
    transform: translate(100%, 0)
}
.p-progress-bar {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 8px;
    background-color: #000;
}
.p-progress-content {
    display: flex;
    align-items: center;
    font-size: 2.6rem;
}
.p-progress-content span {
    display: block;
    animation: poyooon 2.4s linear 0s infinite;
}
.p-progress-content span:nth-of-type(2) {
    animation-delay: .05s;
    margin-right: 1.2rem;
    font-size: 2rem;
}
.p-progress-content span:nth-of-type(3) {
    animation-delay: .1s;
}
.p-progress-content span:nth-of-type(4) {
    animation-delay: .13s;
}
.p-progress-content span:nth-of-type(5) {
    animation-delay: .16s;
}
.p-progress-content span:nth-of-type(6) {
    animation-delay: .19s;
}
.p-progress-content span:nth-of-type(7) {
    animation-delay: .22s;
}
.p-progress-content span:nth-of-type(8) {
    animation-delay: .25s;
}
.p-progress-content span:nth-of-type(9) {
    animation-delay: .28s;
}
.p-progress-content span:nth-of-type(10) {
    animation-delay: .30s;
}
.p-progress-content span:nth-of-type(11) {
    animation-delay: .33s;
}
.p-progress-content span:nth-of-type(12) {
    animation-delay: .36s;
    margin-right: .8rem;
}
.p-progress-content span:nth-of-type(13) {
    animation-delay: .39s;
}
.p-progress-content span:nth-of-type(14) {
    animation-delay: .42s;
    font-size: 2rem;
}
@keyframes poyooon {
    0%   { transform: translate(0, 0); }
    1%   { transform: translate(0, 5%); }
    4%   { transform: translate(0, 20%); }
    7%  { transform: translate(0, -55%); }
    10%  { transform: translate(0, -70%); }
    24%  { transform: translate(0, -50%); }
    30%  { transform: translate(0, 0); }
    35%  { transform: translate(0, -7%); }
    40%  { transform: translate(0, 0); }
    45%  { transform: translate(0, -2%); }
    50%  { transform: translate(0, 0); }
    55%  { transform: translate(0, -1%); }
}

/*----------------------------------------
	Top
----------------------------------------*/
.p-top-section {
    margin-bottom: 14rem;
    position: relative;
}
/* メインビジュアル */
.p-top-visual {
    height: 56vw;
    min-height: 64rem;
    max-height: 70rem;
    display: flex;
    align-items: center;
    margin-bottom: 10rem;
    position: relative;
}
.p-top-visual__copy {
    padding-top: 1vw;
}
.p-top-visual__copy h2 {
    font-size: calc(3.4rem + 2.6vw);
    letter-spacing: .05em;
    line-height: 1.4;
    text-indent: -0.4rem;
    margin-bottom: 4rem;
}
.p-top-visual__copy h2 span {
    display: block;
}
.p-top-visual__copy p {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: .06em;
    line-height: 2;
}
.p-top-visual__copy p .emoji {
    margin-left: 0.5rem;
    font-size: 2.2rem;
    line-height: 1;
}
.p-top-visual__copy p .dash {
    font-size: 2rem;
    line-height: 0;
}
.p-top-visual__copy .c-button {
    width: 23rem;
    max-width: initial;
    margin-top: 6rem;
}
.p-top-visual__visual {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-56%);
    width: 60%;
    max-width: 960px;
    min-width: 600px;
    z-index: -1;
}
.p-top-visual__visual img {
    width: 100%;
    height: auto;
}
/* 実績 */
.p-works-list {
    display: flex;
    flex-wrap: wrap;
}
.p-works-list .item {
    width: 28%;
    margin-right: 7.5%;
    margin-bottom: 4.5%;
}
.p-works-list .item:nth-of-type(3n) {
    margin-right: 0;
}
.p-works-list .item a {
    text-decoration: none;
}
.p-works-list .item figure {
    margin: 0;
    overflow: hidden;
}
.p-works-list .item figure img {
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: all 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.p-works-list .item:hover figure img {
    transform: scale(1.2);
}
.p-works-list__content {
    padding: 2rem 0;
}
.p-works-list__content .heading {
    display: flex;
    align-items: baseline;
    margin-bottom: 1.8rem;
}
.p-works-list__content .heading .title {
    flex: 1;
    line-height: 1.4;
    word-break: break-all;
}
.p-works-list__content .heading .title span {
    font-size: 1.8rem;
}
.p-works-list__content .heading .category {
    margin-left: 1.4rem;
}
.p-works-list__content .heading .category span {
    font-size: 1.1rem;
    line-height: 1;
    border: 1px solid #282B2B;
    border-radius: 4rem;
    padding: .22rem 1.2rem .3rem 1.2rem;
}
.p-works-list__content .client {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #929292;
}
.p-top-section.works .c-more-block {
    margin-top: 0;
}
/* FCRに出来ること */
.p-top-section.solutions {
    margin-bottom: 6rem;
}
.p-top-solution {
    display: flex;
    justify-content: space-between;
    max-width: 100rem;
    margin: 6rem auto 8rem auto;
}
.p-top-section.solutions h3 {
    font-size: 2.4rem;
    line-height: 1.8;
    color: #929292;
}
.p-top-solution .item {
    width: 30%;
}
.p-top-solution .item .needs {
    background-color: #282B2B;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: bold;
    border-radius: 4rem;
    padding: 1rem 3rem 1.4rem 3rem;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.p-top-solution .item .needs::before {
    content: '';
    display: block;
    width: 20px;
    height: 16px;
    background: url(../img/top/bg_fukidashi.svg) no-repeat left bottom;
    background-size: contain;
    position: absolute;
    left: 8px;
    bottom: -4px;
}
.p-top-solution .item .needs .emoji {
    font-size: 2.4rem;
    margin-left: 0.5rem;
}
.p-top-solution .item figure,
.p-top-solution .item figure img {
    height: 18.2rem;
    width: auto;
}
.p-solutions .c-more-block {
    margin-top: 0;
}
@media only screen and (max-width: 1279px) {
    .p-works-list .item {
        width: 44%;
        margin-right: 12%;
        margin-bottom: 6.5%;
    }
    .p-works-list .item:nth-of-type(3n) {
        margin-right: 8%;
    }
    .p-works-list .item:nth-of-type(2n) {
        margin-right: 0;
    }
}
@media only screen and (max-width: 999px) {
    /* メインビジュアル */
    .p-top-visual {
        flex-direction: column-reverse;
        height: auto;
        min-height: initial;
        max-height: initial;
        margin-bottom: 12rem;
    }
    .p-top-visual__copy h2 {
        font-size: calc(4.3rem + 2.6vw);
        letter-spacing: .03em;
        text-indent: 0;
        margin-bottom: 2rem;
    }
    .p-top-visual__copy p {
        font-size: 1.8rem;
        letter-spacing: .03em;
        line-height: 2;
        text-align: justify;
    }
    .p-top-visual__copy p br {
        display: none;
    }
    .p-top-visual__copy p .emoji {
        margin-left: 0.3rem;
        font-size: 2rem;
    }
    .p-top-visual__visual {
        position: relative;
        top: initial;
        left: 5vw;
        transform: none;
        right: initial;
        width: 110vw;
        max-width: initial;
        min-width: initial;
    }
    .p-top-visual__copy {
        padding-top: 5vw;
    }
    .p-top-visual__copy .c-button {
        width: 22rem;
        margin-top: 5rem;
        margin-left: auto;
        margin-right: auto;
    }
}
@media only screen and (max-width: 767px) {
    .p-top-visual__copy h2 {
        font-size: calc(3.6rem + 2.6vw);
    }
    /* 実績 */
    .p-works-list .item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 5rem;
    }
    .p-works-list .item:nth-of-type(3n) {
        margin-right: 0;
    }
    .p-works-list .item:last-of-type {
        margin-bottom: 0;
    }
    /* FCRに出来ること */
    .p-top-section.solutions h3 {
        font-size: 1.7rem;
    }
    .p-top-solution {
        margin: 6rem auto 0 auto;
        flex-direction: column;
    }
    .p-top-solution .item {
        width: 100%;
        margin-bottom: 4rem;
        text-align: left;
        display: flex;
        align-items: flex-start;
    }
    .p-top-solution .item:nth-of-type(2) {
        flex-direction: row-reverse;
    }
    .p-top-solution .item:last-of-type {
        margin-bottom: 1rem;
    }
    .p-top-solution .item .needs {
        width: calc( 100% - 12rem );
        margin-right: 1rem;
        margin-bottom: 1.6rem;
        font-size: 1.2rem;
        padding: 1rem 1rem 1.4rem 1.4rem;
    }
    .p-top-solution .item:nth-of-type(2) .needs {
        margin-right: 0;
        margin-left: 1rem;
    }
    .p-top-solution .item figure,
    .p-top-solution .item figure img {
        height: auto;
        width: 10rem;
        text-align: center;
    }
}
/*----------------------------------------
	Works List
----------------------------------------*/
.p-works-category {
    display: flex;
    margin: 2rem 0 6rem 0;
}
.p-works-category a {
    display: block;
    text-decoration: none;
    position: relative;
    line-height: 1;
    font-weight: bold;
    margin-right: 5rem;
}
.p-works-category a::before {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    border-bottom: 2px solid #282B2B;
    position: absolute;
    left: 0;
    top: calc( 50% - 2px );
    transition: .2s linear;
}
.p-works-category a.current {
    color: #929292;
}
.p-works-category a:hover::before,
.p-works-category a.current::before {
    width: 100%;
    border-bottom: 2px solid #929292;
}
@media only screen and (max-width: 767px) {
    .p-works-category {
        margin: 1rem 0 5rem 0;
    }
    .p-works-category a {
        font-size: 1.3rem;
        margin-right: 2rem;
    }
}
/*----------------------------------------
	Works Detail
----------------------------------------*/
.p-works-detail__visual {
    margin-bottom: 6rem;
}
.p-works-detail__content p {
    margin-bottom: 2rem;
    font-weight: 600;
}
.p-works-detail__credit {
    padding: 2rem 0 2.1rem 0.5rem;
    margin-top: 8rem;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    border-top: 1px solid #DEDEDE;
    border-bottom: 1px solid #DEDEDE;
}
.p-works-detail__credit .title {
    color: #929292;
    margin: 1rem 4rem 1.4rem 0;
}
.p-works-detail__credit ul {
    display: flex;
    flex-wrap: wrap;
}
.p-works-detail__credit ul li {
    margin: .6rem 2rem 1.4rem 0;
}
.p-works-detail .c-more-block {
    margin-top: 8rem;
}
.p-works-detail__other-image {
    display: flex;
    flex-wrap: wrap;
    margin-top: 8rem;
}
.p-works-detail__other-image figure {
    width: 50%;
}
.p-other-works {
    margin-top: 14rem;
}
@media only screen and (max-width: 767px) {
    .c-article-heading {
        flex-direction: column;
    }
    .c-article-heading .title {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
        font-size: 3.2rem;
    }
    .p-works-detail__visual {
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
    .c-article-heading .meta {
        min-width: initial;
        text-align: left;
    }
    .c-article-heading .meta .client {
        margin-left: 0.1rem;
    }
    .p-works-detail__credit {}
    .p-works-detail__credit .title {
        margin: 1rem 4rem 2rem 0;
    }
    .p-works-detail__credit ul {
        flex-wrap: wrap;
    }
    .p-works-detail__other-image {
        flex-direction: column;
    }
    .p-works-detail__other-image figure {
        width: 100%;
    }
}
/*----------------------------------------
	Contact
----------------------------------------*/
.p-contact__intro {
    width: 50%;
    color: #929292;
    font-size: 2.4rem;
    line-height: 1.8;
    font-weight: 600;
    margin-bottom: 10rem;
}
.p-contact__form {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}
.form-list-wrapper form dl {
    margin-bottom: 3rem;
}
.form-list-wrapper form dl dt {
    font-weight: 700;
    margin-bottom: 1rem;
}
.form-list-wrapper form dl dt span.require {
    font-size: 1.3rem;
    color: #FF4C00;
    margin-left: .6rem;
}
.form-list-wrapper form dl dd input,
.form-list-wrapper form dl dd textarea{
  width: 100%;
  padding: 2rem;
  transition: all .3s ease;
  color: #757575;
  font-size: 1.5rem;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  outline: none;
  background-color: #ebebeb;
  appearance: none;
}
.form-list-wrapper form dl dd textarea {
  height: 360px;
}
.p-contact__attention {
    text-align: center;
    color: #929292;
    font-weight: 600;
}
.p-contact__button {
    margin-top: 4rem;
}
.p-contact__button .c-button {
    width: 26rem;
    max-width: none;
    font-size: 1.6rem;
    letter-spacing: .01rem;
    background: #fff;
    margin-left: auto;
    margin-right: auto;
}
.p-contact__button .c-button:hover {
    cursor: pointer;
}
@media only screen and (max-width: 999px) {
    .p-contact__intro {
        width: 100%;
    }
}
@media only screen and (max-width: 767px) {
    .p-contact__intro {
        font-size: 1.8rem;
        margin-bottom: 7rem;
    }
    .p-contact__attention {
        text-align: left;
    }
}
/*----------------------------------------
	Company
----------------------------------------*/
.p-company {}
.p-company .p-section-heading .jp {
    display: flex;
    align-items: center;
}
.p-company .p-section-heading .emoji {
    font-size: 2.6rem;
    margin-left: 0.5rem;
}
.p-company__intro {
    width: 60%;
    color: #929292;
    font-size: 2.2rem;
    line-height: 1.8;
    font-weight: 600;
    margin-bottom: 10rem;
}
.p-company__overview {
    margin-bottom: 18rem;
}
.p-company__overview .p-section-heading {
    margin-bottom: 8rem;
}
.p-company__overview__content {
    display: flex;
    align-items: center;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}
.p-company__overview__content figure {
    width: 40%;
    text-align: center;
}
.p-company__overview__content figure img {
    width: 27%;
}
.p-company__overview__content dl {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    font-weight: 600;
    line-height: 1.8;
}
.p-company__overview__content dl dt {
    width: 20%;
    color: #929292;
    font-size: 1.4rem;
    margin-bottom: 3rem;
    letter-spacing: .0625em;
}
.p-company__overview__content dl dd {
    width: 80%;
}
.p-company__staff__content {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 7rem;
}
/* staff */
.p-staff {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 30%;
    border: solid .5rem #000;
    padding: 1rem 1rem 3rem 1rem;
    margin-right: 5%;
    margin-bottom: 5%;
}
.p-staff:hover {
    cursor: pointer;
}
.p-staff:nth-of-type(3n) {
    margin-right: 0;
}
.p-staff figure {
    width: 80%;
}
.p-staff__meta {
    text-align: center;
    font-weight: 700;
    display: flex;
    flex-direction: column;
}
.p-staff__meta .position {
    color: #929292;
    font-size: 1.3rem;
    line-height: 1;
    margin-bottom: 1.4rem;
}
.p-staff__meta .name {
    font-size: 2rem;
    line-height: 1;
}
.p-staff-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: 80vw;
    max-width: 110rem;
    padding: 6%;
    background: #fff;
    overflow-y: scroll;
}
.p-staff-popup__content {
    display: flex;
    align-items: center;
}
.p-staff-popup__profile {
    width: 35%;
    margin-right: 5%;
}
.p-staff-popup__meta {
    text-align: center;
    font-weight: 700;
    display: flex;
    flex-direction: column;
}
.p-staff-popup__meta .position {
    color: #929292;
    font-size: 1.3rem;
    line-height: 1;
    margin-bottom: 1.4rem;
}
.p-staff-popup__meta .name {
    font-size: 2rem;
    line-height: 1;
}
.p-staff-popup__sns {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
}
.p-staff-popup__sns a {
    width: 5rem;
}
.p-staff-popup__sns a:hover {
    transition: .3s;
    opacity: .7;
}
.p-staff-popup__sns a img {
    width: 100%;
}
.p-staff-popup__message {
    width: 60%;
    font-weight: 600;
    padding: 4rem;
    background: #e5e5e5;
    border-radius: 1rem;
}
.p-staff-popup__message p:not(:last-of-type) {
    margin-bottom: 1.8rem;
}
.modal-overlay {
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
}
.popup-close-btn {
    z-index: 101;
    position: fixed;
    top: 0;
    right: 0;
    width: 10rem;
    height: 10rem;
    cursor: pointer;
}
.popup-close-btn::after,
.popup-close-btn::before {
    content: '';
    display: block;
    width: 8rem;
    height: 1px;
    background-color: #fff;
    transform-origin: center;
    position: absolute;
    top: 50%;
}
.popup-close-btn::before {
    transform: rotate(45deg);
}
.popup-close-btn::after {
    transform: rotate(-45deg);
}
@media only screen and (max-width: 999px) {
    .p-company__intro {
        width: 80%;
    }
    .p-staff-popup {
        padding: 0 2rem 4rem 2rem;
        max-height: 90vh;
        width: 90vw;
        border: 4px solid #000;
    }
    .p-staff-popup__content {
        flex-direction: column;
    }
    .p-staff-popup__profile {
        width: 100%;
        margin-right: 0;
        margin-bottom: 2rem;
    }
    .p-staff-popup__profile figure {
        width: 80%;
        max-width: 32rem;
        margin-left: auto;
        margin-right: auto;
    }
    .popup-close-btn {
        width: 5rem;
        height: 5rem;
    }
    .popup-close-btn::after, .popup-close-btn::before {
        width: 4rem;
    }
}
@media only screen and (max-width: 767px) {
    .p-company__intro {
        width: 100%;
        font-size: 1.8rem;
        margin-bottom: 8rem;
        text-align: justify;
    }
    .p-company__overview {
        margin-bottom: 10rem;
    }
    .p-company__overview__content {
        flex-direction: column;
    }
    .p-company__overview__content figure {
        width: 100%;
        margin-bottom: 7rem;
    }
    .p-company__overview__content figure img {
        width: 11rem;
    }
    .p-company__overview__content dl {
        width: 100%;
    }
    .p-company__overview__content dl dt {
        width: 100%;
        font-size: 1.3rem;
        line-height: 1;
        margin-bottom: 0.3rem;
    }
    .p-company__overview__content dl dd {
        width: 100%;
        margin-bottom: 3rem;
        font-size: 1.6rem;
    }
    .p-company__staff__content {
        margin-top: 0;
    }
    .p-staff {
        width: 100%;
        margin-right: 0;
        margin-bottom: 3rem;
    }
    .p-staff-popup__message {
        width: 100%;
        padding: 0;
        background: initial;
    }
    .p-staff-popup__message p {
        text-align: justify;
    }
    .p-staff-popup__message p br {
        display: none;
    }
}
/*----------------------------------------
	Solution
----------------------------------------*/
.p-solutions__intro {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10rem;
}
.p-solutions__intro > p:first-of-type {
    width: 50%;
    color: #929292;
    font-size: 2.4rem;
    line-height: 1.8;
    font-weight: 600;
}
.p-miyako-prof {
    width: 44%;
    background-color: #EEEEEE;
    border-radius: 0.8rem;
    padding: 1.6rem 2% 2rem 2%;
    line-height: 1.6;
    display: flex;
    align-items: center;
}
.p-miyako-prof__name {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
}
.p-miyako-prof__name .emoji {
    margin-right: 0.6rem;
    font-size: 2rem;
}
.p-miyako-prof__name > span {
    font-size: 1.3rem;
}
.p-miyako-prof__content {
    width: calc( 70% - 3rem );
    margin-right: 3rem;
}
.p-miyako-prof__content > p {
    font-size: 1.4rem;
    letter-spacing: .05em;
}
.p-miyako-prof__content > p > span {
    display: block;
    font-size: 1rem;
    margin-top: 1rem;
}
.p-miyako-prof figure {
    width: 30%;
}
/* solution slide */
.p-solutions__slides {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.p-solution-slide {
    width: 44%;
    position: relative;
    margin-bottom: 10%;
}
.p-solution-slide:nth-of-type(even) {
    margin-left: 12%;
}
.p-solution-slide__heading {
    margin-bottom: 2.4rem;
    line-height: 1;
}
.p-solution-slide__heading h2 {
    font-size: 3.2rem;
    line-height: 1;
    position: relative;
    display: inline-block;
    padding-left: 2.6rem;
}
.p-solution-slide__heading h2::before {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    padding-bottom: 0.3rem;
    position: absolute;
    top: 3px;
    left: 0;
    display: block;
    content: attr(data-number);
    border-bottom: solid .2rem #000;
}
.p-solution-slide__content {
    border: 5px solid #000;
}
/* coming soon slide */
.is_soon .p-solution-slide__content {
    position: relative;
}
.is_soon .p-solution-slide__content:before {
    content: "";
    display: block;
    padding-top: 100%;
}
.is_soon .p-solution-slide__content > div {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 4.6rem;
    color: #999999;
}
.p-slide-badge {
    position: absolute;
    right: 1.4rem;
    top: 1.4rem;
    background: #000;
    color: #fff;
    border-radius: 2rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    padding: 0.6rem 1rem 0.8rem 1rem;
}
.p-solution-slide-text {
    padding: 18%;
    font-weight: bold;
}
.p-solution-slide-text h3 {
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 2rem;
}
.p-solution-slide-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.swiper-slide.is_last_links {
    height: initial;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.p-solution-slide-links .c-button {
    width: 80%;
    max-width: 22rem;
}
.is_last_links a:first-of-type {
    margin-bottom: 2rem;
}
/* Swiper style Override */
.swiper {
    cursor: grab;
}
.swiper-slide {
    padding: 5%;
}
.swiper-pagination-bullet-active,
.swiper-pagination-bullet {
    background-color: #000 !important;
}
.swiper-button-next,
.swiper-button-prev {
    width: 30px !important;
    height: 30px !important;
    transition: .3s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: .75;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 0 !important;
}
.swiper-button-next {
    background: url(../img/common/swipe_right.svg) no-repeat center;
    background-size: contain;
}
.swiper-button-prev {
    background: url(../img/common/swipe_left.svg) no-repeat center;
    background-size: contain;
}
@media only screen and (max-width: 999px) {
    .p-solution-slide {
        width: 47%;
    }
    .p-solution-slide:nth-of-type(even) {
        margin-left: 6%;
    }
    .p-solutions__intro {
        flex-direction: column;
        margin-bottom: 7rem;
    }
    .p-solutions__intro > p:first-of-type {
        width: 100%;
        margin-bottom: 3rem;
    }
    .p-miyako-prof {
        width: 100%;
        max-width: 48rem;
        padding: 1.6rem 1rem 1.8rem 1.6rem;
    }
    .p-solution-slide-text {
        padding: 14%;
    }
    .p-solution-slide-text h3 {
        font-size: 1.7rem;
        margin-bottom: 1.7rem;
    }
    .p-solution-slide-text p {
        line-height: 1.6;
        font-size: 1.3rem;
    }
    .is_soon .p-solution-slide__content > div {
        font-size: 3rem;
    }
    .p-slide-badge {
        right: 1rem;
        top: 1rem;
        font-size: 1.2rem;
    }
    /* Swiper style Override */
    .swiper-button-next, .swiper-button-prev {
        width: 26px !important;
        height: 26px !important;
    }
}
@media only screen and (max-width: 767px) {
    .p-solutions__intro > p:first-of-type {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    .p-miyako-prof__content {
        width: calc( 70% - 1.6rem );
        margin-right: 1.6rem;
    }
    .p-miyako-prof__name {
        font-size: 1.5rem;
    }
    .p-miyako-prof__name > span {
        font-size: 1.1rem;
    }
    .p-miyako-prof__content > p {
        font-size: 1.2rem;
        letter-spacing: .03em;
        text-align: justify;
    }
    .p-solution-slide {
        width: 100%;
        margin-bottom: 8rem;
    }
    .p-solution-slide:nth-of-type(even) {
        margin-left: 0;
    }
    .p-solution-slide:last-of-type {
        margin-bottom: 7rem;
    }
    .p-solution-slide__heading h2 {
        font-size: 2.6rem;
        padding-left: 2rem;
    }
    .p-solution-slide__heading h2::before {
        font-size: 1.3rem;
    }
    .p-solution-slide__content {
        border: 4px solid #000;
    }
}
/*----------------------------------------
	Plivacy Policy
----------------------------------------*/
.p-privacy {

}
.p-privacy .c-page-heading h1 .en,
.p-privacy .c-page-heading h2 .en {
    margin-bottom: 2rem;
}
.p-privacy .p-privacy__intro {
    margin-bottom: 6rem;
}
.p-privacy .privacy__content dl dd {
    margin-bottom: 2rem;
}
.p-privacy .privacy__supplement {
    margin-top: 6rem;
}

@media only screen and (max-width: 767px) {
    .p-privacy .c-page-heading h1 .en,
    .p-privacy .c-page-heading h2 .en {
        font-size: 6rem;
    }
}
/*----------------------------------------
	404
----------------------------------------*/
.p-404 {
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .p-404 .c-page-heading h1 .en,
    .p-404 .c-page-heading h2 .en {
        font-size: 4rem;
    }
}
