@charset "UTF-8";

/***** 全ページ共通CSS *****/

/* base (reset)
---------------------------------------------------*/
body {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
    font-weight: 400;
}

ul,
ol,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
}

ol,
li {
    list-style: none;
}

img {
    border: none;
    line-height: 0;
    font-size: 0;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

/* ---------- */
a {
    margin: 0;
    padding: 0;
    font-size: inherit;
    background: transparent;
}

th,
td {
    font-style: normal;
    font-weight: normal;
    font-size: inherit;
    empty-cells: show;
}

input,
select {
    vertical-align: middle;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    /*-webkit-appearance: none;*/
    border-radius: 0;
}

pre {
    white-space: -moz-pre-wrap; /* Mozilla */
    white-space: -o-pre-wrap; /* Opera 7 */
    white-space: pre-wrap; /* CSS3 */
    word-wrap: break-word; /* IE 5.5+ */
}
figure {
    margin: 0;
}

/* color
---------------------------------------------------*/
:root {
    --main-color: #4F483D;
    --primary-color: #655C4E;
    --secondary-color: #E3DDD4;
    --font-color: #655C4E;
    --background-color: #DAD4CA;
    --section-color: #F6F3EC;
    --point-color: #906682;
    --white-color: #F6F3EC;
    --red-color: #BB155B;
    --btn-font-color: #ECE7DE;
    --hover-color: #977949;
    /* font */
    --font-size-x: 36px;
    --font-size-l: 28px;
    --font-size-m: 18px;
    --font-size-n: 16px; /* default */
    --font-size-sn: 15px;
    --font-size-s: 14px;
}

/* 900px */
@media screen and (max-width: 900px) {
    :root {
        --font-size-x: 7vw; /* 28px */
        --font-size-l: 5.5vw; /* 22px */
        --font-size-m: 4.5vw; /* 18px */
        --font-size-n: 4vw; /* 16px */
        --font-size-sn: 3.75vw; /* 15px */
        --font-size-s: 3.5vw; /* 14px */
    }
}


/* Selected Text
---------------------------------------------------*/
::selection {
    background: #191919;
    /* Safari */
    color: #FFFFFF;
}

/* BASE
---------------------------------------------------*/
html {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-size: 62.5%;
}
body {
    position: relative;
    width: 100%;
    line-height: 1;
    color: var(--font-color);
    font-size: var(--font-size-n);
    font-family: source-han-sans-jp-variable, sans-serif;
    font-weight: 400;
    font-variation-settings: "wght" 400; /*Regular*/
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background: #ECE7DE;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
:before,
:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
.sp-no {
    display: block;
}
br.sp-no {
    display: inline;
}
.pc-no {
    display: none;
}
br.pc-no {
    display: none;
}
.en {
    font-family: din-condensed-variable, sans-serif;
    font-variation-settings: "wght" 400;/*Regular ---unused*/
    font-weight: 400;
}
.mincho {
    font-family: shippori-mincho-b1, sans-serif;
    font-style: normal;
    font-weight: 700; /*Bold*/
}

/* 900 */
@media screen and (max-width: 900px) {
    body {
        min-width: auto;
        min-height: 100%;
        font-size: 3.75vw;
        -webkit-text-size-adjust: 100%;
    }
    .pc-no {
        display: block;
    }
    br.pc-no {
        display: inline;
    }
    .sp-no {
        display: none;
    }
    br.sp-no {
        display: none;
    }
}


/* link
---------------------------------------------------*/
a {
    text-decoration: none;
}
a:link,
a:visited,
a:active {
    color: var(--font-color);
}
a:hover {
    color: var(--hover-color);
}
a.u {
    text-decoration: underline;
}
a,
a:hover,
.hover {
    transition: color 0.5s, opacity 0.5s;
}
.hover:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media screen and (min-width: 769px) {
    a[href^="tel:"] {
        pointer-events: none;
        cursor: default;
    }
}

/* target = _blank
---------------------------------------------------*/
a[target="_blank"] {
    position: relative;
    /*padding-right: 28px;*/
    /*margin-right: 0.5em;*/
}
a[target="_blank"]::after {
    content: '';
    /*position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);*/
    display: inline-block;
    margin-inline: 0.5em;
    width: 16px;
    /*width: 20px;*/
    /*height: 20px;*/
    aspect-ratio: 1 / 1;
    background-image: url('../img/common/icon_window.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translateY(3px);
}

a.map[target="_blank"]::after {
    width: 14px;
    transform: translateY(1px);
}

#company a.map[target="_blank"]::after {
    background-image: url('../img/common/icon_window_beige.svg');
}

/* 900 */
@media screen and (max-width: 900px) {
    /*a[target="_blank"] {
        padding-right: 7vw;
    }*/
    a[target="_blank"]::after {
        /*width: 5vw;
        height: 5vw;*/
        width: 3.2vw;
        transform: translateY(2px);
    }
}


/* clearfix
---------------------------------------------------*/
.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: '';
    clear: both;
    height: 0;
}
.clearfix {
    min-height: 1px;
}

* html .clearfix {
    height: auto;
    overflow: hidden;
}

.clearfix {
    zoom: 1;
}


/* INPUT
---------------------------------------------------*/
input, button, select, textarea {
    font-family: inherit;
    font-size: 1em;
    color: inherit;
    margin: 0;
}
input, button {
    border: 0;
    line-height: normal;
    vertical-align: inherit;
    *vertical-align: middle;
}
input::-moz-focus-inner,
button::-moz-focus-inner {
    border: 0;
    padding: 0;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
    cursor: pointer;
    -webkit-appearance: button;
    *overflow: visible;
    border: 0;
    outline: none;
}
input[type="text"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="url"],
textarea,
select {
    overflow: hidden;
    outline: none;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
input:focus{ outline: 0 none black; }

/* ------ */
input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="datetime"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
textarea {
    width: 100%;
    color: #4E473D;
    font-size: var(--font-size-m);
    font-weight: 500;
    font-variation-settings: "wght" 500;/*Medium*/
    line-height: 1.6;
    letter-spacing: 0.06em;
    border: 1px solid #A19B8D;
    border-radius: 8px;
    padding: 4px 16px;
    vertical-align: middle;
}
input.wrote,
textarea.wrote {
    background-color: var(--white-color);
}
textarea {
    height: 8em;
    overflow: auto;
    resize: vertical;
}
select {
    width: 100%;
    font-weight: 500;
    font-variation-settings: "wght" 500;/*Medium*/
    border: 1px solid #A19B8D;
    vertical-align: middle;
    border-radius: 8px;
    padding: 4px 16px;
    line-height: 1.0em;
}
input:focus,
textarea:focus,
select:focus {
    border-color: var(--point-color);
    box-shadow: 0 0 0 1px var(--point-color);
    outline: 2px solid transparent;
}

.w100 {width: 100% !important;}
.w80 {width: 80% !important;}
.w60 {width: 60% !important;}
.w40 {width: 40% !important;}
.w30 {width: 30% !important;}
.w20 {width: 20% !important;}

/** placeholder **/
.placeholder {color: #808080; background-color: #fafafa;}
:placeholder-shown {color: #808080; background-color: #fafafa;}
/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {color: #808080; background-color: #fafafa;}
/* Firefox 18- */
:-moz-placeholder {color: #808080; background-color: #fafafa;}
/* Firefox 19+ */
::-moz-placeholder {color: #808080; background-color: #fafafa;}
/* IE 10+ */
:-ms-input-placeholder {color: #808080 !important; background-color: #fafafa;}

/* < 900px */
@media screen and (min-width: 1px) and (max-width: 900px) {
    input[type="text"],
    input[type="password"],
    input[type="number"],
    input[type="tel"],
    input[type="email"],
    input[type="url"],
    textarea {
        font-size: 16px;
        -webkit-appearance: none;
    }
    select {
        font-size: 16px;
        -webkit-appearance: none;
    }

    .placeholder,
    :placeholder-shown,
    ::-webkit-input-placeholder,
    :-moz-placeholder,
    ::-moz-placeholder,
    :-ms-input-placeholder {
        font-size: 3.125vw;
    }
}

/* .checkbox
-------------------------------------------------------------- */
input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}
.checkbox {
    position: relative;
    display: inline-block;
    padding: 6px 0 6px 48px;
    cursor: pointer;
}
.checkbox:before,
.checkbox:after {
    position: absolute;
    content: '';
    display: block;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}
.checkbox:before {
    width: 40px;
    aspect-ratio: 1 / 1;
    background-color: #fff;
    border: 1px solid #A19B8D;
    border-radius: 8px;
    z-index: 10;
}
.checkbox:after {
    width: 40px;
    aspect-ratio: 1 / 1;
    background-image: url('../img/common/form_check.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 28px 28px;
    opacity: 0;
    z-index: 20;
}
input[type="checkbox"]:checked + .checkbox:before {
    background-color: var(--white-color);
}
input[type="checkbox"]:checked + .checkbox:after {
    opacity: 1;
}
.checkbox:after,
.checkbox:before {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

/* 900px */
@media screen and (min-width:1px) and (max-width: 900px) {
    .checkbox {
        padding: 1.75vw 0 1.75vw 10vw;
    }
    .checkbox:before {
        width: 9vw;
        border-radius: 2vw;
    }
    .checkbox:after {
        width: 9vw;
        background-size: 5.5vw 5.5vw;
    }
}


/* .radio
-------------------------------------------------------------- */
input[type="radio"] {
    position: absolute;
    opacity: 0;
}
.radio {
    position: relative;
    display: inline-block;
    padding: 6px 0 6px 48px;
    cursor: pointer;
}
.radio:before,
.radio:after {
    position: absolute;
    display: block;
    content: '';
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    border-radius: 50%;
}
.radio:before {
    width: 40px;
    aspect-ratio: 1 / 1;
    background-color: #fff;
    border: 1px solid #A19B8D;
    z-index: 10;
}
.radio:after {
    left: 10px;
    width: 20px;
    aspect-ratio: 1 / 1;
    background-color: #4E473D;
    opacity: 0;
    z-index: 20;
}
input[type="radio"]:checked + .radio:before {
    background-color: var(--white-color);
}
input[type="radio"]:checked + .radio:after {
    opacity: 1;
}
.radio:after,
.radio:before {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

/* 900px */
@media screen and (min-width:1px) and (max-width: 900px) {
    .radio {
        padding: 1.75vw 0 1.75vw 10vw;
    }
    .radio:before {
        width: 9vw;
    }
    .radio:after {
        left: 2.25vw;
        width: 4.5vw;
    }
}



/* wrapper
---------------------------------------------------*/
#wrapper {
    background-color: #ECE7DE;
    margin: 0 auto;
    width: 100%;
    min-height: auto;
    overflow: hidden;
}
/* contents-wrap */
.contents-wrap {
    position: relative;
    width: 96%;
    max-width: 1040px;
    margin: 0 auto;
}

/* 900 */
@media screen and (max-width: 900px) {
    .contents-wrap {
        width: 87.5vw;
    }
}


/* header
---------------------------------------------------*/
#Header {
    width: 100%;
    height: 144px;
}
#Header .header-wrapper {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    border-top: 8px solid var(--main-color);
    background-color: var(--section-color);
    z-index: 9999;
}
#Header .inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 30px 40px 40px;
    margin: 0 auto;
}
#Header .inner > .logo {
    width: 240px;
}
#Header .logo img {
    width: 100%;
}
#Header .navigate-wrap {}
#Header .navigate-wrap .message {
    margin-bottom: 12px;
}
#Header .navigate-wrap .message p {
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.06em;
}
#Header .navigate-wrap .contact-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* telephone */
#Header .navigate-wrap .contact-area .telephone {
}
#Header .navigate-wrap .contact-area .telephone a {
    display: block;
    width: 100%;
}
#Header .navigate-wrap .contact-area .telephone a:hover {
}
#Header .navigate-wrap .contact-area .telephone .tel-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
#Header .navigate-wrap .contact-area .telephone .tel-wrap .icon {
    margin-right: 6px;
}
#Header .navigate-wrap .contact-area .telephone .tel-wrap .number .tel {
    color: var(--font-color);
    font-size: var(--font-size-l);
    font-weight: 400;
    white-space: nowrap;
    padding-top: 0.2em;
}
/* contact */
#Header .navigate-wrap .contact-area .contact {
    width: 220px;
    margin-left: 24px;
}

