/*====================================================*/
/* 外枠 */
/*====================================================*/
main {
    max-width: 780px;
    margin: auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    background-color: #fff;
    border-right: 2px solid #333;
    border-left: 2px solid #333;
} 
.main_wrap {
    padding-top: 2.5rem;
    padding-bottom: 5rem;
    padding-right : calc( 35 * 100% / 780 );
    padding-left : calc( 35 * 100% / 780 );
    border-right: 2px solid #333;
    border-left: 2px solid #333;
}

@media print,screen and (min-width: 781px){
    .main_wrap {
        padding-top: 5rem;
        padding-bottom: 10rem;
    }
}


/*====================================================*/
/* 共通 */
/*====================================================*/
.page_title {
    width: 54%;
    max-width: 369px;
    margin: auto;
    font-size: clamp(15px, 4.68vw, 30px);
    text-align: center;
}
.page_title::before,
.page_title::after {
    content: "";
    display: block;
    width: 100%;
    height: 4vw;
    background-size: contain;
    background-repeat: no-repeat;
}
.page_title::before {
    background-image: url(../img/page/line-top.svg);
    background-position: bottom;
    margin-bottom: 1.5rem;
}
.page_title::after {
    background-image: url(../img/page/line-bottom.svg);
    background-position: top;
    margin-top: 1.5rem;
}

@media print,screen and (min-width: 781px){
    .page_title::before {
        height: 3vw;
        margin-bottom: 2.5rem;
    }
    .page_title::after {
        height: 3vw;
        margin-top: 2.5rem;
    }
}


/* 新着ラベル */
.new_label {
    display: inline-block;
    padding: 0.3em 1em;
    margin-right: 1em;
    background-color: #333;
    color: #fff;
    font-size: var(--font16);
    font-weight: 500;
    text-align: center;
}


