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

Slider

-------------------------------------------------- */
.slider {
    width: 100%;
}
.slider__list {
    margin: 0;
    padding: 0;
    height: auto;
    overflow: hidden;
}

.slider__list--item {
    overflow: hidden;
}

.slider__list--item img {
    width: 100%;
    height: auto;
    transition: 0.3s;
}
.slider__list--item a:hover img {
    transform: scale(1.05);
}

.slider__progressbar {
    position: relative;
    width: 100%;
    height: 3px;
    background: #e6e6e6;
    overflow: hidden;
}
.slider__progressbar--inner {
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    transform: scaleX(0);
    transform-origin: left center;
    transition-timing-function: linear;
}

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

Portfolio

-------------------------------------------------- */
.portfolio {
    padding: 100px 0 150px;
}
@media screen and (max-width:750px) {
    .portfolio {
        padding: calc( 100/750*100vw ) 0 calc( 200/750*100vw );
    }
}
.portfolio__head {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    font-weight: 100;
    letter-spacing: 0em;
    line-height: 1em;
}
@media screen and (max-width:768px) {
    .portfolio__head {
        font-size: calc( 120/750*100vw );
    }
}
.portfolio__head--sub {
    display: block;
    padding-top: 10px;
    font-size: 12px;
    letter-spacing: 0.14em;
    line-height: 1em;
}
@media screen and (max-width:750px) {
    .portfolio__head--sub {
        padding-top: calc( 20 / 750 * 100vw );
        font-size: calc( 24 / 750 * 100vw );
    }
}
.portfolio__category {
	margin: 0 auto;
	padding-top: 50px;
}
@media screen and (max-width:750px) {
    .portfolio__category {
        padding-top: calc(80 / 750 * 100vw);
    }
}
.portfolio__category--title {
    padding: 50px 20px 0 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 0.02em;
    text-align: right;
}
@media screen and (max-width:750px) {
    .portfolio__category--title {
        padding: 0 calc(40 / 750 * 100vw) 0 0;
        font-size: calc(56 / 750 * 100vw);
    }
}
.portfolio__category:nth-of-type(2n) {
    padding-top: 100px;
}
@media screen and (max-width:750px) {
    .portfolio__category:nth-of-type(2n) {
        padding-top: calc(200 / 750 * 100vw);
    }
}
.portfolio__category:nth-of-type(2n) .portfolio__category--title {
    padding: 50px 0 0 20px;
    text-align: left;
}
@media screen and (max-width:750px) {
    .portfolio__category:nth-of-type(2n) .portfolio__category--title {
        padding: calc(100 / 750 * 100vw) 0 0 calc(40 / 750 * 100vw);
    }
}
.portfolio__category--list {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0;
    line-height: 0;
}
.portfolio__category--item {
    display: inline-block;
    width: calc(100% / 5);
    font-size: 0;
    overflow: hidden;
}
@media screen and (max-width:750px) {
    .portfolio__category--item {
        width: calc(100% / 4);
    }
}

.portfolio__category--item img {
    width: 100%;
    max-width: none;
    transition: 0.4s;
}
.portfolio__category--item:hover img {
    transform: scale(1.1);
}

.portfolio__category--more {
    margin: 80px auto 0;
	display: flex;
    align-items: center;
	justify-content: center;
    width: 300px;
    height: 60px;
    background-color: #000;
    border: 1px solid #000;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: 0.3s;
}
@media screen and (max-width:750px) {
    .portfolio__category--more {
        margin: calc(160 / 750 * 100vw) auto 0;
        width: 80%;
        height: calc(100 / 750 * 100vw);
    }
}
.portfolio__category--more:hover {
    background-color: #fff;
    color: #000;
}

.portfolio__category--more a {
	display: flex;
    align-items: center;
	justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
}
.portfolio__category--more a:hover {
    color: #000;
}

.is-hidden {
    /* animation : fadeOut 1s;
    animation-fill-mode: both; */
    display: none;
}

.is-fadeout {
    animation : fadeOut 1s;
    animation-fill-mode: both;
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    99% {
        opacity: 0;
    }
    100% {
        display: none;
    }
  }
.is-fadein {
    animation : fadein 1s;
    animation-fill-mode: both;
}
@keyframes fadein {
    0% {
        display: block;
        opacity: 0;
    }
    100% {
        opacity: 1;

    }
}

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

Bussiness

