@charset "utf-8";

/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/

/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
    cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
    list-style: none;
}

/* For images to not be able to exceed their container */
img {
    max-inline-size: 100%;
    max-block-size: 100%;
    height: auto;
    vertical-align: bottom;
}

/* removes spacing between cells in tables */
table {
    border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
    -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
    white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
    -webkit-appearance: revert;
    appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
    all: revert;
    box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
    color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
    display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
    -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
    all: revert;
    box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
    display: none;
}


/*
base
*/

:root {
    --root-font-size: 16;
}
:root {
    --spacing: 0.05em;
}
* {
    letter-spacing: var(--spacing);
}

body {
    background: #F2EFE7;
    color: #000;
    font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
    font-size: calc( 12 / var(--root-font-size) * 1rem );
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1;
}

html,body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overscroll-behavior-y: none;
}


body {
    animation-name: fadeIn;
    animation-duration: 1s;
}
body.active {
    overflow: hidden;
    height:100%;
}

a {color: #000; text-decoration: none;}
a:hover {color: #8B8B8B; text-decoration: none;}

a:hover img {
    filter: alpha(opacity=70);
    -khtml-opacity: 0.7;
    -moz-opacity: 0.7;
    opacity: 0.7;
}

a,
a:hover,
a img,
a:hover img {
    transition: 0.5s 0s ease-in-out;
}

.clear {clear: both;}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

::selection {
    background: #B9B1A3;
    color: #FFF;
}
::-moz-selection {
    background: #B9B1A3;
    color: #FFF;
}


/* 
layout
*/
#wrap {
    width: 100%;
    margin: 0 auto;
}

.pc {
    display: inherit;
}
.sp {
    display: none;
}
@media screen and (max-width: 960px) {
.pc {
    display: none;
}
.sp {
    display: inherit;
}
}

/*----- main -----*/
/*----- common -----*/
main {
    display: block; /* IE */
}

.mainTtl {
    color: #B31011;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    line-height: 1.5;
    letter-spacing: 0.1em;
}
#works .mainTtl,
.works .mainTtl {
    width: 72.5%;
    padding: 0 4% 0 0;
    margin: 0 0 0 auto;
}
.works .mainTtl {
    padding: 100px 4% 0 0;
}

a.btn {
}
a.btn.action {
    overflow: hidden;
    display: inline-block;
    color: transparent;
    font-size: calc( 17 / var(--root-font-size) * 1rem )!important;
    line-height: 1;
    text-shadow: 0 1.75em 0 #000, 0 0 0 #000;
    transition: all 0.75s 0s cubic-bezier(0.25, 0.75, 0.25, 1);
}
a.btn.action.white {
    text-shadow: 0 1.75em 0 #FFF, 0 0 0 #FFF;
}
a.btn.action:hover {
    color: transparent!important;
    text-shadow: 0 0 0 #000, 0 -1.75em 0 #000;
}
a.btn.action.white:hover {
    text-shadow: 0 0 0 #FFF, 0 -1.75em 0 #FFF;
}
a.btn.action.center {
    width: 100%;
    font-size: calc( 15 / var(--root-font-size) * 1rem )!important;
    text-align: center;
}

a.btn.arrow {
    position: relative;
    padding: 0 40px 0 0;
}
a.btn.arrow::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5px;
    width: 21px;
    height: 12px;
    background: url("../images/arrow_b2x.png") no-repeat center center;
    background-size: contain;
    margin: auto 0;
    transition: 0.5s 0s ease-in-out;
}
a.btn.arrow.white::after {
    background: url("../images/arrow_w2x.png") no-repeat center center;
    background-size: contain;
}
a.btn.arrow:hover::after {
    right: 0;
}

a.btn.rectangle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    background: #000;
    text-align: center;
    text-indent: 0.05em;
}
a.btn.rectangle span {
    overflow: hidden;
    display: inline-block;
    color: transparent;
    font-family: toppan-bunkyu-mincho-pr6n, serif;
    font-size: calc( 12 / var(--root-font-size) * 1rem )!important;
    line-height: 1;
    text-shadow: 0 1.75em 0 #FFF, 0 0 0 #FFF;
    transition: all 0.75s 0s cubic-bezier(0.25, 0.75, 0.25, 1);
}
a.btn.rectangle:hover span {
    text-shadow: 0 0 0 #FFF, 0 -1.75em 0 #FFF;
}
.wpcf7-form input[type="submit"].btn {
    position: relative;
    z-index: 9;
    display: block;
    width: 100%;
    height: 60px;
    color: transparent;
    border: none!important;
    line-height: 60px;
    text-align: center;
    text-indent: 0.05em;
}
form .btnWrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    background: #000;
}
form .btnWrap::after {
    content: "送信する";
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: inline-block;
    width: 100%;
    color: transparent;
    font-family: toppan-bunkyu-mincho-pr6n, serif;
    font-size: calc( 12 / var(--root-font-size) * 1rem )!important;
    line-height: 1;
    text-align: center;
    text-indent: 0.05em;
    text-shadow: 0 1.75em 0 #FFF, 0 0 0 #FFF;
    transition: all 0.75s 0s cubic-bezier(0.25, 0.75, 0.25, 1);
}
form .btnWrap:hover::after {
    text-shadow: 0 0 0 #FFF, 0 -1.75em 0 #FFF;
}

.flexWrap {
    display: flex;
}

