@charset "UTF-8";
/*===================================================
     Font
===================================================*/
/*  -------------------------------------
	Color
  -------------------------------------*/
/*  -------------------------------------
	object-fit
  -------------------------------------*/
.object-fit-img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover; object-position: top;";
}

/* -----------------------------------------------------------------
    media query
----------------------------------------------------------------- */
/*  --------------------------------*/
@media screen and (min-width: 668px) {
  .sp {
    display: none;
  }
}
/*  -------------------------------------

  -------------------------------------*/
#sandal:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  /* 背景カラー */
  z-index: 9999;
  /* 一番手前に */
  pointer-events: none;
  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0;
  /* 初期値 : 透過状態 */
  -webkit-transition: opacity 0.8s ease;
  /* アニメーション時間は 0.8秒 */
  transition: opacity 0.8s ease;
}
#sandal.fadeout:after {
  opacity: 1;
}

#top-main {
  position: relative;
  margin: 0 auto;
  width: 964px;
  font-size: 0;
}
@media only screen and (max-width:964px) {
  #top-main {
    width: 100%;
  }
}

#sandal-contents {
  background: #fffef2;
  font-family: "Noto Sans JP", sans-serif;
  color: #555344;
  font-weight: 300;
  width: 964px;
  margin: 0 auto 90px;
  position: relative;
  padding: 0 30px 90px;
}
#sandal-contents a {/*追記*/
	color: #555344;
	text-decoration: none;
}
	
#sandal-contents h2 {/*追記*/
	background-color: transparent;
}

#sandal-contents .maincolor{
    padding:  5px;             /* 余白指定 */
	width: 100%; 
	justify-content: center;
	margin: 20px;
}

#sandal-contents .maincolor p {
	font-size: 24px;
	color: #262626;
	text-align: center;
	line-height: 1.3;
}

#sandal-contents .subcolors {
    padding:  5px;             /* 余白指定 */
    display: flex;              /* フレックスボックスにする */
    flex-wrap: wrap;
	width: 100%; 
	justify-content: center;
	margin: 8px;
}

#sandal-contents .subcolors .color {
    padding: 2px;
    margin:  0px;              /* 外側の余白 */
    border-radius:  5px;        /* 角丸指定 */
    width: 25%;                 /* 幅指定 */
}

#sandal-contents .subcolors .color p {
	font-size: 20px;
	color: #262626;
	text-align: center;
	line-height: 1.3;
}


