@charset "utf-8";

/*=== メインエリア ===*/
.main-inner {
  background-color: #fff;
}
.main-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}


/*=== メインビジュアル ===*/
.mainvisual {
  background: linear-gradient(180deg, #e4ebf1 0%, #e4ebf1 57.5%, #d4dfe9 57.5%, #d4dfe9 100%);
}
.mainvisual-main {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}
.mainvisual-main span {
  display: block;
}


/*=== about ===*/
.about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 40px 50px;
}
.about-txt {
  font-size: 20px;
}
.about-note {
  margin-top: 20px;
  padding-left: 1em;
  text-indent: -1em;
}


/*=== browser ===*/
.browser {
  background-color: #e8f4fa;
}
.browser .main-section {
  padding-bottom: 135px;
}
.control {
  display: flex;
  justify-content: space-between;
}
.control-item {
  width: calc((100% - (5px * 2)) / 3);
}
.control-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  height: 100%;
  padding: 19px 10px 18px;
  border: none;
  color: #fff;
  font-size: 28px;
  text-align: center;
  line-height: 1.2;
  background-color: #72b9dd;
  cursor: pointer;
}
.control-btn:hover {
  background-color: #558aa5;
}
.control-item:first-child .control-btn {
  border-top-left-radius: 20px;
}
.control-item:last-child .control-btn {
  border-top-right-radius: 20px;
}
.control-btn.active {
  height: calc(100% + 2px);
  color: #232b35;
  background-color: #fff;
  pointer-events: none;
}
.js-tabSwitchCont {
  display: none;
}
.js-tabSwitchCont.active {
  display: block;
}
.browser-wrap {
  padding: 50px 40px 60px;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
}
.browser-ttl {
  position: relative;
  padding-left: 48px;
  font-size: 26px;
  line-height: 1.5;
}
.browser-ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  background: url(images/renewal202403/browser_ic_001.png) no-repeat center / 100% auto;
}
.browser-list {
  margin-top: 30px;
}
.browser-item {
  counter-increment: parentheses;
  display: flex;
  padding: 30px;
  background-color: #f2f5f8;
  border-radius: 20px;
}
.browser-item:not(:first-child) {
  margin-top: 30px;
}
.browser-cont {
  position: relative;
  width: 100%;
  min-height: 50px;
  padding-left: 65px;
  font-size: 20px;
  line-height: 1.5;
}
.browser-cont::before {
  content: counter(parentheses);
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  color: transparent;
  background: url(images/renewal202403/number_txt_001.png) no-repeat center / 100% auto;
  background-color: #72b9dd;
  border-radius: 10px;
}
.browser-item:nth-of-type(2) .browser-cont::before {
  background-image: url(images/renewal202403/number_txt_002.png);
}
.browser-item:nth-of-type(3) .browser-cont::before {
  background-image: url(images/renewal202403/number_txt_003.png);
}
.browser-item:nth-of-type(4) .browser-cont::before {
  background-image: url(images/renewal202403/number_txt_004.png);
}
.browser-item:nth-of-type(5) .browser-cont::before {
  background-image: url(images/renewal202403/number_txt_005.png);
}
.browser-item:nth-of-type(6) .browser-cont::before {
  background-image: url(images/renewal202403/number_txt_006.png);
}
.browser-detail {
  margin-top: 30px;
}
.browser-detail + .browser-detail {
  margin-top: 20px;
}
.browser-on {
  display: inline-block;
  position: relative;
}
.browser-on::after {
  content: "";
  display: inline-block;
  position: relative;
  top: 3px;
  right: 0;
  width: 40px;
  height: 20px;
  margin: 0 5px;
  background: url(images/renewal202403/browser_ic_002.png) no-repeat center / 100% auto;
}
.browser-on.type-chrome::after {
  top: 0;
  width: 26px;
  height: 16px;
  background-image: url(images/renewal202403/browser_ic_003.png);
}
.browser-logo {
  display: inline-block;
  position: relative;
  top: 0;
  margin-right: 6px;
}
.browser-toggle {
  display: inline-block;
  position: relative;
  top: -1px;
  margin-right: 2px;
  line-height: 18px;
}
.browser-transtion {
  margin-top: 5px;
  padding: 8px 18px 7px;
  font-weight: bold;
  word-break: break-all;
  border-radius: 40px;
  background-color: #fff;
}
.browser-drag {
  margin-top: 30px;
}
.browser-drag a:hover {
  opacity: 0.7;
}
.browser-thumb {
  flex-shrink: 0;
  position: relative;
  width: 30vw;
  max-width: 360px;
  margin-left: 50px;
}
.browser-thumb img {
  border-radius: 20px;
  overflow: hidden;
}
.pattern-drag {
  display: block;
  position: absolute;
  top: 87px;
  left: -68px;
  max-width: 19.833vw;
  border-radius: 0;
}

