@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Noto+Sans+JP:wght@100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --accent-color: #1e3662;
    --font-playfair: "Playfair Display", serif;
    --font-crimson: "Crimson Text", serif;
}

html {
    font-family: "Noto Sans JP",sans-serif;
    font-size: 62.5%;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
video {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
.only-pc {
    display: block;
}
.only-sp {
    display: none;
}

/* header */
.header-common {
    position: sticky;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 900;
}
.header__ribbon {
    background: var(--accent-color);
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.4;
    letter-spacing: .08em;
    text-align: center;
    padding-block: 12px;
}
.header__inner {
    width: calc(100% - 32px);
    max-width: 1024px;
    margin-inline: auto;
    padding-block: 16px;
    position: relative;
}
.header__logo-wrapper {
    max-width: 95px;
    margin: 0 auto 16px;
}
.header__nav--ico {
    position: absolute;
    right: 0;
    top: 38px;
}
.header__nav--ico__list {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.header__nav--ico__list__items{
    position:relative;
}
.header__nav--ico__list__items:hover{
    cursor: pointer;
}
.header__nav--ico__list__items a svg path {
    transition: .3s;
}
.header__nav--ico__list__items a:hover svg path {
    fill: var(--accent-color);
}
.header__nav--gnav__list {
    display: flex;
    gap: 48px;
    justify-content: center;
    list-style: none;
    margin: 0 auto;
    padding: 0;
}
.header__nav--gnav__list__items a {
    display: block;
    color: #000;
    font-size: 1.4rem;
    font-family: var(--font-playfair);
    line-height: 1.4;
    letter-spacing: .16em;
    text-decoration: none;
    padding-block: 8px 10px;
    position: relative;
}

.header__nav--gnav__list__items a::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    position: absolute;
    left: 0;
    bottom: 0;
    scale: 0 1;
    transition: .3s;
}
.header__nav--gnav__list__items a.current::after {
    scale: 1 1;
}
.header__nav--gnav__list__items a:hover::after {
    scale: 1 1;
}

.cart-badge.cart-count{
    position:absolute;
    top:55%;
    left:55%;
    background: #000;
    color: #fff;
    display: flex;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    align-items: center;
    font-size: 1.2rem;
    justify-content: center;
}

/* mv */
.mv {
    max-width: 1300px;
    margin-inline: auto;
    position: relative;
    aspect-ratio: 16 / 9;
}
.mv iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mv__content {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 72px;
}
.mv__catch {
    color: #fff;
    font-size: 7.2rem;
    font-weight: 500;
    font-family: var(--font-playfair);
    line-height: 1.4;
    letter-spacing: .08em;
    text-align: center;
    margin-bottom: 12px;
}
.mv__txt {
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: .1em;
    text-align: center;
}
.lead {
    color: #333;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: .1em;
    text-align: center;
    padding-block: 88px 48px;
}
.lead span{
	font-size: 1.7rem;
    font-weight: bold;
}

/* concept */
.sec--concept {
    /* max-width: 1300px; */
    max-height:600px;
    margin-inline: auto;
    position: relative;
    overflow: hidden;
}
.sec--concept__bg {
    transition: .3s;
}
.sec--concept__link:hover  .sec--concept__bg{
    scale: 1.1;
}
.sec--concept__content {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 72px;
}
.sec__content__ttl-wrapper {
	margin-bottom: 16px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}
/*.sec--notice .sec__content__ttl-wrapper{
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}*/
.sec__content__ttl-ja {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-align: center;
}
.sec__content__ttl {
    color: #fff;
    font-size: 4rem;
    font-weight: 500;
    font-family: var(--font-playfair);
    line-height: 1.4;
    letter-spacing: .08em;
    text-align: center;
}
.sec--notice .sec__content__ttl{
	font-size: 2.5rem;
}
.sec__content__btn {
    display: block;
    width: max-content;
    background: #fff;
    color: #000;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: .1em;
    text-decoration: none;
    padding: 14px 16px;
    margin-inline: auto;
    border: 2px solid #fff;
    transition: .3s;
}
.sec__link:hover .sec__content__btn {
    background: transparent;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
}

/* sec--items */
.sec--items {
    padding-block: 104px;
}
.sec--items__list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px 16px;
    width: calc(100% - 30px);
    max-width: 1024px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}
.sec--items__list a:not(.sec--items__list__items__link) {
    text-decoration: none;
    transition: .3s;
}
.sec--items__list a:not(.sec--items__list__items__link):hover {
    opacity: .7;
}
.sec--items__list__items__img-wrapper {
    margin-bottom: 16px;
    overflow: hidden;
}
.sec--items__list__items__img {
    transition: .3s;
}
.sec--items__list a:not(.sec--items__list__items__link):hover .sec--items__list__items__img{
    scale: 1.1;
}
.sec--items__list__items__name {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: .01em;
    margin-bottom: 4px;
}
.sec--items__list__items__dtl {
    color: #797979;
    font-size: 1.4rem;
    line-height: 1.6;
    letter-spacing: .01em;
    margin-bottom: 4px;
}
.sec--items__list__items__dtl sup{
    font-size: 1.2rem;
}
.sec--items__list__items__dtl span{
    display: block;
    font-size: 1.2rem;
    margin-top: 1rem;
}
.sec--items__list__items__price {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-crimson);
    line-height: 1.6;
    letter-spacing: .1em;
    margin-bottom: 10px;
}
.sec--items__list__items__price span{
    font-size:1.2rem;
}
.sec--items__list__items__link {
    color: #000;
    font-size: 1.2rem;
    line-height: 1.6;
    letter-spacing: .1em;
    text-underline-offset: 4px;
    transition: .3s;
}
.sec--items__list__items__link:hover {
    opacity: .5;
}

