@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

/* 変数 */
:root {
    --main-color: #0F1E56;
    --sb-color: #009EFF;
    --sb-sb-color: #FFE2EC;
    --main-txt-color: #4b4b4b;
    --sb-main-txt-color: #3b3b3b;
    --accent-color: #f33d24;
    --main-background-color: #fff;
    --section-background-color: #ebebeb;
    --main-border-color: #fff;
    --main-font-size: 16px;
    --headding-font-size: 32px;
    --headding-font-size-sp: 24px;
    --font-weight-300: 300;
    --font-weight-400: 400;
    --font-weight-500: 500;
    --font-weight-700: 700;
    --main-border-radius: 6px;
    --hover-transition: .3s;
}
/* アニメーション */
@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    10% {
        transform: translateY(-5px);
    }
    20% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-5px);
    }
    40% {
        transform: translateY(0);
    }
    }
    .anime-object {
    animation: bounce2 6s linear infinite;
}

/* 基本設定
------------------------------------------*/
html {
    scroll-behavior: smooth;
}
body {
/*     font-family: "Noto Sans JP", sans-serif; */
	font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: var(--font-weight-400);
    font-style: normal;
    font-size: var(--main-font-size);
    color: var(--main-txt-color);
    line-height: 1.6;
    letter-spacing: 0.1em;
    text-align: left;
    background: var(--main-background-color);
}
html, body {
    width: 100%;
    height: 100%;
}
img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10vw 0;
}
.t-wrap {
    padding-bottom: 0;
}
.f-wrap {
    padding-bottom: 5vw;
}
.header {
    position: relative;
    transition: var(--hover-transition);
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.header-logo {
    position: fixed;
    top: 0;
    left: 0;
    padding: 2.4vw 2.4vw;
    z-index: 30;
}
.scroll {
    width: 94%;
    background: var(--main-background-color);
    box-shadow: 0 0.2rem 1rem rgba(121, 120, 126, 0.1);
}
.header-logo a {
    transition: var(--hover-transition);
}
.header-logo a:hover {
    transition: var(--hover-transition);
    opacity: .8;
}
.header-logo a img {
    width: 11vw;
}
.hamburger,
.sp-nav-menu {
    display: none;
}
.globalnav {
    position: fixed;
    top: 0;
    right: 0;
    padding: 2.4vw 2.4vw;
    z-index: 30;
}
.globalnav-list {
    display: flex;
    align-items: end;
    flex-direction: column;
    gap: 18px;
    font-size: 14px;
}
.globalnav-list li a {
    display: inline-block;
	position: relative;
	text-decoration: none;
    font-family: "Noto Serif JP", serif;
    color: var(--sb-main-txt-color);
}
.globalnav-list li a::after {
    position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: #c0c0c0;
	transition: var(--hover-transition);
}
.globalnav-list li a:hover {
    cursor: pointer;
}
.globalnav-list li a:hover::after {
    width: 100%;
}
.globalnav-list li a .gn-ja {
    display: none;
    transition: var(--hover-transition);
}
.globalnav-list li a .gn-en {
    transition: var(--hover-transition);
}
.globalnav-list li a:hover .gn-en {
    display: none;
    transition: var(--hover-transition);
}
.globalnav-list li a:hover .gn-ja {
    display: inline;
    transition: var(--hover-transition);
}
.menu-item-123 a {
    background: var(--main-background-color);
    color: var(--main-color);
    border: 1px solid var(--main-color);
    display: block;
    padding: 8px 24px;
    border-radius: 50px;
    transition: var(--hover-transition);
}
.menu-item-123 a:hover {
    background: var(--main-color);
    color: var(--main-background-color);
    transition: var(--hover-transition);
}
.headding-title {
    font-family: "Noto Serif JP", serif;
    color: var(--sb-main-txt-color);
    margin-bottom: 64px;
}
.title-ja {
    font-size: 24px;
    padding-bottom: 4px;
    border-bottom: 1px solid #c0c0c0;
}
.title-en {
    margin-top: 4px;
}
.news-list ul {
    display: flex;
    flex-direction: column;
    gap: 64px;
}
.news-list ul article li .news-item{
    display: flex;
    gap: 80px;
}
.news-image {
    width: 33%;
}
.news-image img {
    aspect-ratio: 16/9;
}
.news-inner {
    width: 67%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news-inner h3 {
    font-family: "Noto Serif JP", serif;
    color: var(--sb-main-txt-color);
    font-size: 20px;
}
.news-inner-main span {
    display: block;
    margin-top: 32px;
}
.news-inner-main p {
    margin-top: 32px;
}
.news-bate {
    letter-spacing: .05em;
    display: block;
    margin-top: 16px;
	font-size: 14px;
}
.news-time {
    text-align: right;
    font-size: 14px;
    color: #a5a5a5;
    line-height: 1;
}
.news-upbate {
    margin-top: 0;
    font-size: 12px;
}
.btn a {
    display: block;
    margin-top: 40px;
    margin-left: auto;
    text-align: right;
    width: fit-content;
}
.pick-up-content ul {
    display: flex;
    align-items: center;
    gap: 64px;
}
.pick-up-content ul li a {
    position: relative;
    color: var(--main-background-color);
    text-align: center;
    display: block;
}
.pick-up-content ul li a .pick-up-artist {
    position: absolute;
    top: 82%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.f-company-name {
	font-family: "Noto Serif JP", serif;
}
.f-company-name p {
    /* padding-bottom: 12px;
    border-bottom: 1px solid #ddd;
    width: 30%; */
    margin-bottom: 12px;
    font-size: 18px;
}
.f-company-name p span {
    font-size: 16px;
}
.f-access {
    margin-bottom: 8px;
}
.f-access address p {
    font-size: 13px;
    letter-spacing: .1em;
    line-height: 1.85714;
}
.f-sns ul {
    display: flex;
    gap: 16px;
    margin-bottom: 64px;
}
.f-sns ul li a img {
    width: 20px;
}
.f-bottom {
    display: flex;
    align-items: center;
    gap: 80px;
    font-size: 14px;
}
small {
    display: block;
}
.f-privacy a {
    display: block;
    font-size: 12px;
}
.pu-a-name {
    line-height: 1.2;
}
.pu-a-name span {
    font-size: 10px;
}
.artist-content ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}
.artist-content ul li {
    width: calc((100% - 40px*4)/5);
}
.artist-content ul li a {
    display: block;
    line-height: 1.2;
}
.artist-content ul li h3 {
    /* font-size: 20px; */
    font-size: 1.4vw;
}
.artist-content ul li span {
    /* font-size: 12px; */
    font-size: .7vw;
    letter-spacing: .15em;
    line-height: 1.46154;
    color: #ABABAB;
}
.txt-clear {
    color: #ABABAB;
}
.artworks-content ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 80px 120px;
}
.artworks-content ul li {
    width: calc((100% - 120px*2)/3);
}
.detail-box {
    display: flex;
    justify-content: space-between;
    gap: 160px;
}
.works-img img {
    aspect-ratio: 1;
}
.artworks-content ul li a h3 {
    text-align: center;
    margin-top: 24px;
}
.slide-inner,
.s-works-detail {
    width: calc((100% - 120px)/2);
}
.splide__arrow {
    /* box-shadow: 0 0.2rem 1rem rgba(121, 120, 126, 0.3)!important; */
    background: rgba(255, 255, 255, 0.6) !important;
    /* border: 1px solid #ddd !important; */
    transition: var(--hover-transition);
}
.splide__arrow svg {
    fill: var(--main-txt-color) !important;
    height: 13px !important;
    width: 13px !important;
}
.splide__arrow:disabled {
    opacity: 0 !important;
}
.splide__arrow:hover {
    background: #ffffffcc !important;
    transition: var(--hover-transition);
}
.splide__track--nav>.splide__list>.splide__slide {
    border: 0px solid transparent !important;
}
.splide__arrow--prev {
    left: -4em !important;
}
.splide__arrow--next {
    right: -4em !important;
}
.thum-works-item {
    margin-top: 8px !important;
    height: auto !important;
}
.thum-works-item img {
    aspect-ratio: 1 !important;
}
.s-works-detail,
.detail-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.detail-inner h3 {
    font-size: 24px;
}
.detail-inner p {
    line-height: 1.8;
    font-size: 15px;
}
.s-w-contact {
    margin-top: 40px;
}
.s-w-contact a {
    display: block;
    border: 1px solid #cecece;
    text-align: center;
    padding: 12px;
    width: 80%;
}
.works-price {
    font-weight: var(--font-weight-700);
	color: #006666;
}
.sold-out {
    font-weight: var(--font-weight-700);
    color: #006666;
}
.s-news-title {
    margin-bottom: 8px;
}
.s-news-head {
    display: block;
    text-align: right;
    margin-bottom: 40px;
    letter-spacing: .05em;
    color: #a5a5a5;
}
.s-news-body {
    font-size: 18px;
    margin: 40px 0 0;
    line-height: 2;
}
.s-news-body img {
    margin: 40px 0;
}
.back-btn {
    margin-top: 120px;
    text-align: center;
	max-width: 900px;
}
.page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 7px 16px;
}
.page-numbers a {
    color: #a5a5a5;
    transition: var(--hover-transition);
}
.page-numbers a:hover {
    color: var(--main-txt-color);
    transition: var(--hover-transition);
}
.archive-day {
    display: flex;
    gap: 40px;
}
.archive-day ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
}
.catalog-content-list {
    margin: 0 auto;
    width: 70%;
}
.catalog-content ul li {
    width: 100%;
    text-align: center;
}
.catalog-img img {
    aspect-ratio: 4/3;
    width: 100%;
}
.catalog-content ul li h3 {
    text-align: center;
    font-size: 24px;
    padding: 64px 0 24px;
}
.thumbnail-carousel2-list {
    justify-content: center;
}
.c-price {
    font-size: 24px;
    display: inline-block;
    margin-top: 24px;
}
.tax {
    font-size: 14px;
}
.c-btn a {
    display: block;
    margin: 0 auto;
    margin-top: 80px;
    border: 1px solid #cecece;
    text-align: center;
    padding: 12px;
    width: 40%;
}
table {
    width: 100%;
}
.u-inner .overview h3,
.u-inner .info h3,
.Interior-view p,
.map h3 {
    font-size: 18px;
    margin-bottom: 24px;
}
.t-th,
.t-td {
    padding: 16px 0;
    font-size: 14px;
    border-bottom: 1px solid #f6f6f6;
    font-weight: var(--font-weight-400);
}
.guide {
    margin-top: 80px;
}
.info {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.Interior-view ul {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}
.Interior-view ul li {
    width: calc((100% - 16px*2)/3);
}
.Interior-view ul li img {
    aspect-ratio: 4/3;
}
.Interior-view span {
    font-size: 14px;
    display: inline-block;
    margin-left: 16px;
}
.map {
    margin-top: 80px;
}
.u-form-leed {
    margin-bottom: 64px;
}
.u-form-box {
    margin-top: 64px;
}
.u-form-box a {
    font-size: 15px;
    display: block;
    border: 1px solid #ddd;
    text-align: center;
    width: 380px;
    padding: 16px;
}
.u-form-box span {
    display: block;
    font-size: 14px;
    margin-top: 8px;
}
.contact-form {
    margin-top: 120px;
}
.contact-form h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.contact-form .form-txt {
    font-size: 14px;
    margin-bottom: 40px;
}
.form {
    font-size: 14px;
}
.required {
    color: var(--accent-color);
}
.c_th, .c_td, .c_th_b, .c_td_b {
    padding: 16px;
}
.u-form input, .u-form textarea {
    width: 100%;
    border: 1px solid #cecece;
    padding: 12px;
    border-radius: 4px;
}
.c_tr {
    display: flex;
    align-items: center;
}
.c_tr_b {
    display: flex;
}
.c_th, .c_th_b {
    width: 30%;
    padding: 16px 0;
    display: flex;
    font-weight: var(--font-weight-400);
}
.c_td {
    width: 100%;
}
::placeholder{
    color:#c2c2c2;
}
.send__btn {
    max-width: 320px;
    margin: 0 auto;
}
.send {
    text-align: center;
    margin-top: 24px;
    padding: 16px !important;
    font-size: 18px !important;
    border-radius: 0 !important;
    transition: var(--hover-transition);
}
.send:hover {
    transition: var(--hover-transition);
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: inherit !important;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    text-align: center !important;
    letter-spacing: .01em !important;
    color: var(--accent-color) !important;
}


.accordion {
    width: 100%;
    margin-bottom: 40px;
}
.accordion-header {
    cursor: pointer;
    position: relative;
    transition: var(--hover-transition);
}
.accordion-content {
    padding: 15px;
    display: none;
    font-size: 15px;
    transition: var(--hover-transition);
}
.active + .accordion-content {
    display: flex;
    transition: var(--hover-transition);
}
.year-btn {
    position: absolute;
    top: 27%;
    left: 54px;
    width: 14px;
    height: 14px;
    transform-origin: center center;
    transition: var(--hover-transition);
}
.year-btn:hover {
    cursor: pointer;
    opacity: 0.8;
}

.year-btn::before,
.year-btn::after {
    content: "";
    background-color: #b5b5b5;
    width: 10px;
    height: 2px;
    position: absolute;
    top: 4px;
    left: 0;
    transform-origin: center center;
    transition: var(--hover-transition);
}
.year-btn::before {
    width: 2px;
    height: 10px;
    top: 0;
    left: 4px;
    transition: var(--hover-transition);
}
.accordion-header.active .year-btn::before {
    opacity: 0;
    transition: var(--hover-transition);
}
.splide__slide {
    opacity: 0.6;
}
.splide__slide.is-active {
    opacity: 1;
}
.privacy-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-size: 15px;
}
.privacy-list-sb {
    margin-left: 24px;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.s-news-content {
	max-width: 900px;
/* 	margin: 0 auto; */
}
/* Width Adjustment
-------------------------------------*/
@media only screen and (min-width: 1440px) {
    .header-logo, .globalnav {
        padding: 2.6vw 3.6vw;
    }
    .header-logo a img {
        width: 9vw;
    }
    .artist-content ul li h3 {
        font-size: 20px;
    }
    /* .artist-content ul li {
        width: calc((100% - 40px*5)/6);
    } */
    .artist-content ul li {
        line-height: 1.4;
    }
    .artist-content ul li span {
        font-size: 12px;
    }
    .artworks-content ul {
        gap: 120px 180px;
    }
    .artworks-content ul li {
        width: calc((100% - 180px*2)/3);
    }
    .s-w-contact a {
        width: 60%;
    }
}
@media only screen and (max-width: 1440px) {
    .wrap {
        width: calc(100% - 32vw);
    }
}
/* タブレット
-------------------------------------*/
@media screen and (max-width: 1140px) {
    .wrap {
        width: calc(100% - 8vw);
        padding: 16vw 0;
    }
    .header-logo a img {
        width: 16vw;
    }
    .news-list ul article li .news-item {
        gap: 24px;
        flex-direction: column;
    }
    .headding-title,
    .news-image,
    .news-inner {
        width: 70%;
    }
    .news-inner p {
        margin: 24px 0;
    }
    .f-wrap {
        padding: 4vw 0;
    }
    .t-wrap {
        padding-bottom: 4vw;
    }
    .s-news-body {
        width: 70%;
    }
    .artist-content ul {
        width: 70%;
    }
    .artist-content ul li {
        width: calc((100% - 40px* 2) / 3);
    }
    .artist-content ul li h3 {
        font-size: 2vw;
    }
    .artist-content ul li span {
        font-size: 1vw;
        letter-spacing: .08em;
        line-height: 1.46154;
        color: #ABABAB;
    }
    .artworks-content ul {
        gap: 80px;
        width: 70%;
    }
    .artworks-content ul li {
        width: calc((100% - 80px) / 2);
    }
    .detail-box {
        gap: 80px;
        width: 70%;
        flex-direction: column;
    }
    .slide-inner, .s-works-detail {
        width: 100%;
    }
    .s-works-detail, .detail-inner {
        gap: 40px;
        text-align: center;
    }
    .s-w-contact {
        margin: 0 auto;
        margin-top: 40px;
    }
    .s-w-contact a {
        width: 100%;
    }
    .archive-day {
        width: 70%;
    }
    .catalog-content-list {
        margin: 0;
        width: 70%;
    }
    .c-btn a {
        width: 60%;
        margin-top: 40px;
    }
    .u-inner {
        width: 70%;
    }
}
/* スマートフォン
-------------------------------------*/
@media screen and (max-width: 767px) {
    .header-logo {
        padding: 16px;
    }
    .header-logo a img {
        width: 120px;
    }
    .globalnav {
        display: none;
    }
    .sp-nav-menu {
        display: inherit;
        margin-top: 80px;
        font-size: 14px;
        margin-left: 24px;
		font-family: "Noto Serif JP", serif;
    }
    .sp-globalnav-list {
        width: 100%;
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .sp-globalnav-item a {
        display: flex;
        flex-direction: column;
        gap: 0;
        line-height: 1.4;
        margin-top: 16px;
    }
    .sp-globalnav-item a span {
        font-size: 14px;
		color: #9a9a9a;
    }
    .details-summary {
        position: relative;
        display: block;
    }
    .btn {
        position: absolute;
        top: 31%;
        left: 47px;
        width: 14px;
        height: 14px;
        transform-origin: center center;
        transition: var(--hover-transition);
    }
    .btn:hover {
        cursor: pointer;
        opacity: 0.8;
    }

    .btn::before,
    .btn::after {
        content: "";
        background-color: #b5b5b5;
        width: 10px;
        height: 2px;
        position: absolute;
        top: 4px;
        left: 0;
        transform-origin: center center;
        transition: var(--hover-transition);
    }
    .btn::before {
        width: 2px;
        height: 10px;
        top: 0;
        transition: var(--hover-transition);
        left: 4px;
    }
    
    .is-active .btn::before {
        opacity: 0;
        transition: var(--hover-transition);
    }
    .btn:before .is-active {
            content: none;
        }
    
    .details-summary::-webkit-details-marker {
        display: none;
    }
    .wrap {
        width: calc(100% - 48px);
        padding: 40px 0;
    }
    .t-wrap {
        padding-bottom: 0;
        padding-top: 80px;
    }
    .headding-title {
        width: 100%;
        margin-bottom: 56px;
    }
    .title-ja {
        font-size: 18px;
        padding-bottom: 4px;
    }
	.s-title-ja {
		font-size: 20px;
	}
    .title-en {
        margin-top: 4px;
        font-size: 12px;
    }
    .news-list ul article li .news-item {
        gap: 24px;
        flex-direction: column;
    }
    .news-image {
        width: 100%;
    }
    .news-inner {
        width: 100%;
    }
    .news-inner-main span {
        display: block;
        margin-top: 16px;
    }
	.news-list {
		margin-top: 40px;
	}
    .news-list ul {
        gap: 40px;
    }
    .news-inner h3 {
        font-size: 18px;
        line-height: 1.4;
    }
    .news-inner p {
        margin: 16px 0;
        font-size: 14px;
    }
    .news-bate {
        font-size: 14px;
    }
    .news-time {
        font-size: 12px;
    }
    .news-upbate {
        font-size: 12px;
    }
	.f-wrap {
        padding-top: 100px;
    }
    .f-company-name p {
        margin-bottom: 8px;
        font-size: 16px;
    }
    .f-company-name p span {
        font-size: 14px;
    }
    .f-access address p {
        font-size: 12px;
    }
    .f-sns ul {
        gap: 16px;
        margin-bottom: 40px;
    }
    .f-privacy a {
        font-size: 12px;
    }
    .f-bottom {
        gap: 16px;
        font-size: 12px;
        flex-direction: column-reverse;
    }
	.artist-content ul {
        width: 100%;
        gap: 24px 40px;
    }
    .artist-content ul li {
        width: calc((100% - 40px) / 2);
    }
    .artist-content ul li {
        line-height: 1.1;
    }
    .artist-content ul li h3 {
        font-size: 17px;
    }
    .artist-content ul li span {
        font-size: 11px;
        letter-spacing: .08em;
    }
	.artworks-content ul {
        gap: 40px 24px;
        width: 100%;
    }
    .artworks-content ul li {
        width: calc((100% - 24px) / 2);
    }
    .artworks-content ul li h3 {
        margin-top: 16px;
        font-size: 13px;
        line-height: 1.2;
    }
    .detail-box {
        width: 100%;
    }
	.splide__arrow--prev {
        left: -1em !important;
    }
    .splide__arrow--next {
        right: -.9em !important;
    }
	.detail-box {
        gap: 40px;
        flex-direction: column;
    }
    .slide-inner, .s-works-detail {
        width: 100%;
    }
    .detail-box {
        gap: 40px;
    }
    .s-works-detail, .detail-inner {
        gap: 24px;
        text-align: center;
    }
    .detail-inner h3 {
        font-size: 18px;
    }
    .detail-inner p {
        line-height: 1.6;
        font-size: 14px;
    }
    .s-w-contact {
        margin: 0 auto;
        margin-top: 40px;
        font-size: 14px;
    }
    .s-w-contact a {
        padding: 12px 24px;
        width: 100%;
    }
	.news-image img {
        aspect-ratio: 16/9;
    }
    .page-numbers {
        padding: 7px 12px;
        font-size: 14px;
    }
    .s-news-title {
        margin-bottom: 8px;
        width: 100%;
    }
    .s-news-head {
        font-size: 14px;
    }
    .s-news-body {
        width: 100%;
        font-size: 16px;
        line-height: 1.6;
    }
    .back-btn {
        margin-top: 80px;
        text-align: center;
        font-size: 14px;
    }
    .catalog-content-list {
        width: 100%;
    }
    .catalog-img img {
        width: 100%;
    }
    .catalog-content ul li h3 {
        font-size: 18px;
        padding: 40px 0 24px;
    }
    .catalog-content ul li p {
        font-size: 14px;
    }
    .c-btn {
        margin: 0 auto;
        margin-top: 40px;
        font-size: 14px;
    }
    .c-btn a {
        padding: 12px 24px;
        width: 70%;
    }
    .c-price {
        font-size: 18px;
    }
    .u-inner .overview h3, .u-inner .info h3, .Interior-view p, .map h3 {
        font-size: 16px;
        margin-bottom: 16px;
    }
    .u-inner {
        width: 100%;
    }
    .t-th, .t-td {
        padding: 16px 0;
        font-size: 13px;
        line-height: 1.4;
        letter-spacing: .01em;
    }
    .t-th {
        width: 20vw;
    }
    .guide {
        margin-top: 64px;
    }
    .info {
        margin-top: 64px;
        gap: 48px;
    }
    .Interior-view ul {
        gap: 8px;
        flex-direction: column;
    }
    .Interior-view ul li {
        width: 100%;
    }
    .Interior-view span {
        font-size: 13px;
    }
    .map {
        margin-top: 64px;
    }
    .map iframe {
        height: 280px;
    }
    .u-form-leed {
        margin-bottom: 24px;
        font-size: 15px;
    }
    .u-form-box {
        margin-top: 24px;
    }
    .u-form-box a {
        font-size: 15px;
        width: 100%;
        padding: 16px 0;
        letter-spacing: .01em;
    }
    .contact-form {
        margin-top: 64px;
    }
    .contact-form h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }
    .contact-form .form-txt {
        font-size: 13px;
        margin-bottom: 24px;
    }
    .c_tr, .c_tr_b {
        align-items: flex-start;
        flex-direction: column;
    }
    .c_th, .c_th_b {
        width: 100%;
        padding: 0;
    }
    .c_td {
        width: 100%;
        padding: 8px 0 16px;
    }
    .send__btn {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    .send {
        display: block;
        margin: 0 auto;
        text-align: center;
        margin-top: 8px;
        padding: 14px !important;
        font-size: 16px !important;
        width: 60% !important;
    }
    .accordion {
        margin-bottom: 0;
    }
    .archive-day {
        gap: 24px;
    }
    .archive-day ul {
        gap: 8px;
        margin-bottom: 0;
        font-size: 14px;
        flex-direction: column;
    }
    .thum-works-item {
        width: calc((100% - 8px* 4) / 5) !important;
    }
    .archive-day {
        width: 100%;
    }
    .catalog-content-list {
        margin: 0;
    }
    .privacy-list {
        font-size: 14px;
    }
    .privacy-list-sb {
        margin-left: 16px;
    }
}

/* tel-sp
-------------------------------------*/
@media (min-width: 767px) {
    a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    }
}
@media screen and (max-width: 350px) {}