@charset "UTF-8";

/* メインビジュアルエリア */
.slick-slide .sp {
    display: none;
}

/* アラートエリア */
.alert {
    width: 85%;
    margin: auto;
    margin-bottom: 64px;
    padding: 0;
}
.alertMain {
    position: relative;
    margin: auto;
    margin-top: 30px;
}
.alertMain:first-child {
    margin-top: 0;
}

.accordion label {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    display: block;
    width: calc(30px + 5%);
    height: 44px;
    cursor: pointer;
}
.accordion label .accordionButton {
    position: absolute;
    top: 22px;
    left: 50%;
    display: block;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    margin-right: 0.5em;
    background: red;
    background-color: #fff;
    border: 2px solid #c03;
    border-radius: 50%;
    transform: translate(-10px, -10px);
}
.accordion label .accordionButton::before,
.accordion label .accordionButton::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 60%;
    height: 2px;
    background-color: #c03;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: all 0.5s;
    content: '';
}
.accordion.alertMain label[for='accordionGray'] .accordionButton {
    border-color: #888888;
}
.accordion.alertMain label[for='accordionGray'] .accordionButton::before,
.accordion.alertMain label[for='accordionGray'] .accordionButton::after {
    background: #888888;
}

.accordion label .accordionButton::after {
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
    transform: translate(-50%, -50%) rotate(-90deg);
}
.accordion :checked ~ label .accordionButton::after {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.alertMain input {
    display: none;
}
.accordion .alertContent {
    position: relative;
    height: 44px; /* 開く前に見えている部分の高さ */
    overflow: hidden;
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}
.accordion .alertContent::after {
    position: absolute;
    bottom: 0;
    z-index: 1;
    display: block;
    width: calc(95% - 30px);
    height: 0.8em;
    background: white;
    /* 2行目以降を隠すための疑似要素 */
    content: '';
}
.accordion input:checked ~ .alertContent::after {
    content: none;
}
.accordion input:checked ~ .alertContent {
    height: auto;
}
.accordion.alertContentOff input:checked ~ .alertContent {
    height: 44px;
}
.accordion .alertContent p {
    padding: 11px calc(30px + 5%) 11px 1em;
}
.alertContent p {
    padding: 11px;
}
.alertGray {
    border: 2px solid #ccc;
}
.alertRed {
    border: 2px solid #c03;
}
.alertRed .alertContent p {
    color: #c03;
}
.alertGray .alertContent p {
    color: #ccc;
}

.alertMain .alertContent > p a {
    font-size: 100%;
}
.alertMain .alertContent > p a:hover {
    text-decoration: underline;
}

/* ページタイトル */
.titleWrapper {
    font-size: 30px;
    text-align: center;
}
/* 商品を探すエリア */
#itemSearchArea {
    padding-bottom: 20px;
}
.itemSearch {
    position: relative;
    display: flex;
    flex-direction: column;
}
.itemSearchTitle {
    text-align: center;
    margin: 64px auto;
}
.categoryListPC {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;    /*201910 + docomo update */
    vertical-align: middle;
    background-color: white;
}
.category {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	width: calc((100% - (40px * 4)) / 4);
	margin: 0 20px;    /*201910 + docomo update */
}
.categoryName {
    display: block;
    width: calc(100% + 2em);
    margin-top: 10px;    /*201910 + docomo update */
	margin-bottom: 0;    /*201910 + docomo update */
    font-size: 16px;     /*202206 + docomo update */
    text-align: center;
	min-height: 54px;    /*201910 + docomo update */
}
.categoryListPC .categoryName {
    margin-bottom: 15px;
}

.categoryPicture {
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 180px;*/    /*201910 + docomo update */
    vertical-align: middle;
}
.categoryPicture:hover {
    opacity: 0.8;
}
/* HowToリンクバナーエリア */
#bannerContents {
    /*background-color: #f8f8f8;*/  /*20191101 + docomo update */
    display: flex;
}
#bannerContents > div {
    padding: 36px 0 0;
    width: 50%;
    margin-right: 18px;
    text-align: center;
}
#bannerContents > div + div {
    margin-left: 18px;
    margin-right: 0;
}