-------------------------------------------------- */
.business {
    padding: 100px 0 120px;
    background-color: #ffff00;
}
@media screen and (max-width:750px) {
    .business {
        padding: calc( 100/750*100vw ) 0 calc( 120/750*100vw );
    }
}
.business__inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 800px;
}
.business__head {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    font-weight: 100;
    letter-spacing: 0em;
    line-height: 1em;
}
@media screen and (max-width:750px) {
    .business__head {
        font-size: calc( 120/750*100vw );
    }
}
.business__head--sub {
    display: block;
    padding-top: 10px;
    font-size: 12px;
    letter-spacing: 0.14em;
    line-height: 1em;
}
@media screen and (max-width:750px) {
    .business__head--sub {
        padding-top: calc( 20/750*100vw );
        font-size: calc( 24/750*100vw );
    }
}

.business__list {
    margin: 0;
    padding: 60px 20px 0 20px;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.12em;
    list-style: none;
}
@media screen and (max-width:750px) {
    .business__list {
        padding: calc( 120/750*100vw ) calc( 40/750*100vw ) 0 calc( 40/750*100vw );
        font-size: calc( 28/750*100vw );
    }
}
.business__list--item {
    position: relative;
    padding-left: 1em;
}
.business__list--item + .business__list--item {
    margin-top: 20px;
}
@media screen and (max-width:750px) {
    .business__list--item + .business__list--item {
        margin-top: calc( 40/750*100vw );
    }
}
.business__list--item::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: '-';
}


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

Price

-------------------------------------------------- */
.price {
    padding: 120px 0 150px;
}
@media screen and (max-width:750px) {
    .price {
        padding: calc( 120/750*100vw ) 0 calc( 150/750*100vw );
    }
}
.price__head {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    font-weight: 100;
    letter-spacing: 0em;
    line-height: 1em;
}
@media screen and (max-width:750px) {
    .price__head {
        font-size: calc( 120/750*100vw );
    }
}
.price__head--sub {
    display: block;
    padding-top: 10px;
    font-size: 12px;
    letter-spacing: 0.14em;
    line-height: 1em;
}
@media screen and (max-width:750px) {
    .price__head--sub {
        padding-top: calc( 20/750*100vw );
        font-size: calc( 24/750*100vw );
    }
}
.price__base {
    margin: 0 auto;
    padding-top: 100px;
    max-width: 1000px;
}
@media screen and (max-width:1200px) {
    .price__base {
        margin: 0 calc(100/1200*100vw);
    }
}
@media screen and (max-width:750px) {
    .price__base {
        margin: 0 calc(40/750*100vw);
        padding-top: calc(100/750*100vw);
    }
}
.price__base--title {
    padding: 0 20px;
    background-color: #000;
    color: #fff;
    font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 0.04em;
    box-sizing: border-box;
}
@media screen and (max-width:750px) {
    .price__base--title {
        padding: 0 calc(20/750*100vw);
        font-size: calc(64/750*100vw);
    }
}
.price__base--sub {
    padding-left: 20px;
    font-size: 12px;
    letter-spacing: 0.07em;
}
@media screen and (max-width:750px) {
    .price__base--sub {
        padding-left: calc(40/750*100vw);
        font-size: calc(24/750*100vw);
    }
}
.price__base--list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.price__base--item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    min-height: 80px;
    border-bottom: 1px solid #000;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.07em;
}
@media screen and (max-width:750px) {
    .price__base--item {
        padding: calc(20/750*100vw);
        min-height: calc(160/750*100vw);
        font-size: calc(32/750*100vw);
    }
}
.price__base--text {}
.price__base--note {
    padding-left: 1em;
    font-size: 14px;
}
@media screen and (max-width:750px) {
    .price__base--note {
        display: block;
        padding-left: 0;
        font-size: calc(24/750*100vw);
    }
}
.price__base--total {
    font-size: 20px;
    font-weight: 500;
}
@media screen and (max-width:750px) {
    .price__base--total {
        display: block;
        font-size: calc(32/750*100vw);
        text-align: right;
    }
}

.price__notes {
    margin: 10px 0 0 0;
    padding: 0;
    font-size: 12px;
    font-weight: 400;
    list-style: none;
}
@media screen and (max-width:750px) {
    .price__notes {
        margin-top: calc(20/750*100vw);
        font-size: calc(20/750*100vw);
    }
}
.price__notes--item {
    position: relative;
    padding-left: 1.1em;
    letter-spacing: 0.07em;
}
.price__notes--item::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: '※';
}


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

Flow

-------------------------------------------------- */
.flow {
    padding: 120px 0;
    background-color: #00DBB2;   
}
@media screen and (max-width:750px) {
    .flow {
        padding: calc(120/750*100vw) 0;
    }
}