/*====================================================*/
/* お知らせ一覧 */
/*====================================================*/
.news-list {
    margin-top: 3rem;
}
.news-post {
    margin-bottom: 3rem;
    border-bottom: 2px solid #333;
    position: relative;
    transition: var(--hover-transition);
}
.news-post:hover {
    opacity: 0.6;
}
.news-post::before,
.news-post::after {
    content: "";
    display: block;
    width: 20px;
    height: 6px;
    background-image: url(../img/common/arrow-parts.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -4px;
}
.news-post::before {
    background-position: left;
    transform: scale(-1, 1);
    left: -1px;
}
.news-post::after {
    background-position: right;
    right: -1px;
}

.news-post_top {
    margin-bottom: 1em;
    font-size: var(--font16);
    font-weight: 500;
}
.news-post_title {
    padding-bottom: 1em;
    font-size: var(--font18);
    font-weight: 500;
}

@media print,screen and (min-width: 781px){
    .news-list {
        margin-top: 5.5rem;
    }
    .news-post {
        margin-bottom: 4rem;
    }
}


/*====================================================*/
/* お知らせ詳細 */
/*====================================================*/
.single-main {
    margin-top: 3rem;
}
.single-main .news-post_top {
    margin-bottom: 2.5rem;
}
.single-title {
    margin-bottom: 2.5rem;
    font-size: clamp(18px, 5.62vw, 25px);
    font-weight: 500;
    text-align: center;
}
.single-text {
    min-height: 100px;
    font-size: var(--font16);
    font-weight: 500;
    line-height: 1.75;
}

.pagination {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    font-weight: 500;
}
.pagination .prev-link a::before {
    content: "";
    display: inline-block;
    width: 2em;
    height: 1em;
    margin-right: 0.5em;
    background-image: url(../img/page/page-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.pagination .next-link a {
    text-align: right;
}
.pagination .next-link a::after {
    content: "";
    display: inline-block;
    width: 2em;
    height: 1em;
    margin-left: 0.5em;
    background-image: url(../img/page/page-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: scale(-1, 1);
}

@media print,screen and (min-width: 781px){
    .single-main {
        margin-top: 5.5rem;
    }
    .single-main .news-post_top {
        margin-bottom: 5rem;
    }
    .single-title {
        margin-bottom: 5rem;
    }
    .single-text {
        min-height: 120px;
    }
    .pagination {
        margin-top: 7rem;
        font-size: 1.6rem;
    }
}

/*====================================================*/
/* お問い合わせ */
/*====================================================*/
.contact-main {
    margin-top: 2.5rem;
}
.contact-form_top {
    font-size: var(--font16);
    line-height: 1.5;
    text-align: center;
}
.contact-form {
    padding-bottom: 2rem;
    padding-left: calc( 45 * 100% / 780 );
    padding-right: calc( 45 * 100% / 780 );
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px dashed #333;
    font-size: var(--font16);
}
.contact-form dl {
    margin-bottom: 1em;
}
.contact-form dt {
    margin-bottom: 0.5em;
    font-weight: normal;
}
.req::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    margin-left: 0.3em;
    background-image: url(../img/page/asterisk.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: top;
}
.contact-form dl:nth-of-type(2) .req::after {
    margin-left: -0.3em;
}

.contact_page input[type=text],
.contact_page input[type="email"],
.contact_page input[type="tel"],
.contact_page select,
.contact_page textarea {
    width: 100%;
    padding: 0.5em 1em 0.5em 0.5em;
    background-color: #fff;
    border: 0.5px solid #333;
}
.contact_page textarea {
    height: 12rem;
}

/* プライバシーポリシー */
.privacy-policy {
    height: 12rem;
    margin-bottom: 1.6rem;
    margin-right: calc( 45 * 100% / 780 );
    margin-left: calc( 45 * 100% / 780 );
    padding: 1.2rem 1rem;
    background-color: #fff;
    border: 0.5px solid #333;
    font-size: clamp(10px, 3.12vw, 14px);
    line-height: 2;
    overflow-y: scroll;
}
.privacy-policy dl {
    margin-top: 1.5em;
}
.privacy-policy ol,
.privacy-policy ul {
    margin-top: 0.5em;
}
.privacy-policy table {
    margin-top: 0.5em;
}
#privacyCheck {
    font-size: clamp(10px, 3.12vw, 14px);
    text-align: center;
}
.check-disabled {
    color: #afafaf;
}
.wpcf7-list-item {
    margin: 0;
}

.send-btn {
    display: block;
    width: 72%;
    max-width: 270px;
    margin: 2rem auto 0;
    position: relative;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    width: 100%;
    padding: 0.5em 1em;
    background-color: #333;
    color: #fff;
    font-size: var(--font18);
    font-weight: bold;
    text-align: center;
    transition: var(--hover-transition);
}
.reCAPTCHA-text {
    color: var(--sub-color);
}

@media print,screen and (min-width: 781px){
    .contact-main {
        margin-top: 5rem;
    }
    .contact-form {
        margin-top: 5rem;
    }
    .contact-form dl {
        display: grid;
        grid-template-columns: 180px 1fr;
        margin-bottom: 1.7rem;
    }
    .contact-form dl:not(:last-of-type) {
        align-items: center;
    }
    .contact-form dt {
        margin-bottom: 0;
    }
    .contact-form dl:not(:nth-of-type(5)):not(:nth-of-type(7)):not(:last-of-type) dd {
        width: 65%;
    }
    .privacy-policy {
        margin-bottom: 2.5rem;
    }
    .send-btn {
        margin: 3.5rem auto 0;
    }
}

/*====================================================*/
/* 特商法 */
/*====================================================*/
.page-law .page_title {
    width: 70%;
}
.page-law .page_title span {
    display: block;
    margin-top: 0.2em;
    font-size: clamp(12.5px, 3.9vw, 25px);
}
.page-law .page_title::before,
.page-law .page_title::after {
    height: 4.5vw;
}
.law-info {
    margin-top: 2.5rem;
    letter-spacing: 0.05em;
}
.law-info dl:not(:last-of-type) {
    margin-bottom: 1.5rem;
}
.law-info dt {
    margin-bottom: 1em;
    font-size: clamp(10px, 3.12vw, 14px);
    font-weight: normal;
}
.law-info dt::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 0.3em;
    background-color: #333;
    border-radius: 30vh;
    vertical-align: middle;
}
.law-info dd {
    font-size: var(--font16);
    line-height: 1.4;
}
.law-info dd > p {
    margin-bottom: 0.2em;
    text-indent: -5.3em;
    padding-left: 5.5em;
}

@media print,screen and (min-width: 781px){
    .law-info {
        margin-top: 5rem;
    }
    .law-info dl:not(:last-of-type) {
        margin-bottom: 3rem;
    }
}

/*====================================================*/
/* プライバシーポリシー */
/*====================================================*/
.page-privacy .page_title {
    width: 60%;
}
.privacy-main {
    margin-top: 3.5rem;
    font-size: var(--font16);
    line-height: 1.5;
}
.privacy-main dl {
    margin: 1.2em 0;
}
.privacy-main dt {
    font-weight: normal;
}
.privacy-main dd ol {
    margin: 1em 0;
}
.privacy-main dd li {
    margin-bottom: 0.3em;
    text-indent: -1em;
    padding-left: 1.2em;
}
@media print,screen and (min-width: 781px){
    .privacy-main {
        margin-top: 7rem;
    }
}


/*====================================================*/
/* 準備中 */
/*====================================================*/
.in_preparation {
    margin-top: 5rem;
    margin-bottom: 5rem;
    font-size: 1.4rem;
    text-align: center;
}
.in_preparation img {
    display: block;
    width: 7rem;
    height: 7rem;
    margin: 0 auto 3rem;
}
.in_preparation h1 {
    margin-bottom: 1.5rem;
    color: var(--point-color);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

@media print,screen and (min-width: 1025px){
    .in_preparation {
        font-size: 1.6rem;
        line-height: 1.75;
    }
    .in_preparation h1 {
        margin-bottom: 1.5rem;
        font-size: 2.5rem;
    }
}


/*====================================================*/
/* 当サイトの使い方 guide */
/*====================================================*/
.page-guide .main_wrap {
    padding-top: 0;
}
.page-guide h1 {
    margin: 2rem 0;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
}
.page-guide .sec_title {
    font-size: clamp(25px, 6.75vw, 30px);
}
.guide_box {
    padding: 0.5rem;
    background-color: #fff;
    border: 2.5px solid #333;
    box-shadow: 5px 5px 5px 0px rgba(163,163,163,0.55);
}
.guide_box:not(:last-of-type) {
    margin-bottom: 1.8rem;
}
.page-guide dl {
    padding: 1rem 0;
    border: 0.5px solid #333;
}
.guide_box dt {
    display: inline-block;
    padding: 0.5em 1.5em 0.5em 1em;
    background-color: #333;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
}
.guide_box dd {
    margin: 1rem 1.8rem 0;
    font-size: 1.2rem;
    line-height: 1.75;
}

@media print,screen and (min-width: 1025px){
    .page-guide h1 {
        margin: 4.5rem 0;
        font-size: 6rem;
    }
    .guide_box {
        padding: 1rem;
        border: 5px solid #333;
    }
    .guide_box:not(:last-of-type) {
        margin-bottom: 3.5rem;
    }
    .page-guide dl {
        padding: 2rem 0;
        border: 1px solid #333;
    }
    .guide_box dt {
        font-size: 2.3rem;
    }
    .guide_box dd {
        margin: 2rem 2.5rem 0;
        font-size: 1.6rem;
    }
}

/*====================================================*/
/* タイタンアートについて company */
/*====================================================*/
.page-company .main_wrap {
    padding-top: 0;
}
.page-company h1 {
    margin: 2rem 0;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
}
.philosophy dl {
    margin-top: 2rem;
}
.philosophy dt {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: bold;
}
.philosophy dt::before,
.philosophy dt::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    margin: 0 0.5em;
    background-image: url(../img/page/icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.philosophy dd {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}
.philosophy ol {
    margin-top: 2rem;
    margin-bottom: 3.5rem;
}
.philosophy li {
    margin-bottom: 0.5em;
    font-size: 1.4rem;
    line-height: 1.75;
    text-indent: -2em;
    padding-left: 2em;
}
.overview_container {
    margin-top: 2rem;
    margin-bottom: 3.5rem;
    border-collapse: separate;
    border-spacing: 2px;
}
.overview_container th {
    width: 125px;
    padding: 0.5em 0.3em;
    background-color: #D4D4D4;
    font-size: 1.4rem;
    font-weight: normal;
    vertical-align: middle;
}
.overview_container td {
    padding: 0.5em 0.3em;
    border: 1px solid #D4D4D4;
    font-size: 1.4rem;
}

.page-company .sec_title {
    width: 41%;
    max-width: 223px;
    font-size: clamp(15px, 4.68vw, 30px);
}
.page-company .shop img {
    display: block;
    width: 56%;
    max-width: 400px;
    margin: auto;
}
.page-company .shop p {
    margin: 1.5rem 0;
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.7;
}
.page-company .shop p span {
    display: block;
    margin-bottom: 1rem;
    font-size: 2.3rem;
    font-weight: bold;
}
.page-company .shop iframe {
    margin-top: 2rem;
}
.page-company .osaka {
    margin-top: 1.5rem;
}
.page-company .tokyo {
    margin-top: 3.5rem;
}

@media print,screen and (min-width: 1025px){
    .page-guide h1 {
        margin: 4.5rem 0;
        font-size: 6rem;
    }
    .philosophy dl {
        margin-bottom: 4rem;
    }
    .philosophy dt {
        margin-bottom: 2rem;
        font-size: 1.8rem;
    }
    .philosophy dd {
        font-size: 2.3rem;
    }
    .philosophy ol {
        margin-top: 4rem;
        margin-bottom: 7rem;
    }
    .philosophy li {
        font-size: 1.6rem;
    }
    .overview_container {
        margin-top: 3.5rem;
        margin-bottom: 7rem;
    }
    .overview_container th,
    .overview_container td {
        font-size: 1.6rem;
    }
    .page-company .shop p {
        margin: 3rem 0;
        font-size: 1.8rem;
    }
    .page-company .shop p span {
        margin-bottom: 2rem;
        font-size: 2.5rem;
    }
    .page-company .shop iframe {
        margin-top: 4rem;
    }
    .page-company .osaka {
        margin-top: 3.5rem;
    }
    .page-company .tokyo {
        margin-top: 7rem;
    }
}