@media only screen and (max-width:964px) {
  #sandal-contents {
    width: 100%;
  }
}
@media only screen and (max-width:768px) {
  #sandal-contents {
    padding: 0 15px 60px;
    margin-bottom: 60px;
  }
}
@media only screen and (max-width:480px) {
  #sandal-contents {
    padding-bottom: 45px;
    margin-bottom: 45px;
  }
}
#sandal-contents .sandal-box {
  position: relative;
  margin: 90px 0;
}
@media only screen and (max-width:768px) {
  #sandal-contents .sandal-box {
    margin: 60px 0;
  }
}
@media only screen and (max-width:480px) {
  #sandal-contents .sandal-box {
    margin: 45px 0;
  }
}
#sandal-contents .sandal-box:first-of-type {
  margin-top: 0;
  padding-top: 90px;
}
@media only screen and (max-width:768px) {
  #sandal-contents .sandal-box:first-of-type {
    padding-top: 60px;
  }
}
@media only screen and (max-width:480px) {
  #sandal-contents .sandal-box:first-of-type {
    padding-top: 45px;
  }
}
#sandal-contents .sandal-box .ttl {
  text-align: center;
}
#sandal-contents .sandal-box h2 {
  font-size: 36px;
  text-align: center;
  color: #555344;
  margin: 0 0 45px;
}
@media only screen and (max-width:768px) {
  #sandal-contents .sandal-box h2 {
    font-size: 24px;
    margin: 0 0 30px;
  }
}
@media only screen and (max-width:480px) {
  #sandal-contents .sandal-box h2 {
    font-size: 16px;
    margin: 0 0 20px;
  }
}
#sandal-contents .sandal-box h2 span {
  font-family: "Jost", sans-serif;
  font-size: 200%;
  line-height: 0.8em;
}
#sandal-contents .sandal-box .point-title {
  text-align: center;
}
#sandal-contents .sandal-box .point-title .point-num {
  font-size: 36px;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
}
@media only screen and (max-width:768px) {
  #sandal-contents .sandal-box .point-title .point-num {
    font-size: 24px;
  }
}
#sandal-contents .sandal-box .point-title .point-num span {
  font-size: 200%;
  line-height: 0.8em;
}
#sandal-contents .sandal-box .point-title .point-desc {
  font-size: 21px;
}
@media only screen and (max-width:768px) {
  #sandal-contents .sandal-box .point-title .point-desc {
    font-size: 16px;
  }
}
#sandal-contents .sandal-box .point-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#sandal-contents .sandal-box .point-contents.last {
	display: inline;
}
@media only screen and (max-width:768px) {
  #sandal-contents .sandal-box .point-contents {
    display: block;
  }
}
#sandal-contents .sandal-box .point-contents.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
  margin-top: 60px;
}
#sandal-contents .sandal-box .point-contents img, #sandal-contents .sandal-box .point-contents p {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  max-width: 48%;
}
@media only screen and (max-width:768px) {
  #sandal-contents .sandal-box .point-contents img, #sandal-contents .sandal-box .point-contents p {
    max-width: 100%;
    width: 100%;
  }
}
@media only screen and (max-width:768px) {
  #sandal-contents .sandal-box .point-contents img {
    margin: 0 0 20px;
  }
}
#sandal-contents .sandal-box .point-contents p {
  font-size: 20px;
  line-height: 1.8em;
}
@media only screen and (max-width:768px) {
  #sandal-contents .sandal-box .point-contents p {
    font-size: 15px;
  }
}
@media only screen and (max-width:480px) {
  #sandal-contents .sandal-box .point-contents p {
    font-size: 13px;
  }
}
@media screen and ( max-width:520px ){/* SP */
	
#sandal-contents .maincolor{
    padding:  2px;             /* 余白指定 */
    display: flex;              /* フレックスボックスにする */
    flex-wrap: wrap;
	width: 100%; 
}

#sandal-contents .maincolor p {
	font-size: 12px;
	color: #262626;
	text-align: center;
	line-height: 1.1;
}

#sandal-contents .subcolors {
    padding:  2px;             /* 余白指定 */
    display: flex;              /* フレックスボックスにする */
    flex-wrap: wrap;
	width: 100%; 
}

#sandal-contents .subcolors .color {
    padding: 2px;
    margin:  0px;              /* 外側の余白 */
    border-radius:  5px;        /* 角丸指定 */
    width: 25%;                 /* 幅指定 */
	align: center;
}

#sandal-contents .subcolors .color p {
	font-size: 16px;
	color: #262626;
	text-align: center;
	line-height: 1.1;
}

#g1184977 #colors {
    padding:  2px;             /* 余白指定 */
    display: flex;              /* フレックスボックスにする */
    flex-wrap: wrap;
	width: 100%; 
}
	
}

#sandal-contents #sandal-menu .menu-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#sandal-contents #sandal-menu .menu-wrap .menu-box {
  -ms-flex-preferred-size: 31.3%;
      flex-basis: 31.3%;
  max-width: 31.3%;
  border: 1px solid #555344;
  border-radius: 20px;
  padding: 20px;
  background: #fff;
  height: 190px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 1% 2%;
  text-align: center;
}


#sandal-contents #sandal-menu .menu-wrap .menu-box {/*追記*/
	border: 1px solid #555344 !important; 
}