.scrollToPriceAttention {
    position: relative;
    font-size: 14px;
}
/* バナーエリア */
#gigaBanner div {
    padding: 30px 0;
    text-align: center;
}
/* 販売情報エリア */
.salesText {
    display: inline-block;
    margin-top: -2px;
    line-height: 1.6em;
    vertical-align: middle;
}
.salesNew {
    margin-left: 0;
    vertical-align: middle;
    font-size: 16px;
}
.salesNew + .salesText {
    width: 100%;
    margin-left: 0;
}
.salesTitleArea {
    position: relative;
}
#salesTitle {
    text-align: center;
}
#salesLink {
    position: absolute;
    top: 30%;
    right: -0.9%;
}
#salesInformation {
    margin: calc(64px - 10px) auto;
    margin-top: 0;
}
.salesNews {
    padding-top: 0.4em;
}
.salesNews:first-child {
    padding-top: 0;
}
.salesNews:last-child {
    padding-bottom: 0;
}
.salesDate {
    display: inline-block;
    width: 125px;
}
.salesIcon {
    display: inline-block;
    min-width: 110px;
    margin-right: 5px;
    white-space: nowrap;
}
.salesIcon img {
    max-height: 1.8em;
}
/* 定期メンテナンス情報エリア */
#maintenanceInformation {
    margin-top: 64px;
    margin-bottom: 64px;
    border-top: 1px solid #d8d8d8;
}
.maintenanceTitleArea {
    position: relative;
}
#maintenanceTitle {
    text-align: center;
}
/*#maintenanceLink {
    position: absolute;
    top: 30%;
    right: -0.9%;
}*/
.maintenanceMessage,
.freeAreaMessage {
    margin-top: 30px;
}
.freeAreaMessage li {
    margin-bottom: 0.4em;
}

/* メインビジュアルエリア */
.mainVisualImage {
    margin: auto;
}
#mainVisual {
    position: relative;
    margin-bottom: 64px;
}
#mainVisualLoadingImage.float {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 1280px;
    padding: 0 40px;
    z-index: 1;
    box-sizing: border-box;
}
#mainVisualLoadingImage {
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
    opacity: 1;
}
#mainVisualLoadingImage.fadeOut {
    opacity: 0;
}
#mainVisualSlickBox {
    display: none;
    opacity: 0;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}
#mainVisualSlickBox.endLoading {
    display: block;
}
#mainVisualSlickBox.fadeIn {
    opacity: 1;
}
.sliderBtnWrap,
.slickDots {
    display: block;
}
#mainVisualSlickBox li a {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    display: block;
}
#mainVisualSlickBox li a::before {
    content: '';
    display: block;
    padding-top: 26.67%;
}
#mainVisualSlickBox li a img {
    position: absolute;
    left: 0;
    top: 0;
}
#priceAttentionArea.attentionList {
    margin-bottom: 64px;
    padding-top: 0;
}
/* 汎用エリア */
#freeArea {
    margin-top: 64px;
    border-top: 1px solid #d8d8d8;
}
#freeAreaTitle {
    text-align: center;
}
/* キャンペーンエリアが無い場合 */
#campaign.dispNone + #recommendInformation {
    border-top: 1px solid #ccc;
}
/* お知らせエリアが無い場合 */
#newsArea.dispNone + #freeArea {
    margin-top: 0;
}
/* 価格一覧在庫一覧リンク */
.linkPriceStock {
    position: absolute;
    top: 80px;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
}
.linkPriceStock a {
    width: 100px;
    text-align: center;
}

/* メンテナンス情報下の区切り線    docomo update 190830*/
#maintenanceInformation.borderline {
	border-bottom: 1px solid #d8d8d8;
	padding: 0 40px 64px;
}
/* カルーセルの端数 */
.slickDummy {
    opacity: 0!important;
}