/* g-navi */
#g-navi {
    display: none;
    position: absolute;
    top: 100%;
    left: 100%;
    width: 100%;
    height: calc(100vh - 71px);
    overflow: hidden;
    transition: left 1.0s;
}
#g-navi .g-navi-inner {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 480px;
    height: 100%;
    background-color: #EBE3D7;
    /*padding: 88px 0 96px;*/
    padding: 48px 0 56px;
    overflow-y: auto;
    transition: right 0.5s;
}
#g-navi .g-navi-inner::-webkit-scrollbar {
    width: 4px;
}
#g-navi .g-navi-inner::-webkit-scrollbar-track {
    border-radius: 4px;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, .1);
}
#g-navi .g-navi-inner::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 50, .5);
    border-radius: 4px;
    box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
#g-navi ul.menu {
    display: flex;
    justify-content: center;
    /*margin-bottom: 300px;*/
    margin-bottom: 64px;
}
#g-navi ul.menu li {
    position: relative;
    -webkit-writing-mode: vertical-rl;
    writing-mode: tb-rl;
    text-orientation: upright;
    padding-top: 40px;
}
#g-navi ul.menu li::before {
    position: absolute;
    content: '';
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 8px solid var(--font-color);
}
#g-navi ul.menu li:not(:last-of-type) {
    margin-right: 24px;
}
#g-navi ul.menu li a {
    line-height: 1.4;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.4em;
}
/* g-navigate-wrap */
#g-navi .g-navigate-wrap {
    width: 360px;
    margin: 0 auto;
}
/* telephone */
#g-navi .telephone {
}
#g-navi .telephone + .btn-link {
    margin-top: 32px;
}
#g-navi .telephone dl {
    border-radius: 16px;
    overflow: hidden;
}
#g-navi .telephone dl dt {
    text-align: center;
    color: var(--white-color);
    font-size: var(--font-size-m);
    font-weight: 500;
    font-variation-settings: "wght" 500;/*Medium*/
    letter-spacing: 0.06em;
    background-color: var(--point-color);
    padding: 0.5em 0;
}
#g-navi .telephone dl dd {
    background-color: var(--white-color);
    padding: 16px 0;
}
#g-navi .telephone dl dd a {
    display: block;
    width: 100%;
}
#g-navi .telephone dl dd a:hover {
}
#g-navi .telephone dl dd .tel-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
#g-navi .telephone dl dd .tel-wrap .icon {
    width: 64px;
    margin-right: 8px;
}
#g-navi .telephone dl dd .tel-wrap .icon img {
    width: 100%;
}
#g-navi .telephone dl dd .tel-wrap .number .tel {
    color: var(--point-color);
    font-size: 48px;
    font-weight: 400;
    white-space: nowrap;
    padding-top: 0.2em;
}
#g-navi .telephone .tel-guide {
    display: none;
}
#g-navi .logo {
    width: 180px;
    margin: 56px auto 0;
}
#g-navi .logo img {
    width: 100%;
}

