.section-container {
  width: 950px;
  padding: 78px 0 80px;
  margin: 0 auto;
}
@media only screen and (max-width: 600px) {
  .section-container {
    box-sizing: border-box;
    width: 100%;
    padding: 40px 15px 50px;
    margin: 0;
  }
}
.hdg {
  color: #000;
  text-align: left;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 10px;
}

@media only screen and (min-width: 601px) {
  .hdg {
   margin-bottom: 50px;
   text-align: center;
  }
}
.section-container section:first-child {
  margin-top: 0;
  padding-top: 0;
}
.section-container section {
  padding-top: 50px;
}
@media only screen and (min-width: 601px) {
  .section-container section {
    padding-top: 80px;
  }
}
.accessory-banner-area {
  margin-bottom: 20px;
}
.accessory-banner-area img {
  width: 100%;
}
@media only screen and (min-width: 601px) {
  .accessory-banner-area {
    margin-bottom: 40px;
  }
}
.option-flex-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px;
}
.option-flex-list li {
  width: calc(50% - 5px);
  border: 1px solid #dedede;
}
@media only screen and (max-width: 600px) {
  .option-flex-list li {
    width: 100%;
  }
}
.option-flex-list li a {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  height: 100%;
  position: relative;
  padding: 5px 10px;
  color: #000;
  text-align: left;
  line-height: 1.4;
}
.option-flex-list li a:hover {
  text-decoration: none;
}
.option-flex-list li a::before {
  content: "";
  margin-top: auto;
  margin-bottom: auto;
  display: block;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  border-right: 1px solid #5f6e7e;
  border-bottom: 1px solid #5f6e7e;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.option-flex-list li .option-item-img-wrapper {
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
.option-flex-list li img {
  max-width: 100%;
  max-height: 100%;
}
.option-flex-list li .item-title {
  font-size: 16px;
  font-weight: bold;
}
.option-flex-list li .item-title.two-line {
  font-size: 18px;
  font-weight: bold;
}
.option-flex-list li .item-title.two-line span {
  font-size: 14px;
}
.option-flex-list li .item-desc {
  font-size: 12px;
  font-weight: normal;
}

.service-content {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 0px;
}
@media only screen and (min-width: 601px) {
  .service-content {
    margin-bottom: 32px;
  }
}

.service-content a {
  display: block;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  line-height: calc(21 / 18);
  color: #000;
  width: calc(50% - 3px);
  box-sizing: border-box;
  padding: 20px 15px;
  border: 1px solid #dedede;
  border-radius: 5px;
}
.service-content a:hover {
  text-decoration: none;
}
.service-content a::before {
  content: "";
  margin-top: auto;
  margin-bottom: auto;
  display: block;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  border-right: 1px solid #5f6e7e;
  border-bottom: 1px solid #5f6e7e;
  width: 5px;
  height: 5px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media only screen and (max-width: 600px) {
  .service-content a {
    width: 100%;
    padding: 12px 20px;
    font-family: Helvetica, Arial, Meiryo, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', system-ui, sans-serif;
    font-size: 16px;
    line-height: calc(24.8 / 16);
    border-radius: 0;
  }
  .service-content a::before {
    right: 20px;
  }
}

/* ボタンエリア */
.btnArea p {
  margin: 0;
  font-size: 13px;
}
@media only screen and (max-width: 900px) {
  .btnArea p {
    margin-top: 8px;
  }
}
.btnArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-content: center;
  position: relative;
  z-index: 1;
  
}
.btn {
  display: block;
  margin-top: 10px;
  margin-bottom: 8px;
  padding: 12px 0;
  text-align: center;
  border: none;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  font-weight: 300;
  color: #333;
  line-height: 153%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background: transparent;
  outline: none;
  cursor: pointer;
  font-size: 16px;
  width: 360px;
}
@media (any-hover: hover) {
  .btn:hover {
    opacity: 0.6;
    text-decoration: none;
  }
}
@media only screen and (max-width: 600px) {
  .btn {
    width: 100%;
    max-width: 360px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 15px 0;
    font-size: 1.6rem;
    font-weight: bold;
  }
}
.btn[class*="btnArrow"] {
  position: relative;
}
.btn[class*="btnArrow"]:before {
  content: "";
  display: block;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  right: 25px;
  -ms-transform: translate(0, -50%) rotate(45deg);
  transform: translate(0, -50%) rotate(45deg);
  -webkit-transform: translate(0, -50%) rotate(45deg);
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media only screen and (max-width: 600px) {
  .btn[class*="btnArrow"]:before {
    width: 4px;
    height: 4px;
    border-width: 1px;
    right: 20px;
  }
}
.btn.btnArrowR:before {
  margin-top: -4px;
}
@media only screen and (max-width: 600px) {
  .btn.btnArrowR:before {
    margin-top: -4px;
  }
}
@media only screen and (max-width: 600px) {
  .btn.btnArrowR:before {
    margin-top: -2px;
  }
}
.btn.btnArrowR:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.btn.btnColorWh {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn.btnColorWh[class*="btnArrow"]:before {
  border-color: #fff;
}
.bgGra {
  background: -webkit-gradient(linear, left bottom, left top, from(#0f82b8), to(#0b5bce));
  background: -webkit-linear-gradient(bottom, #0f82b8 0%, #0b5bce 100%);
  background: linear-gradient(0deg, #0f82b8 0%, #0b5bce 100%);
  color: #fff;
}

@media only screen and (max-width: 600px) {
  .pc {
    display: none;
  }
}
@media only screen and (min-width: 601px) {
  .sp {
    display: none;
  }
}




.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fff;
  margin: 214px auto 0;
  padding: 70px 20px 60px;
  text-align: center;
  width: calc(100% - 30px);
  box-sizing: border-box;
  border: 1px solid #888;
  position: relative;
}

.modal .modal-content .close {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #58646F;
  width: 50px;
  height: 50px;
  font-size: 22px;
  font-weight: bold;
  line-height: 22px;
  text-align: center;
  border-radius: 0 0 0 10px;
  cursor: pointer;
}

.modal .modal-content .close .close_line {
  display: block;
  position: relative;
  width: 25px;
  height: 25px;
  margin: 12px auto;
}

.modal .modal-content .close .close_line::before,
.modal .modal-content .close .close_line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 30px;
  background: #ffffff;
  transform-origin: center;
}

.modal .modal-content .close .close_line::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal .modal-content .close .close_line::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal .modal-content p {
  font-size: 16px;
  font-weight: bold;
}

.modal .modal-content span.sb_point {
  position: relative;
  color: #4779E8;
  font-weight: bold;
  border: solid 1px #4779E8;
  border-radius: 20px;
  padding: 5px 10px;
  display: inline-block;
  margin: 5px;
}

.modal .modal-content span.sb_point:before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  margin-left: -9px;
  border: 6px solid transparent;
  border-top: 6px solid #FFF;
  z-index: 2;
}

.modal .modal-content span.sb_point:after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  margin-left: -11px;
  border: 8px solid transparent;
  border-top: 8px solid #4779E8;
  z-index: 1;
}

.modal .modal-content span.or {
  margin: 30px 0;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.modal .modal-content span.or:before,
.modal .modal-content span.or:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #DEDEDE;
}

.modal .modal-content span.or:before {
  margin-right: 1rem;
}

.modal .modal-content span.or:after {
  margin-left: 1rem;
}

.modal .modal-content .btnArea {
  align-content: center;
}

@media only screen and (min-width: 601px) {
  .modal-content {
    max-width: 900px;
    margin: 250px auto 0;
  }
  
}

.accessory-sale {
  margin-top: 20px;
}

.accessory-sale .accessory-banner-area  {
  text-align: center;
}

.accessory-sale .accessory-banner-area img {
  max-width: 720px;  
}

@media only screen and (min-width: 601px) {
  .accessory-sale {
    margin-top: 45px;
  }
  
}