@charset "utf-8";
#content {
    --unused-primary-color: #b60081;
    --unused-sub-primary-color: #d148a9;
    --unused-background-color: #fbf3f8;
    --unused-btn-shadow: #ccc 3px 3px 5px;
    --unused-btn-shadow-s: #ccc 2px 2px 3px;
}

body {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

#content .topicPath {
    margin-bottom: 0;
}

#unusedWrap * {
    box-sizing: border-box;
}

#unusedWrap a:hover {
    transition: .2s;
}

#unusedWrap #mainVisual {
    position: relative;
    background: linear-gradient(180deg, #f3e5f4 0%, #e1e9fe 100%);
    margin: 0 auto 30px;
    padding: 30px 0 0;
}

#unusedWrap #mainVisual .inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

#unusedWrap #mainVisual h1 {
    margin: 0 -100px 20px 0;
    font-size: 45px;
    text-align: left;
    font-weight: bold;
    color: #222;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

#unusedWrap #mainVisual img {
    margin: 0 auto;
}

#unusedWrap .leadBox {
    width: fit-content;
}

#unusedWrap .leadBox p {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}

#unusedWrap .btnArea {
    margin-top: 50px;
}

#unusedWrap .leadBox + .btnArea {
    margin-top: 40px;
}

#unusedWrap .btnArea ul {
    display: flex;
    justify-content: center;
    gap: 40px;
}

#unusedWrap .btnArea ul li {
    width: 480px;
    text-align: center;
    border-radius: 8px;
    box-shadow: var(--unused-btn-shadow);
}

#unusedWrap .btnArea ul a {
    padding: 23px 50px 20px 30px;
    background-color: var(--unused-primary-color);
    border-radius: 8px;
    display: block;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    position: relative;
}

#unusedWrap .btnArea ul a:hover {
    text-decoration: none;
    opacity: .7;
}

#unusedWrap .btnArea ul .unusedBtn a::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    position: absolute;
    top: 45%;
    right: 35px;
    transform: rotate(45deg) translateY(-50%);
}

#unusedWrap .btnArea ul .shopBtn a {
    padding: 23px 30px 20px 50px;
    background-color: var(--unused-sub-primary-color);
}

#unusedWrap .btnArea ul .shopBtn a::before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 26px;
    background: url(img/btn_ic01.webp) no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 32px;
    margin: auto 0; 
}

#unusedWrap .sectionInner {
    max-width: 840px;
    width: 100%;
    margin: 0 auto;
}

#unusedWrap h2 {
    width: fit-content;
    margin: 0 auto 40px;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
    position: relative;
}

#unusedWrap h2 .smallText {
    font-size: 28px;
}

#unusedWrap h2 .largeText {
    font-size: 36px;
    text-decoration-color: #fffe8e;
    text-decoration-line: underline;
    text-decoration-thickness: 16px;
    text-underline-offset: -8px;
    text-decoration-skip-ink: none;
}

#unusedWrap h2 .lineText {
    font-size: 32px;
    text-decoration-color: #fffe8e;
    text-decoration-line: underline;
    text-decoration-thickness: 12px;
    text-underline-offset: -6px;
    text-decoration-skip-ink: none;
}

#unusedWrap .noteArea li {
    font-size: 14px;
    padding-left: 14px;
    text-indent: -14px;
}

#unusedWrap .anchorLink {
   width: 1100px;
   margin: 40px auto 0;
   padding: 0 50px;
   box-sizing: border-box;
}

#unusedWrap .anchorLink ul {
   width: 100%;
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
}

#unusedWrap .anchorLink ul li {
   width: 180px;
}

#unusedWrap .anchorLink ul li a {
   width: 100%;
   height: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   box-sizing: border-box;
   padding: 15px 10px 30px;
   background-color: #f9d9ed;
   font-size: 15px;
   font-weight: bold;
   line-height: 1.3;
   color: var(--unused-primary-color);
   text-align: center;
   box-shadow: 0px 3px 5px 0px rgba(86, 85, 85, 0.25);
   position: relative;
   transition: 0.2s;
   border-radius: 10px;
}

#unusedWrap .anchorLink ul li a:hover {
   text-decoration: none;
   opacity: .7;
}

#unusedWrap .anchorLink ul li a::after {
   content: "";
   display: block;
   width: 7px;
   height: 7px;
   border-bottom: 2px solid var(--unused-primary-color);
   border-right: 2px solid var(--unused-primary-color);
   position: absolute;
   bottom: 10px;
   left: 50%;
   transform: rotate(45deg) translateX(-50%);
}

#unusedWrap .bgArea01 {
    width: 1000px;
    margin: 80px auto 0;
    padding: 45px;
    background-color: var(--unused-background-color);
    border-radius: 20px;
}

#unusedWrap .bgArea01 section {
    width: 100%;
    margin: 0 auto;
    padding: 30px 40px;
    background-color: #fff;
    border-radius: 15px;
    position: relative;
}

#unusedWrap .bgArea01 section + section {
    margin: 50px auto 0;
}

#unusedWrap .bgArea01 #empathyArea01::after {
    content: "";
    display: block;
    border-style: solid;
    border-width: 30px 35px 0 35px;
    border-color: #fff transparent;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}

#unusedWrap .bgArea01 h2 {
    margin: 0 auto 20px;
    line-height: 1.2;
}

#unusedWrap .bgArea01 #empathyArea01 h2::before {
    content: "";
    display: block;
    width: 93px;
    height: 128px;
    background: url(/unused-smartphone/img/empathy_img01.webp) no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: -120px;
}