@media screen and (max-width: 1050px) and (min-width: 960px) {
    .recommendDetail {
        padding: 1.6em 5px;
    }
    .recommendPriceTitle {
        font-size: 11px;
    }
}
@media screen and (min-width: 960px) {
    /* 関連リンクエリア */
    #relatedLink {
        padding: 0;
    }
    .aboutItem {
        width: 33%;
        margin: 0 1.2%;
    }
    .aboutItem:first-child {
        margin-left: 0;
    }
    .aboutItem:last-child {
        margin-right: 0;
    }
    .recommendSlickBox li.recommendItem {
        margin: 11px 20px 10px;
    }
    .aboutItem img {
        position: static;
        transform: translateY(-3px);
    }
    .aboutItem:first-child img {
        transform: translateY(-15px);
    }
    .supportTextMessage {
        position: static;
        transform: translateY(15px);
    }
}
@media screen and (min-width: 768px) {
    #salesContentsList {
        margin: 0 50px;
    }
    .salesText {
        width: calc(100% - 270px);
    }
    .salesNew + .salesText {
        width: calc(100% - 320px);
    }
    .maintenanceMessage,
    .freeAreaMessage {
        margin-right: 50px;
        margin-left: 50px;
    }
}
/*== TAB ==*/
@media screen and (min-width: 768px) and (max-width: 959px) {
    /* 関連リンクエリア */
    #relatedLinkContents {
        flex-wrap: wrap;
        margin: 0 6.2% 0 8%;
    }
    .relatedLinkItem {
        width: calc((100% - (20px * 4)) / 2);
        height: 210px;
        margin: 20px;
    }
    /* 商品を探すエリア */
    .category {
        width: calc((100% - (40px * 3)) / 3);
    }
}
@media screen and (max-width: 850px) {
    .recommendSlickBox li.recommendItem {
        margin: 10px;
    }
}
@media screen and (max-width: 959px) {
    .relatedLinkItem:nth-child(1),
    .relatedLinkItem:nth-child(2) {
        margin-top: 0;
    }
    .relatedLinkItem:nth-last-child(1),
    .relatedLinkItem:nth-last-child(2) {
        margin-bottom: 0;
    }

}
@media screen and (max-width: 825px) and (min-width: 768px) {
    /* 定期メンテナンス情報エリア */
    #maintenanceLink {
        top: 90%;
    }
}
@media screen and (max-width: 800px) and (min-width: 768px) {
}
/*== SP ==*/
@media screen and (max-width: 767px) {
    /* メインビジュアルエリア */
    #mainVisual {
        margin-bottom: 40px;
        padding: 0;
    }
    #mainVisualLoadingImage.float {
        max-width: 100%;
        padding: 0;
        right: 0;
        margin: auto;
    }
    #mainVisual .slickDots {
        bottom: -20px;
    }
    .slick-slide .pc {
        display: none;
    }
    .slick-slide .sp {
        display: block;
    }
    #mainVisualSlickBox.show .sliderBtnWrap {
        display: none !important;
    }
    #mainVisualSlickBox li a::before {
        padding-top: 64%;
    }

    /* アラートエリア */
    .alert {
        margin-bottom: 40px;
    }
    /* ページタイトル */
    .titleWrapper {
        font-size: 24px;
    }
    /* 商品を探すエリア */
    #itemSearchArea {
        padding: 0;
        background-color: white;
    }
    .itemSearchTitle {
        margin: 0;
        padding: 40px 0px 30px;
        text-align: center;
    }
    #itemSearchBackgroundSP {
        height: 40px;
        background-color: #efefef;
    }
    .categoryListPC {
        display: none;
    }
    .categoryListSP {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 0 15px 15px;
        vertical-align: middle;
        background-color: white;
    }
    .categoryToggleWrap {
        width: 100%;
        text-align: center;
    }
    .categoryToggle {
        display: inline-flex;
        align-items: center;
        height: 40px;
        margin: 20px auto 0;
        line-height: 1.5em;
        cursor: pointer;
    }
    .category {
        width: calc((100% - 40px) / 2);
        /*height: 180px;*/    /*201910 + docomo update */
        margin: 0 10px;
    }
    .otherItem {
        display: none;
        justify-content: center;
        align-items: flex-start;    /*201910 + docomo update */
        width: calc((100% - 40px) / 2);
        /*height: 180px;*/    /*201910 + docomo update */
        margin: 0 10px;    /*201910 + docomo update */
        padding-top: 0;    /*201910 + docomo update */
        vertical-align: middle;
    }
    .otherItem:nth-child(2n - 1) {
        margin-right: auto;
    }
    .otherItem > .category {
        width: 100%;
        margin: 0;
    }
    .justSizePicture {
        min-width: 130px;
    }
    .categoryPicture {
        height: 120px;    /*201910 + docomo update */
    }
    .otherItem .categoryPicture {
        /*height: 110px;*/
    }
    .category:nth-child(2n + 1) img {
        margin-right: 4px;
    }
    .category:nth-child(2n) img {
        margin-left: 4px;
    }

    /* 販売情報エリア */
    #salesInformation {
        margin: 0 0 calc(40px - 10px);
    }
    .salesNews {
        display: block;
        padding: 0px;
    }
    /* NEWアイコン */
    .salesNew {
        margin: 0;
    }
    .salesDate {
        display: inline-block;
        width: auto;
        margin-bottom: 5px;
        margin-right: 5px;
    }
    .salesText {
        display: block;
        max-width: initial;
        margin-bottom: 0.8em;
        margin-left: 0px;
    }
    #salesTitle {
        text-align: center;
    }
    /* HowToリンクバナーエリア */
    #bannerContents > div {
        margin-right: 6px;
    }
    #bannerContents > div + div {
        margin-left: 6px;
        margin-right: 0;
    }

    /* 定期メンテナンス情報エリア */
    #maintenanceInformation {
        margin-top: 40px;
        margin-bottom: 40px;
        padding: 0 6%;
    }
    #maintenanceTitle {
        text-align: center;
    }
    /*#maintenanceLink {
        top: 90%;
        right: -5%;
    }*/
    #priceAttentionArea.attentionList {
        margin-bottom: 40px;
    }
    #freeArea {
        margin-top: 40px;
    }
    #freeAreaTitle {
        text-align: center;
    }
    .freeAreaMessage li {
        margin-bottom: 0.8em;
    }
    .freeAreaMessage li a,
    .freeAreaMessage li span {
        line-height: 1.4em;
    }
    /* 価格一覧在庫一覧リンク */
    .linkPriceStock {
        top: 90px;
    }
    .linkPriceStock a {
        margin-bottom: 15px;
    }

	/* メンテナンス情報下の区切り線    docomo update 190830*/
	#maintenanceInformation.borderline {
		border-bottom: 1px solid #d8d8d8;
		padding: 0 6% 32px;
	}
}