div.frame {
    width: 100%;
}
main#common div.frame {
    padding: 100px 0 200px;
}
main#common.works div.frame {
    padding: 0 0 200px;
}
div.frame.flexWrap {
    justify-content: space-between;
}
div.frame.flexWrap .blockL {
    width: 27.5%;
    padding: 0 0 0 4vw;
}
div.frame.flexWrap .blockL .sticky {
    position: sticky;
    top: 210px;
    margin: 0 0 125px;
}
div.frame.flexWrap .blockR {
    width: 72.5%;
}
div.frame.flexWrap .blockR p,
div.frame.flexWrap .blockR ul li {
    line-height: 1.75;
}
main#common div.frame.flexWrap .blockR {
    padding: 0 4vw 0 0;
}
main#common div.frame.flexWrap .blockR div.block {
    max-width: 765px;
}
main#common.privacy-policy div.frame.flexWrap .blockR div.block {
    margin: 0 0 50px;
}
main#common.privacy-policy div.frame.flexWrap .blockR div.block p,
main#common.privacy-policy div.frame.flexWrap .blockR div.block ul {
    font-family: toppan-bunkyu-mincho-pr6n, serif;
    line-height: 1.75;
    margin: 0 0 1em;
}
main#common.privacy-policy div.frame.flexWrap .blockR div.block .ttl {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    margin: 0 0 25px;
}
main#common.privacy-policy div.frame.flexWrap .blockR div.block ul li {
    position: relative;
    padding: 0 0 0 1.05em;
}
main#common.privacy-policy div.frame.flexWrap .blockR div.block ul li::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
}
main#common.form div.frame.flexWrap .blockR .txt,
main#common.not-found div.frame.flexWrap .blockR .txt {
    font-family: toppan-bunkyu-mincho-pr6n, serif;
    margin: 0 0 75px;
}
main#common.thanks div.frame.flexWrap .blockR div.block div.inner {
    background: rgba(255, 255, 255, 0.5);
    padding: 50px;
    margin: 0 0 75px;
}
main#common.thanks div.frame.flexWrap .blockR div.block div.inner p {
    font-family: toppan-bunkyu-mincho-pr6n, serif;
    font-size: calc( 11 / var(--root-font-size) * 1rem );
    line-height: 2;
}
main#common.thanks div.frame.flexWrap .blockR div.block div.inner p span {
    font-size: calc( 10 / var(--root-font-size) * 1rem );
}
main#common.thanks div.frame.flexWrap .blockR div.block div.inner .ttl {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    margin: 0 0 25px;
}

@media screen and (max-width: 960px) {
.mainTtl {
    color: #B31011;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    line-height: 1.5;
    letter-spacing: 0.1em;
}
#works .mainTtl,
.works .mainTtl {
    width: 92.5%;
    border-bottom: #BFC0BF solid 1px;
    padding: 0 0 15px;
    margin: 0 0 25px auto;
}
.works .mainTtl {
    padding: 0 0 15px;
}

a.btn {
}
a.btn.action {
    overflow: hidden;
    display: inline-block;
    color: transparent;
    font-size: calc( 15 / var(--root-font-size) * 1rem )!important;
    line-height: 1;
    text-shadow: 0 1.75em 0 #000, 0 0 0 #000;
    transition: all 0.75s 0s cubic-bezier(0.25, 0.75, 0.25, 1);
}
a.btn.action.white {
    text-shadow: 0 1.75em 0 #FFF, 0 0 0 #FFF;
}
a.btn.action:hover {
    color: transparent!important;
    text-shadow: 0 0 0 #000, 0 -1.75em 0 #000;
}
a.btn.action.white:hover {
    text-shadow: 0 0 0 #FFF, 0 -1.75em 0 #FFF;
}
a.btn.action.center {
    width: 100%;
    font-size: calc( 12 / var(--root-font-size) * 1rem )!important;
    text-align: center;
    padding: 0 7.5vw 0 0;
}

a.btn.arrow {
    position: relative;
    padding: 0 40px 0 0;
}
a.btn.arrow::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5px;
    width: 14px;
    height: 8px;
    background: url("../images/arrow_b.png") no-repeat center center;
    background-size: contain;
    margin: auto 0;
    transition: 0.5s 0s ease-in-out;
}
a.btn.arrow.white::after {
    background: url("../images/arrow_w.png") no-repeat center center;
    background-size: contain;
}
a.btn.arrow:hover::after {
    right: 0;
}

a.btn.rectangle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    background: #000;
    text-align: center;
    text-indent: 0.05em;
}
a.btn.rectangle span {
    overflow: hidden;
    display: inline-block;
    color: transparent;
    font-family: toppan-bunkyu-mincho-pr6n, serif;
    font-size: calc( 12 / var(--root-font-size) * 1rem )!important;
    line-height: 1;
    text-shadow: 0 1.75em 0 #FFF, 0 0 0 #FFF;
    transition: all 0.75s 0s cubic-bezier(0.25, 0.75, 0.25, 1);
}
a.btn.rectangle:hover span {
    text-shadow: 0 0 0 #FFF, 0 -1.75em 0 #FFF;
}
.wpcf7-form input[type="submit"].btn {
    position: relative;
    z-index: 9;
    display: block;
    width: 100%;
    height: 50px;
    color: transparent;
    border: none!important;
    line-height: 50px;
    text-align: center;
    text-indent: 0.05em;
}
form .btnWrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    background: #000;
}
form .btnWrap::after {
    content: "送信する";
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: inline-block;
    width: 100%;
    color: transparent;
    font-family: toppan-bunkyu-mincho-pr6n, serif;
    font-size: calc( 12 / var(--root-font-size) * 1rem )!important;
    line-height: 1;
    text-align: center;
    text-indent: 0.05em;
    text-shadow: 0 1.75em 0 #FFF, 0 0 0 #FFF;
    transition: all 0.75s 0s cubic-bezier(0.25, 0.75, 0.25, 1);
}
form .btnWrap:hover::after {
    text-shadow: 0 0 0 #FFF, 0 -1.75em 0 #FFF;
}