/* is-active */
#g-navi.is-active {
    display: block;
    left: 0;
    transition: left 0.5s;
}


/* btn-menu */
#btn-menu {
    display: none;
    position: absolute;
    top: 4px;
    right: 32px;
    width: 56px;
    height: 56px;
    cursor: pointer;
    z-index: 999;
}
#btn-menu .menu-trigger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 21px;
    z-index: 10;
}
#btn-menu .menu-trigger,
#btn-menu .menu-trigger span {
    transition: all 0.5s;
    box-sizing: border-box;
}
#btn-menu .menu-trigger span {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    border-radius: 4px;
    background-color: var(--font-color);
}
#btn-menu .menu-trigger span:nth-of-type(1) {
    top: 0;
}
#btn-menu .menu-trigger span:nth-of-type(2) {
    width: 40px;
    top: 50%;
    transform: translate(0, -50%);
}
#btn-menu .menu-trigger span:nth-of-type(2)::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 4px;
    background-color: var(--font-color);
    transition: all 0.15s;
}
#btn-menu .menu-trigger span:nth-of-type(3) {
    top: auto;
    bottom: 0;
    width: 24px;
}
#btn-menu.is-active .menu-trigger span {
    background-color: var(--font-color);
}
#btn-menu.is-active .menu-trigger span:nth-of-type(1) {
    transform: translate(50%) scale(0);
}
#btn-menu.is-active .menu-trigger span:nth-of-type(2) {
    transform: rotate(145deg);
}
#btn-menu.is-active .menu-trigger span:nth-of-type(2)::after {
    transform: rotate(70deg);
}
#btn-menu.is-active .menu-trigger span:nth-of-type(3) {
    transform: translate(-50%) scale(0);
}

