@charset "UTF-8";

/*///////////////////////////////////////////////////////////////////////////

    共通設定

///////////////////////////////////////////////////////////////////////////*/

body {
    background: #777;
    min-height: 100vh;
}

main {
    background: #fff;
    padding-top: 4.5rem;
}
main.LY-head-filter {
    padding-top: 7rem;
}

/*  clearfix
------------------------------------------------ */
.clearfix {
	display: block;
}
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
.clearfix:before {
	content: "";
	display: block;
	clear: both;
}

/*  header
------------------------------------------------ */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    border-bottom: 1px solid #2999c4;
    z-index: 10;
}
.content-header,
.header-btns,
.header-btns li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.content-header {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.8rem 0;
}
.content-header .logo {
    width: 14%;
    max-width: 80px;
    margin: 0 2rem;
}
.header-btns {
    width: 70%;
    max-width: 640px;
    margin: 0 2rem;
}
.header-btns li {
    position: relative;
    width: 32%;
    color: #2999c4;
    padding: 0.65rem 1.1rem;
    border: 1px solid #2999c4;
    border-radius: 6px;
    cursor: pointer;
    box-sizing: border-box;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.header-btns li.ST-selected {
    color: #777;
    border-color: #fff;
    cursor: default;
    box-shadow: none;
}
.header-btns li:before,
.header-btns li:after {
    content: "";
    position: absolute;
    width: 0.4rem;
    height: 1px;
    background: #2999c4;
    right: 0.8rem;
}
.header-btns li:before {
    top: calc( 50% - 0.2rem + 1px );
    transform: rotate(45deg);
}
.header-btns li:after {
    top: calc( 50% + 0.2rem - 1px );
    transform: rotate(-45deg);
}
.header-btns li.ST-selected:before,
.header-btns li.ST-selected:after {
    display: none;
}
.header-btns .icon {
    width: 1.8rem;
}
.header-btns .text {
    flex: 1;
    padding-left: 0.8rem;
    line-height: 1.2;
}



/*  footer
------------------------------------------------ */
footer {
    padding-bottom: 2rem;
}
.content-footer {
    position: relative;
}
.content-footer:before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc( 100% - 2px );
    top: -2px;
    left: 0;
    background: #fff;
}
.content-footer p {
    position: relative;
    width: 80%;
    max-width: 480px;
    margin: auto;
}


/*  content
------------------------------------------------ */
.content-common {
    width: 95%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 4.5rem 0;
}
.content-common.LY-middle {
    max-width: 700px;
}
.content-common.LY-foot-result {
    padding: 1rem 0 4.5rem;
}