@media screen and (max-width: 450px) {

    /* 商品を探すエリア */
    .categoryName {
        font-size: 12px;      /*202206 + docomo update */
        min-height: 48px;    /*191020 + docomo update*/
    }
}
@media screen and (max-width: 400px) {

    /* 販売情報エリア */
    #salesLink {
        right: -5%;
    }
}
@media screen and (max-width: 370px) {

    /* 価格一覧在庫一覧リンク */
    .itemSearchTitle {
        /*padding-left: 5%;*/
        text-align: left;
        text-align: center;
    }
}

/* XML */
.newsText.pc.tab,
.salesText.pc.tab {
    display: inline-block;
}
@media screen and (max-width: 959px) {
    /* ﾒｲﾝﾋﾞｼﾞｭｱﾙｴﾘｱ */
    .slick-slide .pc.tab {
        display: none;
    }
    .slick-slide .sp.tab {
        display: block;
    }

    .newsText.pc.tab,
    .salesText.pc.tab {
        display: none;
    }

    .newsText.tab,
    .salesText.tab,
    .newsText.sp.tab,
    .salesText.sp.tab {
        display: inline-block;
    }
}

@media screen and (max-width: 767px) {
    .newsText.tab,
    .salesText.tab,
    .newsText.pc,
    .salesText.pc {
        display: none;
    }
    .newsText.sp,
    .salesText.sp,
    .newsText.sp.tab,
    .salesText.sp.tab {
        display: block;
    }
}
@media screen and (max-width: 360px) {
    .salesIcon {
        margin-right: 0;
        min-width: 90px;
    }
    .salesIcon img {
        max-height: 1.6em;
    }
}
/*== ↓firefox用↓ ==*/
@-moz-document url-prefix() {
    .recommendItem {
        box-shadow: 0 0 2px 0 #d8d8d8;
    }
    .aboutItem {
        box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    }
    .relatedLinkItem {
        box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
    }
}
/*== ↑firefox用↑ ==*/

/*== ↓Safari用↓ ==*/
_::-webkit-full-page-media,
_:future,
:root .categoryName {
    position: static;
}
_::-webkit-full-page-media,
_:future,
:root .rankingSlider .slickTrack li {
    display: block;
}
_::-webkit-full-page-media,
_:future,
:root .recommendSlickBox li.recommendItem {
    display: block;
}
_::-webkit-full-page-media,
_:future,
:root .recommendOption span.recommendName {
    word-break: break-all;
}
@media screen and (min-width: 768px) {
    _::-webkit-full-page-media,
    _:future,
    :root .aboutItem img {
        position: static;
    }
    _::-webkit-full-page-media,
    _:future,
    :root .supportTextMessage {
        position: static;
        margin-top: 20px;
    }
    _::-webkit-full-page-media,
    _:future,
    :root .useGuide {
        margin-top: 35px;
    }
}
/*== ↑Safari用↑ ==*/

