@charset "utf-8";

/* --- */
/* 全体 */
/* --- */

* {
    margin: 0;
    padding: 0;
}

:root{
    --text-size: 18px;
    --main-color:#333333;
    --sab-color:#C69195;
    --font-family: hiragino-kaku-gothic-pron, sans-serif;
    --font-mincho: hiragino-mincho-pron, sans-serif;
}

body {
    background-color: #FFF;
    font-size: var(--text-size);
    font-family: var(--font-family);
    font-weight: 300;
    font-style: normal;
    box-sizing: border-box;
    color: var(--main-color);
    line-height: 2.2;
    letter-spacing: 2px;

}

.inner {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;    /* boxからはみ出た部分を非表示 */
}

.sec01 {
    padding: 100px 0;
}

.sec02 {
    padding: 100px 0 150px 0;
}

.sec03 {
    padding-top: 100px;
}

.sec04 {
    padding: 50px 0;
}

.padding {
    padding-left: 30px;
    padding-right: 30px;
}

.pc-none {
    display: none;
}

a[href^="tel"] {
    color: inherit;
}

/* ------- */
/* タイトル */
/* ------- */
.section-title {
    font-size: 130px;
    font-family: beloved-script, sans-serif;
    font-weight: 400;
    font-style: bold;
    color: var(--sab-color);
    opacity: 0.3;
    margin: 0;
}

/* ----- */
/* ボタン */
/* ----- */

.btn {
    display: block;
    width: 300px;
    text-align: center;
    color: var(--sab-color);
    background-color: #FFF;
    border: 1px solid var(--sab-color);
    font-size: 14px;
    padding: 10px 25px;
    margin-top: 50px;
    transition: background-color 1s ease;

}

.btn::after {
    display: inline-block;
    content: url(../images/migiyajirushi.svg);
    margin-left: 10px;
    transition: transform 1s ease;
}

.btn:hover {
    color: #FFF;
    background-color: var(--sab-color);
    font-size: 14px;
    padding: 10px 25px;
    margin-top: 50px;
}

.btn:hover::after {
    display: inline-block;
    content: url(../images/migiyajirushi-h.svg);
    transform: translateX(10px);
}

/* ------------ */
/* アニメーション */
/* ------------ */
.box {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out; /* 変化の速度 */
}

/* JavaScriptで付与されるクラス */
.box.is-active {
    opacity: 1;
    transform: translateY(0);
}

/* ------ */
/* circle */
/* ------ */
.circle {
    width: 180px;
    height: 180px;
    background-color: #C69195;
    border-radius: 50%;
    filter: blur(45px);
    opacity: 0.3;
}

/* -------- */
/* triangle */
/* -------- */
.triangle {
    background-color: var(--sab-color);
    width: 30px;
    height: 25px;
    clip-path: polygon(0 0,100% 0, 50% 100%);
    margin: 0 auto;
}

/* ------ */
/* header */
/* ------ */
header {
    width: 100%;
    position: relative;
    width: calc(100% - 20px);
    height: 100px;
    margin: 0 auto;
    z-index: 1000;
}

.header_menu img {
    display: block;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    height: 96px;
    width: auto;
}

.header-contact-btn {
    position: fixed;
    top: 20px;
    right: 100px;
    width: 150px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #FFF;
    background-color: var(--sab-color);
}

.header-contact-btn a {
    display: inline-block;
    font-size: 16px;
    color: #FFF;
}

/* ----------------- */
/* ハンバーガーメニュー */
/* ----------------- */
    .hamburger-overlay {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    cursor: pointer;
    }

    .hamburger-overlay__line {
    position: absolute;
    left: 11px;
    width: 26px;
    height: 2px;
    background-color: var(--sab-color);
    transition: all .6s;
    }

    .hamburger-overlay__line:nth-of-type(1) { top: 14px; }
    .hamburger-overlay__line:nth-of-type(2) { top: 23px; }
    .hamburger-overlay__line:nth-of-type(3) { top: 32px; }

    .hamburger-overlay.active .hamburger-overlay__line {
    background-color: var(--sab-color);
    }

    .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
    }
    .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
    opacity: 0;
    }
    .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
    }

    .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #FCF2F2;
    visibility: hidden;
    opacity: 0;
    transition: all .6s;
    z-index: 900;
    }

    .nav-overlay.active {
    visibility: visible;
    opacity: 1;
    }

    .nav-overlay__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    }

    .nav-overlay__list {
    margin: 0;
    padding: 0;
    list-style: none;
    }

    .nav-overlay__item {
    opacity: 0;
    transform: translateY(20px);
    transition: all .6s;
    }

    .nav-overlay.active .nav-overlay__item {
    opacity: 1;
    transform: translateY(0);
    }

    .nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
    .nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
    .nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
    .nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }

    .nav-overlay__link {
    display: inline-block;
    padding: 18px;
    color: #5C5C5C;
    font-size: 26px;
    font-family: var(--font-mincho);
    text-decoration: none;
    transition: color .3s;
    }

    .nav-overlay__link:hover {
    color: var(--sab-color);
    }