.flow__head {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    font-weight: 100;
    letter-spacing: 0em;
    line-height: 1em;
}
@media screen and (max-width:750px) {
    .flow__head {
        font-size: calc(120/750*100vw);
    }
}
.flow__head--sub {
    display: block;
    padding-top: 10px;
    font-size: 12px;
    letter-spacing: 0.14em;
    line-height: 1em;
}
@media screen and (max-width:750px) {
    .flow__head--sub {
        display: block;
        padding-top: calc(20/750*100vw);
        font-size: calc(24/750*100vw);
    }
}

.flow__inner {
    margin: 0 auto;
    max-width: 1000px;
}
@media screen and (max-width:1200px) {
    .flow__inner {
        margin: 0 calc(100/1200*100vw);
    }
}
@media screen and (max-width:750px) {
    .flow__inner {
        margin: 0 calc(40/750*100vw);
    }
}
.flow__step {
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px;
    min-height: 165px;
    background-color: #000;
    color: #fff;
    box-sizing: border-box;
}
@media screen and (max-width:750px) {
    .flow__step {
        display: block;
        padding: calc(80/1200*100vw) calc(40/1200*100vw) calc(260/1200*100vw);
        min-height: calc(100/1200*100vw);
    }
}
.flow__step + .flow__step  {
    margin-top: 80px;
}
@media screen and (max-width:750px) {
    .flow__step + .flow__step  {
        margin-top: calc(160/750*100vw);
    }
}

.flow__step:first-of-type {
    margin-top: 80px;
}
@media screen and (max-width:750px) {
    .flow__step:first-of-type {
        margin-top: calc(120/750*100vw);
    }
}
.flow__step::before {
    display: block;
    padding-right: 20px;
    font-family: 'Nanum Myeongjo', serif;
    font-size: 120px;
    color: #00DBB2;
    letter-spacing: -0.02em;
}
@media screen and (max-width:750px) {
    .flow__step::before {
        position: absolute;
        right: 0;
        bottom: 0;
        padding-right: calc(20/750*100vw);
        font-size: calc(160/750*100vw);
        letter-spacing: -0.02em;
        text-align: right;
        line-height: 1;
    }
}
.flow__step:nth-of-type(1)::before {
    content: '01';
    letter-spacing: -0.04em;
}
.flow__step:nth-of-type(2)::before {
    content: '02';
}
.flow__step:nth-of-type(3)::before {
    content: '03';
}
.flow__step:nth-of-type(4)::before {
    content: '04';
}
.flow__step:nth-of-type(5)::before {
    content: '05';
}
.flow__step:nth-of-type(6)::before {
    content: '06';
}
.flow__step:nth-of-type(7)::before {
    content: '07';
}
.flow__step:nth-of-type(8)::before {
    content: '08';
}
.flow__step:nth-of-type(9)::before {
    content: '09';
}
.flow__step:nth-of-type(10)::before {
    content: '10';
}
.flow__step + .flow__step::after {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    content: '▼';
    color: #000;
    font-size: 20px;
}
.flow__step--title {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.07em;
}
@media screen and (max-width:750px) {
    .flow__step--title {
        font-size: calc( 36/750*100vw );
    }
}
.flow__step--text {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.12em;
    line-height: 1.8;
}
@media screen and (max-width:750px) {
    .flow__step--text {
        font-size: calc( 28/750*100vw );
    }
}
.flow__step--text p {
    margin-top: 8px;
}
@media screen and (max-width:750px) {
    .flow__step--text p {
        margin-top: calc( 20/750*100vw );
    }
}


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

Contact

-------------------------------------------------- */
.contact {
    padding: 120px 0;
    background-color: #000;
    color: #fff;
}
@media screen and (max-width:750px) {
    .contact {
        padding: calc( 120/750*100vw ) 0;
    }
}
.contact__head {
    text-align: center;;
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    font-weight: 100;
    letter-spacing: 0em;
    line-height: 1em;
}
@media screen and (max-width:750px) {
    .contact__head {
        font-size: calc( 120/750*100vw );
    }
}
.contact__head--sub {
    display: block;
    padding-top: 10px;
    font-size: 12px;
    letter-spacing: 0.14em;
    line-height: 1em;
}
@media screen and (max-width:750px) {
    .contact__head--sub {
        padding-top: calc( 20/750*100vw );
        font-size: calc( 24/750*100vw );
    }
}
.contact__inner {
    margin: 0 auto;
    max-width: 800px;
}
@media screen and (max-width:750px) {
    .contact__inner {
        margin: 0 calc( 40/750*100vw );
        width: auto;
        max-width: none;
    }
}
.contact__lead {
    padding-top: 80px;
    font-weight: 300;
    letter-spacing: 0.12em;
    line-height: 1.8;
    text-align: center;
}
@media screen and (max-width:750px) {
    .contact__lead {
        padding-top: calc( 120/750*100vw );
    }
}
.contact strong {
    padding: 0 0.3em;
    color: #FF0089;
    font-style: normal;
    font-weight: 500;
}