/*== ↓Edge用↓ ==*/
@supports (-ms-ime-align: auto) {
    @media screen and (max-width: 959px) and (min-width: 768px) {
        .category {
            width: calc((100% - (41px * 3)) / 3);
        }
    }
    @media screen and (max-width: 959px) {
        .relatedLinkItem {
            width: calc((100% - (21px * 4)) / 2);
        }
    }
    @media screen and (max-width: 767px) {
        .relatedLinkItem {
            width: calc((100% - (11px * 2)) / 2);
        }
        .recommendImage {
            justify-content: center;
        }
    }
}
/*== ↑Edge用↑ ==*/

.multiBtn a {
    position: relative;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    border: none;
    box-shadow: none;
    height: 100%;
}
.multiBtn a::after {
    content: '';
    position: absolute;
    bottom: 0.4em;
    right: 0.4em;
    display: block;
    width: 0.7em;
    height: 0.7em;
    border-right: 1px solid #888888;
    border-bottom: 1px solid #888888;
    border-radius: 2px;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.multiBtn a.blank::after {
    content: "";
    background:url(https://d2tfhz5takygeh.cloudfront.net/contents/img/common/icon_blank.png) 100% 100% / cover;
    transform: none;
    border: none;
    right: 0.5em;
    bottom:0.5em;
    width: 1.2em;
    height: 1.2em;
}

/* 目的からさがすエリア */
#searchByPurpose {
    border-top: 1px solid #d8d8d8;
}
#searchByPurpose .multiBtn {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}
#searchByPurpose .multiBtn .flexArea {
    padding: 20px 15px;
    flex-direction: column-reverse;
    justify-content: space-between;
}
#searchByPurpose .flexArea p {
    display: flex;
    min-height: 52px;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
}
#searchByPurpose .flexArea p span {
    font-size: inherit;
}
#searchByPurpose .multiBtn li {
    box-sizing: border-box;
    border: 1px solid #efefef;
    box-shadow: 2px 2px 3px #ccc;
}
#searchByPurpose .multiBtn .iconArea {
    margin-top: 0.5em;
}

/* サポートエリア */
#supportArea {
    padding-top: 64px;
    padding-bottom: 64px;
    margin-top: 64px;
}
#supportArea > h2 {
    padding-top: 0;
    margin-top: 0;
    margin-bottom: 24px;
}
#supportArea .multiBtn {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
#supportArea .multiBtn .flexArea {
    padding: 15px 30px 15px 15px;
    flex-direction: row;
    justify-content: flex-start;
}
#supportArea .multiBtn p {
    display: flex;
    flex-direction: column;
    padding-left: .8em;
    font-size: 16px;
    box-sizing: border-box;
    width: calc(100% - 70px);
}
#supportArea .multiBtn span {
    font-size: inherit;
    line-height: 1.4;
}
#supportArea .multiBtn span.f12 {
    margin-top: 5px;
    font-size: 12px;
}
#supportArea .multiBtn span.redBorder {
    color: #cc0033;
    padding: 2px 2px;
    text-align: center;
    border: 1px solid #cc0033;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    margin-bottom: 5px;
}
#supportArea .multiBtn li {
    box-sizing: border-box;
    border: 1px solid #efefef;
    box-shadow: 2px 2px 3px #ccc;
    background-color: #fff;
}
#supportArea .multiBtn .iconArea {
    width: 70px;
}

@media screen and (max-width: 959px) {
    /* サポートエリア */
    #supportArea > h2 {
        margin-bottom: 40px;
    }
    #supportArea .multiBtn {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    #supportArea .multiBtn p {
        width: calc(100% - 60px);
    }
    #supportArea .multiBtn .flexArea {
        padding: 10px 25px 10px 10px;
    }
    #supportArea .multiBtn .iconArea {
        width: 60px;
    }

    #supportArea .multiBtn .pc {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    #itemLinkToListArea {
        padding-bottom: 0;
    }
    #searchByPurpose {
        margin-top: 40px;
    }
    #searchByPurpose .multiBtn {
        grid-template-columns: auto;
        margin-bottom: 0;
        gap: 10px;
    }
    #searchByPurpose .multiBtn li {
        width: 100%;
    }
    #searchByPurpose .multiBtn .flexArea {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 5px 30px 5px 20px;
    }
    #searchByPurpose .flexArea p {
        margin-left: 1em;
        min-height: 48px;
        text-align: left;
        font-size: 15px;
    }
    #searchByPurpose .flexArea p span {
        font-size: inherit;
        line-height: 1.4;
    }
    #searchByPurpose .multiBtn a::after {
        bottom: calc(50% - 0.7em);
    }
    #searchByPurpose .multiBtn .iconArea {
        max-width: 35px;
        margin-top: 0;
    }

    /* サポートエリア */
    #supportArea {
        padding-top: 40px;
        padding-bottom: 40px;
        margin-top: 40px;
    }
    #supportArea > h2 {
        margin-bottom: 20px;
    }
    #supportArea .multiBtn span {
        font-size: 14px;
    }
}