#unusedWrap .bgArea01 #empathyArea02 h2::after {
    content: "";
    display: block;
    width: 93px;
    height: 138px;
    background: url(/unused-smartphone/img/empathy_img02.webp) no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: -110px;
}

#unusedWrap .bgArea01 h2 span {
    font-size: 28px;
}

#unusedWrap .bgArea01 h2 .lineText {
    font-size: 32px;
    position: relative;
    text-decoration-color: #fffe8e;
    text-decoration-line: underline;
    text-decoration-thickness: 12px;
    text-underline-offset: -6px;
    text-decoration-skip-ink: none;
}

#unusedWrap .bgArea01 p {
    font-size: 18px;
}

#unusedWrap .bgArea02 {
    margin-top: 80px;
    padding: 80px 0;
    background-color: var(--unused-background-color);
}

#unusedWrap #aboutArea .labelBox {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

#unusedWrap #aboutArea .labelBox li {
    padding: 8px 25px 4px 60px;
    background-color: #e287c7;
    border-radius: 2px;
    font-weight: bold;
    color: #fff;
    position: relative;
}

#unusedWrap #aboutArea .labelBox li::before {
    content: "";
    display: block;
    width: 28px;
    height: 28px;
    background: url(/unused-smartphone/img/about_ic01.webp) no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translateY(-50%);
}

#unusedWrap #aboutArea .noteArea {
    margin-top: 20px;
}

#unusedWrap #aboutArea .noteArea li + li {
    margin-top: 10px;
}

#unusedWrap .sectionBorder {
    max-width: 1000px;
    width: 100%;
    margin: 80px auto;
    border: 1px solid #f4d6eb;
}

#unusedWrap #pointArea .pointWrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#unusedWrap #pointArea h2 .largeText {
    padding-left: 10px;
}

#unusedWrap #pointArea .pointWrap .pointBox {
    max-width: 270px;
    width: 100%;
}

#unusedWrap #pointArea .pointWrap .pointBox img {
    width: 100%;
    height: auto;
}

#unusedWrap #pointArea .pointWrap .pointBox p {
    margin-top: 20px;
    padding: 0 10px;
}

#unusedWrap .bgArea02 .btnArea ul .unusedBtn a::after {
    top: 40%;
    right: 30px;
    transform: rotate(225deg) translateY(-50%);
}

#unusedWrap #warrantyArea {
    margin-top: 80px;
}

#unusedWrap #warrantyArea dl dt {
    padding-left: 1.2em;
    font-weight: bold;
    position: relative;
}

#unusedWrap #warrantyArea dl dd + dt {
    margin-top: 20px;
}

#unusedWrap #warrantyArea dl dt::before {
    content: "■";
    position: absolute;
    top: -1px;
    left: 0;
}

#unusedWrap #warrantyArea dl dd {
    padding-left: 1.2em;
}

#unusedWrap #warrantyArea .optionArea {
    margin: 30px auto 0;
    padding: 40px 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    border: 3px solid var(--unused-primary-color);
    border-radius: 20px;
}

#unusedWrap #warrantyArea .optionArea .optionImg {
    max-width: 160px;
    width: 100%;
}

#unusedWrap #warrantyArea .optionArea .optionImg img {
    width: 100%;
    height: auto;
}

#unusedWrap #warrantyArea .optionArea .optionTitle {
    font-size: 22px;
    font-weight: bold;
    color: var(--unused-primary-color);
    margin-bottom: 5px;
}

#unusedWrap #warrantyArea .optionArea .btnArea {
    margin-top: 15px;
}

#unusedWrap #warrantyArea .optionArea .btnArea ul {
    justify-content: flex-start;
}

#unusedWrap #warrantyArea .optionArea .btnArea ul li {
    border-radius: 50px;
}

#unusedWrap #warrantyArea .optionArea .btnArea ul a {
    padding: 20px;
    border-radius: 50px;
    font-size: 16px;
}

#unusedWrap #warrantyArea .optionArea .btnArea ul a::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    position: absolute;
    top: 46%;
    right: 35px;
    transform: rotate(45deg) translateY(-50%);
}

#unusedWrap .bgArea03 {
    margin-top: 80px;
    padding: 80px 0;
    background-color: #eff3ff;
}

#unusedWrap #productArea .leadText {
    margin-bottom: 30px;
    text-align: center;
}

#unusedWrap #productArea .column {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

#unusedWrap #productArea .column > a {
    width: 315px;
    margin-bottom: 30px;
    padding: 20px 25px 15px;
    display: block;
    background: #fff;
    box-sizing: border-box;
    box-shadow: 6px 6px 16px -12px #a3acb2;
}

#unusedWrap #productArea .column > a:not(:nth-of-type(3n)) {
    margin-right: 27.5px;
}

#unusedWrap #productArea .column > a:hover {
    text-decoration: none;
}

#unusedWrap #productArea .products {
    position: relative;
}

#unusedWrap #productArea .products.icon::before {
    content: '';
    width: 126px;
    height: 126px;
    display: inline-block;
    position: absolute;
    top: -20px;
    right: -25px;
    z-index: 2;
}

#unusedWrap #productArea .products.icon_new::before {
    background: url(/product/img/icon_ribbon01.png) no-repeat center;
}

#unusedWrap #productArea .products.icon_cam::before {
    background: url(/product/img/icon_ribbon02.png) no-repeat center;
}

#unusedWrap #productArea .products.icon_out::before {
    background: url(/product/img/icon_ribbon03.png) no-repeat center;
}

#unusedWrap #productArea .products.icon_reservation::before {
    background: url(/product/img/icon_ribbon04.png) no-repeat center;
}