.contact__form {
    margin: 0 auto;
    padding: 60px 0 0 0;
    max-width: 500px;
    list-style: none;
    text-align: center;
}
@media screen and (max-width:750px) {
    .contact__form {
        padding: calc( 120/750*100vw ) 0 0 0;
        max-width: none;
        width: auto;
    }
}
.contact__form--item {
    margin-bottom: 100px;
}
@media screen and (max-width:750px) {
    .contact__form--item {
        margin-bottom: calc( 120/750*100vw );
    }
}
.contact__form--title {
    display: block;
    padding-bottom: 30px;
    font-weight: 400;
    letter-spacing: 0.1em;
}
@media screen and (max-width:750px) {
    .contact__form--title {
        padding-bottom: calc( 60/750*100vw );
    }
}

input, textarea {
    padding: 0 5px;
    width: 100%;
    height: 40px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #888;
    color: #888;
    outline: none;
}
@media screen and (max-width:750px) {
    input, textarea {
        padding: 0 calc( 10/750*100vw );
        height: calc( 70/750*100vw );
    }
}
input:focus, textarea:focus {
    background-color: rgba(255, 255, 255, 0.1);
}

textarea {
    padding: 10px 5px;
    height: 250px;
}
@media screen and (max-width:750px) {
    textarea {
        padding: calc( 20/750*100vw ) calc( 10/750*100vw );
        height: calc( 400/750*100vw );
    }
}
select {
    padding: 0 10px;
    width: 100%;
    max-width: 500px;
    height: 40px;
    border: none;
    border-bottom: 1px solid #888;
    background-color: #000;
    color: #fff;
    font-weight: 300;
    letter-spacing: 0.12em;
    appearance: none;
}
@media screen and (max-width:750px) {
    select {
        padding: 0 calc( 20/750*100vw );
        max-width: none;
        height: calc( 80/750*100vw );
    }
}
.form_select {
    position: relative;
}
.form_select::after {
    display: block;
    position: absolute;
    bottom: 11px;
    right: 10px;
    z-index: 100;
    content: '▼';
    color: #fff;
    font-size: 12px;
    outline: none;
}
@media screen and (max-width:750px) {
    .form_select::after {
        bottom: calc( 22/750*100vw );
        right: calc( 20/750*100vw );
        font-size: calc( 24/750*100vw );
    }
}
.contact__form--send {
    display: block;
    margin: 0 auto;
    width: 300px;
    height: 50px;
    background-color: #000;
    border: 1px solid #888;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: 0.3s;
}
@media screen and (max-width:750px) {
    .contact__form--send {
        width: 80%;
        height:  calc( 100/750*100vw );
    }
}
.contact__form--send:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
@media screen and (max-width:750px) {
    .contact__form--send:hover {
        background-color: #000;
    }
}

/* エラー処理 */
.screen-reader-response {
    padding: 40px 0;
    text-align: center;
}
@media screen and (max-width:750px) {
    .screen-reader-response {
        padding: calc( 40/750*100vw ) 0;
        text-align: center;
    }
}
.screen-reader-response p {
    color: #FF0089;
    letter-spacing: 0.12em;
}
@media screen and (max-width:750px) {
    .screen-reader-response p {
        font-size: calc( 28/750*100vw );
    }
}
.screen-reader-response ul {
    display: none;
}
.wpcf7-not-valid-tip {
    display: block;
    padding-top: 10px;
    color: #FF0089;
    letter-spacing: 0.12em;
}
@media screen and (max-width:750px) {
    .wpcf7-not-valid-tip {
        padding-top: calc( 20/750*100vw );
        font-size: calc( 28/750*100vw );
    }
}

.wpcf7-response-output {
    display: none;
    padding-top: 40px;
    color: #FF0089;
    letter-spacing: 0.12em;
}
@media screen and (max-width:750px) {
    .wpcf7-response-output {
        padding-top: calc( 20/750*100vw );
        font-size: calc( 28/750*100vw );
    }
}