@media only screen and (max-width:964px) {
  #sandal-contents #sandal-menu .menu-wrap .menu-box {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    max-width: 48%;
  }
}
@media only screen and (max-width:768px) {
  #sandal-contents #sandal-menu .menu-wrap .menu-box {
    height: 160px;
    padding: 20px 10px;
  }
}
@media only screen and (max-width:480px) {
  #sandal-contents #sandal-menu .menu-wrap .menu-box {
    height: 140px;
  }
}
#sandal-contents #sandal-menu .menu-wrap .menu-box:nth-of-type(4), #sandal-contents #sandal-menu .menu-wrap .menu-box:nth-of-type(5) {
  margin-bottom: 0;
}
@media only screen and (max-width:964px) {
  #sandal-contents #sandal-menu .menu-wrap .menu-box:nth-of-type(4):nth-of-type(4), #sandal-contents #sandal-menu .menu-wrap .menu-box:nth-of-type(5):nth-of-type(4) {
    margin-bottom: 2%;
  }
}
#sandal-contents #sandal-menu .menu-wrap .menu-box:hover {
  text-decoration: none;
  background: #fffbd0;
}
#sandal-contents #sandal-menu .menu-wrap .menu-box .menu-num {
  font-size: 18px;
  margin: 0 0 8px;
}
@media only screen and (max-width:768px) {
  #sandal-contents #sandal-menu .menu-wrap .menu-box .menu-num {
    font-size: 14px;
  }
}
@media only screen and (max-width:480px) {
  #sandal-contents #sandal-menu .menu-wrap .menu-box .menu-num {
    font-size: 12px;
    margin: 0 0 4px;
  }
}
#sandal-contents #sandal-menu .menu-wrap .menu-box .menu-num span {
  font-family: "Jost", sans-serif;
  font-size: 200%;
  margin-left: 5px;
  line-height: 0.8em;
}
#sandal-contents #sandal-menu .menu-wrap .menu-box .menu-title {
  font-size: 24px;
  line-height: 1.4em;
  margin: 0 0 8px;
}
@media only screen and (max-width:768px) {
  #sandal-contents #sandal-menu .menu-wrap .menu-box .menu-title {
    font-size: 18px;
  }
}
@media only screen and (max-width:480px) {
  #sandal-contents #sandal-menu .menu-wrap .menu-box .menu-title {
    /*font-size: 14px;*/
	font-size: 11px;/*修正*/
    margin: 0 0 4px;
  }
}
#sandal-contents #sandal-menu .menu-wrap .menu-box .menu-desc {
  font-size: 17px;
}
@media only screen and (max-width:768px) {
  #sandal-contents #sandal-menu .menu-wrap .menu-box .menu-desc {
    font-size: 14px;
  }
}
@media only screen and (max-width:480px) {
  #sandal-contents #sandal-menu .menu-wrap .menu-box .menu-desc {
    font-size: 11px;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}