/* is-ready */
#Header.is-ready .header-wrapper {
    top: -100px;
    transition: top 0.5s;
}

/* is-fixed */
#Header.is-fixed .header-wrapper {
    position: fixed;
    top: 0;
    transition: top 0.5s;
}
#Header.is-fixed .header-wrapper .inner {
    padding: 14px 124px 13px 32px;
}
#Header.is-fixed .header-wrapper .inner > .logo {
    width: 160px;
}
#Header.is-fixed .header-wrapper .navigate-wrap .message {
    display: none;
}
#Header.is-fixed #g-navi {
    display: block;
}
#Header.is-fixed #btn-menu {
    display: block;
}

/* < 900 */
@media screen and (max-width: 900px) {
    #Header {
        height: 18vw;
    }
    #Header .header-wrapper {
        top: 0;
        border-top-width: 2vw;
    }
    #Header .inner {
        padding: 3.5vw 24vw 3.5vw 4vw;
    }
    #Header .inner > .logo {
        width: 40vw;
    }
    #Header .navigate-wrap .message {
        display: none;
    }
    /* telephone */
    #Header .navigate-wrap .contact-area .telephone {
        display: none;
    }
    /* contact */
    #Header .navigate-wrap .contact-area .contact {
        width: 25vw;
        margin-left: 0;
    }

    /* g-navi */
    #g-navi {
        display: block;
        height: calc(100vh - 18vw);
        transition: left 0.5s;
    }
    #g-navi .g-navi-inner {
        width: 100%;
        height: 100%;
        padding: 21vw 0 27.25vw;
    }
    #g-navi ul.menu {
        margin-bottom: 16vw;
    }
    #g-navi ul.menu li {
        padding-top: 7vw;
    }
    #g-navi ul.menu li::before {
        width: 5vw;
        height: 5vw;
        border-width: 1.5vw;
    }
    #g-navi ul.menu li:not(:last-of-type) {
        margin-right: 6vw;
    }
    #g-navi ul.menu li a {
        line-height: 1.4;
        font-size: var(--font-size-m);
        font-weight: bold;
        letter-spacing: 0.4em;
    }

    /* g-navigate-wrap */
    #g-navi .g-navigate-wrap {
        width: 90vw;
    }
    /* telephone */
    #g-navi .telephone + .btn-link {
        margin-top: 8vw;
    }
    #g-navi .telephone dl {
        border-radius: 4vw;
    }
    #g-navi .telephone dl dd {
        padding: 4vw 0;
    }
    #g-navi .telephone dl dd .tel-wrap .icon {
        width: 16vw;
        margin-right: 2vw;
    }
    #g-navi .telephone dl dd .tel-wrap .number .tel {
        font-size: 12vw;
    }
    #g-navi .telephone .tel-guide {
        display: block;
        text-align: center;
        margin-top: 3vw;
    }
    #g-navi .telephone .tel-guide p {
        display: inline-block;
        color: var(--btn-font-color);
        font-size: var(--font-size-m);
        background-color: #8C637E;
        padding: 2.5vw 5vw;
        border-radius: 2em;
    }
    #g-navi .btn-link .btn-cover {
        width: 90vw;
    }

    #g-navi .logo {
        display: none;
    }

    /* is-active */
    #g-navi.is-active {
        transition: left 0.5s;
    }

    /* btn-menu */
    #btn-menu {
        display: block;
        top: 1vw;
        right: 4vw;
        width: 14vw;
        height: 14vw;
    }
    #btn-menu .menu-trigger {
        height: 5.25vw;
    }
    #btn-menu .menu-trigger span {
        height: 0.75vw;
    }
    #btn-menu .menu-trigger span:nth-of-type(2) {
        width: 10vw;
    }
    #btn-menu .menu-trigger span:nth-of-type(2)::after {
        height: 0.75vw;
    }
    #btn-menu .menu-trigger span:nth-of-type(3) {
        width: 6vw;
    }

    /* is-ready */
    #Header.is-ready .header-wrapper {
        top: -18vw;
    }

    /* fixed */
    #Header.is-fixed .header-wrapper .inner {
        padding: 3.5vw 24vw 3.5vw 4vw;
    }
    #Header.is-fixed .header-wrapper .inner > .logo {
        width: 40vw;
    }
}