.flexWrap {
    display: flex;
}

div.frame {
    width: 100%;
}
main#common div.frame {
    padding: 0 0 100px 7.5%;
}
main#common.works div.frame {
    padding: 0 0 100px 7.5%;
}
div.frame.flexWrap {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 0 0 7.5%;
}
div.frame.flexWrap .blockL {
    width: 100%;
    padding: 0;
}
div.frame.flexWrap .blockL .sticky {
    position: inherit;
    top: inherit;
    margin: 0;
}
div.frame.flexWrap .blockR {
    width: 100%;
}
div.frame.flexWrap .blockR p,
div.frame.flexWrap .blockR ul li {
    line-height: 1.75;
}
main#common div.frame.flexWrap .blockR {
    padding: 0 7.5vw 0 0;
}
main#common div.frame.flexWrap .blockR div.block {
    max-width: 765px;
}
main#common.privacy-policy div.frame.flexWrap .blockR div.block {
    margin: 0 0 30px;
}
main#common.privacy-policy div.frame.flexWrap .blockR div.block p,
main#common.privacy-policy div.frame.flexWrap .blockR div.block ul {
    font-family: toppan-bunkyu-mincho-pr6n, serif;
    font-size: calc( 11 / var(--root-font-size) * 1rem );
    line-height: 1.75;
    margin: 0 0 1em;
}
main#common.privacy-policy div.frame.flexWrap .blockR div.block .ttl {
    font-size: calc( 13 / var(--root-font-size) * 1rem );
    margin: 0 0 15px;
}
main#common.privacy-policy div.frame.flexWrap .blockR div.block ul li {
    position: relative;
    padding: 0 0 0 1.05em;
}
main#common.privacy-policy div.frame.flexWrap .blockR div.block ul li::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
}
main#common.form div.frame.flexWrap .blockR .txt,
main#common.not-found div.frame.flexWrap .blockR .txt {
    font-family: toppan-bunkyu-mincho-pr6n, serif;
    font-size: calc( 11 / var(--root-font-size) * 1rem );
    margin: 0 0 50px;
}
main#common.thanks div.frame.flexWrap .blockR div.block div.inner {
    background: rgba(255, 255, 255, 0.5);
    padding: 25px min(5vw, 25px);
    margin: 0 0 50px;
}
main#common.thanks div.frame.flexWrap .blockR div.block div.inner p {
    font-family: toppan-bunkyu-mincho-pr6n, serif;
    font-size: calc( 11 / var(--root-font-size) * 1rem );
    line-height: 2;
}
main#common.thanks div.frame.flexWrap .blockR div.block div.inner p span {
    font-size: calc( 10 / var(--root-font-size) * 1rem );
}
main#common.thanks div.frame.flexWrap .blockR div.block div.inner .ttl {
    font-size: calc( 13 / var(--root-font-size) * 1rem );
    margin: 0 0 25px;
}
}