#unusedWrap #productArea .imgArea {
    position: relative;
}

#unusedWrap #productArea .imgArea .img {
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

#unusedWrap #productArea .imgArea .img img {
    width: auto;
    height: 200px;
}

#unusedWrap #productArea .imgArea .select {
    display: flex;
    justify-content: center;
}

#unusedWrap #productArea .imgArea .select > li {
    border: 1px solid #959595;
    cursor: pointer;
}

#unusedWrap #productArea .imgArea .select > li:not(:last-child) {
    margin-right: 7px;
}

#unusedWrap #productArea .imgArea .select li .imgWrap .imgColor {
    width: 23px;
    height: 23px;
    display: block;
    vertical-align: bottom;
}

#unusedWrap #productArea .imgArea .selectPhoto {
    width: 100%;
    margin: 15px 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#unusedWrap #productArea .imgArea .selectPhoto li {
    margin: 0 7px;
}

#unusedWrap #productArea .imgArea .selectPhoto li img {
    width: auto;
    max-height: 82px;
}

#unusedWrap #productArea .txtArea {
    color: #000;
}

#unusedWrap #productArea .txtArea h3 {
    width: 100%;
    margin-bottom: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.7;
    text-align: center;
}

#unusedWrap #productArea .txtArea .exp {
    padding-bottom: 15px;
    border-bottom: solid 1px #edecec;
    font-size: 14px;
    text-align: center;
}

#unusedWrap #productArea .txtArea .priceMonth {
    padding-top: 10px;
    font-size: 14px;
    text-align: center;
}

#unusedWrap #productArea .txtArea .price {
    margin-bottom: 10px;
    font-size: 14px;
    text-align: center;
}

#unusedWrap #productArea .txtArea .price .num {
    font-size: 26px;
    font-weight: bold;
}

#unusedWrap #productArea .txtArea .spec {
    display: none;
}

#unusedWrap #productArea .cpPresent {
    font-size: 13px;
    line-height: 1.3;
    text-align: center;
    border-radius: 4px;
}

#unusedWrap #productArea .cpPresent.blue {
    color: #0090cc;
    border: solid 2px #0090cc;
}

#unusedWrap #productArea .cpPresent.pink {
    color: #e333ad;
    border: solid 2px #e333ad;
}

#unusedWrap #productArea .cpPresent.yellow {
    color: #ff7e25;
	border: solid 2px #ff7e25;
}

#unusedWrap #productArea .cpPresent span.area {
    display: block;
    padding: 5px 0;
}

#unusedWrap #productArea .note {
    font-size: 13px;
}

.color_spec .colorItem .colorList li.black::before,
.color_black {
	background-color: #000000;
}

.color_spec .colorItem .colorList li.gray::before,
.color_gray {
	background-color: #b5b5b5;
}

.color_spec .colorItem .colorList li.white::before,
.color_white {
	background-color: #ffffff;
}

.color_spec .colorItem .colorList li.brown::before,
.color_brown {
	background-color: #845b37;
}

.color_spec .colorItem .colorList li.beige::before,
.color_beige {
	background-color: #d5beb9;
}

.color_spec .colorItem .colorList li.red::before,
.color_red {
	background-color: #dc4c53;
}

.color_spec .colorItem .colorList li.pink::before,
.color_pink {
	background-color: #e587c8;
}

.color_spec .colorItem .colorList li.orange::before,
.color_orange {
	background-color: #f19161;
}

.color_spec .colorItem .colorList li.yellow::before,
.color_yellow {
	background-color: #e9ea7d;
}

.color_spec .colorItem .colorList li.green::before,
.color_green {
	background-color: #98c27a;
}

.color_spec .colorItem .colorList li.blue::before,
.color_blue {
	background-color: #5e74e3;
}

.color_spec .colorItem .colorList li.purple::before,
.color_purple {
	background-color: #a561d1;
}

.color_spec .colorItem .colorList li.gold::before,
.color_gold {
	background-image: -moz-linear-gradient( 90deg, rgb(204,153,51) 0%, rgb(204,153,51) 0%, rgb(204,153,51) 0%, rgb(204,153,51) 0%, rgb(247,220,146) 46%, rgb(204,153,51) 100%);
	background-image: -webkit-linear-gradient( 90deg, rgb(204,153,51) 0%, rgb(204,153,51) 0%, rgb(204,153,51) 0%, rgb(204,153,51) 0%, rgb(247,220,146) 46%, rgb(204,153,51) 100%);
	background-image: -ms-linear-gradient( 90deg, rgb(204,153,51) 0%, rgb(204,153,51) 0%, rgb(204,153,51) 0%, rgb(204,153,51) 0%, rgb(247,220,146) 46%, rgb(204,153,51) 100%);
}

.color_spec .colorItem .colorList li.silver::before,
.color_silver {
	background-image: -moz-linear-gradient( 90deg, rgb(170,170,170) 0%, rgb(170,170,170) 0%, rgb(239,239,239) 51%, rgb(170,170,170) 100%);
	background-image: -webkit-linear-gradient( 90deg, rgb(170,170,170) 0%, rgb(170,170,170) 0%, rgb(239,239,239) 51%, rgb(170,170,170) 100%);
	background-image: -ms-linear-gradient( 90deg, rgb(170,170,170) 0%, rgb(170,170,170) 0%, rgb(239,239,239) 51%, rgb(170,170,170) 100%);
}