.bgGray {
    background-color: #efefef;
}
.guideBtnArea {
    display:flex;
    flex-wrap: wrap;
    gap: 20px;
}
.guideBtn {
    width: 100%;
    display: flex;
}
.guideBtn a {
    background-color: #fff;
    border: 1px solid #efefef;
    border-radius: 2px;
    box-shadow: 2px 2px 3px #ccc;
    font-size: 15px;
    letter-spacing: 0;
    padding: 15px;
    position: relative;
    min-height: 85px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    width: 100%;
}
.guideBtn a:hover {
    opacity: 0.7;
}
.guideBtn a::after {
    position: absolute;
    bottom: 0.4em;
    right: 0.4em;
    display: block;
    width: 0.7em;
    height: 0.7em;
    border-right: 1px solid #888888;
    border-bottom: 1px solid #888888;
    border-radius: 2px;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
        -ms-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
    content: '';
}
.guideBtn.downArrow a::after {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
        -ms-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
}
.guideBtn .inner {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    justify-content: center;
}

.guideBtn .txt02 {
    font-size: 30px;
    padding-left: 10px;
    line-height: 1.2;
}
.guideBtn .txt {
    font-size: 15px;
    white-space: nowrap;
}
.guideBtn .wrapImg {
    padding-left: 1em;
}
.guideBtn.ptn03 .tab {
    display: none;
}

@media screen and (max-width: 1143px) {
    .guideBtn.ptn01 .inner,
    .guideBtn.ptn03 .inner {
        padding: 0 3%;
    }
    .guideBtn.ptn02 .inner {
        flex-direction: column;
        max-width: 350px;
    }
    .guideBtn .txt02 {
        padding: 0;
        text-align: center;
    }
}

@media screen and (max-width: 960px) {
    .guideBtn.ptn03 .pc {
        display: none;
    }
    .guideBtn.ptn03 .tab {
        display: block;
        padding-left: 0;
    }
}

@media screen and (max-width: 767px) {
    .guideBtn.ptn03 .tab {
        display: none;
    }
    .guideBtnArea {
        gap: 10px;
    }
    .guideBtn .inner {
        max-width: 500px;
    }
    .guideBtn .txt01 {
        font-size: 14px;
    }
    .guideBtn a {
        padding: 15px 10px;
        min-height: 84px;
    }
    .guideBtn a::after {
        bottom: 0.3em;
        right: 0.3em;
        width: 0.5em;
        height: 0.5em;
    }
    .guideBtn.ptn02 a {
        padding: 10px 35px 10px 15px;
    }
    .guideBtn.ptn02 a::after {
        bottom: calc(50% - 0.7em);
        right: 0.7em;
        width: 0.7em;
        height: 0.7em;
    }
    .guideBtn .inner {
        flex-direction: column;
    }
    .guideBtn .wrapImg {
        margin-top: 5px;
        padding-left: 0;
    }
    .guideBtn.ptn01 .wrapImg {
        max-width: 90%;
        min-width: 250px;
    }
    .guideBtn.ptn03 .wrapImg {
        margin-top: 0;
        text-align: center;
    }
    .guideBtn .txt02 {
        font-size: 17px;
        font-weight: bold;
        text-align: center;
    }
    .guideBtn .txt {
        font-size: 14px;
        padding-right: 0
    }
}
/*-- 20210611 ＋ docomo update start--*/
.addToArea {
    margin-top: 64px;
    border-top: 1px solid #d8d8d8;
}
@media screen and (max-width:767px) {
    .addToArea {
        margin-top: 40px;
    }
}
/*-- 20210611 ＋ docomo update end--*/

/*-- 20220323 ＋ update start--*/
.categoryListSP .categoryName {
    margin-bottom: 10px;
}
.certifiedArea {
    margin-bottom: 6px;
}
.certifiedArea .text {
    display: block;
    font-size: 15px;
    line-height: 1.8em;
}
.categoryName .sp3line { display: none; }
@media screen and (max-width: 384px) {
    .categoryName .sp3line { display: block; }
}
/*-- 20220323 ＋ update end--*/