/*----- WORKS -----*/
aside.sideNav {
    margin: 105px 0 75px;
}
aside.sideNav ul {
}
aside.sideNav ul li {
    font-family: toppan-bunkyu-mincho-pr6n, serif;
    font-size: calc( 17 / var(--root-font-size) * 1rem );
    line-height: 2;
    padding: 0;
    transition: 0.5s 0s ease-in-out;
}
aside.sideNav ul li a {
    position: relative;
}
aside.sideNav ul li a:hover {
    color: #000;
    padding: 0 0 0 25px;
}
aside.sideNav ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    margin: auto 0;
    transition: 0.5s 0s ease-in-out;
}
aside.sideNav ul li a:hover::before,
aside.sideNav ul li a.is-active::before {
    width: 15px;
}
aside.sideNav ul li span {
    font-size: calc( 9 / var(--root-font-size) * 1rem );
    vertical-align: super;
}
main#common.works div.frame.flexWrap .blockR div.content,
ul.archive {
    border-top: #BFC0BF solid 1px;
    padding: 50px 0 0;
    margin: 50px 0 0;
}
ul.archive {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
section#works div.frame.flexWrap .blockR ul.archive {
    padding: 50px 0 75px;
}
ul.archive li {
    width: calc(50% - 5px);
    margin: 5px 0;
}
div.latest ul.archive {
    border-top: none;
    padding: 0;
    margin: 0 0 75px;
}
div.latest ul.archive:after {
    content: "";
    display: block;
    width: calc(calc(100% / 3) - 5px);
}
div.latest ul.archive li {
    width: calc(calc(100% / 3) - 5px);
    margin: 5px 0;
}
div.latest {
    border-top: #BFC0BF solid 1px;
    border-bottom: #BFC0BF solid 1px;
    padding: 75px 0;
    margin: 0 4vw 100px;
}
div.zoom {
    position: relative;
    width: 100%;
    height: 100%;
}
div.zoom a {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
}
div.zoom div.mask {
	overflow: hidden;
    position: relative;
	display: block;
    width: 100%;
    height: 100%;
}
div.zoom img {
    transform: scale(1);
    filter: blur(0);
    /*filter: blur(0) grayscale(100%);*/
	transition: 0.5s 0s ease-in-out;
}
div.zoom:hover img {
	transform: scale(1.05);
    filter: blur(10px);
}
div.zoom div.cap {
	position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 min(2.5vw, 37.5px) min(2.5vw, 37.5px);
}
div.cap h1,
div.cap p {
    line-height: 1.5;
}
div.zoom div.cap p {
    color: #FFF;
}
div.cap .ttl {
    font-size: calc( 17 / var(--root-font-size) * 1rem );
    margin: 0 0 5px;
}
div.cap div {
    display: flex;
    flex-wrap: wrap;
}
div.cap div p {
}
div.cap div p::after {
    content: "｜";
    padding: 0 0.5em;
}
div.cap div p:last-of-type::after {
    content: none;
    padding: 0;
}
main#common.works div.frame.flexWrap .blockL {
    padding: 0 4vw;
}
main#common.works div.frame.flexWrap .blockL div.note {
    margin: 25px 0 0;
}
main#common.works div.frame.flexWrap .blockL div.note p {
    color: #707070;
    font-size: calc( 9 / var(--root-font-size) * 1rem );
    line-height: 1.75;
    margin: 0 0 10px;
}
main#common.works div.frame.flexWrap .blockL div.note p a {
    color: #707070;
}
main#common.works div.frame.flexWrap .blockL div.note p a:hover {
    color: #000;
}
main#common.works div.frame.flexWrap .blockR div.content figure {
    margin: 0!important;
}
main#common.works div.frame.flexWrap .blockR div.content img {
    width: 100%;
    height: auto;
    margin: 5px 0;
}
main#common.works div.frame.flexWrap .blockR div.content .is-style-img_left {
    width: 62.5%;
    margin: 0!important;
}
main#common.works div.frame.flexWrap .blockR div.content .is-style-img_right {
    width: 62.5%;
    margin: 0 0 0 auto!important;
}
main#common.works div.frame.flexWrap .blockR div.content .alignleft,
main#common.works div.frame.flexWrap .blockR div.content .alignright {
    width: 62.5%;
    margin: 0!important;
}

@media screen and (max-width: 960px) {
aside.sideNav {
    margin: 0 0 25px;
}
aside.sideNav ul {
    display: flex;
}
aside.sideNav ul li {
    font-family: toppan-bunkyu-mincho-pr6n, serif;
    font-size: calc( 13 / var(--root-font-size) * 1rem );
    line-height: 2;
    padding: 0 25px 0 0;
    transition: 0.5s 0s ease-in-out;
}
aside.sideNav ul li a {
    position: relative;
}
aside.sideNav ul li a:hover {
    color: #000;
    padding: 0 0 0 25px;
}
aside.sideNav ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    margin: auto 0;
    transition: 0.5s 0s ease-in-out;
}
aside.sideNav ul li a:hover::before,
aside.sideNav ul li a.is-active::before {
    width: 15px;
}
aside.sideNav ul li span {
    font-size: calc( 7 / var(--root-font-size) * 1rem );
    vertical-align: super;
}
main#common.works div.frame.flexWrap .blockR div.content,
ul.archive {
    border-top: none;
    padding: 50px 0 0;
    margin: 0;
}
ul.archive {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
}
section#works div.frame.flexWrap .blockR ul.archive {
    padding: 0 0 25px;
}
ul.archive li {
    width: 100%;
    margin: 5px 0;
}
div.latest ul.archive {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    display: block;
    border-top: none;
    padding: 0;
    margin: 0 0 50px;
}
div.latest ul.archive:after {
    content: none;
}
div.latest ul.archive li {
    display: inline-block;
    width: calc(62.5vw - 5px);
    margin: 5px 0;
}
div.latest {
    border-top: #BFC0BF solid 1px;
    border-bottom: none;
    padding: 35px 0 0;
    margin: 0 0 75px 7.5%;
}
div.zoom {
    position: relative;
    width: 100%;
    height: 100%;
}
div.zoom a {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
}
div.zoom div.mask {
	overflow: hidden;
    position: relative;
	display: block;
    width: 100%;
    height: 100%;
}
div.zoom img {
    transform: scale(1);
    filter: blur(0);
    /*filter: blur(0) grayscale(100%);*/
	transition: 0.5s 0s ease-in-out;
}
div.zoom:hover img {
	transform: scale(1.05);
    filter: blur(10px);
}
div.zoom div.cap {
	position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 min(5vw, 37.5px) min(5vw, 37.5px);
}
main#common.works div.frame.flexWrap .blockL div.cap {
    border-top: #BFC0BF solid 1px;
    padding: 25px 0 0;
}
div.cap h1,
div.cap p {
    line-height: 1.5;
}
div.zoom div.cap p {
    color: #FFF;
    font-size: calc( 10 / var(--root-font-size) * 1rem );
}
div.cap .ttl {
    font-size: calc( 14 / var(--root-font-size) * 1rem )!important;
    margin: 0 0 5px;
}
div.cap div {
    display: flex;
    flex-wrap: wrap;
}
div.cap div p {
}
div.cap div p::after {
    content: "｜";
    padding: 0 0.5em;
}
div.cap div p:last-of-type::after {
    content: none;
    padding: 0;
}
main#common.works div.frame.flexWrap .blockL {
    padding: 0;
}
main#common.works div.frame.flexWrap .blockL div.note {
    margin: 25px 0 0;
}
main#common.works div.frame.flexWrap .blockL div.note p {
    color: #707070;
    font-size: calc( 9 / var(--root-font-size) * 1rem );
    line-height: 1.75;
    margin: 0 0 5px;
}
main#common.works div.frame.flexWrap .blockL div.note p span {
    display: inline-block;
    width: 60px;
}
main#common.works div.frame.flexWrap .blockL div.note p a {
    color: #707070;
}
main#common.works div.frame.flexWrap .blockL div.note p a:hover {
    color: #000;
}
main#common.works div.frame.flexWrap .blockR div.content figure {
    margin: 0!important;
}
main#common.works div.frame.flexWrap .blockR div.content img {
    width: 100%;
    height: auto;
    margin: 2.5px 0;
}
main#common.works div.frame.flexWrap .blockR div.content .is-style-img_left {
    width: 62.5%;
    margin: 0!important;
}
main#common.works div.frame.flexWrap .blockR div.content .is-style-img_right {
    width: 62.5%;
    margin: 0 0 0 auto!important;
}
main#common.works div.frame.flexWrap .blockR div.content .alignleft,
main#common.works div.frame.flexWrap .blockR div.content .alignright {
    width: 62.5%;
    margin: 0!important;
}
}