.color_spec .colorItem .colorList li.bronze::before,
.color_bronze {
	background-image: -moz-linear-gradient( 90deg, rgb(158,81,43) 0%, rgb(219,147,100) 49%, rgb(158,81,43) 100%);
	background-image: -webkit-linear-gradient( 90deg, rgb(158,81,43) 0%, rgb(219,147,100) 49%, rgb(158,81,43) 100%);
	background-image: -ms-linear-gradient( 90deg, rgb(158,81,43) 0%, rgb(219,147,100) 49%, rgb(158,81,43) 100%);

}

.color_spec .colorItem .colorList li.other::before,
.color_other {
	background-image: -moz-linear-gradient( 90deg, rgba(176,240,208,0.99608) 0%, rgb(190,221,230) 15%, rgb(204,201,252) 28%, rgb(243,204,254) 49%, rgb(254,237,169) 71%, rgb(203,239,173) 99%, rgb(203,239,173) 100%);
	background-image: -webkit-linear-gradient( 90deg, rgba(176,240,208,0.99608) 0%, rgb(190,221,230) 15%, rgb(204,201,252) 28%, rgb(243,204,254) 49%, rgb(254,237,169) 71%, rgb(203,239,173) 99%, rgb(203,239,173) 100%);
	background-image: -ms-linear-gradient( 90deg, rgba(176,240,208,0.99608) 0%, rgb(190,221,230) 15%, rgb(204,201,252) 28%, rgb(243,204,254) 49%, rgb(254,237,169) 71%, rgb(203,239,173) 99%, rgb(203,239,173) 100%);
}

#unusedWrap #meritArea .meritWrap .meritBox {
    width: 100%;
    height: 140px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #fff;
    border-radius: 20px;
    position: relative;
}

#unusedWrap #meritArea .meritWrap .meritBox::before {
    content: "1";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 34px;
    padding-top: 6px;
    background-color: var(--unused-sub-primary-color);
    border-top-left-radius: 20px;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
}

#unusedWrap #meritArea .meritWrap .meritBox:nth-of-type(2)::before {
    content: "2";
}

#unusedWrap #meritArea .meritWrap .meritBox:nth-of-type(3)::before {
    content: "3";
}

#unusedWrap #meritArea .meritWrap .meritBox::after {
    content: "";
    display: block;
    width: 2px;
    height: 75%;
    background-color: var(--unused-sub-primary-color);
    position: absolute;
    top: 50%;
    left: 220px;
    transform: translateY(-50%);
}

#unusedWrap #meritArea .meritWrap .meritBox + .meritBox {
    margin-top: 15px;
}

#unusedWrap #meritArea .meritWrap .imgBox {
    max-width: 200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#unusedWrap #meritArea .meritWrap .meritBox:first-of-type .imgBox {
    padding-left: 15px;
}

#unusedWrap #meritArea .meritWrap .imgBox img {
    width: 100%;
    height: auto;
}

#unusedWrap #meritArea .meritWrap .meritBox:first-of-type .imgBox img {
    max-width: 84px;
}

#unusedWrap #meritArea .meritWrap .meritBox:nth-of-type(2) .imgBox img {
    max-width: 100px;
}

#unusedWrap #meritArea .meritWrap .meritBox:nth-of-type(3) .imgBox img {
    max-width: 108px;
}

#unusedWrap #meritArea .meritWrap .textBox {
    padding-left: 40px;
}

#unusedWrap #meritArea .meritWrap .textBox h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
}

#unusedWrap #flowArea {
    margin-top: 80px;
}

#unusedWrap #flowArea .flowWrap {
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 3px solid var(--unused-sub-primary-color);
    border-radius: 20px;
}

#unusedWrap #flowArea .flowWrap .flowBox {
    max-width: 840px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}

#unusedWrap #flowArea .flowWrap .flowBox + .flowBox {
    margin-top: 50px;
}

#unusedWrap #flowArea .flowWrap .flowBox::after {
    content: "";
    display: block;
    width: 2px;
    height: calc(100% + 10px);
    background-color: #dddddd;
    position: absolute;
    top: 40px;
    left: 117px;
}

#unusedWrap #flowArea .flowWrap .flowBox:last-of-type::after {
    display: none;
}

#unusedWrap #flowArea .flowWrap .flowBox .step {
    width: fit-content;
    padding: 6px 10px 4px;
    background-color: var(--unused-sub-primary-color);
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    position: relative;
    top: 1px;
}

#unusedWrap #flowArea .flowWrap .flowBox .step::after {
    content: "";
    display: block;
    border-style: solid;
    border-width: 8px 0 8px 10px;
    border-color: transparent transparent transparent var(--unused-sub-primary-color);
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
}

#unusedWrap #flowArea .flowWrap .flowBox .stepBox {
    margin-left: 65px;
}

#unusedWrap #flowArea .flowWrap .flowBox .stepBox h3 {
    margin-bottom: 10px;
    font-size: 26px;
    font-weight: bold;
    position: relative;
}

#unusedWrap #flowArea .flowWrap .flowBox .stepBox h3::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-color: var(--unused-sub-primary-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -35px;
    transform: translateY(-50%);
}

#unusedWrap #flowArea .flowWrap .flowBox .stepBox .noteArea {
    margin-top: 5px;
}

#unusedWrap #flowArea .flowWrap .flowBox .stepBox .linkText {
    margin-top: 10px;
}

#unusedWrap #flowArea .btnArea ul .switchBtn a::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    position: absolute;
    top: 46%;
    right: 35px;
    transform: rotate(45deg) translateY(-50%);
}

#unusedWrap #faqArea {
    margin-top: 80px;
}

.accordion-trigger {
	cursor: pointer;
}