/* Footer
---------------------------------------------------*/
#Footer {
    position: relative;
    background-color: var(--secondary-color);
}
#Footer .footer-inner {
    position: relative;
    width: 100%;
    padding: 120px 64px 160px;
    margin: 0 auto;
}
#Footer .footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
#Footer .footer-company {
}
#Footer .footer-company .logo {
    margin-bottom: 16px;
}
#Footer .footer-company .information {
    /*margin-left: 72px;*/
    margin-bottom: 56px;
    padding-right: 0.5em;
}
#Footer .footer-company .information p {
    font-size: var(--font-size-s);
    line-height: 1.8;
    letter-spacing: 0.01em;
}
#Footer .footer-company .information p b {
    font-weight: inherit;
    display: inline-block;
}
#Footer .footer-company .information p.name {
    font-weight: 700;
    margin-bottom: 0.4em;
}
#Footer .footer-company .information p.name span {
    font-size: 0.8em;
    font-weight: 500;
    font-variation-settings: "wght" 500;/*Medium*/
}
#Footer .footer-company .footer-menu ul.menu {
    /*margin-left: 16px;*/
}
#Footer .footer-company .footer-menu ul.menu li:not(:last-of-type) {
    margin-bottom: 16px;
}
#Footer .footer-company .footer-menu ul.menu li a {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    font-variation-settings: "wght" 500;/*Medium*/
    line-height: 1.2;
    letter-spacing: 0.01em;
    padding-left: 28px;
}
#Footer .footer-company .footer-menu ul.menu li a::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 6px solid #A19B8D;
}

/* footer-contact */
#Footer .footer-contact {
    width: 520px;
    border-radius: 24px;
    margin-top: 44px;
    overflow: hidden;
}
#Footer .footer-contact .title-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #A19B8D;
    padding: 16px 24px;
}
#Footer .footer-contact .title-block .title {
    position: relative;
    color: #ECE7DE;
    font-size: var(--font-size-m);
    font-weight: 500;
    font-variation-settings: "wght" 500;/*Medium*/
    line-height: 1.2;
    letter-spacing: 0.01em;
    padding-left: 28px;
}
#Footer .footer-contact .title-block .title::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 6px solid var(--background-color);
}
#Footer .footer-contact .title-block ul.tag-list {
    display: flex;
    align-items: center;
}
#Footer .footer-contact .title-block ul.tag-list li {
    color: #655C4E;
    font-size: var(--font-size-s);
    font-weight: 500;
    font-variation-settings: "wght" 500;/*Medium*/
    line-height: 1.2;
    letter-spacing: 0.01em;
    background-color: #ECE7DE;
    border-radius: 2em;
    padding: 6px 32px;
}
#Footer .footer-contact .title-block ul.tag-list li:not(:last-child) {
    margin-right: 8px;
}
#Footer .footer-contact .content-block {
    background-color: var(--section-color);
    padding: 24px 0;
}
#Footer .footer-contact .content-block .msg {
    text-align: center;
    font-size: var(--font-size-s);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

/* telephone */
#Footer .footer-contact .content-block .telephone {
    text-align: center;
}
#Footer .footer-contact .content-block .telephone a {
    display: inline-block;
}
#Footer .footer-contact .content-block .telephone a:hover {
}
#Footer .footer-contact .content-block .telephone .tel-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 80px;
    background-color: #ECE7DE;
    padding: 8px 40px;
}
#Footer .footer-contact .content-block .telephone .tel-wrap .icon {
    margin-right: 6px;
}
#Footer .footer-contact .content-block .telephone .tel-wrap .number .tel {
    color: var(--font-color);
    font-size: 48px;
    letter-spacing: -0.02em;
    white-space: nowrap;
    padding-top: 0.2em;
}
#Footer .footer-contact .content-block .time {
    text-align: center;
    font-size: var(--font-size-s);
    font-weight: 400;
    line-height: 1.6;
    margin-top: 16px;
}

#Footer .footer-contact .content-block .btn-link-wrap {
    border-top: 2px solid #ECE7DE;
    padding-top: 16px;
    margin-top: 24px;
}
#Footer .footer-contact .content-block .btn-link-wrap .btn-cover {
    max-width: 360px;
}
/* footer-navigation */
#Footer .footer-navigation {
    position: relative;
    background-color: var(--font-color);
    border-bottom: 16px solid var(--main-color);
    padding: 72px 40px 48px;
}
#Footer .footer-navigation::before {
    position: absolute;
    content: '';
    top: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--main-color);
}
#Footer .footer-navigation-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 37px;
}
#Footer .footer-navigation ul.card-list {
    display: flex;
    align-items: center;
}
#Footer .footer-navigation ul.card-list li:not(:last-child) {
    margin-right: 8px;
}
#Footer .footer-navigation ul.menu {
    display: flex;
    align-items: center;
}
#Footer .footer-navigation ul.menu li:not(:last-child) {
    margin-right: 24px;
}
#Footer .footer-navigation ul.menu li a {
    line-height: 1.4;
    color: var(--btn-font-color);
    font-size: var(--font-size-s);
}
#Footer .footer-navigation ul.menu li a:hover {
    color: var(--white-color);
    text-decoration: underline;
}
#Footer .footer-navigation .copy {
    line-height: 1.6;
    color: #ECE7DE;
    font-size: var(--font-size-s);
}