/*----- footer -----*/
footer {
    width: 90%;
    background: #FFF;
    color: #B31011;
    padding: 90px 6vw 40px 4vw;
}
footer a,
.gNav div.inner a {
    color: #B31011;
}
footer a:hover,
.gNav div.inner a:hover {
    color: #8B8B8B;
}
footer p,
.gNav div.inner p,
section#access div.frame.flexWrap div.blockR p {
    line-height: 1.75;
}
footer .logo {
    width: 255px;
    margin: 0 0 200px;
}
footer div.flexWrap {
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: space-between;
}
footer div.flexWrap div.block {
    padding: 0 0 25px;
}
footer div.flexWrap div.block .name {
    width: 217px;
    margin: 0 0 15px;
}
.gNav div.inner div.information .name {
    width: 271.25px;
    margin: 0 0 15px;
}
footer div.flexWrap div.block .address {
    font-size: calc( 10 / var(--root-font-size) * 1rem );
}
.gNav div.inner div.information .address,
section#access div.frame.flexWrap div.blockR .address {
    font-family: toppan-bunkyu-mincho-pr6n, serif;
}
section#access div.frame.flexWrap div.blockR .address {
    font-size: calc( 15 / var(--root-font-size) * 1rem );
}
section#access div.frame.flexWrap div.blockR .address span.pc {
    display: inline;
}
.gNav div.inner div.information .address.en {
    font-size: calc( 9 / var(--root-font-size) * 1rem );
    margin: 5px 0;
}
section#access div.frame.flexWrap div.blockR .address.en {
    font-size: calc( 11 / var(--root-font-size) * 1rem );
    margin: 5px 0;
}
.gNav div.inner div.information a.arrow {
    position: relative;
    color: #000;
    font-size: calc( 9 / var(--root-font-size) * 1rem );
    padding: 0 30px 0 0;
}
section#access div.frame.flexWrap div.blockR a.arrow {
    position: relative;
    color: #8B8B8B;
    font-size: calc( 11 / var(--root-font-size) * 1rem );
    padding: 0 30px 0 0;
    margin: 0 0 0 min(9vw, 135px);
}
.gNav div.inner div.information a.arrow::after,
section#access div.frame.flexWrap div.blockR a.arrow::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 14px;
    height: 8px;
    background: url("../images/arrow_b.png") no-repeat center center;
    background-size: contain;
    margin: auto 0;
    transition: 0.5s 0s ease-in-out;
}
section#access div.frame.flexWrap div.blockR a.arrow::after {
    background: url("../images/arrow_g.png") no-repeat center center;
    background-size: contain;
}
.gNav div.inner div.information a.arrow:hover::after,
section#access div.frame.flexWrap div.blockR a.arrow:hover::after {
    right: -5px;
}
footer div.flexWrap div.block ul.nav1,
.gNav div.inner div.information ul.nav1,
section#access div.frame.flexWrap div.blockR ul.nav1 {
    display: flex;
    align-items: flex-end;
}
.gNav div.inner div.information ul.nav1 {
    margin: 30px 0 0;
}
section#access div.frame.flexWrap div.blockR ul.nav1 {
    margin: 50px 0 0;
}
footer div.flexWrap div.block ul.nav1 li {
    padding: 0 min(3vw, 45px) 0 0;
}
.gNav div.inner div.information ul.nav1 li {
    padding: 0 min(4vw, 60px) 0 0;
}
.gNav div.inner div.information ul.nav1 li,
section#access div.frame.flexWrap div.blockR ul.nav1 li {
    font-family: toppan-bunkyu-mincho-pr6n, serif;
}
section#access div.frame.flexWrap div.blockR ul.nav1 li {
    font-size: calc( 15 / var(--root-font-size) * 1rem );
    padding: 0 min(6vw, 90px) 0 0;
}
footer div.flexWrap div.block ul.nav1 li p,
footer div.flexWrap div.block ul.nav2 li p,
.gNav div.inner div.information ul.nav1 li p {
    margin: 0 0 5px;
}
.gNav div.inner div.information ul.nav1 li p img {
    margin: 0 0 0.25em;
}
footer div.flexWrap div.block ul.nav1 li a.action {
    overflow: hidden;
    display: inline-block;
    color: transparent;
    line-height: 1;
    text-shadow: 0 1.75em 0 #B31011, 0 0 0 #B31011;
    transition: all 0.75s 0s cubic-bezier(0.25, 0.75, 0.25, 1);
}
footer div.flexWrap div.block ul.nav1 li a.action:hover {
    color: transparent!important;
    text-shadow: 0 0 0 #B31011, 0 -1.75em 0 #B31011;
}
footer div.flexWrap div.block ul.nav1 li a.arrow {
    position: relative;
    padding: 0 40px 0 0;
}
footer div.flexWrap div.block ul.nav1 li a.arrow:hover {
    color: #B31011;
}
footer div.flexWrap div.block ul.nav1 li a.arrow::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5px;
    width: 16px;
    height: 10px;
    background: url("../images/arrow_r.png") no-repeat center center;
    background-size: contain;
    margin: auto 0;
    transition: 0.5s 0s ease-in-out;
}
footer div.flexWrap div.block ul.nav1 li a.arrow:hover::after {
    right: 0;
}