/* sec--instagram */
.sec--instagram {
    max-width: 920px;
    height: auto;
    aspect-ratio: 920/480;
    margin: 0 auto 104px;
    position: relative;
}
.sec--instagram__link {
    display: block;
    width: 100%;
    height: 100%;
    background: url(https://gigaplus.makeshop.jp/keika1/images/bg_instagram02-pc.jpg) no-repeat center/100% 100%;
    transition: .3s;
}
.sec--instagram__link:hover {
    background-size: 110% 110%;
}
.sec__instagram__content {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 72px;
}

/* footer */
footer {
    background: rgb(30 54 98/.08);
    border-top: 1px solid rgb(30 54 98/.2);
    padding-block: 56px;
}
.footer_inner {
    max-width: 1024px;
    margin-inline: auto;
}
.footer__logo-wrapper {
    max-width: 95px;
    margin: 0 auto 48px;
}
.footer__nav {
    margin-bottom: 16px;
}
.footer__nav__list {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}
.footer__nav__list__items + .footer__nav__list__items {
    border-left: 1px solid #a0a0a0;
}
.footer__nav__list__items a {
    display: block;
    color: #333;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: .1em;
    text-decoration: none;
    padding-inline: 24px;
}
.footer__copyright {
    line-height: 1.6;
    letter-spacing: .1em;
    text-align: center;
}

.checked-contents h2{
    font-size:1.4rem;
}
.checked-item-list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 16px;
    width: calc(100% - 30px);
    max-width: 1024px;
    margin-bottom:10%;
    padding-left:0;
}
.checked-item-list li{
    list-style: none;
}
.item-list-sold.item-list-btn{
    font-size: 1.3rem;
    background: #fafafa;
    text-align: center;
    padding: 0.5rem;
}