.content-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.content-title.LY-info-center {
    justify-content: center;
    margin-bottom: 8%;
    padding: 0 5%;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.content-title h2 {
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    padding: 0 0.2em 0.1em;
    border-bottom: 3px solid #555;
}
.content-title h2 span {
    font-size: 1.8rem;
}

.content-central-fixed {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 5%;
    box-sizing: border-box;
}
.content-central-fixed .error-message {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
}


.content-figure {
    display: flex;
    align-items: center;
}
.content-figure > .img {
    width: 40%;
}
.content-figure.LY-feel-to-wear-regist > .img {
    width: 250px;
}
.content-figure > .img > .img-title {
    font-size: 1.1rem;
    line-height: 1;
    font-weight: 600;
    padding: 0.2em 0.6em;
    margin-bottom: 0.8em;
    border-left: 3px solid #555;
}
.content-figure > .figcaption {
    flex: 1;
    margin-left: 4em;
}

.content-table-info {
    display: flex;
    justify-content: center;
}
.content-table-info > section {
    width: 42%;
    margin: 0 auto;
}
.content-table-info > dl > dt,
.content-table-info > section > dl > dt {
    text-align: center;
    font-size: 1.2rem;
    padding: 0.8em;
    line-height: 1;
    color: #fff;
    background: #2999c4;
}
.content-table-info > dl > dd,
.content-table-info > section > dl > dd {
    font-size: 1rem;
}
.content-table-info > dl,
.content-table-info > section > dl {
    margin-bottom: 12%;
}
.content-table-info > dl:last-child,
.content-table-info > section > dl:last-child {
    margin: 0;
}

.content-note {
    font-size: 0.9rem;
}


/*  tab content
------------------------------------------------ */
.tab-title {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.tab-title:before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #777;
}
.tab-title li {
    position: relative;
    width: 16em;
    color: #fff;
    background: #2999c4;
    font-size: 0.9rem;
    border: 1px solid #2999c4;
    border-bottom: 0;
    text-align: center;
    padding: 0.6em;
    margin-right: 5px;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
}
.tab-title li:last-child {
    flex: 1;
    background: none;
    border: none;
    padding: 0;
}
.tab-title > li.ST-selected {
    border-color: #777;
    color: #777;
    background: #fff;
    cursor: default;
    padding-bottom: calc( 0.8em + 3px );
}
.tab-content > li {
    display: none;
}
.tab-content > li.ST-selected {
    display: block;
}


/*  form item
------------------------------------------------ */

.content-simple-form-items.LY-select-list > li {
    margin: 1.2em 0;
}
.content-simple-form-items.LY-select-list > li:first-child,
.content-simple-form-items.LY-select-list > li:last-child {
    margin: 0;
}
.content-simple-form-items > li > dl {
    display: flex;
    align-items: center;
}
.content-simple-form-items > li > dl > dt {
    padding: 0 0.5em 0 0;
}
.content-simple-form-items.LY-select-list > li > dl > dt {
    width: 6em;
}
.content-simple-form-items.LY-select-list.LY-all-in > li > dl > dt {
    width: 8em;
}
.content-simple-form-items.LY-main > li > dl > dt {
    font-size: 1.1em;
}
.content-simple-form-items.LY-select-list > li > dl > dd {
    flex: 1;
}
.content-simple-form-items.LY-select-list select {
    width: 100%;
}

.content-form-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.content-form-items.LY-main > li > dl > dt {
    font-size: 1.1em;
}
.content-form-items > li {
    width: 100%;
    margin-bottom: 1.5em;
}
.content-form-items > li:last-child {
    margin-bottom: 0;
}
.content-form-items > li.LY-half {
    width: 50%;
}
.content-form-items > li > dl > dt {
    line-height: 1;
    font-weight: 600;
    padding: 0.2em 0.6em;
    margin-bottom: 0.8em;
    border-left: 3px solid #555;
}
.content-form-items > li > dl > dd {
    margin: 0 1em;
}

.form-input-text input {
    width: 100%;
    max-width: 20em;
    padding: 0.4em 0.6em;
    font-size: 1.1rem;
    box-sizing: border-box;
}

.form-input-checkbox > ol {
    display: flex;
    flex-wrap: wrap;
}
.form-input-checkbox > ol > li {
    line-height: 0;
}
.form-input-checkbox input {
    display: inline;
    width: 0;
    height: 0;
    opacity: 0;
    border: 0;
}
.form-input-checkbox label {
    display: block;
    line-height: 1;
    padding: 0.3em 0.9em;
    color: #777;
    border: 1px solid #aaa;
    border-radius: 2em;
    margin: 0 0.4rem 0.4rem 0;
    cursor: pointer;
    transition: 0.4s all ease;
}
.form-input-checkbox input:checked + label {
    color: #fff;
    background: #777;
    border-color: #777;
}
.form-input-checkbox label.img-label {
    width: 7.4em;
    font-size: 0.9rem;
    padding: 0.5em 0;
    text-align: center;
    border-radius: 10px;
}
.form-input-checkbox label.img-label p {
    width: 40%;
    margin: 0 auto 0.5em;
}
.form-input-checkbox label.img-label p svg {
    fill: #555;
}
.form-input-checkbox input:checked + label.img-label p svg {
    fill: #fff;
}

.form-select select {
    min-width: 8em;
    padding: 0.4em 1.8em 0.4em 0.8em;
}
.LY-main select {
    font-size: 1.1em;
    padding: 0.6em 1.8em 0.6em 0.8em;
}
.form-select {
    position: relative;
}
.form-select::after {
    content: "";
    position: absolute;
    top: calc( 50% - 5px );
    right: 0.75em;
    width: 6px;
    height: 6px;
    border-top: 2px solid #555;
    border-right: 2px solid #555;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    pointer-events: none;
}

select.error-item {
    background: #ffe2e2;
    border-color: #d44a4a;
}


/*  ボタン
------------------------------------------------ */
.content-buttons {
    display: flex;
    justify-content: center;
    margin-top: 8%;
}
.content-buttons > li {
    display: flex;
    justify-content: center;
    margin: 0 1.5em;
}
.content-buttons > li:first-child {
    margin-left: 0%;
}
.content-buttons > li:last-child {
    margin-right: 0%;
}

.common-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 14em;
    font-size: 1.1rem;
    text-align: center;
    padding: 0.6em;
    color: #fff;
    cursor: pointer;
    background: #2999c4;
    border-radius: 6px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.common-btn.LY-line {
    color: #2999c4;
    background: none;
    border: 1px solid #2999c4;
}
.common-btn.ST-disable {
    background: #aaa;
    cursor: text;
}
.content-modal .common-btn {
    min-width: 12em;
    font-size: 1rem;
}
.common-btn > .text {
    padding: 0 1em;
}
.common-btn > .img {
    width: 6px;
    font-size: 0;
    padding-right: 10px;
}

.feedback-btn {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 5px;
    width: 3em;
    height: 1.6em;
    font-weight: 500;
    letter-spacing: 0.05em;
    background: #aaa;
    color: #fff;
    line-height: 1;
    border-radius: 5px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 1;
}
.feedback-btn::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 4px;
    border-left: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-top: 6px solid #aaa;
    border-right: 7px solid #aaa;
}
.feedback-btn.ST-fb-regist {
    background: #D0574F;
}
.feedback-btn.ST-fb-regist::before {
    border-top: 6px solid #D0574F;
    border-right: 7px solid #D0574F;
}