@media only screen and (max-width: 1200px) {
  .pattern-drag {
    top: 7.25vw;
    left: -5.667vw;
  }
}

@media only screen and (max-width: 768px) {
  /*=== メインエリア ===*/
  .main-inner {
    margin: 0;
    padding-bottom: 110px;
  }
  .main-section {
    padding: 40px 10px 60px;
  }
  /*=== メインビジュアル ===*/
  .mainvisual {
    background: linear-gradient(180deg, #e4ebf1 0%, #e4ebf1 32%, #d4dfe9 32%, #d4dfe9 100%);
  }
  .mainvisual-main {
    display: block;
    max-width: 550px;
  }
  .mainvisual-thumb {
    position: relative;
    top: -20px;
    width: 64vw;
    max-width: 240px;
    margin: 0 auto;
  }
  /*=== about ===*/
  .about {
    padding: 20px 10px 25px;
  }
  .about-txt {
    font-size: 16px;
  }
  .about-note {
    font-size: 13px;
  }
  /*=== browser ===*/
  .browser .main-section {
    padding: 30px 10px 40px;
  }
  .control-btn {
    padding: 17px 5px 14px;
    font-size: 16px;
  }
  .control-item:first-child .control-btn {
    border-top-left-radius: 10px;
  }
  .control-item:last-child .control-btn {
    border-top-right-radius: 10px;
  }
  .browser-wrap {
    padding: 25px 10px 20px;
    border-radius: 0 0 10px 10px;
  }
  .browser-ttl {
    padding-left: 28px;
    font-size: 18px;
  }
  .browser-ttl::before {
    width: 22px;
    height: 22px;
  }
  .browser-list {
    margin-top: 20px;
  }
  .browser-item {
    display: block;
    padding: 15px 10px 20px;
    border-radius: 10px;
  }
  .browser-item:not(:first-child) {
    margin-top: 10px;
  }
  .browser-cont {
    min-height: 30px;
    padding-left: 40px;
    font-size: 16px;
  }
  .browser-cont::before {
    width: 30px;
    height: 30px;
    border-radius: 5px;
  }
  .browser-detail {
    margin-top: 20px;
  }
  .browser-on::after {
    top: 2px;
    width: 30px;
    height: 15px;
    margin: 0px 2px;
  }
  .browser-on.type-chrome::after {
    top: 1px;
    width: 22px;
    height: 13px;
  }
  .browser-logo {
    top: 3px;
    width: 120px;
    margin-right: 4px;
  }
  .browser-drag {
    margin-top: 20px;
    text-align: center;
  }
  .browser-thumb {
    width: 100%;
    margin: 10px auto 0;
    padding-left: 40px;
  }
  .browser-thumb img {
    border-radius: 10px;
  }
  .pattern-drag {
    top: 78px;
    left: 50px;
    max-width: 130px;
  }
}

@media only screen and (max-width: 420px) {
  .pattern-drag {
    top: 17.619vw;
    left: 12.857vw;
    max-width: 30.952vw;
  }
}