/*notice*/
.sec--notice{
	padding-block: 48px 48px;
    margin-bottom: 88px;
    background: #fafafa;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
.sec--notice .sec__content__ttl-ja, .sec--notice .sec__content__ttl{
	color:#333;
}
.sec--notice__list{
	list-style: none;
    padding: 0;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.sec--notice__list__wrap{
	display: flex;
	align-items: center;
    flex-direction: row;
    gap: 5%;
	border-top: 1px solid rgb(30 54 98/.2);
    padding: 30px 30px 30px 100px;
}
.news-date{
	font-size:1.2rem;
	color:#797979;
	letter-spacing:0.15rem;
}
.news-title{
	transition: .3s;
	font-size: 1.4rem;
    line-height: 1.6;
    letter-spacing: .01em;
	color:#333;
}
.news-title:hover{
	opacity:.7;
}
.news-title a{
	text-decoration: none;
}
.btn_more{
	text-align: center;
    border: 1px solid #ccc;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
	background: #fafafa;
}
.btn_more a {
	display:block;
  color: #333;
font-size: 1.2rem;
font-weight:300;
text-decoration: none;
  background: #fff;
  padding: 0.8rem 2rem;
  position: relative;
  z-index: 1;
  transition: .3s;
}
.btn_more a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #333;
  transform-origin: 50% 0%;
  transform: scaleY(0);
  transition: transform ease .3s;
}
.btn_more a:hover {
  color: #fff;
}
.btn_more a:hover::before {
  transform-origin: 50% 100%;
  transform: scaleY(1);
}

@media screen and (max-width:768px) {

    .only-pc {
        display: none;
    }
    .only-sp {
        display: block;
    }

    /* header */
    .header__ribbon {
        letter-spacing: .1em;
    }
    .header__inner {
        padding-block: 10px;
    }
    .header__logo-wrapper {
        max-width: 70px;
        margin: 0 auto;
    }
    .header__nav--ico {
        top: 50%;
        translate: 0 -50%;
    }
    .header__nav--ico__list__items a svg {
        height: 16px;
        width: auto;
    }
    .header__nav--hbg-btn {
        display: block;
        width: 20px;
        height: 12px;
        background: none;
        border: 0;
        position: absolute;
        z-index: 1100;
        top: 50%;
        left: 0;
        translate: 0 -50%;
        overflow: hidden;
    }
    .header__nav--hbg-btn span {
        display: block;
        width: 100%;
        height: 1px;
        background: #000;
        position: absolute;
        top: 0;
        left: 0;
        transition: .3s;
    }
    .header__nav--hbg-btn span:nth-child(2) {
        top: 50%;
        translate: 0 -50%;
    }
    .header__nav--hbg-btn span:last-child {
        top: calc(100% - 1px);
    }
    .header__nav--hbg-btn.active span:first-child {
        top: 5px;
        rotate: 30deg;
    }
    .header__nav--hbg-btn.active span:nth-child(2){
        translate: -100% 0;
        opacity: 0;
    }
    .header__nav--hbg-btn.active span:last-child{
        top: calc(100% - 7px);
        rotate: -30deg;
    }
    .header__nav--hbg {
        width: 100%;
        height: 100dvh;
        background: #fff;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        padding-top: 114px;
        translate: -100% 0;
        transition: .3s;
    }
    .header__nav--hbg.active {
        translate: 0;
    }
    .header__nav--hbg__list {
        width: calc(100% - 36px);
        margin: 0 auto;
        padding: 0;
        list-style: none;
        border-bottom: 1px solid rgb(30 54 98/.2);
    }
    .header__nav--hbg__list__items + .header__nav--hbg__list__items {
        border-top: 1px solid rgb(30 54 98/.2);
    }
    .header__nav--hbg__list__items a {
        display: block;
        color: #000;
        font-size: 1.7rem;
        font-family: var(--font-playfair);
        line-height: 1.4;
        letter-spacing: .16em;
        text-decoration: none;
        padding-block: 16px;
    }
    
    /* mv */
    .mv__bg {
        width: 100%;
        height: auto;
        aspect-ratio: 390/500;
        object-fit: cover;
    }
    .mv__content {
        bottom: 56px;
    }
    .mv__catch {
        font-size: 4.4rem;
        margin-bottom: 8px;
    }
    .mv__txt {
        font-size: 1.8rem;
        line-height: 1.6;
        letter-spacing: .1em;
    }
    .mv{
        bottom: 0;
        left: 0;
        overflow: hidden;
        position: relative;
        right: 0;
        top: 0;
        aspect-ratio: 390 / 500;
    }
    .mv iframe{
        box-sizing: border-box;
        height: 56.25vw;
        left: 50%;
        min-height: 100%;
        min-width: 100%;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 177.77777778vh;
    }

    /* lead */
    .lead {
        width: calc(100% - 30px);
        padding-block: 96px 48px;
        margin-inline: auto;
        font-size: 1.4rem;
    }

    /* sec--concept */
    .sec--concept__bg {
        width: 100%;
        height: auto;
        aspect-ratio: 390/400;
        object-fit: cover;
    }
    .sec--concept__content {
        bottom: 56px;
    }
    .sec__content__ttl-ja {
        font-size: 1.4rem;
    }
    .sec__content__ttl {
        font-size: 3.2rem;
    }

    /* sec--items */
    .sec--items {
        padding-block: 72px 96px;
    }
    .sec--items__list {
        grid-template-columns: repeat(2,1fr);
        margin-inline: auto;
    }
    .sec--items__list__items__dtl {
        font-size: 1.3rem;
    }
    .sec--items__list__items__price {
        margin-bottom: 8px;
    }
    .sec--items__list__items__link {
        font-size: 1.1rem;
    }

    /* sec--instagram */
    .sec--instagram {
        width: calc(100% - 40px);
        height: auto;
        aspect-ratio: 320/340;
        margin: 0 auto 96px;
    }
    .sec--instagram__link {
        background: url(https://gigaplus.makeshop.jp/keika1/images/bg_instagram02-sp.png) no-repeat center/100% 100%;
    }
    .sec__instagram__content {
        bottom: 56px;
    }
    .sec--instagram .sec__content__ttl-ja {
        font-size: 1.6rem;
    }
    .sec--instagram .sec__content__ttl {
        font-size: 4rem;
    }

    /* footer */
    footer {
        padding-block: 64px 40px;
    }
    .footer_inner {
        width: calc(100% - 32px);
        margin-inline: auto;
    }
    .footer__logo-wrapper {
        max-width: 71px;
        margin: 0 auto 32px 0;
    }
    .footer__nav {
        margin-bottom: 40px;
    }
    .footer__nav__list {
        flex-direction: column;
        gap: 8px;
    }
    .footer__nav__list__items + .footer__nav__list__items {
        border: 0;
    }
    .footer__nav__list__items a {
        display: inline;
        padding: 0;
    }
	
	/*notice*/
	.sec--notice__list__wrap{
		flex-direction:column;
		align-items:flex-start;
		padding: 5% 0;
	    margin: 0 5%;
	}
	.news-date{
		margin-bottom:0.5rem;
	}
	.btn_more{
		margin-top: 3rem;
	}
}