.feedback-btn.ST-fb-regist-running {
    cursor: text;
}
.feedback-btn .ball-pulse-sync > div {
    width: 5px;
    height: 5px;
    margin: 1.5px;
    background: #fff;
}
.feedback-btn .ball-pulse-sync>div:nth-child(1) {
    -webkit-animation: feedback-btn-ball-pulse-sync .6s -.14s infinite ease-in-out;
    animation: feedback-btn-ball-pulse-sync .6s -.14s infinite ease-in-out;
}
.feedback-btn .ball-pulse-sync>div:nth-child(2) {
    -webkit-animation: feedback-btn-ball-pulse-sync .6s -70ms infinite ease-in-out;
    animation: feedback-btn-ball-pulse-sync .6s -70ms infinite ease-in-out;
}
.feedback-btn .ball-pulse-sync>div:nth-child(3) {
    -webkit-animation: feedback-btn-ball-pulse-sync .6s 0s infinite ease-in-out;
    animation: feedback-btn-ball-pulse-sync .6s 0s infinite ease-in-out;
}
@keyframes feedback-btn-ball-pulse-sync {
    33% {
        -webkit-transform: translateY(3px);
        transform: translateY(3px);
    }
    66% {
        -webkit-transform: translateY(-3px);
        transform: translateY(-3px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
  }


.text-link-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}
.text-link-btn > .img {
    width: 1.1em;
    line-height: 1;
    padding-right: 0.4em;
    cursor: pointer;
}
.text-link-btn > .text {
    color: #2999c4;
    text-decoration: underline;
    cursor: pointer;
}

.text-link-inline-btn {
    text-decoration: underline;
    cursor: pointer;
}


/*  商品情報
------------------------------------------------ */
.product-info-items {
    display: flex;
    flex-wrap: wrap;
}
.product-info-items > li {
    width: 42%;
    margin: 4%;
}
.product-info-item {
    font-size: 1rem;
}
.product-info-item > .title {
    margin-bottom: 0.8em;
}
.product-info-item > .title .brand {
    font-size: 90%;
    line-height: 1;
}
.product-info-item > .title .product-name {
    font-size: 130%;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.product-info-item > .content {
    display: flex;
    justify-content: space-between;
}
.product-info-item > .content > .left {
    position: relative;
    width: 40%;
}
.product-info-item > .content > .right {
    width: 56%;
}

.product-info-item .product-img {
    width: 90%;
    margin: 0 auto;
}
.product-info-item .content-info-list {
    margin: 2em 0;
}
.product-info-item .left .content-buttons {
    margin-top: 1.5em;
}
.product-info-item .common-btn {
    min-width: auto;
    font-size: 90%;
}

.content-info-list > dl {
    display: flex;
    align-items: center;
    margin: 0.6em 0;
}
.content-info-list > dl.ST-hidden {
    display: none;
    opacity: 0;
}
.content-info-list > dl:first-child,
.content-info-list > dl:last-child {
    margin: 0;
}
.content-info-list > dl > dt {
    width: 7.5em;
    padding-right: 1em;
    font-size: 90%;
    font-weight: 600;
    text-align: right;
}
.content-info-list > dl > dd {
    font-size: 110%;
}

.product-info-item .common-btn {
    min-width: auto;
    font-size: 90%;
}


/*  サムネイルリスト swiper のカスタマイズ込み
------------------------------------------------ */
.product-info-item .product-thumbnail {
    position: relative;
    width: 100%;
    margin: 1em 0;
}
.product-thumbnail .swiper {
    position: static;
    width: calc( 100% - 2.4em );
    padding: 0 0.4em;
    box-sizing: border-box;
}
.product-thumbnail .swiper .thumbnail-button-prev,
.product-thumbnail .swiper .thumbnail-button-next {
    position: absolute;
    top: 0;
    width: 1.2em;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 60%;
    cursor: pointer;
    z-index: 2;
}
.product-thumbnail .swiper .thumbnail-button-prev {
    left: 0;
    background-position: left;
    background-image: url(../img/common/arrow_left_blue.svg);
}
.product-thumbnail .swiper .thumbnail-button-next {
    right: 0;
    background-position: right;
    background-image: url(../img/common/arrow_right_blue.svg);
}
.product-thumbnail .swiper .thumbnail-button-prev.swiper-button-disabled,
.product-thumbnail .swiper .thumbnail-button-next.swiper-button-disabled {
    display: none;
}

.product-thumbnail > ul {
    display: flex;
    align-items: center;
}
.product-thumbnail > ul > li {
    width: 19%;
    margin: 3%;
    flex: none;
}

.product-thumbnail .thumbnail-img {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 50%;
    cursor: pointer;
}
.product-thumbnail .thumbnail-img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: 0.6s ease opacity;
}
.product-thumbnail .thumbnail-img.ST-selected:after {
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
    background: #8e8e8e;
    border-radius: 100%;
    opacity: 0.2;
}
.product-thumbnail .img-size-ref {
    opacity: 0;
}
.product-thumbnail .img-thumbnail {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -70%;
    left: -30%;
}



/*  フィルタ設定
------------------------------------------------ */
.content-filter dl,
.content-filter dt {
    display: flex;
    align-items: center;
}
.content-filter {
    background: #2999c4;
}
.content-filter dl {
    padding: 0 2%;
}
.content-filter dt {
    flex: none;
    margin: 4px 0;
    padding: 0.4rem 1rem;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 6px;
    cursor: pointer;
}
.content-filter dt .icon {
    width: 1.5rem;
}
.content-filter dt .text {
    padding-left: 0.6rem;
}

.content-filter dd {
    flex: 1;
    overflow: auto;
    margin-left: 0.8rem;
}
.filter-list {
    display: flex;
}
.filter-list li,
.set-filter-name {
    padding: 0.2em 1em;
    margin: 0 0.3em;
    background: #fff;
    color: #2999c4;
    border-radius: 2em;
}

.content-filter .swiper {
    padding: 7px 0;
}
.content-filter .swiper-slide {
    width: auto;
}
.content-filter .swiper-horizontal>.swiper-scrollbar,
.content-filter .swiper-scrollbar.swiper-scrollbar-horizontal {
    bottom: 0px;
}

/*  インフォメーションコンテンツ
------------------------------------------------ */
.content-info {
    min-height: 50vh;
    padding: 0 5% 5%;
    box-sizing: border-box;
}
.content-info .title {
    text-align: center;
    padding-top: 4rem;
    font-size: 2rem;
    letter-spacing: 0.05em;
    line-height: 1.3;
}
.content-info.LY-error .title {
    color: #e42626;
}

.content-info .title.LY-small {
    font-size: 1.5rem;
}
.content-info .h-line {
    width: 1px;
    height: 3em;
    background: #555;
    margin: 2em auto;
    transform: scaleY(1);
    animation: line-anim 1s ease 0s 1;
}
.content-info.LY-error .h-line {
    background: #e42626;
}
@keyframes line-anim {
    0% { transform: scaleY(0);}
    100% { transform: scaleY(1);}
}
.content-info .message {
    display: flex;
    flex-flow: column;
    align-items: center;
    max-width: 580px;
    margin: 0 auto;
    font-size: 1.2rem;
}
.content-info .message > p {
    margin-bottom: 1em;
}


.form_error_message {
    margin-left: 0.5em;
    margin-top: 0.3em;
    color: #C84949;
}

#error-banner-content {
    position: fixed;
    z-index: 100;
    text-align: center;
    color: #fff;
    background: rgb(206 40 40 / 80%);
    width: 100%;
    left: 0;
    line-height: 1.2;
    padding: 1rem 0.5rem;
    box-sizing: border-box;
}
#error-banner-content.LY-top {
    top: 1rem;
}
#error-banner-content.LY-bottom {
    bottom: 0;
}
#error-banner-content p {
    font-size: 0.9rem;
    letter-spacing: 0;
    color: #fff;
}