/*  900  */
@media screen and (max-width: 900px) {
    #Footer .footer-inner {
        padding: 12vw 0 10.5vw;
    }
    #Footer .footer-wrap {
        display: block;
    }
    #Footer .footer-company {
        margin-bottom: 10vw;
    }
    #Footer .footer-company .logo {
        margin-left: 4.5vw;
        /*margin-bottom: 2vw;*/
        margin-bottom: 4vw;
    }
    #Footer .footer-company .logo img {
        width: 60vw;
    }
    #Footer .footer-company .information {
        margin-left: 20vw;
        margin-left: 4.5vw;
        margin-bottom: 12vw;
        padding-right: 0;
    }
    #Footer .footer-company .footer-menu ul.menu {
        margin-left: 0;
        border-top: 1px solid #A19B8D;
    }
    #Footer .footer-company .footer-menu ul.menu li {
        border-bottom: 1px solid #A19B8D;
    }
    #Footer .footer-company .footer-menu ul.menu li:not(:last-of-type) {
        margin-bottom: 0;
    }
    #Footer .footer-company .footer-menu ul.menu li a {
        font-size: var(--font-size-m);
        padding: 4vw 0 4vw 13vw;
    }
    #Footer .footer-company .footer-menu ul.menu li a::before {
        left: 4vw;
        width: 5vw;
        height: 5vw;
        border-width: 1.5vw;
    }

    /* footer-contact */
    #Footer .footer-contact {
        width: 96vw;
        border-radius: 4vw;
        margin: 0 auto;
    }
    #Footer .footer-contact .title-block {
        padding: 4vw 6vw;
    }
    #Footer .footer-contact .title-block .title {
        font-size: 5vw;
        padding-left: 9vw;
    }
    #Footer .footer-contact .title-block .title::before {
        width: 5vw;
        height: 5vw;
        border-width: 1.5vw;
    }
    #Footer .footer-contact .title-block ul.tag-list {
        display: block;
    }
    #Footer .footer-contact .title-block ul.tag-list li {
        padding: 0.25vw 8vw;
    }
    #Footer .footer-contact .title-block ul.tag-list li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 2vw;
    }
    #Footer .footer-contact .content-block {
        padding: 6vw 0 8vw;
    }
    #Footer .footer-contact .content-block .msg {
        margin-bottom: 4vw;
    }
    /* telephone */
    #Footer .footer-contact .content-block .telephone .tel-wrap {
        border-radius: 20vw;
        padding: 1.5vw 6vw;
    }
    #Footer .footer-contact .content-block .telephone .tel-wrap .icon {
        margin-right: 1.5vw;
    }
    #Footer .footer-contact .content-block .telephone .tel-wrap .icon img {
        width: 14vw;
    }
    #Footer .footer-contact .content-block .telephone .tel-wrap .number .tel {
        font-size: 10vw;
    }
    #Footer .footer-contact .content-block .time {
        margin-top: 4vw;
    }
    #Footer .footer-contact .content-block .btn-link-wrap {
        padding-top: 4vw;
        margin-top: 6vw;
    }
    #Footer .footer-contact .content-block .btn-link-wrap .btn-cover {
        max-width: 75vw;
    }

    /* footer-navigation */
    #Footer .footer-navigation {
        border-bottom-width: 4vw;
        padding: 10vw 0 6vw;
    }
    #Footer .footer-navigation-wrap {
        display: block;
        margin-bottom: 10vw;
    }
    #Footer .footer-navigation ul.card-list {
        display: block;
        text-align: center;
        margin-bottom: 6vw;
    }
    #Footer .footer-navigation ul.card-list li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 5vw;
    }
    #Footer .footer-navigation ul.menu {
        display: block;
        text-align: center;
    }
    #Footer .footer-navigation ul.menu li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 3vw;
    }
    #Footer .footer-navigation .copy {
        text-align: center;
        color: var(--btn-font-color);
    }
}




/* pageTop
---------------------------------------------------*/
#pageTop {
    position: fixed;
    right: 20px;
    bottom: 120px;
    width: 30px;
    height: 30px;
    background-color: rgba(0,0,0,0.3);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    text-indent: -999px;
    overflow: hidden;
    cursor: pointer;
    z-index: 999;
}
#pageTop:after {
    position: absolute;
    content: '';
    top: 40%;
    left: 55%;
    transform: rotate(-45deg) translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
}

/*  < 900  */
@media screen and (max-width: 900px) {
    #pageTop {
        right: 3.125vw;
        bottom: 18.75vw;
        width: 4.6875vw;
        height: 4.6875vw;
    }
    #pageTop:after {
        width: 1.5625vw;
        height: 1.5625vw;
    }
}



/* title
---------------------------------------------------*/
.ttl-page {
    line-height: 1.5;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 64px;
}
.ttl-page b {
    display: inline-block;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
}
.ttl-section {
    position: relative;
    -webkit-writing-mode: vertical-rl;
    writing-mode: tb-rl;
    text-orientation: upright;
}
.ttl-section span {
    display: inline-block;
    line-height: 1.4;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 0.2em;
    white-space: nowrap;
}
.ttl-block {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 36px;
    overflow: hidden;
}
.ttl-block::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 20px;
    aspect-ratio: 1 / 1;
    border: 6px solid var(--font-color);
    border-radius: 50%;
}
.ttl-block span {
    position: relative;
    display: inline-block;
    line-height: 1.2;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.06em;
    white-space: nowrap;
}
.ttl-block span::after {
    position: absolute;
    content: '';
    top: 50%;
    transform: translate(0, -50%);
    width: 100vw;
    height: 1px;
    background-color: var(--font-color);
    margin-left: 24px;
}
/*
.ttl-block::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background-color: var(--font-color);
}
*/