#sandal-contents #point4 .point-contents, #sandal-contents #point5 .point-contents {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#sandal-contents #point5 {
  margin-bottom: 0;
}
#sandal-contents #point5 .point-contents img {
  max-width: 100%;
}
#sandal-contents #lead {
  background: url(../../../img/usr/goods/g8088-282-001/lead_bg.jpg) no-repeat;
  background-size: cover;
  height: auto;
  aspect-ratio: 964/277;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width:768px) {
  #sandal-contents #lead {
    width: calc(100% - 30px);
    margin: 30px auto;
  }
}
#sandal-contents #lead p {
  color: #555344;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  text-align: center;
}
@media only screen and (max-width:964px) {
  #sandal-contents #lead p {
    font-size: 21px;
  }
}
@media only screen and (max-width:768px) {
  #sandal-contents #lead p {
    font-size: 18px;
  }
}
@media only screen and (max-width:687px) {
  #sandal-contents #lead p {
    font-size: 14px;
  }
}
@media only screen and (max-width:480px) {
  #sandal-contents #lead p {
    font-size: 11px;
  }
}
#sandal-contents .worry-contents {
  position: relative;
  z-index: 1;
  margin: 0 auto 90px;
}
@media only screen and (max-width:480px) {
  #sandal-contents .worry-contents {
    margin-bottom: 60px;
  }
}
#sandal-contents .worry-contents:after {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
  width: 134px;
  height: 134px;
  z-index: 2;
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}
@media only screen and (max-width:768px) {
  #sandal-contents .worry-contents:after {
    width: 90px;
    height: 90px;
  }
}
@media only screen and (max-width:480px) {
  #sandal-contents .worry-contents:after {
    width: 60px;
    height: 60px;
  }
}
#sandal-contents .worry-contents .worry-q {
  width: 70%;
  margin: 0 auto 60px;
}
@media only screen and (max-width:768px) {
  #sandal-contents .worry-contents .worry-q {
    width: calc(100% - 30px);
  }
}
@media only screen and (max-width:480px) {
  #sandal-contents .worry-contents .worry-q {
    margin-bottom: 30px;
  }
}
#sandal-contents .worry-contents .worry-q img {
  width: 100%;
  margin: 0 0 30px;
}
@media only screen and (max-width:480px) {
  #sandal-contents .worry-contents .worry-q img {
    margin-bottom: 15px;
  }
}
#sandal-contents .worry-contents .worry-q .worry-q-desc {
  background: #f3f3f3;
  padding: 45px;
  border-radius: 30px;
}
@media only screen and (max-width:768px) {
  #sandal-contents .worry-contents .worry-q .worry-q-desc {
    padding: 30px;
  }
}
#sandal-contents .worry-contents .worry-q .worry-q-desc p {
  font-size: 20px;
  line-height: 1.8em;
  letter-spacing: 0.05em;
}
@media only screen and (max-width:964px) {
  #sandal-contents .worry-contents .worry-q .worry-q-desc p {
    font-size: 18px;
  }
}
@media only screen and (max-width:768px) {
  #sandal-contents .worry-contents .worry-q .worry-q-desc p {
    font-size: 16px;
  }
}
@media only screen and (max-width:480px) {
  #sandal-contents .worry-contents .worry-q .worry-q-desc p {
    font-size: 12px;
  }
}
#sandal-contents .worry-contents .worry-q .worry-q-desc p.name {
  text-align: right;
  margin-top: 0.5em;
}
#sandal-contents .worry-contents .worry-q .worry-q-desc p span {
  color: #ff0000;
}
#sandal-contents .worry-contents .worry-a {
  background-color: #f5eef6;
  background-image: url(../../../img/usr/goods/g8088-282-001/masumi_answer.png);
  background-repeat: no-repeat;
  background-position: right 30px top 45px;
  background-size: 40px auto;
  border-radius: 30px;
  padding: 30px 30px 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width:768px) {
  #sandal-contents .worry-contents .worry-a {
    background-size: 30px auto;
  }
}
@media only screen and (max-width:480px) {
  #sandal-contents .worry-contents .worry-a {
    display: block;
  }
}
#sandal-contents .worry-contents .worry-a .worry-a-desc {
  -ms-flex-preferred-size: 55%;
      flex-basis: 55%;
  max-width: 55%;
  padding: 30px;
  font-size: 20px;
  line-height: 1.8em;
  background: #fff;
  border-radius: 30px;
  position: relative;
}
@media only screen and (max-width:964px) {
  #sandal-contents .worry-contents .worry-a .worry-a-desc {
    font-size: 18px;
  }
}
@media only screen and (max-width:768px) {
  #sandal-contents .worry-contents .worry-a .worry-a-desc {
    font-size: 16px;
    padding: 20px;
  }
}
@media only screen and (max-width:480px) {
  #sandal-contents .worry-contents .worry-a .worry-a-desc {
    max-width: 80%;
    font-size: 12px;
  }
}
#sandal-contents .worry-contents .worry-a .worry-a-desc:before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: -15px;
  top: 50%;
  margin-top: -10px;
  border-right: 20px solid #fff;
  border-top: 20px solid #fff;
  border-left: 20px solid transparent;
  border-bottom: 20px solid transparent;
}
@media only screen and (max-width:480px) {
  #sandal-contents .worry-contents .worry-a .worry-a-desc:before {
    top: inherit;
    bottom: -15px;
    right: inherit;
    left: 30px;
    margin-top: 0;
    border-right: 20px solid transparent;
    border-top: 20px solid transparent;
    border-left: 20px solid #fff;
    border-bottom: 20px solid #fff;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
#sandal-contents .worry-contents .worry-a .worry-a-desc:after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: -20px;
  top: 50%;
  margin-top: -25px;
  border-right: 20px solid #f5eef6;
  border-top: 20px solid #f5eef6;
  border-left: 20px solid transparent;
  border-bottom: 20px solid transparent;
}
@media only screen and (max-width:480px) {
  #sandal-contents .worry-contents .worry-a .worry-a-desc:after {
    top: inherit;
    bottom: -20px;
    right: inherit;
    left: 45px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    margin-top: 0;
    border-right: 20px solid transparent;
    border-top: 20px solid transparent;
    border-left: 20px solid #f5eef6;
    border-bottom: 20px solid #f5eef6;
  }
}
#sandal-contents .worry-contents .worry-a img {
  -ms-flex-preferred-size: 35%;
      flex-basis: 35%;
  max-width: 35%;
  margin-right: 5%;
}
@media only screen and (max-width:480px) {
  #sandal-contents .worry-contents .worry-a img {
    max-width: 50%;
    margin: 30px auto 0;
    display: block;
  }
}
#sandal-contents .worry-contents .worry-a.takeuchi {
  background-image: url(../../../img/usr/goods/g8088-282-001/takeuchi_answer.png);
  margin-top: 60px;
}
#sandal-contents .worry-contents .worry-a.tenpi {
  background-image: url(../../../img/usr/goods/g8088-282-001/tenpi_answer.png);
  margin-top: 60px;
}
#sandal-contents #worry1:after {
  background-image: url(../../../img/usr/goods/g8088-282-001/worry1-1.png);
}
@media only screen and (max-width:964px) {
  #sandal-contents #worry1 .worry-a {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  #sandal-contents #worry1 .worry-a-desc {
    margin-bottom: 30px;
  }
}
#sandal-contents #worry2:after {
  background-image: url(../../../img/usr/goods/g8088-282-001/worry2-1.png);
}
@media only screen and (max-width:964px) {
  #sandal-contents #worry2 .worry-a {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  #sandal-contents #worry2 .worry-a-desc {
    margin-bottom: 30px;
  }
}
#sandal-contents #worry3:after {
  background-image: url(../../../img/usr/goods/g8088-282-001/worry3-1.png);
}
#sandal-contents #worry3 .worry-a-desc {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
}
@media only screen and (max-width:480px) {
  #sandal-contents #worry3 .worry-a-desc {
    max-width: 80%;
  }
}
#sandal-contents #worry3 .worry-a img {
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
  max-width: 45%;
  margin-right: 5%;
}
@media only screen and (max-width:480px) {
  #sandal-contents #worry3 .worry-a img {
    max-width: 70%;
    margin: 30px auto 0;
  }
}
#sandal-contents #worry3 .worry-a {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
#sandal-contents #worry3 .worry-a-desc {
  margin-bottom: 30px;
}
#sandal-contents #worry4:after {
  background-image: url(../../../img/usr/goods/g8088-282-001/worry4-1.png);
}
#sandal-contents #worry4 .worry-a {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
#sandal-contents #worry4 .worry-a-desc {
  margin-bottom: 30px;
}
#sandal-contents #worry5:after {
  background-image: url(../../../img/usr/goods/g8088-282-001/worry5-1.png);
}
#sandal-contents #worry5 .worry-a {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
#sandal-contents #worry5 .worry-a-desc {
  margin-bottom: 30px;
}
#sandal-contents #worry5 .worry-a-desc:before {
  top: 80%;
}
#sandal-contents #worry5 .worry-a-desc:after {
  top: 80%;
}
@media only screen and (max-width:480px) {
  #sandal-contents #worry5 .worry-a-desc:before {
    top: inherit;
  }
  #sandal-contents #worry5 .worry-a-desc:after {
    top: inherit;
  }
}
@media only screen and (max-width:480px) {
  #sandal-contents #worry5 .worry-a img {
    max-width: 70%;
    margin: 30px auto 0;
  }
}
#sandal-contents #worry6:after {
  background-image: url(../../../img/usr/goods/g8088-282-001/worry6-1.png);
}
@media only screen and (max-width:964px) {
  #sandal-contents #worry6 .worry-a {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  #sandal-contents #worry6 .worry-a-desc {
    margin-bottom: 30px;
  }
}
#sandal-contents #worry7:after {
  background-image: url(../../../img/usr/goods/g8088-282-001/worry7-1.png);
}
@media only screen and (max-width:964px) {
  #sandal-contents #worry7 .worry-a {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  #sandal-contents #worry7 .worry-a-desc {
    margin-bottom: 30px;
  }
}
#sandal-contents #worry8:after {
  background-image: url(../../../img/usr/goods/g8088-282-001/worry8-1.png);
}
@media only screen and (max-width:964px) {
  #sandal-contents #worry8 .worry-a {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  #sandal-contents #worry8 .worry-a-desc {
    margin-bottom: 30px;
  }
}
#sandal-contents #about {
  background: #f8f2fd;
  border-radius: 20px;
  text-align: center;
  padding: 45px;
}
@media only screen and (max-width:964px) {
  #sandal-contents #about {
    width: calc(100% - 60px);
    margin: 60px auto;
    padding: 30px;
  }
}
@media only screen and (max-width:768px) {
  #sandal-contents #about {
    margin: 45px auto;
    width: calc(100% - 30px);
    padding: 20px;
  }
}
#sandal-contents #about h2 {
  font-size: 30px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding: 0 45px;
}
@media only screen and (max-width:964px) {
  #sandal-contents #about h2 {
    font-size: 24px;
  }
}
@media only screen and (max-width:768px) {
  #sandal-contents #about h2 {
    font-size: 18px;
    padding: 0 24px;
  }
}
#sandal-contents #about h2:before, #sandal-contents #about h2:after {
  content: "";
  width: 30px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
}
@media only screen and (max-width:768px) {
  #sandal-contents #about h2:before, #sandal-contents #about h2:after {
    width: 15px;
  }
}
#sandal-contents #about h2:before {
  left: 0;
}
#sandal-contents #about h2:after {
  right: 0;
}
#sandal-contents #about .about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width:768px) {
  #sandal-contents #about .about-content {
    display: block;
  }
}
#sandal-contents #about .about-content .about-img {
  -ms-flex-preferred-size: 35%;
      flex-basis: 35%;
  max-width: 35%;
}
@media only screen and (max-width:768px) {
  #sandal-contents #about .about-content .about-img {
    max-width: 60%;
    margin: 15px auto 15px;
  }
}
#sandal-contents #about .about-content .about-txt {
  -ms-flex-preferred-size: 65%;
      flex-basis: 65%;
  max-width: 65%;
  text-align: left;
  padding-left: 45px;
  line-height: 1.6em;
  letter-spacing: 0.08em;
}
@media only screen and (max-width:768px) {
  #sandal-contents #about .about-content .about-txt {
    max-width: 100%;
    padding: 0;
  }
}
#sandal-contents #about .about-content .about-txt p {
  font-size: 19px;
  font-weight: bold;
  margin: 0 0 20px;
}
@media only screen and (max-width:964px) {
  #sandal-contents #about .about-content .about-txt p {
    font-size: 16px;
  }
}
@media only screen and (max-width:768px) {
  #sandal-contents #about .about-content .about-txt p {
    font-size: 14px;
  }
}
#sandal-contents #about .about-content .about-txt dl {
  margin: 0 0 20px;
}
#sandal-contents #about .about-content .about-txt dl:last-child {
  margin: 0;
}
#sandal-contents #about .about-content .about-txt dl dt {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 0.3em;
}
@media only screen and (max-width:768px) {
  #sandal-contents #about .about-content .about-txt dl dt {
    font-size: 14px;
  }
}
#sandal-contents #about .about-content .about-txt dl dd {
  font-size: 14px;
}
@media only screen and (max-width:768px) {
  #sandal-contents #about .about-content .about-txt dl dd {
    font-size: 12px;
    line-height: 1.4em;
  }
}

/* IE11 にのみ適用される start */
/* IE11 にのみ適用される end */