/*///////////////////////////////////////////////////////////////////////////

    おすすめの靴

///////////////////////////////////////////////////////////////////////////*/
.recommend-setting-content > ul {
    margin: 0.5em 0;
}
.recommend-setting-content dl > dt {
    width: 10.5em;
}

.recommend-result {
    margin: 3rem 0;
}

.shoes-info-surefit {
    margin: 2.5em auto 0;
}
.shoes-info-surefit .title {
    font-size: 80%;
    font-weight: bold;
    color: #555;
    background: #eee;
    padding: 2px 0;
    padding-left: 1.5em;
}
.content-recommend-size {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 95%;
  height: 1.1em;
  margin: 0 auto;
  text-align: center;
  font-size: 190%;
  font-weight: 300;
  color: #2999c4;
  line-height: 1.2;
}
.no-arrow,
.change-arrow {
  position: relative;
  font-size: 0.8rem;
  width: 0.8em;
  padding: 0.5em;
}
.change-arrow {
  cursor: pointer;
}
.change-arrow:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: 1;
}
.select-size {
  position: relative;
  color: #333;
  text-align: center;
  word-break: break-all;
  line-height: 1.1;
  min-width: 65%;
  padding: 0 1.5rem;
  box-sizing: border-box;
}
.content-good-size {
  padding-top: 0.4em;
  font-size: 85%;
  font-weight: 500;
  color: #e42626;
  text-align: center;
  height: 1em;
  line-height: 1;
}
.content-chip-best-size {
  display: flex;
  justify-content: center;
  padding-top: 0.2em;
}
.content-chip-best-size p {
  width: 45%;
  max-width: 160px;
}
.content-slide-anime .slide-item {
  opacity: 1;
  transform: translateX(0);
  transition: 0.2s ease transform;
  animation: noSlideItemViewAnim 0.3s ease 0s 1 normal;
}
.content-slide-anime.ST-left-move .slide-item {
  transform: translateX(-10px);
  opacity: 0;
}
.content-slide-anime.ST-right-move .slide-item {
  transform: translateX(10px);
  opacity: 0;
}