/* 900 */
@media screen and (max-width: 900px) {
    .ttl-page {
        font-size: var(--font-size-x);
        letter-spacing: 0.1em;
        margin-bottom: 14vw;
    }
    .ttl-section span {
        font-size: 8vw;
    }
    .ttl-block {
        padding-left: 9vw;
    }
    .ttl-block::before {
        width: 5vw;
        border-width: 1.5vw;
    }
    .ttl-block span {
        font-size: var(--font-size-m);
        letter-spacing: 0;
    }
    .ttl-block span::after {
        margin-left: 6vw;
    }
}


/* BTN
---------------------------------------------------*/
/* btn-submit */
.btn-submit {
    text-align: center;
}
.btn-submit .btn-cover {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 380px;
    background-color: var(--point-color);
    padding: 1px 6px;
    border-radius: 2em;
    z-index: 1;
    transition: background-color 0.5s;
}
.btn-submit .btn-cover::after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 8px);
    height: calc(100% - 2px);
    background-color: var(--background-color);
    border-radius: 2em;
    z-index: 2;
}
.btn-submit input[type="submit"] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    line-height: 1;
    text-align: center;
    color: var(--btn-font-color);
    font-size: var(--font-size-n);
    font-weight: 500;
    font-variation-settings: "wght" 500;/*Medium*/
    letter-spacing: 0.06em;
    background-color: var(--point-color);
    border: 1px solid var(--point-color);
    border-radius: 2em;
    padding: 16px 1em;
    transition: background-color 0.5s, border 0.5s;
    z-index: 3;
    margin: 0 auto;
}
.btn-submit input[type="submit"]:focus {
    border: 0;
    box-shadow: none;
    outline: none;
}

/* hover */
.btn-submit .btn-cover:hover {
    background-color: #B86B9E;
}
.btn-submit input[type="submit"]:hover {
    background-color: #B86B9E;
    border-color: #B86B9E;
}

/* disabled */
.btn-submit.disabled .btn-cover {
    background-color: var(--point-color);
    opacity: 0.3;
}
.btn-submit.disabled input[type="submit"],
.btn-submit.disabled input[type="submit"]:hover {
    background-color: var(--point-color);
    border-color: var(--point-color);
    cursor: default;
}

/* back */
.btn-submit.back .btn-cover {
    background-color: #A19B8D;
}
.btn-submit.back input[type="submit"] {
    background-color: #A19B8D;
    border-color: #A19B8D;
}
.btn-submit.back .btn-cover:hover {
    background-color: #BEB8AA;
}
.btn-submit.back input[type="submit"]:hover {
    background-color: #BEB8AA;
    border-color: #BEB8AA;
}

/* next */
.btn-submit.next .btn-cover {
    background-color: #359F9F;
}
.btn-submit.next input[type="submit"] {
    background-color: #359F9F;
    border-color: #359F9F;
}
.btn-submit.next .btn-cover:hover {
    background-color: #2DC28C;
}
.btn-submit.next input[type="submit"]:hover {
    background-color: #2DC28C;
    border-color: #2DC28C;
}


/* btn-link */
.btn-link.cnt {
    text-align: center;
}
.btn-link .btn-cover {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 380px;
    background-color: var(--font-color);
    padding: 1px 6px;
    border-radius: 2em;
    z-index: 1;
    transition: background-color 0.5s;
}
.btn-link .btn-cover::after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 8px);
    height: calc(100% - 2px);
    background-color: var(--background-color);
    border-radius: 2em;
    z-index: 2;
}
.btn-link a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    line-height: 1;
    text-align: center;
    color: var(--btn-font-color);
    font-size: var(--font-size-n);
    font-weight: 500;
    font-variation-settings: "wght" 500;/*Medium*/
    letter-spacing: 0.06em;
    background-color: var(--font-color);
    border: 1px solid var(--font-color);
    border-radius: 2em;
    padding: 16px 1em;
    margin: 0 auto;
    transition: background-color 0.5s, border 0.5s;
    z-index: 3;
}
.btn-link.hdr a {
    font-size: var(--font-size-s);
    padding: 4px 1em;
}
.btn-link.ftr a {
    font-size: var(--font-size-s);
    padding: 6px 1em;
}
.btn-link.large .btn-cover {
    max-width: 516px;
}
.btn-link.large a {
    font-size: 24px;
    padding: 16px 1em;
}

/* hover */
.btn-link .btn-cover:hover {
    background-color: var(--hover-color);
}
.btn-link a:hover {
    background-color: var(--hover-color);
    border-color: var(--hover-color);
}