.accordion-content {
	display: none;
}

#unusedWrap #faqArea .faqBox div {
    padding: 30px 60px 30px 80px;
    border-top: 2px solid var(--unused-sub-primary-color);
    font-size: 18px;
    font-weight: bold;
    list-style: none;
    position: relative;
}
    
/*#unusedWrap #faqArea .faqBox div:hover,*/
#unusedWrap #faqArea .faqBox div.active {
    background-color: var(--unused-background-color);
}

#unusedWrap #faqArea .faqBox:last-of-type div {
    border-bottom: 2px solid var(--unused-sub-primary-color);
}
    
#unusedWrap #faqArea .faqBox div::before {
    content: "";
    display: block;
    width: 24px;
    height: 31px;
    background: url("/unused-smartphone/img/faq_ic01.webp") no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
}
    
#unusedWrap #faqArea .faqBox div::after {
    content: "";
    width: 10px;
    height: 10px;
    border-bottom: 3px solid var(--unused-sub-primary-color);
    border-right: 3px solid var(--unused-sub-primary-color);
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-70%) rotate(45deg);
}
    
#unusedWrap #faqArea .faqBox div.active::after {
    transform: translateY(-30%) rotate(225deg);
}
    
#unusedWrap #faqArea .faqBox p {
    padding: 30px 60px 30px 80px;
    border-top: 2px solid var(--unused-sub-primary-color);
    font-size: 16px;
    position: relative;
}
    
#unusedWrap #faqArea .faqBox:last-of-type p {
    border-top: 0;
    border-bottom: 2px solid var(--unused-sub-primary-color);
}
    
#unusedWrap #faqArea .faqBox p::before {
    content: "";
    display: block;
    width: 26px;
    height: 30px;
    background: url("/unused-smartphone/img/faq_ic02.webp") no-repeat;
    background-size: contain;
    position: absolute;
    top: 26px;
    left: 30px;
}

#unusedWrap .bgArea04 {
    margin: 80px auto 30px;
    padding: 80px 0;
    background-color: #f5f5f5;
}
    
