/*=====================================

【PC】

=====================================*/
/*=====================================
初期設定
=====================================*/
html, body {
 margin: 0;
 padding: 0;
 height: 100%;
 width: 100%;
 color: #000;
 font-family: 'Noto Sans JP', sans-serif;
 letter-spacing: .05em
}
body {
 -webkit-font-smoothing: subpixel-antialiased;
 -moz-osx-font-smoothing: unset;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
 body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
 }
}
body * {
 box-sizing: border-box;
 word-wrap: break-word;
}
h1, h2, h3, h4, h5, h6, p, address, ul, li, dl, dt, dd, caption, img, form, blockquote, label {
 padding: 0;
 margin: 0;
 border: none;
 font-size: 100%;
 font-style: normal;
 font-weight: normal;
 line-height: 100%;
 list-style-type: none;
}
textarea {
 font-size: 100%;
}
img {
 vertical-align: bottom;
 -ms-interpolation-mode: bicubic;
 -webkit-backface-visibility: hidden;
 image-rendering: -webkit-optimize-contrast;
}
ins {
 text-decoration: none;
}
/*=====================================
テキスト・カラー指定
=====================================*/ :root {
 --wht: #fff;
 --blk: #1c1c1c;
 --beg: #fcf7f0;
 --pgry: #f6f6f6;
 --lgry: #d6d6d6;
 --gry: #909090;
 --blu: #5ba9d8;
 --pnk: #e5015f;
 --lpnk: #ff718c;
 --lpnk2: #ff8b9d;
 --c: center;
 --r: right;
 --xl: clamp(28px, 7.69vw, 30px);
 --tl: clamp(30px, 2.2vw, 32px);
 --tm: clamp(22px, 1.6vw, 24px);
 --nm: clamp(16px, 1.17vw, 18px);
 --ts: clamp(12px, .95vw, 14px)
}
a {
 color: var(--blu);
 text-decoration: underline
}
a:hover {
 text-decoration: none
}
img {
 max-width: 100%
}
.txt-c {
 text-align: var(--c)
}
.txt-r {
 text-align: var(--r)
}
.pcno {
 display: none!important
}
/*=====================================
ヘッダー
=====================================*/
header {
 display: flex;
 align-items: center;
 justify-content: space-between;
 position: fixed;
 top: 0;
 left: 0;
 z-index: 9999;
 margin: auto;
 padding: 0 2%;
 width: 100%;
 height: 86px;
 background: var(--wht)
}
header .logo_wrapper {
 flex-shrink: 0;
 flex-basis: 18%;
 max-width: 240px;
}
.logo {
 display: block;
 width: 100%;
 font-size: 0;
 transform: translateY(-3px)
}
.logo img {
 width: 100%
}
/*=====================================
メニュー
=====================================*/
nav {
 flex-grow: 1;
 padding-left: 3%
}
nav #main-menu {
 display: flex;
 align-items: center;
 justify-content: flex-end
}
nav #main-menu li {
 padding: 0 2%;
 font-size: var(--ts);
 font-weight: 700;
 line-height: 1.4;
 text-align: center
}
@media screen and (max-width: 800px) {
 nav #main-menu li {
  padding: 0 1%
 }
}
nav #main-menu a {
 display: block;
 padding: 0;
 color: var(--blk);
 text-decoration: none;
 transition: .2s
}
nav #main-menu a:hover {
 color: var(--org)
}
#main-menu-state, .main-menu-btn {
 display: none
}
nav #main-menu a.btnNav {
 position: relative;
 display: flex;
 align-items: center;
 justify-content: center;
 flex-direction: row;
 padding: 0 30px 2px 15px;
 height: 40px;
 background-image: linear-gradient(90deg, rgba(57, 181, 74, 1), rgba(62, 171, 40, 1) 90%);
 box-shadow: 0px 3px 0px 0px rgba(214, 214, 214, .75);
 border-radius: 30px;
 color: var(--wht);
 font-size: var(--ts);
 font-weight: 700;
 white-space: nowrap
}
nav #main-menu a.btnNav::after {
 content: "";
 display: block;
 position: absolute;
 right: 15px;
 top: 50%;
 width: 7px;
 height: 7px;
 border-bottom: 1px solid var(--wht);
 border-left: 1px solid var(--wht);
 transform: translateY(-50%) rotate(-135deg);
 transition: .2s
}
nav #main-menu a.btnNav:hover {
 opacity: .6
}
nav #main-menu a.btnNav:hover::after {
 right: 12px;
}
/*=====================================
フッター
=====================================*/
footer {
 padding: 5% 0;
 background: var(--gry);
 color: var(--wht)
}
footer a {
 color: var(--wht);
 text-decoration: none
}
footer ul {
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 0 5% 3%;
}
footer ul li {
 padding: 0 20px;
 text-align: center
}
footer p {
 width: 100%;
 font-size: var(--ts);
 text-align: center
}
/*=====================================
コンテンツ
=====================================*/
main {
 padding-top: 92px;
 font-size: var(--nm)
}
main section {
 width: 100%
}
main > section:last-of-type {
 padding-bottom: 5%
}
main p {
 margin-left: auto;
 margin-right: auto;
 padding-top: 1.5%;
 padding-bottom: 1.5%;
 width: 86%;
 font-size: var(--nm);
 line-height: 1.6;
}
sup {
 display: inline-block;
 font-size: 50%;
 vertical-align: text-top
}
.mgt00 {
 margin-top: 0!important
}
.mgt05 {
 margin-top: 5%!important
}
.mgb00 {
 margin-bottom: 0!important
}
.cont {
 padding: 6% 0;
 width: 100%
}
.cmnBox {
 padding: 2.5% 0;
 width: 100%
}
.cmnArea + .cmnArea {
 margin-top: 5%
}
.btnArea {
 padding: 0;
 text-align: center
}
.pdgtop0 {
 padding-top: 0
}
.pdg0 {
 padding-top: 0 !important;
 padding-bottom: 0 !important
}
[class^="inner-"] {
 margin-left: auto;
 margin-right: auto;
 padding: 2% 0;
 width: 90%
}
.inner-l {
 max-width: 1080px
}
.inner-m {
 max-width: 900px
}
.inner-s {
 max-width: 750px
}
.bg-wht {
 background: var(--wht)
}
.bg-gry {
 background: var(--pgry)
}
.bg-beg {
 background: var(--beg)
}
.txt-wh {
 color: var(--wht)
}
.txt-pnk {
 color: var(--pnk)
}
.txt-red {
 color: #da462e !important
}
.txtLnk {
 display: block;
 color: var(--blu);
 line-height: 1.6;
 text-align: center
}
.pnkTtl {
 padding: 30px 0 0;
 background: var(--lpnk2);
 color: var(--wht);
 font-size: var(--tl);
 font-weight: 700;
 line-height: 1.4;
 text-align: center
}
.pnkTtl::after {
 content: "";
 display: block;
 margin: 30px 0;
 width: 100%;
 aspect-ratio: 26/1;
 background: var(--beg) url("../img/bg-top-pnk.svg") no-repeat center top / 700px;
}
.cmnTtl {
 margin-bottom: 40px;
 font-size: var(--tl);
 font-weight: 700;
 line-height: 1.4;
 text-align: center
}
.cmnTtl strong, .subTtl.pnk {
 color: var(--lpnk)
}
.cmnTtl.theme strong {
 color: var(--pnk)
}
.cmnTtl.line::after {
    content: "";
    display: block;
    margin: 20px auto;
    width: 330px;
    height: 4px;
    background: var(--lpnk)
}
.tag {
 display: inline-block;
 margin-bottom: 20px;
 padding: 4px 20px 2px;
 background: var(--blu);
 border-radius: 30px;
 color: var(--wht);
 font-family: Montserrat;
 font-size: 13px;
 font-weight: 600;
 line-height: 1.6;
}
.tag.pnk {
 background: var(--lpnk2)
}
.subTtl {
 margin-bottom: 30px;
 font-size: var(--tm);
 font-weight: 700;
 line-height: 1.4;
 text-align: center
}
* + .subTtl {
 margin-top: 5%
}
.secTtl {
 display: flex;
 flex-direction: column;
 align-items: center;
 margin-bottom: 30px;
 text-align: center;
 font-size: var(--tm);
 font-weight: 700;
 line-height: 1.5556;
}
.secTtl span {
 display: inline-block;
 margin-bottom: 1%;
 background-image: linear-gradient(to right, var(--pnk) 0%, #a873cb 50%, var(--blu) 100%);
 background-repeat: no-repeat;
 background-position: bottom left;
 background-size: 0 1px;
 transition: all .6s ease-in-out;
 font-family: Montserrat;
 font-size: 13px;
 font-weight: 600;
 line-height: 1.6;
}
.secTtl.scrin span {
 background-size: 100% 1px
}
.secTtl + .inner-s {
 padding-top: 0
}
.pnkBox {
 margin-bottom: 2%;
 padding: 3%!important;
 background: var(--lpnk2);
 border-radius: 8px;
 color: var(--wht);
 font-size: var(--tm);
 font-weight: 700
}
.notes {
 margin-left: auto;
 margin-right: auto;
 padding-top: 1.5%;
 padding-bottom: 1.5%;
 width: 86%;
}
.notes li {
 padding: .2% 0 .2% var(--ts);
 color: var(--gry);
 font-size: var(--ts);
 line-height: 1.4;
 text-indent: clamp(-11px, -2.56vw, -10px);
}
.notes li::before {
 content: "※"
}
.btmLine {
 border-bottom: 1px solid var(--lgry)
}
/*fixed btn*/
.btnFixWrap,.btnFix {
 display: none
}
/*img*/
.img-a {
 aspect-ratio: 2.0526/1
}
.img-b {
 aspect-ratio: 1.5984/1
}
.img-c {
 aspect-ratio: 3.2231/1
}
.img-d {
 aspect-ratio: 3.7143/1
}
.img-e {
 aspect-ratio: 1.4885/1
}
.img-f {
 aspect-ratio: 1.7333/1
}
.img-g {
 aspect-ratio: 1.2381/1
}
.img-h {
 aspect-ratio: 2.7857/1
}
.img-i {
 aspect-ratio: 1.189/1
}
.img-j {
 aspect-ratio: 0.7959/1
}
/*loading*/
.loading {
 display: flex;
 align-items: center;
 justify-content: center;
 position: fixed;
 top: 0;
 left: 0;
 z-index: 9999;
 width: 100vw;
 height: 100vh;
 background: var(--pnk);
 transition: 1s
}
.loaded {
 opacity: 0;
 visibility: hidden
}
/*fv*/
.mv {
 position: relative;
 display: block;
 width: 100%;
 aspect-ratio: 16/5
}
.t-ar {
 background: var(--pgry) url("../img/bg-top.svg") no-repeat center top / 700px
}
.fvTtl {
 margin-bottom: 30px;
 font-size: var(--tl);
 font-weight: 700;
 line-height: 1.6;
 text-align: center
}
.fvTtl:not(:first-child) {
 margin-top: 5%
}
.fv-product {
 display: flex;
 flex-direction: column;
 align-items: center;
 margin: 0 auto;
 padding-top: 0;
 width: 600px;
}
.fv-product .fv-device {
 display: block;
 margin-bottom: -180px;
 width: 300px;
 aspect-ratio: 1.1613/1;
 transform: translateY(-180px)
}
@media screen and (max-width: 820px) {
 .fv-product .fv-device {
  margin-bottom: -100px;
  width: 240px;
  transform: translateY(-100px)
 }
}
.priceWrap {
 display: flex;
 align-items: stretch;
 justify-content: space-between
}
.priceWrap > * + * {}
.priceBox {
 flex-shrink: 0;
 flex-basis: 47%;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: flex-start;
 padding: 34px 20px 34px;
 background: var(--wht);
 border: 1px solid var(--lgry);
 border-radius: 8px;
 text-align: center
}
.priceBox .priceTtl {
 display: block;
 margin-bottom: 10px;
 width: 100%;
 background: #aaa;
 border-radius: 2px;
 color: var(--wht);
 font-weight: 700;
 line-height: 1.6;
 text-align: center
}
.price__inner {
 display: flex;
 align-items: center;
 justify-content: center
}
.price__inner p {
 margin: 0;
 width: auto;
 line-height: 1.4;
 font-weight: 700
}
.price__inner p.arrow {
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding: 0 12px
}
.price__inner p.arrow::after {
 content: "";
 flex-shrink: 0;
 width: 0;
 height: 0;
 margin: 0 auto;
 display: block;
 border-style: solid;
 border-width: 11px 0 11px 10px;
 border-color: rgba(255, 255, 255, 0) rgba(255, 255, 255, 0) rgba(255, 255, 255, 0) var(--pnk);
}
.priceBox span.txt-hl {
 color: var(--pnk)
}
.priceBox span.txt-hl strong {
 font-size: var(--xl);
 line-height: 1
}
.marker {
 display: inline;
 padding: 0 3px;
 background-image: linear-gradient(90deg, #fff8a6, #fff8a6);
 background-repeat: no-repeat;
 background-position: bottom left;
 background-size: 0 30%;
 transition: all .6s ease-in-out;
}
.marker.scrin {
 background-size: 100% 30%
}
.priceBox span.txt-hl sup {
 vertical-align: top
}
.priceBox s {
 font-size: 20px
}
.priceBox span {
    font-size: 20px
}
.yen {
 font-size: 13px;
 font-style: normal
}
.priceBox small {
 margin-top: 10px;
 display: block;
 color: var(--blk);
 font-size: var(--ts);
 line-height: 1.4
}
.plus {
 position: relative;
}
.plus::before, .plus::after {
 content: "";
 display: block;
 position: absolute;
 left: 50%;
 top: 50%;
 background: var(--blk)
}
.plus::before {
 width: 2px;
 height: 20px;
 transform: translate(-50%, -50%)
}
.plus::after {
 width: 20px;
 height: 2px;
 transform: translate(-50%, -50%)
}
.blueBox {
 width: 85%!important;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 5% auto 0;
 border: 1px solid var(--blu);
 border-radius: 6px;
 color: var(--blu);
 font-size: var(--tm);
 font-weight: 700;
 line-height: 1.5
}
.blueBox img {
 margin-right: 10px;
 width: 75px;
 aspect-ratio: 5/3
}
img.prImg {
 display: block;
 margin-left: auto;
 margin-right: auto;
 width: 80%;
}
/*btn*/
.para_box{
        margin: 0 auto;
width: min(94%, 828px);
}
.btnBuy {
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 margin: 0 auto;
 width: min(94%, 828px)
}
.btnBuy li {
 flex-basis: 50%;
 padding: 1.2%;
}
.btnBuy a {
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 1.2% 4%;
 height: 64px;
 box-shadow: 0px 3px 0px 0px rgba(214, 214, 214, .75);
 border-radius: 6px;
 color: var(--wht);
 font-size: var(--nm);
 font-weight: 700;
 text-decoration: none;
 opacity: 1;
 transition: .3s
}
.btnBuy a:hover {
 opacity: .6
}
.btnBuy a > img {
 display: block;
 width: 105px;
 aspect-ratio: 21/8;
 object-fit: contain
}
.btnBuy a span {
 flex-grow: 1;
 text-align: center
}
.btnBuy a span .logoAmazon {
 display: block;
 margin: auto;
 width: 90px;
 aspect-ratio: 2.9412/1;
 object-fit: contain
}
.btnBuy a.aupay {
 background: #eb5505
}
.btnBuy a.amazon {
 background: #232f3e
}
.btnBuy a.rakuten {
 background: #bf0101
}
.btnBuy a.yahoo {
 background: #ffa412
}
.official{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2% 4%;
    margin: 0 auto 2%;
    width: 50%;
    height: 64px;
    box-shadow: 0px 3px 0px 0px rgba(214, 214, 214, .75);
    border-radius: 6px;
    color: var(--wht);
    font-size: var(--nm);
    font-weight: 700;
    text-decoration: none;
    opacity: 1;
    transition: .3s;
    background: #006FD1;
    cursor: pointer;
  }
  .official span{
    flex-grow: 1;
    text-align: center;
  }
  .official:hover {
    opacity: .6
  }



/*point*/
.dotline {
 display: flex;
 flex-direction: column;
 align-items: center;
 padding: 0 0 3%;
}
.dotline span {
 display: block;
 margin: 3px;
 width: 6px;
 height: 6px;
 border-radius: 50%;
 background: var(--lpnk);
 opacity: 0
}
.dotline.scrin span {
 opacity: 1;
 transition: opacity .3s ease-in;
}
.dotline.scrin span:nth-of-type(2) {
 transition-delay: .1s
}
.dotline.scrin span:nth-of-type(3) {
 transition-delay: .2s
}
.dotline.scrin span:nth-of-type(4) {
 transition-delay: .3s
}
.dotline.scrin span:nth-of-type(5) {
 transition-delay: .4s
}
#point .inner-s {
 padding-bottom: 5%
}
#point .inner-s img,
#case .inner-s img {
 display: block;
 margin-left: auto;
 margin-right: auto;
 margin-bottom: 30px;
 width: 74%
}
#point .inner-s img + img {
 margin-top: 50px
}
#point .inner-s p + img,
#case .inner-s p + img {
 margin-top: 50px
}
.messageBox {
 display: flex;
 flex-direction: column;
 margin: 5% auto 2.5%;
 padding-bottom: 4%;
 width: min(90%, 750px);
 background: var(--wht);
 border-radius: 16px;
 filter: drop-shadow(0px 0px 1px var(--gry));
}
.messageBox::before {
 content: "";
 display: block;
}
.messageBox::before {
 margin: 0 auto;
 width: 260px;
 aspect-ratio: 4.2/1;
 background: url("../img/message-top.svg") no-repeat center bottom / 100%;
 transform: translateY(-99%)
}
.messageBox .m-device {
 margin: 0 auto -80px;
 width: 100px;
 aspect-ratio: 1.1613/1;
 transform: translateY(-80px)
}
.messageBox h3 {
 padding: 2% 4%;
 color: var(--blu);
 font-size: var(--tl);
 font-weight: 700;
 line-height: 1.4;
 text-align: center
}
.messageBox h3::after {
 content: "";
 display: block;
 margin: 5% auto 0;
 width: 30px;
 height: 1px;
 background: var(--blu)
}
/*relief*/
.phWrap {
 display: flex;
 flex-direction: row;
 align-items: center;
 padding-bottom: 5%
}
.phWrap:nth-last-of-type(even) {
 flex-direction: row-reverse
}
.reliefImg {
 flex-shrink: 0;
 width: 42%;
 aspect-ratio: 1/1;
 object-fit: cover
}
.phTxt .cmnTtl {
 margin-bottom: 30px
}
/*slider*/
.sliderArea {
 margin: 0 auto;
 width: min(86%, 750px)
}
.slider-for1, .slider-for2, .slider-for3 {
 margin: 0 auto 5%;
 width: 100%
}
.slider-for2 img, .slider-for3 img {
 margin: 0 auto;
 width: 400px;
 aspect-ratio: 1/1;
 object-fit: cover;
}
.slider-for2 img {
 margin: 0 auto 10px
}
.slider-for2 p {
 text-align: center
}
.slick-slider {
 margin: 0 auto;
 padding: 0 !important;
 width: 76.9%
}
.slick-track {
 display: flex;
}
.slick-slide {
 height: auto !important;
}
.dots1 .slick-dots, .dots2 .slick-dots, .dots3 .slick-dots {
 display: flex;
 align-items: center;
 justify-content: center;
 margin-top: 20px
}
.dots1 .slick-dots button, .dots2 .slick-dots button, .dots3 .slick-dots button {
 display: block;
 width: 15px;
 height: 15px;
 margin: 6px;
 font-size: 0;
 padding: 0;
 outline: none;
 cursor: pointer;
 background: #d6d6d6;
 border: 2px solid #d6d6d6;
 border-radius: 50%;
}
.dots1 .slick-dots .slick-active button, .dots2 .slick-dots .slick-active button, .dots3 .slick-dots .slick-active button {
 background: #fff;
 border: 2px solid #5ba9d8;
}
.icon-left.slick-arrow, .icon-right.slick-arrow {
 position: absolute;
 top: 0;
 bottom: 0;
 margin: auto;
 display: inline-block;
 width: 28px;
 height: 28px;
 border-bottom: 3px solid #bcbcbc;
 border-left: 3px solid #bcbcbc;
 z-index: 999
}
.icon-left.slick-arrow {
 left: -40px;
 transform: rotate(45deg)
}
.icon-right.slick-arrow {
 right: -40px;
 transform: rotate(-135deg)
}
.slick-arrow:hover {
 opacity: .6
}
.slider-for2 .icon-left.slick-arrow, .slider-for2 .icon-right.slick-arrow {
 top: 35%;
 bottom: inherit
}
/*voice*/
.voiceWrap {
 padding-bottom: 5%
}
.voiceWrap .slick-list {
 padding-top: 40px !important;
}
.voiceBox {
 padding-bottom: 16px;
 height: 100%;
 background: var(--wht);
 border-radius: 16px
}
.ic-voice {
 display: block;
 margin: 0 auto -20px;
 width: 80px;
 aspect-ratio: 1/1;
 border-radius: 50%;
 border: 1px solid var(--lgry);
 transform: translateY(-50%)
}
.voiceBox h3, .voiceBox p {
 font-size: var(--nm)
}
.voiceBox h3 {
 margin: 0 auto 10px;
 width: 86%;
 font-weight: 700;
 line-height: 1.4;
 text-align: center
}
/*price*/
#price * + .patternBox {
 margin-top: 5%
}
dl.tableBox {
 display: flex;
 flex-wrap: wrap;
 align-items: stretch;
 margin: 20px auto;
 width: 86%;
 border-bottom: 1px solid var(--lgry)
}
dl.tableBox dt, dl.tableBox dd {
 padding: 20px 15px;
 border-top: 1px solid var(--lgry);
 font-size: 14px;
 line-height: 1.6
}
dl.tableBox dt {
 flex-basis: 29%;
 background: var(--pgry);
 font-weight: 700
}
dl.tableBox dd {
 flex-basis: 71%;
 background: var(--wht);
}
dl.tableBox dd small {
 display: inline-block;
 font-size: var(--ts);
}
/*spec*/
#spec .sliderArea {
 padding-bottom: 2%
}
.bg-gry dl.tableBox dt {
 background: #e8e8e8
}
/*app*/
.app {
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: var(--tm);
 font-weight: 700;
 line-height: 1.4
}
.app img {
 margin-right: 30px;
 width: 90px;
 aspect-ratio: 1/1
}
/*flow*/
.stepBox {
 position: relative;
 margin: 60px auto;
 padding-bottom: 30px;
 width: min(80%, 640px);
 background: var(--pgry);
 border-radius: 8px;
}
.stepBox:last-of-type {
 margin: 60px auto 20px;
}
#flow .stepBox:not(:first-of-type)::before {
 content: "";
 position: absolute;
 top: 0;
 left: calc(50% - 14px);
 width: 0;
 height: 0;
 margin: 0 auto;
 display: block;
 border-style: solid;
 border-width: 12px 14px 0 14px;
 border-color: var(--blu) rgba(255, 255, 255, 0) rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
 transform: translateY(-350%);
}
.stepTtl {
 text-align: center
}
.stepTtl .tag {
 margin-bottom: 10px;
 transform: translateY(-50%)
}
.stepBox img {
 display: block;
 margin: 0 auto 10px;
 width: 240px;
 aspcet-ratio: 2.8545/1
}
.stepBox p {
 text-align: center
}
.linkTxt {
 color: var(--blu)
}
/*faq*/
.faqBox {
 margin: 0 auto 30px;
 padding: 10px 3%;
 width: 90%;
 background: var(--wht);
 border: 1px solid var(--lgry);
 border-radius: 8px;
}
.ac-menu label span {
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding: 20px;
 font-size: var(--nm);
 line-height: 1.6;
 cursor: pointer
}
.ac-menu .accordion + label span::after {
 content: "";
 flex-shrink: 0;
 margin-top: -3px;
 margin-left: 10px;
 display: block;
 width: 9px;
 height: 9px;
 border-bottom: 2px solid #bcbcbc;
 border-left: 2px solid #bcbcbc;
 transform: rotate(-45deg);
 transition: .3s
}
.ac-menu .accordion:checked + label span::after {
 transform: rotate(135deg)
}
.ac-menu input.accordion {
 display: none
}
.ac-menu div.ac-cont {
 display: block;
 overflow-y: hidden;
 margin: 0;
 padding: 0 20px;
 height: 0;
 transition: all .2s
}
.ac-menu div.ac-cont p {
 position: relative;
 width: 100%;
}
.ac-menu select:focus {
 outline: none
}
.ac-menu .accordion:checked + label + div.ac-cont {
 margin-top: 10px;
 padding: 20px;
 height: auto;
 border-top: 1px dashed var(--lgry)
}
/*accessories*/
.flBox {
 display: flex;
 align-items: flex-start;
 justify-content: center;
 padding: 0 20px 20px
}
.inner-s .flBox img.accImg {
 flex-shrink: 0;
 width: 50%!important;
 aspect-ratio: 1.6/1;
 object-fit: contain
}
.btnLnk {
 position: relative;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 2.5% auto 0;
 width: min(60%, 400px);
 height: 50px;
 background: padding-box linear-gradient(var(--wht), var(--wht)), linear-gradient(to right, var(--pnk) 0%, #a873cb 50%, var(--blu) 100%);
 border-top: 1px solid rgba(255, 255, 255, 0);
 border-bottom: 1px solid rgba(255, 255, 255, 0);
 border-left: 1px solid var(--pnk);
 border-right: 1px solid var(--blu);
 border-radius: 25px;
 box-shadow: 0px 3px 0px 0px rgba(214, 214, 214, .75);
 color: var(--pnk);
 font-size: var(--nm);
 font-weight: 700;
 line-height: 1.4;
 text-decoration: none;
 opacity: 1;
 transition: .3s
}
.btnLnk::after {
 content: "";
 display: block;
 position: absolute;
 right: 5vw;
 top: 50%;
 width: 9px;
 height: 9px;
 border-bottom: 1px solid var(--pnk);
 border-left: 1px solid var(--pnk);
 transform: translateY(-50%) rotate(-135deg);
 transition: .3s
}
.btnLnk:hover {
 opacity: .6
}
.btnLnk:hover::after {
 right: 4.5vw;
}
#pop-up {
 display: none;
}
.overlay {
 display: none;
}
#pop-up:checked + .overlay {
 display: block;
 z-index: 9999;
 background-color: rgba(0, 0, 0, .7);
 position: fixed;
 width: 100%;
 height: 100vh;
 top: 0;
 left: 0;
}
.window {
 width: 100vw;
 height: 100vh;
 border-radius: 6px;
 display: flex;
 justify-content: center;
 align-items: center;
 overscroll-behavior: contain;
 overflow-y: scroll
}
.noScl {
 height: calc(100vh + 1px);
 width: 1px;
 background: rgba(255, 255, 255, 0)
}
.window-inner {
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: flex-end;
 margin: 0 0 15vw;
 width: 86vw;
 max-width: 800px
}
.window-inner .cmnBox {
 padding: 5% 2.5%;
 border-radius: 8px
}
.close {
 cursor: pointer;
 margin: 2.5% 0;
 color: var(--lgry);
 font-size: 40px
}
/*/////////////////////////////
モーダルウィンドウ
////////////////////////////*/
.btn {
 position: relative;
 display: flex;
 align-items: center;
 justify-content: center;
 max-width: 480px;
 height: 50px;
 background-image: linear-gradient(90deg, rgba(57, 181, 74, 1), rgba(62, 171, 40, 1) 90%);
 box-shadow: 0px 3px 0px 0px rgba(214, 214, 214, .75);
 border-radius: 60px;
 color: var(--wht);
 font-size: var(--nm);
 font-weight: 700;
 line-height: 1.4;
 text-decoration: none;
 margin: 3rem auto 0;
 padding: 0;
 cursor: pointer;
}
.btn:hover {
 opacity: .6
}
.btn::after {
 content: "";
 display: block;
 position: absolute;
 right: 5vw;
 top: 50%;
 width: 9px;
 height: 9px;
 border-bottom: 1px solid var(--wht);
 border-left: 1px solid var(--wht);
 transform: translateY(-50%) rotate(-135deg)
}
/* モーダルCSS */
.modalArea {
    display: none;
    position: fixed;
    z-index: 9999; /*サイトによってここの数値は調整 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.modalArea p {
    width: 100%;
    padding-bottom: 1rem;
}
.modalArea .btnBuy {
    width: 100%;
}
.modalBg {
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.9);
}
.modalWrapper{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 360px;
    background-color: #fff;
    border-radius: 0.6rem;
    padding: 2.5rem 1rem 1rem;
}
.modalWrapper_inner{
    width: 100%;
    height: 100%;
}

.application_frame_class{
    position: relative;
    width: 100%;
}
.frame_img{
    display: block;
    width: 100%;
    height: 100%;
}
.application_link{
    position: absolute;
    width: 93%;
    height: 5%;
    bottom: 9%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.closeModal {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    cursor: pointer;
}