/*///////////////////////////////////////////////////////////////////////////

    モーダル

///////////////////////////////////////////////////////////////////////////*/
.modal-wrap {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}
.modal-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
}
.content-modal {
    position: relative;
    max-width: 800px;
}
.modal-header {
    display: flex;
    align-items: center;
    color: #fff;
    background: #2999c4;
    padding: 0.5em 1.2em;
    border-radius: 10px 10px 0 0;
}
.modal-header .logo {
    width: 1.8rem;
}
.modal-header .title {
    flex: 1;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    line-height: 1;
    padding: 0 0.5em;
}
.modal-header .close {
    position: relative;
    width: 2em;
    height: 2em;
    cursor: pointer;
    transform: rotate(45deg);
}
.modal-header .close:before,
.modal-header .close:after {
    content: "";
    position: absolute;
    background: #fff;
}
.modal-header .close:before {
    width: 100%;
    height: 2px;
    top: calc( 50% - 1px );
    left: 0;
}
.modal-header .close:after {
    width: 2px;
    height: 100%;
    left: calc( 50% - 1px );
    top: 0;
}

.modal-content {
    background: #fff;
    padding: 0.5em 0.5em 1.5em;
    border-radius: 0 0 10px 10px;
}
.modal-content-hidden {
    display: none;
}
.modal-view-wrap {
    position: relative;
}
.modal-view-wrap:before,
.modal-view-wrap:after {
    content: "";
    position: absolute;
    width: calc( 100% - 1.5em );
    height: 1.4em;
    left: 0;
}
.modal-view-wrap:before {
    top: -1px;
    background: linear-gradient( to bottom, rgba( 255, 255, 255, 1 ) 30%, rgba( 255, 255, 255, 0 ) );
}
.modal-view-wrap:after {
    bottom: -1px;
    background: linear-gradient( to top, rgba( 255, 255, 255, 1 ) 30%, rgba( 255, 255, 255, 0 ) );
}
.modal-view-limit {
    padding: 1.5em;
    max-height: 70vh;
    overflow: auto;
}
.modal-content .content-buttons {
    margin-top: 0;
    padding-top: 1em;
}

.modal-short-content {
    max-width: 480px;
    font-size: 1.1rem;
    padding: 0 1em;
}
.modal-content-loading {
    position: relative;
    width: 360px;
    height: 240px;
    margin: 0 auto;
}


/*  履き心地登録内容編集
------------------------------------------------ */
.shape-category-thumbnail-list {
    position: relative;
    width: 460px;
    margin: 2em auto 1em;
}
.modal-content.ST-updating .shape-category-thumbnail-list:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(255,255,255,0.6);
}

.shape-category-thumbnail-list .swiper {
    padding: 0 25px;
}
.shape-category-thumbnail-list .swiper .img-thumbnail {
    cursor: pointer;
    position: relative;
}
.shape-category-thumbnail-list .thumbnail-img.ST-selected {
    position: relative;
}
.shape-category-thumbnail-list .thumbnail-img.ST-selected:before {
    content: '';
    position: absolute;
    top: calc( 50% - 25px );
    left: calc( 50% - 25px );
    width: 50px;
    height: 50px;
    background: #dddddd;
    border-radius: 100em;
}

.shape-category-thumbnail-list .swiper .thumbnail-button-prev,
.shape-category-thumbnail-list .swiper .thumbnail-button-next {
    position: absolute;
    top: 0;
    width: 1.2em;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 60%;
    cursor: pointer;
    z-index: 2;
}
.shape-category-thumbnail-list .swiper .thumbnail-button-prev {
    left: 0;
    background-position: left;
    background-image: url(../img/common/arrow_left_blue.svg);
}
.shape-category-thumbnail-list .swiper .thumbnail-button-next {
    right: 0;
    background-position: right;
    background-image: url(../img/common/arrow_right_blue.svg);
}
.shape-category-thumbnail-list .swiper .thumbnail-button-prev.swiper-button-disabled,
.shape-category-thumbnail-list .swiper .thumbnail-button-next.swiper-button-disabled {
    display: none;
}

/*  履き心地フィードバックボタン処理結果
------------------------------------------------ */
.fbid-view {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    margin: 1.5em auto 0;
}
.fbid-view > dt {
    position: relative;
    background: #777;
    color: #fff;
    font-size: 0.9em;
    padding: 0.6em 0.8em 0.6em 1.5em;
}
.fbid-view > dt:before {
    content: "";
    position: absolute;
    top: 0;
    right: calc( -1em - 1.5px );
    width: 2px;
    border-top: 1.1em solid transparent;
    border-left: 1em solid #777;
    border-bottom: 1.1em solid transparent;
}
.fbid-view > dd {
    text-align: center;
    width: 8em;
    font-size: 1.1em;
    font-weight: 600;
}



/*///////////////////////////////////////////////////////////////////////////

    足データ

///////////////////////////////////////////////////////////////////////////*/
.measure-data-list > li {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0.4em 0;
    border-bottom: 1px dashed #777;
}
.measure-data-list > li:last-child {
    border-bottom: 0;
}
.measure-data-list > li:first-child {
    font-size: 90%;
    line-height: 1;
    margin-bottom: 0.4em;
    border-bottom: 0;
    padding: 0;
}
.measure-data-list > li > .img {
    text-align: center;
    width: 5em;
}
.measure-data-list > li > .row-title {
    text-align: center;
    width: 7.5em;
}
.measure-data-list > li > .img img {
    max-width: 40px;
}
.measure-data-list > li > .title,
.measure-data-list > li > .value {
    flex: 1;
}
.measure-data-list > li > .title {
    font-weight: 600;
    text-align: center;
}
.measure-data-list > li:first-child > .title {
    background: #eee;
    padding: 0.3em 0;
    border-radius: 2em;
}
.measure-data-list > li > .value p {
    max-width: 4.5em;
    margin: 0 auto;
    text-align: right;
    font-size: 160%;
}
.measure-data-list > li > .value span {
    font-size: 80%;
    padding-left: 0.3em;
}
.measure-data-list > li > .img > .caption {
    font-size: 90%;
}