footer .copyright {
}
footer .copyright small {
    color: #8B8B8B;
    font-size: calc( 8 / var(--root-font-size) * 1rem );
}

@media screen and (max-width: 960px) {
footer {
    width: 100%;
    background: #FFF;
    color: #B31011;
    padding: 35px 7.5%;
}
footer a,
.gNav div.inner a {
    color: #B31011;
}
footer a:hover,
.gNav div.inner a:hover {
    color: #8B8B8B;
}
footer p,
.gNav div.inner p,
section#access div.frame.flexWrap div.blockR p {
    line-height: 1.75;
}
footer .logo {
    width: 140px;
    margin: 0 0 75px;
}
footer div.flexWrap {
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: space-between;
}
footer div.flexWrap div.block {
    width: 100%;
	padding: 0 0 25px;
}
footer div.flexWrap div.block:nth-of-type(2) {
    width: 50%;
}
footer div.flexWrap div.block .name {
    width: 173.6px;
    margin: 0 0 5px;
}
.gNav div.inner div.information .name {
    width: 217px;
    margin: 0 0 10px;
}
footer div.flexWrap div.block .address {
    font-size: calc( 7 / var(--root-font-size) * 1rem );
}
.gNav div.inner div.information .address,
section#access div.frame.flexWrap div.blockR .address {
    font-family: toppan-bunkyu-mincho-pr6n, serif;
}
.gNav div.inner div.information .address {
    font-size: calc( 8 / var(--root-font-size) * 1rem );
}
section#access div.frame.flexWrap div.blockR .address {
    font-size: calc( 11 / var(--root-font-size) * 1rem );
}
section#access div.frame.flexWrap div.blockR .address span.pc {
    display: none;
}
.gNav div.inner div.information .address.en {
    font-size: calc( 7 / var(--root-font-size) * 1rem );
    margin: 0 0 5px;
}
section#access div.frame.flexWrap div.blockR .address.en {
    font-size: calc( 8 / var(--root-font-size) * 1rem );
    margin: 5px 0;
}
.gNav div.inner div.information a.arrow {
    position: relative;
    color: #000;
    font-size: calc( 7 / var(--root-font-size) * 1rem );
    padding: 0 30px 0 0;
}
section#access div.frame.flexWrap div.blockR a.arrow {
    position: relative;
    color: #8B8B8B;
    font-size: calc( 10 / var(--root-font-size) * 1rem );
    padding: 0 20px 0 0;
    margin: 0;
}
.gNav div.inner div.information a.arrow::after,
section#access div.frame.flexWrap div.blockR a.arrow::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 6px;
    background: url("../images/arrow_bS.png") no-repeat center center;
    background-size: contain;
    margin: auto 0;
    transition: 0.5s 0s ease-in-out;
}
section#access div.frame.flexWrap div.blockR a.arrow::after {
    background: url("../images/arrow_g.png") no-repeat center center;
    background-size: contain;
}
.gNav div.inner div.information a.arrow:hover::after,
section#access div.frame.flexWrap div.blockR a.arrow:hover::after {
    right: -5px;
}
footer div.flexWrap div.block ul.nav1,
.gNav div.inner div.information ul.nav1,
section#access div.frame.flexWrap div.blockR ul.nav1 {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}
.gNav div.inner div.information ul.nav1 {
    margin: 30px 0 0;
}
section#access div.frame.flexWrap div.blockR ul.nav1 {
    margin: 0;
}
footer div.flexWrap div.block ul.nav1 li {
    display: flex;
    width: 100%;
    font-size: calc( 10 / var(--root-font-size) * 1rem );
    padding: 0;
}
footer div.flexWrap div.block ul.nav1 li.contact {
    margin: 25px 0 0;
}
.gNav div.inner div.information ul.nav1 li {
    font-size: calc( 9 / var(--root-font-size) * 1rem );
    padding: 0 min(16vw, 60px) 0 0;
}
.gNav div.inner div.information ul.nav1 li,
section#access div.frame.flexWrap div.blockR ul.nav1 li {
    font-family: toppan-bunkyu-mincho-pr6n, serif;
}
section#access div.frame.flexWrap div.blockR ul.nav1 li {
    width: 100%;
    font-size: calc( 12 / var(--root-font-size) * 1rem );
    padding: 15px 0 0;
}
footer div.flexWrap div.block ul.nav1 li p,
footer div.flexWrap div.block ul.nav2 li p,
.gNav div.inner div.information ul.nav1 li p {
    margin: 0;
}
footer div.flexWrap div.block ul.nav1 li p.ttl {
    width: 70px;
}
.gNav div.inner div.information ul.nav1 li p img {
    margin: 0 0 0.25em;
}
footer div.flexWrap div.block ul.nav1 li a.action {
    overflow: hidden;
    display: inline-block;
    color: transparent;
    line-height: 1;
    text-shadow: 0 1.75em 0 #B31011, 0 0 0 #B31011;
    transition: all 0.75s 0s cubic-bezier(0.25, 0.75, 0.25, 1);
}
footer div.flexWrap div.block ul.nav1 li a.action:hover {
    color: transparent!important;
    text-shadow: 0 0 0 #B31011, 0 -1.75em 0 #B31011;
}
footer div.flexWrap div.block ul.nav1 li a.arrow {
    position: relative;
    padding: 0 30px 0 0;
}
footer div.flexWrap div.block ul.nav1 li a.arrow:hover {
    color: #B31011;
}
footer div.flexWrap div.block ul.nav1 li a.arrow::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5px;
    width: 10px;
    height: 6px;
    background: url("../images/arrow_rS.png") no-repeat center center;
    background-size: contain;
    margin: auto 0;
    transition: 0.5s 0s ease-in-out;
}
footer div.flexWrap div.block ul.nav1 li a.arrow:hover::after {
    right: 0;
}
footer div.flexWrap div.block ul.nav2 li {
    font-size: calc( 10 / var(--root-font-size) * 1rem );
}