/* ------ */
/* footer */
/* ------ */
.recruit {
    padding-left:30px;
    padding-right: 30px;
}

.recruit img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    box-shadow: 0 0 15px #c1c1c1;
}

.footer-wrapper {
    width: 100%;
    background-image: url(../images/footer-bk.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 auto;
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
}

.footer-contact {
    width: 100%;
    max-width: 815px;
    background-color: #ffffffb8;
    margin: 0 auto;
    padding: 50px;
}

.footer-contact p {
    font-size: 38px;
    font-family: var(--font-mincho);
    font-weight: 300;
    color: var(--sab-color);
    margin-bottom: 50px;
}

.footer-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-btn a {
    width: 340px;
    height: 100px;
    line-height: 100px;
    display: inline-block;
    color: #FFF;
    font-size: 20px;
    font-weight: 600;
}

.footer-btn a:nth-child(1) {
    background-color: var(--sab-color);
    margin-right: 15px;
}

.footer-btn a:nth-child(2) {
    background-color: #BCBBBB;
}

.company {
    width: 100%;
    background-color: var(--sab-color);
    margin: 0 auto;
    text-align: center;
}

.footer-menu {
    margin: 30px 0;
}

.footer-menu a {
    color: #FFF;
    padding: 0 15px;
    border-right: 1px solid #FFF;
}

.footer-menu a:last-child {
    border-right: none;
}

.company-wrapper img {
    width: 100%;
    max-width: 395px;
}

.company-wrapper {
    color: #FFF;
    letter-spacing: 1px;
}

.copy {
    height: 30px;
    line-height: 30px;
    background-color: #484848;
    text-align: center;
    color: #FFF;
    font-size: 18px;
}

/* ------------- */
/* スクロールトップ */
/* -------------- */

.page-top p {
    font-size: 16px;
    text-align: center;
    color: var(--main-color);
}

.page-top {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 40px;
    bottom: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    border: 0;
    background: none;
    transition: .2s;
}

.page-top p{
    writing-mode: vertical-rl;
    text-decoration: none;
    text-transform: uppercase;
    height: 85px;
    margin: 0;
    letter-spacing: 5px;
    text-align: right;
}

.page-top p:before {
    content: "";
    position: absolute;
    top: 2px;
    right: -5px;
    width: 2px;
    height: 20px;
    background: var(--main-color);
    transform: skewX(-150deg);
}

.page-top p:after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 2px;
    height: 85px;
    background: var(--main-color);
}

.is-active {
    opacity: 1;
    visibility: visible;
}

/* --------------- */
/* 下層ページヘッダー */
/* --------------- */

.page-hero {
    background-image: url(../images/page-hero-img.png);
    background-size: cover;
    width: 100%;
    height: 280px;
    text-align: center;
}

.page-hero h1 {
    line-height: 280px;
    font-size: 50px;
    font-family: var(--font-mincho);
    font-weight: 300;
    color: #FFF;
    text-shadow: 0 0 15px #000000,
            0 0 15px #000000;
}

/* --------------- */
/* コンタクトフォーム */
/* --------------- */

.contact-form-inner {
    width: 100%;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 100px;
    }
    .form-item:first-child {
    margin-top: 0;
    }
    .form-item {
    width: 70%;
    margin: 30px auto 0;
    }
    .form-item label{
    display: block;
    font-size: 16px;
    color: #333333;
    margin-bottom: 0;
    }
    .form-item input{
    width: 100%;
    height: 50px;
    padding: 15px;
    border-radius: 2px;
    border: 1px solid #cccccc;
    }

    .form-item input::placeholder,
    .form-item textarea::placeholder {
    padding-left:15px;
    }
    .form-flex {
    display: flex;
    flex-direction: column;
    }
    .form-flex input {
    height: 50px;
    border-radius: 2px;
    border: 1px solid #cccccc;
    }
    .form-flex input.your-add-1 {
    width: 40%;
    }
    .form-flex input.your-add-2 {
    width: 100%;
    }
    .form-hissu {
    color: #ffffff;
    font-size: 13px;
    margin-left: 15px;
    padding: 3px 5px;
    background-color: var(--sab-color);
    }

    .form-item textarea{
    height: auto;
    width: 100%;
    border-radius: 2px;
    border: 1px solid #cccccc;
    padding: 15px;
    }
    .last-check {
    display: flex;
    align-items: center;
    vertical-align: middle;
    }
    .last-check > input {
    width: auto;
    height: auto;
    margin: 0 10px 0 0;
    }
    .last-check a {
    text-decoration: none;
    }
    .form-item.send-btn{
        height: 50px;
        background-color: var(--sab-color);
    /* max-width: 200px; */
    margin: 40px auto 0;
    }
    .send-btn p {
    text-align: left;
    }

    .form-item.send-btn input{
    background-color: var(--sab-color-blue);
    color: #ffffff;
    border: 0;
    border-radius: 0px;
    font-weight: 700;
    cursor: pointer;
    }
    .form-item.send-btn input:hover {
    background-color: #FFFFFF;
    color: var(--sab-color-blue);
    border: 1px solid var(--sab-color-blue);
    transition: all .3s;
    }

    @media screen and (max-width:768px) {
    .contact-form-inner {
    padding: 50px 30px;
    border: none;
    }
    .form-item {
    width: 95%;
    margin: 20px auto 0;
    }
    .form-item > input{
    height: 35px;
    border-radius: 15px;
    margin-top: 5px;
    }
    .form-item textarea{
    border-radius: 15px;
    margin-top: 5px;
    }
    .form-item input::placeholder {
    padding-left:5px;
    }
    .form-flex input {
    height: 35px;
    border-radius: 15px;
    margin-top: 5px;
    }
    .form-flex input.your-add-1 {
    width: 70%;
    }
    .form-hissu {
    margin-left: 5px;
    }
    .form-free {
    margin-left: 5px;
    }
    .last-check > input {
    margin: 0 5px 0 0;
    }
    .form-item.send-btn{
    width: 80%;
    margin: 30px auto 0;
    }
}