/*///////////////////////////////////////////////////////////////////////////

    足の評価

///////////////////////////////////////////////////////////////////////////*/
.content-foot-result {
    display: flex;
    justify-content: space-between;
    width: 92%;
    margin: 0 auto;
}
.foot-evaluation {
    flex: 1;
}
.foot-measuredata {
    width: 43%;
    max-width: 480px;
    margin-left: 3%;
}

.content-switch {
    padding-top: 2em;
}
.content-switch > div {
    display: none;
}
.content-switch > div.ST-selected {
    display: block;
}

.summary-content-wrap,
.details-content-wrap {
    display: flex;
    justify-content: center;
}
.summary-content-wrap > * {
    margin: 0 2.5em;
}

.measurement-summary-content {
    width: 35%;
}
.measurement-summary-content .size-reduce {
    font-size: 90%;
}
.measurement-summary-content .heel-arch-content .size-reduce {
    font-weight: 300;
}

.measurement-summary-content .foot-eval-img > * {
    display: none;
}
.measurement-summary-content .foot-eval-img.LY-footprint > *:first-child {
    display: block;
}
.measurement-summary-content .foot-eval-img.LY-heelarch > *:last-child {
    display: block;
}

.instep-height-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.instep-height {
    display: flex;
    align-items: center;
    font-size: 90%;
    padding: 0.7em 1.8em;
    border: 1px solid #ccc;
    border-radius: 20rem;
}
.instep-height .img {
    width: 5em;
    margin-right: 1em;
}
.instep-height > .img > img {
    transform: scaleX(1);
}
.instep-height .value {
    font-size: 120%;
    font-weight: 600;
}
.triangle-parts {
    position: relative;
    border-top: 12px solid #ccc;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}
.triangle-parts:before {
    content: "";
    position: absolute;
    top: -13.5px;
    left: -10px;
    border-top: 12px solid white;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    z-index: 1;
}

.foot-print-content {
    margin: 0.5em auto;
}
.heel-arch-content {
    margin: 2em auto;
}
.foot-print-content > li,
.heel-arch-content > li {
    max-width: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.heel-arch-content > li > * {
    width: 45%;
    margin: 0 2%;
}

.foot-print-img {
    position: relative;
    margin: 1.2em auto;
}
.foot-print-img > .img {
    transform: scaleX(-1);
}
.foot-length {
    position: absolute;
    top: 0;
    height: 100%;
}
.foot-length.LY-left {
    left: 5px;
}
.foot-length.LY-right {
    right: 5px;
}
.foot-length .content {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1px;
    height: 100%;
    background: #ccc;
}
.foot-length .value {
    font-size: 130%;
    font-weight: 600;
    background: #fff;
    padding: 0.5em 0;
}
.foot-length .value span {
    font-size: 80%;
    padding-left: 0.1em;
}
.foot-length .up-arrow:before,
.foot-length .up-arrow:after,
.foot-length .down-arrow:before,
.foot-length .down-arrow:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 0px;
    border-top: 1px solid #ccc;
}
.foot-length .up-arrow:before {
    top: 1px;
    right: -1px;
    transform: rotateZ(-45deg);
}
.foot-length .up-arrow:after {
    top: 1px;
    left: -1px;
    transform: rotateZ(45deg);
}
.foot-length .down-arrow:before {
    bottom: 2px;
    right: -1px;
    transform: rotateZ(45deg);
}
.foot-length .down-arrow:after {
    bottom: 2px;
    left: -1px;
    transform: rotateZ(-45deg);
}

.eval-desc {
    margin: 0 auto;
}
.eval-desc > * {
    text-align: center;
    font-size: 110%;
    font-weight: 600;
    line-height: 1.2;
    width: 7rem;
}
.eval-desc .center-title {
    font-size: 90%;
    font-weight: 400;
}

.content-heat-map {
    display: flex;
    justify-content: space-between;
    align-items: flex-start !important;
    line-height: 1;
    font-size: 90%;
    max-width: 320px !important;
    margin: 1em auto 1.4em;
}
.content-heat-map > p:first-child {
    color: #bc2e31;
}
.content-heat-map > p:last-child {
    color: #2a5ed0;
}
.content-heat-map > .bar {
    flex: 1;
    margin: 0 1em;
}
.content-heat-map > .bar > .gradation {
    background: linear-gradient( to right,#bc2e31,#ff9f37,#f6ea2d,#2ad036,#2abed0,#2a5ed0 );
    height: 0.3em;
    margin: 0.4em 0 0;
}
.content-heat-map > .bar > .range {
    position: relative;
    border: 1px solid #ccc;
    border-top: 0;
    padding-bottom: 0.55em;
    margin-top: 0.4em;
    border-radius: 0 0 0.4em 0.4em;
}
.content-heat-map > .bar > .range > .caption {
    position: absolute;
    top: 50%;
    left: calc( 50% - 5.5em );
    width: 11em;
    font-size: 90%;
    text-align: center;
    background: #fff;
}

.heel-arch-img {
    margin: 1.5em auto;
}

.ruler-content > li {
    display: flex;
    width: 90%;
    margin: 0 auto;
}
.ruler-content > li .title {
    width: 4em;
    text-align: center;
    color: #777;
    line-height: 1.2;
}
.ruler-content > li .center-content {
    flex: 1;
    display: flex;
    position: relative;
    justify-content: center;
}
.ruler-content > li .center-content p {
    width: 14.2%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ruler-content > li:first-child .center-content:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: calc(50% - 1px);
    left: 5%;
    width: 90%;
    height: 1px;
    background: #ccc;
}
.ruler-content > li:first-child .center-content p:before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 9px;
    background: #ccc;
}
.ruler-content > li:first-child .center-content p.ST-active:before {
    width: 1px;
    height: 13px;
    background: #555;
    z-index: 1;
}


.ruler-content > li:last-child .center-content p {
    font-size: 90%;
    color: #bbb;
    opacity: 0;
}
.ruler-content > li:last-child .center-content p.ST-active {
    font-size: 110%;
    color: #555;
    opacity: 1;
}
.ruler-desc {
    text-align: center;
    font-size: 110%;
    font-weight: 600;
    margin: 0.7em auto;
    line-height: 1.2;
}


.left-view-content-switch {
    display: flex;
    justify-content: center;
    margin: 2.5em auto 0;
}
.left-view-content-switch > * {
    width: 13em;
    text-align: center;
    line-height: 1.1;
    padding: 0.6em 0;
    font-size: 95%;
    color: #999;
    background: #eee;
    border: 1px solid #ddd;
}
.left-view-content-switch > *:first-child {
    border-radius: 1.5em 0 0 1.5em;
    border-right: 0;
}
.left-view-content-switch > *:last-child {
    border-radius:  0 1.5em 1.5em 0;
    border-left: 0;
}
.left-view-content-switch.LY-footprint > *:last-child,
.left-view-content-switch.LY-heelarch > *:first-child {
    color: #333;
    background-image: linear-gradient(0deg, #ddd, #fff 50%);
    cursor: pointer;
}
.left-view-content-switch.LY-footprint > *:last-child {
    border-left: 1px solid #ddd;
}
.left-view-content-switch.LY-heelarch > *:first-child {
    border-right: 1px solid #ddd;
}

.foot-eval-content {
    flex: 1;
    margin-right: 0;
}
.foot-eval-title h5 {
    font-size: 90%;
    font-weight: 300;
}
.foot-eval-title h2 {
    font-size: 200%;
    font-weight: 600;
    color: #2999c4;
}
.foot-eval-desc {
    position: relative;
    width: 90%;
    max-width: 600px;
    margin: 1.2em auto;
}
.trouble-example {
    display: flex;
    align-items: center;
}
.trouble-example > li {
    margin-left: 1em;
    width: calc((100% - 9em) / 4 - 1em);
}
.trouble-example > li:first-child {
    width: 8em;
    margin-left: 0;
    margin-right: 0.5em;
}
.trouble-example .speech-bubble {
    position: relative;
}
.trouble-example .speech-bubble .text {
    position: absolute;
    width: 8em;
    text-align: center;
    top: 1.5em;
    left: 1.2em;
    transform: rotateZ(-15deg);
    color: #ff86e5;
    font-size: 80%;
    font-weight: 600;
}
.trouble-example .speech-bubble .text.ST-middle {
    display: none;
}
.trouble-example .content {
    max-width: 12em;
    text-align: center;
}
.trouble-example .content .text {
    font-size: 80%;
    font-weight: 600;
    line-height: 1.1;
    min-height: 2em;
}
.trouble-example .content .img {
    max-width: 5em;
    margin: 0 auto;
}

.shoe-select-point {
    position: relative;
    padding: 1.5em;
    border: 1px dashed #aaa;
    margin-top: 1.25em;
    border-radius: 10px;
}
.shoe-select-point h4 {
    position: absolute;
    top: -0.6em;
    left: 1.7em;
    font-size: 110%;
    letter-spacing: 0.05em;
    padding: 0 0.8em;
    background: #fff;
}
.shoe-select-point ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 5px;
    row-gap: 5px;
}
.shoe-select-point li {
    list-style: circle;
    margin-left: 1em;
}

.middle-content {
    position: relative;
    padding: 2.4em 0 0 2em;
}
.middle-content .title .sub {
    position: relative;
    font-size: 90%;
    z-index: 2;
}
.middle-content .title .main {
    position: relative;
    font-size: 150%;
    font-weight: 600;
    z-index: 2;
}
.middle-content .title .img {
    position: absolute;
    width: 8em;
    top: 0;
    left: 0;
    z-index: 1;
}

.middle-content .content {
    position: relative;
    padding: 0em 1.5em;
    z-index: 2;
}

.recommend-insole {
    display: flex;
    align-items: center;
}
.recommend-insole .text {
    flex: 1;
    padding: 1em 0;
    order: 1;
}
.recommend-insole .img {
    width: 30%;
    max-width: 12em;
    min-width: 9.5em;
    order: 2;
}


.measurement-details-content {
    min-width: 22em;
    width: 35%;
    max-width: 420px;
    margin-right: 5%;
}
.foot-each-eval-content {
    min-width: 20em;
    width: 60%;
    max-width: 680px;
}

.foot-each-eval-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.2em 0;
}

