// Scss Document /*-------------------- 共通設定 ----------------------*/ $color:#464543; $eng:baskerville-display-pt, serif; $breakpoint-notepad: 1500px; $breakpoint-tablet: 800px; $breakpoint-mobile: 600px; @mixin max-screen($break-point) { @media screen and (max-width: $break-point) { @content; } } @mixin min-screen($break-point) { @media screen and (min-width: $break-point) { @content; } } @mixin screen($break-point-min, $break-point-max) { @media screen and (min-width: $break-point-min) and (max-width: $break-point-max) { @content; } } * { margin: 0; padding: 0; letter-spacing: 0.1em; font-family: a-otf-ryumin-pr6n, serif; font-weight: 400; color: $color; font-size: 16px; } img { width: 100%; } a { text-decoration: none; &.disabled { pointer-events: none; text-decoration: none; } } .pc { display: block; @include max-screen($breakpoint-tablet) { display: none; } } .sp { display: none; @include max-screen($breakpoint-tablet) { display: block; } } .fadein { opacity: 0; transform: translateY(0px); transition: all .8s; } body { overflow-x: hidden; } .footer_copy { text-align: center; margin-bottom: 50px; & p { font-size: 0.7em; } } #global-nav { width: 100%; opacity: 0; text-align: center; height: 50px; background: rgba(255,255,255,0.8); position: relative; & a { max-width: 300px; & img { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); max-width: 180px; @include max-screen($breakpoint-mobile) { max-width: 120px; } } } &.m_fixed { opacity: 1; position: fixed; top: 0; z-index: 9999; transition: all .5s; } } /*--------------------------------------------*/ .mv { margin: 0 auto 10%; } section { margin: 0 auto 10%; max-width: 1000px; @include max-screen($breakpoint-notepad) { width: 98%; } } .main { margin: 10% auto 6%; max-width: 800px; text-align: center; @include max-screen($breakpoint-mobile) { margin-bottom: 20%; } & h1 { max-width: 380px; padding: 0 20px 10px; margin: 0 auto 5%; border-bottom: 1px solid $color; @include max-screen($breakpoint-mobile) { width: 70%; margin-bottom: 7%; } } & p { font-size: 0.8em; line-height: 2.5; @include max-screen($breakpoint-tablet) { width: 90%; margin: 0 auto; } @include max-screen($breakpoint-mobile) { text-align: left; width: 80%; font-size: 0.7em; line-height: 2.0; } } } .coupon { max-width: 800px; margin: 6% auto; text-align: center; @include max-screen($breakpoint-mobile) { width: 85%; } & a { & img { max-width: 550px; } &:hover { opacity: 0.8; transition: 0.4s; } } & p { margin-top: 10px; font-size: 0.7em; line-height: 2.0; @include max-screen($breakpoint-mobile) { font-size: 0.6em; } & span { font-size: 140%; font-family: $eng; @include max-screen($breakpoint-mobile) { font-size: 130%; } } } } .allItemBtn { margin: 10% auto; text-align: center; max-width: 550px; @include max-screen($breakpoint-mobile) { width: 80%; } & a { font-family: $eng; font-size: 0.9em; padding: 0.7em 2.0em; width: 100%; border: 1px solid $color; display: block; @include max-screen($breakpoint-mobile) { font-size: 0.7em; } &:hover { background: $color; color: #fff; transition: .4s; } } & p { margin-top: 10px; font-size: 0.7em; @include max-screen($breakpoint-mobile) { font-size: 0.6em; } } } .style { display: flex; flex-wrap: wrap; width: 100%; justify-content: center; align-items: flex-start; @include max-screen($breakpoint-tablet) { width: 85%; margin: 0 auto; } & .styleBox { width: 48%; margin-left: 2%; margin-bottom: 20%; @include max-screen($breakpoint-tablet) { width: 100%; margin-left: 0; margin-bottom: 30%; } &:nth-child(2n+1) { margin-left: 0; margin-right: 2%; @include max-screen($breakpoint-mobile) { margin-right: 0; } } & .number { max-width: 75px; margin: 15% 0 5%; @include max-screen($breakpoint-mobile) { width: 50px; } } & .itemList { display: flex; align-items: center; justify-content: flex-start; padding: 5% 0; border-bottom: 1px solid #bfbfbf; & div { & img { max-width: 140px; @include max-screen($breakpoint-mobile) { max-width: 100px; } } &.right { margin-left: 15px; @include max-screen($breakpoint-mobile) { margin-left: 10px; } & dl { & dt { font-size: 0.9em; line-height: 1.5; margin-bottom: 15px; @include max-screen($breakpoint-mobile) { font-size: 0.7em; } & span { font-size: 70%; color: #bfbfbf; } } & dd { font-size: 0.9em; margin-bottom: 15px; font-family: $eng; @include max-screen($breakpoint-mobile) { font-size: 0.7em; } & span { font-size: 70%; background: $color; color: #fff; border: 1px solid $color; margin-left: 7px; padding: 0.2em 0.7em; } } } & a.buyBtn { text-align: center; letter-spacing: 0; border: 1px solid $color; padding: 0.3em 2.2em; font-size: 0.8em; font-family: $eng; @include max-screen($breakpoint-mobile) { font-size: 0.7em; } &:hover { background: $color; color: #fff; transition: .4s; } } } } } } } /*------------------------ スライダー ------------------------*/ .slide-arrow { bottom: 0; margin: auto; position: absolute; top: 0; z-index: 10; } .prev-arrow { width: 15px; height: 15px; border-top: solid 1px #fff; border-left: solid 1px #fff; transform: rotate(-45deg); left: 25px; } .next-arrow { width: 15px; height: 15px; border-top: solid 1px #fff; border-right: solid 1px #fff; transform: rotate(45deg); right: 25px; } button { -webkit-appearance: none; -moz-appearance: none; appearance: none; outline: none; padding: 0; }