/* ---------------------- */
/* 投稿・固定・記事一覧ページ */
/* ---------------------- */


.page-topic-title {
    font-size: 20px;
    font-weight: 600;
    text-align: left;
}

.page-topic-date {
    font-size: 16px;
    font-weight: 300;
    text-align: left;
}

.page-topic-content {
    font-size: 18px;
    text-align: left;
    margin-top: 50px;
}

/* ---------------------- */
/* お問い合わせボタンの非表示 */
/* ---------------------- */

.page-id-11 .header-contact-btn,
.page-id-11 .contact-btn-sp {
    display: none;
}

/* ----------------- */
/* プライバシーポリシー */
/* 特定商取引法        */
/* ----------------- */

.policy-wrapper h3 {
    text-align: left;
}

.policy-wrapper > p {
    text-align: left;
    margin-bottom: 30px;
}

.sct-wrapper h3 {
    font-size: 25px;
    text-align: left;
    margin-bottom: 20px;
}

.sct-wrapper p,
.policy-wrapper h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--sab-color);
}

.sct-wrapper p,
.sct-wrapper dd,
.policy-wrapper h2,
.policy-wrapper p,
.policy-wrapper ol {
    text-align: left;
}

.sct-list li,
.policy-list > li {
    padding: 20px 0;
    border-top: 1px solid #dfdfdf;
}

.policy-list ol,
.policy-list li li {
    margin-left: 30px;
}

/* ----- */
/* その他 */
/* ----- */

ul {
    list-style: none;
}

a {
    text-decoration: none;
}



/* ---------- */
/* レスポンシブ */
/* ---------- */

@media (max-width:900px) {

    .inner {
        max-width: 900px;
    }


}

@media (max-width:768px){
    /* ------- */
    /* タイトル */
    /* ------- */

    .pc-none {
        display: block;
    }

    .tb-none {
        display: none;
    }

    .section-title {
        font-size: 80px;
        text-align: center;
    }

    /* --------------- */
    /* 下層ページヘッダー */
    /* --------------- */

    .page-hero {
        background-position-x: 50%;
    }

    .page-hero h1 {
        font-size: 30px;
    }
    

}

@media (max-width:480px) {

    :root{
        --text-size: 15px;
    }

    .inner {
        max-width: 480px;
    }

    .sec01 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .sec02 {
        padding: 50px 0 80px;
    }

    .sec03 {
        padding-top: 50px;
    }

    .tb-none {
        display: block;
    }

    .sp-none {
        display: none;
    }

    /* ------ */
    /* circle */
    /* ------ */
    .circle {
        width: 100px;
        height: 100px;
        opacity: 0.5;
    }

    /* -------- */
    /* triangle */
    /* -------- */
    .triangle {
        width: 20px;
        height: 15px;
    }

    /* ------ */
    /* header */
    /* ------ */

    .header_menu img {
        height: 100px;
    }

    /* ------ */
    /* footer */
    /* ------ */

    .recruit img {
        width: 90%;
    }

    .footer-wrapper {
        background-position-x: center;
    }

    .footer-contact {
        width: 90%;
        padding: 30px;
    }

    .footer-contact p {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .footer-btn a {
        width: 340px;
        height: 60px;
        line-height: 60px;
        font-size: 18px;
    }

    .footer-menu {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .footer-menu a {
        border-right: none;
    }

    .page-hero {
        background-position-x: 70%;
    }

    .copy {
        font-size: 15px;
        padding-bottom: 100px;
    }


    /* スクロールトップ */

    .page-top {
        bottom: 120px;
    }


    /* コンタクトボタンースマホ版 */

    .contact-btn-sp {
        position: fixed;
        bottom: 0;
        display: inline-block;
        width: 100%;
        height: 80px;
        line-height: 80px;
        background-color: #ffffff9f;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .contact-btn-sp div {
        width: 65%;
        height: 50px;
        line-height: 50px;
        background-color: #FFF;
        box-shadow: 0 0 15px #a1a1a1;
        color: var(--sab-color);
        text-align: center;
        margin: 0 auto;
    }

    .policy-list ol,
    .policy-list li li {
        margin-left: 10px;
    }


}