#unusedWrap #attArea p {
    max-width: 840px;
    width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 640px) {
    body {
        font-size: 13px;
    }
    
    #unusedWrap img {
        width: 100%;
        height: auto;
    }
    
    #unusedWrap #mainVisual {
        margin: 0 auto 25px;
        padding: 30px 20px 0;
    }
    
    #unusedWrap #mainVisual .inner {
        flex-direction: column;
    }
    
    #unusedWrap #mainVisual h1 {
        margin: 0 auto 15px;
        padding-left: 10px;
        font-size: 30px;
        line-height: 1.2;
        text-align: center;
    }

    #unusedWrap #mainVisual img {
        max-width: 260px;
    }

    #unusedWrap .leadBox {
        width: 100%;
        padding: 0 20px;
    }
    
    #unusedWrap .leadBox p {
        margin-bottom: 5px;
        font-size: 15px;
    }

    #unusedWrap .btnArea {
        margin-top: 25px;
    }
    
    #unusedWrap .leadBox + .btnArea {
        margin-top: 20px;
    }

    #unusedWrap .btnArea.inner {
        padding: 0 20px;
    }

    #unusedWrap .btnArea ul {
        flex-direction: column;
        gap: 10px;
    }

    #unusedWrap .btnArea ul li {
        width: 100%;
        border-radius: 4px;
        box-shadow: var(--unused-btn-shadow-s);
    }

    #unusedWrap .btnArea ul a {
        padding: 18px 40px 15px 20px;
        border-radius: 4px;
        font-size: 15px;
    }
    
    #unusedWrap .btnArea ul a:hover {
        opacity: 1;
    }
    
    #unusedWrap .btnArea ul .unusedBtn a::after {
        width: 8px;
        height: 8px;
        border-bottom: 3px solid #fff;
        border-right: 3px solid #fff;
        position: absolute;
        top: 40%;
        right: 30px;
    }
    
    #unusedWrap .btnArea ul .shopBtn a {
        padding: 18px 20px 15px 40px;
    }

    #unusedWrap .btnArea ul .shopBtn a::before {
        width: 26px;
        height: 21px;
        left: 19px;
    }
    
    #unusedWrap .sectionInner {
    }

    #unusedWrap h2 {
        margin: 0 auto 25px;
        font-size: 20px;
    }
    
    #unusedWrap h2 .smallText {
        font-size: 18px;
    }
    
    #unusedWrap h2 .largeText {
        font-size: 22px;
        text-decoration-thickness: 10px;
        text-underline-offset: -5px;
    }

    #unusedWrap h2 .lineText {
        font-size: 20px;
        text-decoration-thickness: 10px;
        text-underline-offset: -5px;
    }
    
    #unusedWrap .noteArea li {
        font-size: 12px;
        padding-left: 12px;
        text-indent: -12px;
    }
    
    #unusedWrap .anchorLink {
        width: 100%;
        margin: 20px auto 0;
        padding: 0 20px;
    }

    #unusedWrap .anchorLink ul li {
        width: 48%;
    }

    #unusedWrap .anchorLink ul li:first-of-type {
        width: 100%;
    }

    #unusedWrap .anchorLink ul li:nth-of-type(n + 2) {
        margin-top: 12px;
    }

    #unusedWrap .anchorLink ul li a {
        padding: 12px 8px 20px;
        font-size: 13px;
        border-radius: 5px;
    }

    #unusedWrap .anchorLink ul li a:hover {
        opacity: 1;
    }

    #unusedWrap .anchorLink ul li a::after {
        width: 5px;
        height: 5px;
        bottom: 7px;
    }

    #unusedWrap .bgArea01 {
        width: calc(100% - 40px);
        margin: 50px auto 0;
        padding: 30px 20px;
        border-radius: 10px;
    }

    #unusedWrap .bgArea01 section {
        padding: 25px 20px;
        border-radius: 10px;
    }

    #unusedWrap .bgArea01 section + section {
        margin: 30px auto 0;
    }

    #unusedWrap .bgArea01 #empathyArea01::after {
        border-width: 20px 25px 0 25px;
        bottom: -20px;
    }

    #unusedWrap .bgArea01 h2 {
        margin: 0 auto 10px;
        line-height: 1.3;
    }

    #unusedWrap .bgArea01 #empathyArea01 h2 {
        padding-left: 20px;
    }

    #unusedWrap .bgArea01 #empathyArea01 h2::before {
        width: 60px;
        height: 78px;
        bottom: auto;
        top: -55px;
        left: -55px;
    }

    #unusedWrap .bgArea01 #empathyArea02 h2::after {
        width: 56px;
        height: 83px;
        bottom: auto;
        top: -60px;
        right: -15px;
    }

    #unusedWrap .bgArea01 h2 span {
        font-size: 18px;
    }

    #unusedWrap .bgArea01 h2 .lineText {
        font-size: 20px;
    }

    #unusedWrap .bgArea01 p {
        font-size: 14px;
    }

    #unusedWrap .bgArea02 {
        margin-top: 50px;
        padding: 50px 20px;
    }

    #unusedWrap #aboutArea .labelBox {
        margin-bottom: 20px;
        flex-direction: column;
        gap: 5px;
    }

    #unusedWrap #aboutArea .labelBox li {
        padding: 8px 15px 4px 45px;
    }

    #unusedWrap #aboutArea .labelBox li::before {
        width: 20px;
        height: 20px;
        left: 15px;
    }

    #unusedWrap #aboutArea .noteArea {
        margin-top: 10px;
    }

    #unusedWrap #aboutArea .noteArea li + li {
        margin-top: 5px;
    }

    #unusedWrap .sectionBorder {
        margin: 50px auto;
    }

    #unusedWrap #pointArea .pointWrap {
        flex-direction: column;
        gap: 15px;
    }
    
    #unusedWrap #pointArea h2 .largeText {
        padding-left: 0;
    }

    #unusedWrap #pointArea .pointWrap .pointBox {
        max-width: none;
        display: flex;
        gap: 5%;
    }

    #unusedWrap #pointArea .pointWrap .pointBox div {
        width: 30%;
    }

    #unusedWrap #pointArea .pointWrap .pointBox img {
        width: 100%;
        height: auto;
    }

    #unusedWrap #pointArea .pointWrap .pointBox div + div {
        width: 65%;
    }

    #unusedWrap #pointArea .pointWrap .pointBox .titleText {
        margin-top: 10px;
        font-size: 15px;
        font-weight: bold;
    }

    #unusedWrap #pointArea .pointWrap .pointBox .titleText span {
        text-decoration-color: #fffe8e;
        text-decoration-line: underline;
        text-decoration-thickness: 10px;
        text-underline-offset: -5px;
        text-decoration-skip-ink: none;
    }

    #unusedWrap #pointArea .pointWrap .pointBox p {
        margin-top: 5px;
        padding: 0;
    }
    
    #unusedWrap .bgArea02 .btnArea ul .unusedBtn a::after {
        right: 20px;
    }

    #unusedWrap #warrantyArea {
        margin-top: 50px;
        padding: 0 20px;
    }

    #unusedWrap #warrantyArea dl dd + dt {
        margin-top: 10px;
    }

    #unusedWrap #warrantyArea dl dt::before {
        top: -0.5px;
    }

    #unusedWrap #warrantyArea .optionArea {
        margin: 20px auto 0;
        padding: 10px 25px 30px;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 15px;
        border: 2px solid var(--unused-primary-color);
        border-radius: 10px;
    }

    #unusedWrap #warrantyArea .optionArea .optionImg {
        max-width: 108px;
    }

    #unusedWrap #warrantyArea .optionArea .optionTitle {
        font-size: 16px;
        text-align: center;
    }

    #unusedWrap #warrantyArea .optionArea .btnArea {
        margin-top: 10px;
    }

    #unusedWrap #warrantyArea .optionArea .btnArea ul {
        justify-content: center;
    }

    #unusedWrap #warrantyArea .optionArea .btnArea ul a {
        padding: 10px 40px 8px;
        font-size: 13px;
        line-height: 1.3;
    }

    #unusedWrap #warrantyArea .optionArea .btnArea ul a::after {
        width: 6px;
        height: 6px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        right: 25px;
    }

    #unusedWrap .bgArea03 {
        margin-top: 50px;
        padding: 50px 20px;
    }

    #unusedWrap #productArea .leadText {
        margin-bottom: 20px;
        text-align: left;
    }

    #unusedWrap #productArea .column.clm_one {
        display: block;
    }

    #unusedWrap #productArea .column.clm_one > a {
        width: 100%;
        height: auto;
        margin: 0 auto 20px;
        padding: 0 5px 5px;
        box-shadow: 3px 3px 8px -6px #a3acb2;
    }

    #unusedWrap #productArea .column.clm_one .products {
        padding: 30px 5px 10px;
        display: flex;
        justify-content: space-between;
    }

    #unusedWrap #productArea .clm_one .products.icon::before {
        width: 75px;
        height: 75px;
        background-size: contain;
        top: 0;
        right: -5px;
    }

    #unusedWrap #productArea .clm_one .products::after {
        content: "";
        display: block;
        width: 10px;
        height: 10px;
        border-top: 2px solid #c4c4c4;
        border-right: 2px solid #c4c4c4;
        box-sizing: border-box;
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%) rotate(45deg);
    }

    #unusedWrap #productArea .clm_one .imgArea {
        width: 30%;
    }

    #unusedWrap #productArea .clm_one .imgArea .img {
        margin-bottom: 10px;
    }

    #unusedWrap #productArea .column.clm_one .imgArea .img img {
        height: 100px;
    }

    #unusedWrap #productArea .clm_one .imgArea .select {
        flex-wrap: wrap;
        gap: 5px 10px;
    }

    #unusedWrap #productArea .imgArea .select > li:not(:last-child) {
        margin-right: 0;
    }

    #unusedWrap #productArea .imgArea .select li .imgWrap {
        line-height: 1;
    }

    #unusedWrap #productArea .imgArea .select li .imgWrap .imgColor {
        width: 15px;
        height: 15px;
    }

    #unusedWrap #productArea .column.clm_one .imgArea .selectPhoto {
        display: none;
    }

    #unusedWrap #productArea .clm_one .txtArea {
        width: 68%;
        position: relative;
        padding-top: 20px;
    }

    #unusedWrap #productArea .clm_one .txtArea h3 {
        width: 90%;
        height: auto;
        margin: 0;
        font-size: 17px;
        line-height: 1.5;
        text-align: left;
        justify-content: flex-start;
    }

    #unusedWrap #productArea .clm_one .txtArea .exp {
        padding-bottom: 0;
        font-size: 12px;
        position: absolute;
        top: 0;
        left: 0;
        border-bottom: 0;
    }

    #unusedWrap #productArea .clm_one .txtArea .priceMonth {
        margin-bottom: 5px;
        padding-top: 10px;
        font-size: 12px;
        text-align: left;
    }

    #unusedWrap #productArea .clm_one .txtArea .price {
        margin-bottom: 10px;
        font-size: 12px;
        line-height: 1;
        text-align: left;
    }

    #unusedWrap #productArea .clm_one .txtArea .price .num {
        padding: 0 2px;
        font-size: 24px;
        color: var(--unused-sub-primary-color);
    }

    #unusedWrap #productArea .clm_one .txtArea .spec {
        display: block;
    }

    #unusedWrap #productArea .clm_one .txtArea .spec ul {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: stretch;
    }

    #unusedWrap #productArea .clm_one .txtArea .spec ul > li {
        width: 31%;
        border: solid 1px var(--unused-sub-primary-color);
        border-radius: 4px;
        position: relative;
    }

    #unusedWrap #productArea .clm_one .txtArea .spec ul > li .ttl {
        height: 24px;
        display: block;
        padding-top: 1px;
        background: var(--unused-sub-primary-color);
        border-radius: 4px 4px 0 0;
        font-size: 10px;
        line-height: 24px;
        color: #fff;
        text-align: center;
        position: relative;
        top: -1px;
    }

    #unusedWrap #productArea .clm_one .txtArea .spec ul > li .que {
        width: 15px;
        height: 15px;
        margin: auto 0;
        display: flex;
        position: absolute;
        top: -1px;
        bottom: 0;
        right: 3px;
        cursor: pointer;
    }

    #unusedWrap #productArea .clm_one .txtArea .spec ul > li .que_popup {
        background: #fff;
        box-shadow: 0 0 10px 0 #a3acb2;
        position: absolute;
		top: 35px;
		left: 50%;
		z-index: 99;
    }

    #unusedWrap #productArea .clm_one .txtArea .spec ul > li .que_popup.center {
        transform: translateX(-70%);
    }

    #unusedWrap #productArea .clm_one .txtArea .spec ul > li .que_popup.right {
        transform: translateX(-90%);
    }

    #unusedWrap #productArea .clm_one .txtArea .spec ul > li .que_popup .inner {
		width: 300px;
		padding: 10px 20px;
		box-sizing: border-box;
        position: relative;
    }

    #unusedWrap #productArea .clm_one .txtArea .spec ul > li .que_popup .inner::before {
		content: "";
		display: inline-block;
        border-style: solid;
		border-width: 0 5px 8px 5px;
		border-color: transparent transparent #fff transparent;
        position: absolute;
		top: -8px;
		z-index: 98;
    }

    #unusedWrap #productArea .clm_one .txtArea .spec ul > li .que_popup.center .inner::before {
		left: 70%;
		transform: translateX(-30%);
    }

    #unusedWrap #productArea .clm_one .txtArea .spec ul > li .que_popup.right .inner::before {
		left: 88%;
		transform: none;
    }

    #unusedWrap #productArea .clm_one .txtArea .spec ul > li .que_popup .que_ttl {
		padding-bottom: 5px;
        border-bottom: solid 1px #edecec;
		font-size: 14px;
        font-weight: bold;
		color: var(--unused-sub-primary-color);
        text-align: center;
    }

    #unusedWrap #productArea .clm_one .txtArea .spec ul > li .que_popup .main {
		padding: 10px 0;
		font-size: 13px;
    }

    #unusedWrap #productArea .clm_one .txtArea .spec ul > li .que_popup .close {
		position: absolute;
        right: 10px;
        bottom: 10px;
		cursor: pointer;
    }

    #unusedWrap #productArea .clm_one .txtArea .spec ul > li .que_popup .close img {
		width: 90%;
    }

    #unusedWrap #productArea .clm_one .txtArea .spec ul > li p.txt {
		padding: 9px 0 10px;
        font-size: 11px;
        font-weight: 600;
        line-height: 1;
        text-align: center;
    }

    #unusedWrap #productArea .clm_one .txtArea .spec ul > li p .num {
		font-size: 20px;
    }

    #unusedWrap #productArea .clm_one .cpPresent {
        padding: 10px;
        background-color: #f0f0f0;
        border-radius: 0;
        color: #000;
    }

    #unusedWrap #productArea .cpPresent.blue {
        border: 0;
    }

    #unusedWrap #productArea .cpPresent.pink {
        border: 0;
    }

    #unusedWrap #productArea .cpPresent.yellow {
        border: 0;
    }

    #unusedWrap #productArea .cpPresent a,
    #unusedWrap #productArea .cpPresent span.area{
        padding: 3px 0;
    }

    #unusedWrap #productArea .clm_one .cpPresent span.area {
        text-align: left;
    }

    #unusedWrap #meritArea .meritWrap .meritBox {
        height: auto;
        padding: 25px 15px;
        border-radius: 10px;
    }

    #unusedWrap #meritArea .meritWrap .meritBox::before {
        width: 36px;
        height: 21px;
        padding-top: 3px;
        border-top-left-radius: 10px;
        font-size: 18px;
    }

    #unusedWrap #meritArea .meritWrap .meritBox::after {
        height: 70%;
        left: 105px;
    }

    #unusedWrap #meritArea .meritWrap .meritBox + .meritBox {
        margin-top: 10px;
    }

    #unusedWrap #meritArea .meritWrap .imgBox {
        max-width: 80px;
    }

    #unusedWrap #meritArea .meritWrap .meritBox:first-of-type .imgBox {
        padding-left: 15px;
    }

    #unusedWrap #meritArea .meritWrap .imgBox img {
        width: 100%;
        height: auto;
    }

    #unusedWrap #meritArea .meritWrap .meritBox:first-of-type .imgBox img {
        max-width: 57px;
    }

    #unusedWrap #meritArea .meritWrap .meritBox:nth-of-type(2) .imgBox img {
        max-width: 69px;
    }

    #unusedWrap #meritArea .meritWrap .meritBox:nth-of-type(3) .imgBox img {
        max-width: 74px;
    }

    #unusedWrap #meritArea .meritWrap .textBox {
        padding-left: 25px;
    }

    #unusedWrap #meritArea .meritWrap .textBox h3 {
        font-size: 15px;
        margin-bottom: 2px;
    }

    #unusedWrap #flowArea {
        margin-top: 50px;
        padding: 0 20px;
    }

    #unusedWrap #flowArea .flowWrap {
        padding: 25px 15px;
        border: 2px solid var(--unused-sub-primary-color);
        border-radius: 10px;
    }

    #unusedWrap #flowArea .flowWrap .flowBox + .flowBox {
        margin-top: 20px;
    }

    #unusedWrap #flowArea .flowWrap .flowBox::after {
        height: 100%;
        top: 25px;
        left: 82px;
    }

    #unusedWrap #flowArea .flowWrap .flowBox .step {
        padding: 4px 8px 2px;
        border-radius: 5px;
        font-size: 14px;
        top: 1px;
    }

    #unusedWrap #flowArea .flowWrap .flowBox .step::after {
        border-width: 6px 0 6px 8px;
        right: -8px;
    }

    #unusedWrap #flowArea .flowWrap .flowBox .stepBox {
        margin-left: 35px;
    }

    #unusedWrap #flowArea .flowWrap .flowBox .stepBox h3 {
        margin-bottom: 5px;
        padding-top: 4px;
        font-size: 16px;
    }

    #unusedWrap #flowArea .flowWrap .flowBox .stepBox h3::before {
        width: 10px;
        height: 10px;
        top: 10px;
        left: -20px;
        transform: none;
    }

    #unusedWrap #flowArea .flowWrap .flowBox .stepBox .noteArea {
        margin-top: 2px;
    }

    #unusedWrap #flowArea .flowWrap .flowBox .stepBox .linkText {
        margin-top: 5px;
    }

    #unusedWrap #flowArea .btnArea ul .switchBtn a::after {
        width: 8px;
        height: 8px;
    }

    #unusedWrap #faqArea {
        margin-top: 50px;
        padding: 0 20px;
    }

    #unusedWrap #faqArea .faqBox div {
        padding: 15px 30px 12px 40px;
        font-size: 15px;
    }

    #unusedWrap #faqArea .faqBox div::before {
        width: 17px;
        height: 22px;
        top: 13px;
        left: 13px;
        transform: none;
    }

    #unusedWrap #faqArea .faqBox div::after {
        width: 6px;
        height: 6px;
        border-bottom: 2px solid var(--unused-sub-primary-color);
        border-right: 2px solid var(--unused-sub-primary-color);
        right: 13px;
    }

    #unusedWrap #faqArea .faqBox p {
        padding: 15px 30px 12px 40px;
        font-size: 13px;
    }

    #unusedWrap #faqArea .faqBox p::before {
        width: 19px;
        height: 22px;
        top: 12px;
        left: 13px;
    }

    #unusedWrap .bgArea04 {
        margin: 50px auto 20px;
        padding: 50px 20px;
    }
}

@media screen and (max-width: 380px) {
    #unusedWrap #mainVisual h1 {
        font-size: 29px;
    }
    
    #unusedWrap #warrantyArea h2 .lineText {
        font-size: 19px;
    }
    
    #unusedWrap #productArea .column.clm_one > a {
        width: 100%;
    }
}