.LY-2column .foot-each-eval-item {
    width: 94%;
    margin: 1em auto;
    justify-content: space-between;
}
.LY-2column .foot-each-eval-item > dl {
    width: 48%;
    box-sizing: border-box;
}
.LY-2column .foot-each-eval-item > .img {
    margin: 0;
    width: 40%;
    padding: 0 10%;
}

.foot-each-eval-list > li {
    border-bottom: 1px solid #ccc;
}
.foot-each-eval-list > li:first-child {
    padding-top: 0;
}
.foot-each-eval-list > li:last-child {
    border: none;
    padding-bottom: 0;
}
.foot-each-eval-list > li:first-child .foot-each-eval-item:first-child {
    margin-top: 0;
}
.foot-each-eval-item > dl {
    position: relative;
    line-height: 1.2;
    width: calc(33% - 1.2em);
    padding: 1.1em 0 0 1.2em;
}
.foot-each-eval-item > dl:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5em;
    height: 5em;
    border-radius: 5em;
    background: #eee;
    z-index: 1;
}
.foot-each-eval-list .img {
    width: 17%;
    max-width: 8em;
    margin: 0 8%;
}
.foot-each-eval-list .img:first-child {
    margin-left: 0;
}

.foot-each-eval-item > dl > dt {
    position: relative;
    z-index: 2;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.foot-each-eval-item > dl > dt em {
    font-size: 130%;
    font-weight: 600;
    font-style: normal;
}
.foot-each-eval-item > dl > dd {
    position: relative;
    z-index: 2;
    min-height: 2.5em;
    padding: 0.3em 0 0 0.9em;
}
.foot-each-eval-item  > dl > dt em.notice {
    color: #2999c4;
    font-weight: 600;
}
.foot-each-eval-item  > dl > dt em.standard {
    font-weight: 300;
}


.text-link-btn.value-desc > .text {
    margin: 0 0.5em;
    font-size: 110%;
    font-weight: bold;
    color: #555;
}



/*///////////////////////////////////////////////////////////////////////////

    商品情報一覧

///////////////////////////////////////////////////////////////////////////*/
.content-product-list {
    display: flex;
    flex-wrap: wrap;
}
.content-product-list > li {
    width: 16%;
    margin: 0% 2% 4%;
}
.product-list-item {
    position: relative;
}
.product-list-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}
.product-list-item .img {
    max-width: 180px;
    margin: 0 auto 0.5em;
}
.product-list-item .brand {
    line-height: 1.5;
    font-size: 85%;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.product-list-item .name {
    line-height: 1.1;
}

/*///////////////////////////////////////////////////////////////////////////

    サイズレコメンド

///////////////////////////////////////////////////////////////////////////*/
.content-sizerecommend {
    max-width: 850px;
    margin: 0 auto;
    padding: 5% 8% 8%;
    box-sizing: border-box;
}
.content-sizerecommend .product-info-item {
    font-size: 1.2rem;
}
.recommend-not-found {
    text-align: center;
    padding: 6% 0 0;
}
.recommend-not-found .text-link-btn > .text {
    color: #555;
    font-size: 1rem;
}


/*///////////////////////////////////////////////////////////////////////////

    その他

///////////////////////////////////////////////////////////////////////////*/

/*  画面下固定ボタン
------------------------------------------------ */
.bottom-fix-btn {
    position: fixed;
    bottom: 1em;
    right: 1em;
    z-index: 10;
}
.bottom-fix-btn.LY-left {
    right: auto;
    left: 1em;
}
.round-btn {
    width: 7rem;
    height: 7rem;
    text-align: center;
    border-radius: 8rem;
    background: #fff;
    border: 2px solid #2999c4;
    cursor: pointer;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.round-btn > .img {
    width: 55%;
    margin: 0.3em auto 0;
}
.round-btn > .text {
    line-height: 1.2;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2999c4;
}
/*  QRコード
------------------------------------------------ */
.qr_img {
    max-width: 300px;
    margin: 1em auto;
}


/*  画像ローディング
------------------------------------------------ */
.img-square {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}
.img-square p {
    position: absolute;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.img-square::before,
.img-square::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    opacity: 0;
    z-index: 1;
    transition: 0.4s ease opacity;
}
.img-square::after {
    background-image: url(../img/common/spinner.gif);
    background-repeat: no-repeat;
    background-size: 40%;
    background-position: 50% 50%;
}
.img-square.ST-loading::before {
    opacity: 0.5;
    z-index: 2;
}
.img-square.ST-loading::after {
    opacity: 1;
}