footer .copyright {
}
footer .copyright small {
    color: #8B8B8B;
    font-size: calc( 8 / var(--root-font-size) * 1rem );
}
}

.grecaptcha-badge {visibility: hidden;}

/*----- sp nav -----*/
/*アクティブになったエリア*/
.gNav {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    transition: all 1s 0s cubic-bezier(0.75, 0, 0.25, 1);
}
/*アクティブクラスがついたら透過なしにして最前面へ*/
.gNav.active {
    z-index: 99;
    opacity: 1;
}

/*ナビゲーションの縦スクロール*/
.gNav .gNavList {
    /*ナビの数が増えた場合縦スクロール*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    position: fixed;
    z-index: 100;
    top: 0;
    right: -100%;
    width: 675px;
    height: 100vh;
    background: #E3DFD5;
    padding: 0 75px;
    margin: 0 0 0 auto;
    opacity: 0;
    transition: all 1.5s 0s cubic-bezier(0.75, 0, 0.25, 1);
}
.gNav.active .gNavList {
    right: 0;
    opacity: 1;
}
/*ナビゲーション*/
.gNav .gNavList div.inner {
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
    color: #B31011;
}
.gNav .gNavList div.inner div.information {
    flex-direction: column;
    padding: min(15vh, 150px) 0 min(10vh, 100px);
    margin: auto 0 0;
}
.gNav div.inner nav {
    padding: min(20vh, 200px) 0 0;
}
.gNav div.inner nav ul {
    display: flex;
    flex-wrap: wrap;
}
.gNav div.inner nav ul li {
    width: 100%;
    font-family: toppan-bunkyu-mincho-pr6n, serif;
}
.gNav div.inner nav ul li.small {
    width: 45%;
}
.gNav div.inner nav ul li.big {
    width: 55%;
}
.gNav div.inner nav ul li p.ttl {
    line-height: 1;
    margin: 0 0 25px;
}
.gNav div.inner nav ul li p.ttl .action {
    overflow: hidden;
    display: inline-block;
    color: transparent;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    text-shadow: 0 1.75em 0 #B31011, 0 0 0 #B31011;
    transition: all 0.75s 0s cubic-bezier(0.25, 0.75, 0.25, 1);
}
.gNav div.inner nav ul li p.ttl .action:hover {
    color: transparent!important;
    text-shadow: 0 0 0 #B31011, 0 -1.75em 0 #B31011;
}
.gNav div.inner nav ul li ul {
    margin: 0 0 50px;
}
.gNav div.inner nav ul li ul.sub {
    margin: 0 0 0 30px;
}
.gNav div.inner nav ul li ul li {
    margin: 0 0 10px;
}
.gNav div.inner nav ul li ul li a span.en {
    display: inline-block;
    font-size: calc( 16 / var(--root-font-size) * 1rem );
}
.gNav div.inner nav ul li.small ul li a span.en {
    width: 105px;
}
.gNav div.inner nav ul li.big ul li a span.en {
    width: 180px;
}
.gNav div.inner nav ul li ul li a span.jp {
    color: #000;
    font-size: calc( 10 / var(--root-font-size) * 1rem );
    transition: 0.5s 0s ease-in-out;
}
.gNav div.inner nav ul li ul.sub li a {
    color: #000;
}
.gNav div.inner nav ul li ul li a:hover span.jp,
.gNav div.inner nav ul li ul.sub li a:hover {
    color: #8B8B8B;
}

/*ボタンの設定*/
.openBtn {
    position: fixed;
    z-index: 101;/*ボタンを最前面に*/
    top: 29px;
    right: 4%;
    display: inline-block;
    width: 42px;
    height: 42px;
    cursor: pointer;
    appearance: none;
}
.openBtn span {
    position: relative;
}
.openBtn span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 42px;
    height: 42px;
    background: url("../images/icon_mark.png") no-repeat center center;
    background-size: contain;
    margin: 0 auto;
    transition: all 1.5s 0s cubic-bezier(0.75, 0, 0.25, 1);
}
.openBtn.active span::before {
    background: url("../images/icon_close.png") no-repeat center center;
    background-size: contain;
    transform: rotate(-90deg);
}