/* 900px */
@media screen and (max-width: 900px) {
    /* btn-submit */
    .btn-submit .btn-cover {
        max-width: 70vw;
        padding: 0.25vw 1.5vw;
    }
    .btn-submit .btn-cover::after {
        width: calc(100% - 2vw);
        height: calc(100% - 0.5vw);
    }
    .btn-submit input[type="submit"] {
        padding: 2.5vw 0;
    }

    /* btn-link */
    .btn-link .btn-cover {
        max-width: 70vw;
        padding: 0.25vw 1.5vw;
    }
    .btn-link .btn-cover::after {
        width: calc(100% - 2vw);
        height: calc(100% - 0.5vw);
    }
    .btn-link a {
        padding: 2.5vw 0;
    }
    .btn-link.hdr a {
        padding: 1vw 0;
    }
    .btn-link.ftr a {
        padding: 1.5vw 0;
    }
    .btn-link.large .btn-cover {
        max-width: 80vw;
    }
    .btn-link.large a {
        font-size: var(--font-size-m);
        padding: 4vw 0;
    }
}


/* COMMON
---------------------------------------------------*/
/* toggle */
.btn-toggle {
    cursor: pointer;
}
.btn-toggle + .toggle-content {
    display: none;
}


/* LIST
---------------------------------------------------*/
ul.disc > li {
    list-style-type: disc;
    margin-left: 1.5em;
    text-indent: 0;
}
ol.decimal > li {
    list-style-type: decimal;
    margin-left: 1.5em;
    text-indent: 0;
}
ol.parentheses {
    padding: 0 0 0 2em;
    margin: 0;
}
ol.parentheses > li {
    position: relative;
    list-style-type: none;
    list-style-position: inside;
    counter-increment: cnt;
}
ol.parentheses > li:before {
    position: absolute;
    top: 0;
    left: -3.5em;
    width: 3em;
    text-align: right;
    display: marker;
    content: '[' counter(cnt) ']';
}

ol.circlenum {
    padding: 0 0 0 2em;
    margin: 0;
}
ol.circlenum > li {
    position: relative;
    list-style-type: none;
    list-style-position: inside;
    counter-increment: cnt2;
}
ol.circlenum > li:before {
    position: absolute;
    top: 0.4em;
    left: -2em;
    width: 1.4em;
    aspect-ratio: 1 / 1;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 72%;
    line-height: 1;
    text-align: center;
    display: marker;
    content: counter(cnt2);
}

ul.annotation > li {
    padding-left: 1.2em;
    text-indent: -1.2em;
}
ul.annotation > li:before {
    content: '※';
    display: inline-block;
    text-indent: 0;
    width: 1.2em;
    text-align: left;
}

ul.check > li {
    position: relative;
    padding-left: 1.2em;
    text-indent: 0;
}
ul.check > li:before {
    display: marker;
    position: absolute;
    content: '';
    top: 40%;
    left: 0;
    transform: translate(0, -50%) rotate(45deg);
    width: 0.6em;
    height: 1.0em;
    border-right: 3px solid #333;
    border-bottom: 3px solid #333;
}

/* Effect
---------------------------------------------------*/
.fadein {
    filter: alpha(opacity=0);
    opacity: 0.0;
    transform: scale(1.0) translate(0, 60px);
    transition: 0.6s;
    -webkit-transition: 0.6s;
}
.fadein_on {
    filter: alpha(opacity=100);
    opacity: 1.0;
    transform: scale(1.0) translate(0, 0);
}

/* scale-in */
.fadein.scale-in {
    transform: scale(1.0) translate(0, 0);
    transition: 0.5s;
    -webkit-transition: 0.5s;
    transition-timing-function: ease-in;
    -webkit-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
}
.fadein_on.scale-in {
    opacity: 1.0;
    transform: scale(1.0) translate(0, 0);
    -webkit-filter: blur(0px);
    -ms-filter: blur(0px);
}
/* fadeout */
.fadeout_on {
    filter: alpha(opacity=0) !important;
    opacity: 0.0 !important;
    transform: scale(1.0) !important;
}



/* Slider
---------------------------------------------------*/
.slick-slider {
    position: relative;
    display: none;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-slider.slick-initialized {
    display: block;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/*---------------------------------------*/
/* Slider */
.slick-loading .slick-list {
    background: #fff;
}
/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    z-index: 1;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    outline: none;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25;
}
.slick-prev:before,
.slick-next:before {
    display: block;
    content: '';
    width: 20px;
    height: 20px;
    border-top: 1px solid #000;
    opacity: .75;
}
.slick-prev {
    left: 20px;
}
.slick-prev:before {
    border-left: 1px solid #000;
    transform: rotate(-45deg);
}
.slick-next {
    right: 20px;
}
.slick-next:before {
    border-right: 1px solid #000;
    transform: rotate(45deg);
}

/* Dots */
.slick-dots {
    position: absolute;
    bottom: -30px;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: center;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}
.slick-dots li {
    position: relative;
    width: 10px;
    height: 10px;
    margin: 0 10px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #ccc;
    border-radius: 50%;
    -webkit-border-radius: 50%;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}
.slick-dots li.slick-active button {
    background-color: #ddd;
}

/* slick theme
---------------------------------------------------*/

/* Below 900px */
@media screen and (min-width:1px) and (max-width: 900px) {

    /* Dots */
    .slick-dots {
        bottom: -6.25vw;
    }
    .slick-dots li {
        width: 1.875vw;
        height: 1.875vw;
        margin: 0 1.5625vw;
    }
    .slick-dots li button {
        width: 1.875vw;
        height: 1.875vw;
    }
}