@media screen and (max-width: 960px) {
/*アクティブになったエリア*/
.gNav {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    transition: all 1s 0s cubic-bezier(0.75, 0, 0.25, 1);
}
/*アクティブクラスがついたら透過なしにして最前面へ*/
.gNav.active {
    z-index: 99;
    opacity: 1;
}

/*ナビゲーションの縦スクロール*/
.gNav .gNavList {
    /*ナビの数が増えた場合縦スクロール*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    position: fixed;
    z-index: 100;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #E3DFD5;
    padding: 0 7.5%;
    margin: 0 0 0 auto;
    opacity: 0;
    transition: all 1.5s 0s cubic-bezier(0.75, 0, 0.25, 1);
}
.gNav.active .gNavList {
    right: 0;
    opacity: 1;
}
/*ナビゲーション*/
.gNav .gNavList div.inner {
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
    color: #B31011;
}
.gNav .gNavList div.inner div.information {
    flex-direction: column;
    padding: min(10vh, 100px) 0 min(7.5vh, 75px);
    margin: auto 0 0;
}
.gNav div.inner nav {
    padding: min(15vh, 150px) 0 0;
}
.gNav div.inner nav ul {
    display: flex;
    flex-wrap: wrap;
}
.gNav div.inner nav ul li {
    width: 100%;
    font-family: toppan-bunkyu-mincho-pr6n, serif;
}
.gNav div.inner nav ul li.small {
    width: 46.25%;
}
.gNav div.inner nav ul li.big {
    width: 53.75%;
}
.gNav div.inner nav ul li p.ttl {
    line-height: 1;
    margin: 0 0 20px;
}
.gNav div.inner nav ul li p.ttl .action {
    overflow: hidden;
    display: inline-block;
    color: transparent;
    font-size: calc( 12 / var(--root-font-size) * 1rem );
    text-shadow: 0 1.75em 0 #B31011, 0 0 0 #B31011;
    transition: all 0.75s 0s cubic-bezier(0.25, 0.75, 0.25, 1);
}
.gNav div.inner nav ul li p.ttl .action:hover {
    color: transparent!important;
    text-shadow: 0 0 0 #B31011, 0 -1.75em 0 #B31011;
}
.gNav div.inner nav ul li ul {
    margin: 0 0 35px;
}
.gNav div.inner nav ul li ul.sub {
    margin: 0 0 0 30px;
}
.gNav div.inner nav ul li ul li {
    margin: 0 0 10px;
}
.gNav div.inner nav ul li ul li a span.en {
    display: inline-block;
    font-size: calc( 11 / var(--root-font-size) * 1rem );
}
.gNav div.inner nav ul li.small ul li a span.en {
    width: 75px;
}
.gNav div.inner nav ul li.big ul li a span.en {
    width: 125px;
}
.gNav div.inner nav ul li ul li a span.jp {
    color: #000;
    font-size: calc( 7 / var(--root-font-size) * 1rem );
    transition: 0.5s 0s ease-in-out;
}
.gNav div.inner nav ul li ul.sub li a {
    color: #000;
}
.gNav div.inner nav ul li ul li a:hover span.jp,
.gNav div.inner nav ul li ul.sub li a:hover {
    color: #8B8B8B;
}

/*ボタンの設定*/
.openBtn {
    position: fixed;
    z-index: 101;/*ボタンを最前面に*/
    top: 29px;
    right: 4%;
    display: inline-block;
    width: 32px;
    height: 32px;
    cursor: pointer;
    appearance: none;
}
.openBtn span {
    position: relative;
}
.openBtn span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: url("../images/icon_mark.png") no-repeat center center;
    background-size: contain;
    margin: 0 auto;
    transition: all 1.5s 0s cubic-bezier(0.75, 0, 0.25, 1);
}
.openBtn.active span::before {
    background: url("../images/icon_close.png") no-repeat center center;
    background-size: contain;
    transform: rotate(-90deg);
}
}

/* stalker */
.stalker {
    pointer-events: none;
    position: fixed;
    z-index: 10001;
    top: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
    border: #F2EFE7 solid 1px;
    border-radius: 50%;
    opacity: 0;
    mix-blend-mode: multiply;
    transition: all 0.25s 0s cubic-bezier(0.25, 0.75, 0.25, 1);
}
/* リンクにホバーした時のスタイル */
.stalker.js-hover {
    top: -45px;
    left: -45px;
    width: 90px;
    height: 90px;
}

/* fadeUp */
.fadeUp,
.content img {
    opacity: 0;
    transition: 1s 0s ease-in-out;
}
.fadeUp.isInView,
.content img.isInView {
    opacity: 1;
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}