<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

html {
  font-size: 100%;
}
@media screen and (max-width: 38.74em) {
  html {
    font-size: 75%;
  }
}
body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #4e4644;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    HelveticaNeue, "Segoe UI", "游ゴシック体", YuGothic, "Yu Gothic M",
    "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3",
    "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",
    "メイリオ", Meiryo, sans-serif;
}
img {
  max-width: 100%;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: #06f;
}
a:hover {
  text-decoration: underline;
}

#page {
}
#contents {
}
.wrap {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 38.74em) {
  .wrap {
    width: auto;
    padding: 0 1rem;
  }
}

/* block
-------------------------------- */
.block-2,
.block-3,
.block-4 {
  display: flex;
  flex-wrap: wrap;
  max-width: 980px;
  margin: 0 auto;
  justify-content: center;
}
.block-2 &gt; .col,
.block-3 &gt; .col,
.block-4 &gt; .col {
  box-sizing: border-box;
}
.block-2 &gt; .col {
  width: 50%;
}
.block-3 &gt; .col {
  width: 33.3%;
}
.block-4 &gt; .col {
  width: 25%;
}
@media screen and (max-width: 38.74em) {
  .block-3 &gt; .col {
    width: 100%;
  }
  .block-4 &gt; .col {
    width: calc(50% - 15px);
    margin: 5px;
  }
}

@media screen and (min-width: 38.74em) {
  .pcnone {
    display: none !important;
  }
}
@media screen and (max-width: 38.74em) {
  .spnone {
    display: none !important;
  }
}

/* 文字設定
-------------------------------- */
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.text-blue {
  color: #2a9fdd;
}
.text-red {
  color: #f77103;
}
.text-yellow {
  color: #e7d434;
}
.text-large {
  font-size: 130%;
}
.text-note {
  margin: 0.5rem 0 0;
  line-height: 1.2;
  font-size: 80%;
}
.text-note p {
  margin: 0.4rem 0;
}
.text-note p:first-child {
  font-size: 21px;
  font-weight: bold;
}
ul.text-note {
  padding-left: 0;
}
ul.text-note &gt; li {
  padding-left: 1em;
  text-indent: -1em;
}
.text-center {
  text-align: center;
}
.link_arrow:before {
  margin-right: 0.2em;
  color: #798b90;
  font-size: 1em;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: bold;
}

.list-disc {
  padding-left: 0;
}
.list-disc li {
  padding-left: 1em;
  text-indent: -1em;
}
.list-disc li::before {
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  margin-right: 0.6em;
  border-radius: 50%;
  background: #ccc;
  content: "";
}
table {
  width: 100%;
  border-collapse: collapse;
}
table &gt; caption {
  background: #333;
  text-align: left;
  padding: 0.2em 1em;
  color: #fff;
}
table th,
table td {
  padding: 0.5em 1em;
  border: 1px solid #fff;
  text-align: left;
}
table th {
  font-weight: normal;
  background: #fef6e8;
}
table th ul {
  margin: 0;
}
@media screen and (max-width: 38.74em) {
  table th,
  table td {
    font-size: 12px;
  }
  .table-scroll {
    overflow-x: scroll;
  }
  .table-scroll table {
    min-width: 600px;
  }
}

/* ボタン
-------------------------------- */
.button {
  display: block;
  position: relative;
  padding: 1em 1em 1em 0;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  font-size: 1.35rem;
  line-height: 1.4;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  color: #333;
  border: 2px solid #333;
  background-color: #fff;
  box-shadow: 0px 4px 10px 0px rgba(7, 4, 4, 0.2);
}
.button:hover {
  text-decoration: none;
  transition: background-color 0.2s;
  background-color: #efefef;
}
.button.hollow,
.button.small {
  padding: 0.6em 1em 0.6em 0;
  line-height: 1.2;
}
.button:not(.small)::after {
  position: absolute;
  top: 50%;
  right: 1.4rem;
  margin-top: -1.2rem;
  font-size: 2rem;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: bold;
}
.button &gt; i {
  float: left;
  margin-top: 0.3rem;
  padding-left: 2rem;
  font-size: 180%;
}
.button.small {
  font-size: 1rem;
}
.button.small &gt; i {
  margin-top: -0.1rem;
  padding-left: 1rem;
  font-size: 130%;
}
.button &gt; small {
  display: block;
  font-size: 1rem;
  font-weight: normal;
}
.button &gt; i,
.button &gt; small {
  pointer-events: none;
}
/* ボタンの色設定 */
.button.alert {
  color: #fff;
  border: 2px solid transparent;
  background-color: rgb(73 187 76);
}
.button.alert:hover {
  background-color: rgba(73, 187, 76, 0.6);
}
.button.success {
  border: 2px solid transparent;
  background-color: rgb(13 190 184);
  color: #fff;
}
.button.success:hover {
  background-color: rgba(13, 190, 184, 0.6);
}

@media screen and (max-width: 38.74em) {
  .button {
    padding: 1rem 0;
    font-size: 1.5rem;
    border-radius: 4px;
    box-shadow: 0px 2px 4px 0px rgba(7, 4, 4, 0.2);
  }
  .button.hollow,
  .button.small {
    padding: 0.4em 0;
  }
  .button &gt; i,
  .button.small &gt; i {
    position: absolute;
    top: 50%;
    left: 0.8rem;
    margin-top: -1rem;
    padding-left: 0;
    font-size: 150%;
  }
  .button.small {
    font-size: 0.9rem;
    font-weight: normal;
  }
  .button:not(.small)::after {
    right: 0.5rem;
    margin-top: -1rem;
    font-size: 1.5rem;
  }
  .button.hollow {
    border-width: 1px;
  }
}

/* header
-------------------------------- */
#header {
  top: 0;
  left: 0;
  width: 100%;
  max-height: 45px;
  padding: 0 0 10px;
  z-index: 2;
  background: #fff;
  line-height: 1;
  font-size: 0.75rem;
  box-shadow: 0px 0px 7px 0px rgba(17, 27, 43, 0.32);
}
.code {
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 0.5rem 0 0.01rem;
  background: #fff;
  font-size: 0.625rem;
  line-height: 0;
}
#header .logo {
  margin: 0;
  font-weight: bold;
}
#header .logo &gt; span {
  font-size: 150%;
}
@media screen and (min-width: 38.74em) {
  #header .logo {
    padding: 1% 0;
  }
}
@media screen and (max-width: 38.74em) {
  #header .logo {
  }
}

/* footer
-------------------------------- */
#footer {
  /* padding-top: 1rem; */
  text-align: center;
}
#footer .button {
  margin: 0 0 1rem;
  padding: 1rem 0;
}
#footer .privacy {
  padding: 1.5em 0;
  background: #f5f5f5;
}
#footer .privacy &gt; a {
  display: inline-block;
  color: #4d4d4d;
  line-height: 1;
  padding: 0 1rem;
  text-decoration: none;
}
.copyright {
  margin: 0;
  color: #fff;
  background: #333;
}
@media screen and (min-width: 38.74em) {
  #footer .button {
    max-width: 500px;
    margin: 0 auto 2.5rem;
    padding: 1.5rem 0;
  }
  .copyright {
    font-size: 0.75rem;
    padding: 0.8rem 0;
  }
}

/* 見出し */
.ttl-h2 {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 20px;
  padding: 0.2em 0;
  font-size: 1.875rem;
  text-align: center;
  color: #fff;
  background: #008cd6;
  box-shadow: 0px 2px 3px 0px rgba(7, 4, 4, 0.3);
}
.ttl-h3 {
  margin: 0;
  padding: 0.6em 0;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  background: #333;
}
@media screen and (max-width: 38.74em) {
  .ttl-h2 {
    margin: 0;
    padding: 0.5em 0;
    font-size: 1.6rem;
    line-height: 1.2;
  }
  .ttl-h3 {
    padding: 8px 0;
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 38.74em) {
  #contents section {
    margin-bottom: 40px;
  }
}

/* コンテンツエリア
-------------------------------- */
/* KV */
.kv {
  padding-bottom: 1em;
  background: url(/wp-content/themes/port-theme/lp-assets/biglobe-hikari/img/bg_blue.png);
  background-size: cover;
  text-align: center;
}
.kv &gt; h1 {
  margin: 0;
  padding: 1em 0 0;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 6px rgba(7, 4, 4, 0.4);
}
.kv &gt; h1 &gt; img {
  max-height: 59px;
}
.kv &gt; dl {
  display: inline-block;
  margin: 1rem 10px 10px;
  padding-bottom: 0.5rem;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 6px 0 rgba(7, 4, 4, 0.4);
}
.kv &gt; dl &gt; dt {
  display: flex;
  position: relative;
  padding-top: 0.5rem;
  margin-bottom: 1.5rem;
  justify-content: center;
  background: #e7d434;
  color: #35318e;
  font-weight: bold;
  line-height: 1.2;
  font-size: 1.2rem;
  border-radius: 6px 6px 0 0;
}
.kv &gt; dl &gt; dt::after {
  position: absolute;
  bottom: -15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 150px 0 150px;
  border-color: #e7d534 transparent transparent transparent;
  content: "";
}
.kv &gt; dl &gt; dt &gt; .ico {
  display: block;
  position: relative;
  width: 5.6rem;
  height: 5.6rem;
  margin-top: -1.5rem;
  padding-top: 0.8rem;
  z-index: 1;
  box-sizing: border-box;
  line-height: 1.6;
  font-size: 1.2rem;
  border-radius: 50%;
  background: #35318e;
  box-shadow: 0 2px 6px 0 rgba(7, 4, 4, 0.3);
  color: #fff;
  text-align: center;
}
.kv &gt; dl &gt; dt &gt; .ico &gt; i {
  display: block;
  font-size: 140%;
}
.kv &gt; dl &gt; dt &gt; .ico:nth-child(2) {
  margin-left: -0.6rem;
  margin-right: 0.6rem;
}
.kv &gt; dl &gt; dd {
  margin: 0;
  padding: 0 0.5em 0.5em 3em;
  font-size: 1.1rem;
  line-height: 1.2;
  text-align: left;
  background: url(/template/img/ico_check.png) no-repeat 18px 4px;
  background-size: 18px auto;
}
.kv &gt; dl &gt; dd &gt; span {
  background: linear-gradient(transparent 40%, #f7f5e2 40%);
  font-size: 120%;
  font-weight: bold;
}
.kv &gt; p {
  margin: 0 10px;
  padding-left: 2em;
  text-indent: -2em;
  color: #fff;
  line-height: 1.2;
}
@media screen and (max-width: 38.74em) {
  .kv &gt; p {
    text-align: left;
  }
}
@media screen and (min-width: 38.74em) {
  .kv &gt; dl &gt; dt &gt; span:last-child {
    line-height: 60px;
  }
  .kv &gt; dl &gt; dd {
    padding-right: 2rem;
  }
}

/* conversion */
.conversion {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  background: #273e4b;
  color: #fff;
}
.conversion dl {
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
}
.conversion dt {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.2em 1em;
  border-radius: 10px;
  background: #e7d434;
  color: #273e4b;
  font-weight: bold;
}
.conversion dd {
  margin: 0;
  font-size: 0.95rem;
}
.conversion .button {
  margin-top: 0.5em;
}
@media screen and (min-width: 38.74em) {
  .conversion &gt; .wrap {
    width: auto;
    margin: 0 20px;
    padding: 15px 35px 35px;
  }
  .conversion .button {
    display: inline-block;
    width: calc(50% - 42px);
    margin: 10px 5px;
  }
  .kv p {
    text-align: center;
  }
}
@media screen and (max-width: 38.74em) {
  .conversion {
    margin: 0;
  }
  .conversion &gt; .wrap {
    margin: 0;
    padding-top: 1px;
    padding-bottom: 1rem;
  }
}

.point {
  padding-bottom: 1rem;
}
.point h2 {
  position: relative;
  margin: 2rem 0 1rem;
  font-size: 1.4rem;
  line-height: 1.2;
  text-align: center;
}
.point h2::before,
.point h2::after {
  display: block;
  position: absolute;
  width: 2px;
  height: 2em;
  bottom: 0;
  background: #008cd6;
  content: "";
}
.point h2::before {
  left: 50%;
  transform: rotate(-30deg);
}
.point h2::after {
  right: 50%;
  transform: rotate(30deg);
}
@media screen and (min-width: 38.74em) {
  .point h2::before {
    margin-left: -10em;
  }
  .point h2::after {
    margin-right: -10em;
  }
}
@media screen and (max-width: 38.74em) {
  .point h2::before {
    margin-left: -6em;
  }
  .point h2::after {
    margin-right: -6em;
  }
}
.point p {
  margin: 0;
  line-height: 1;
  text-align: center;
}
.point ul {
  margin: 0 auto;
  padding: 0;
  max-width: 600px;
}
.point-list li {
  position: relative;
  margin-bottom: 1rem;
  padding: 1rem 0;
  background: #feffe3;
  text-align: center;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.2;
}
.point-list li::before {
  display: block;
  position: absolute;
  top: -10px;
  left: 9px;
  width: 42px;
  height: 42px;
  background: url(/portbroadband/wp-content/themes/port-theme/lp-assets/biglobe-hikari/img/ico_point.png);
  background-size: cover;
  content: "";
}
#reason {
  background: #f1f6f9;
}
#reason .col {
  background: #fff;
  box-shadow: 0px 2px 5px 0px rgba(7, 4, 4, 0.2);
}
@media screen and (max-width: 38.74em) {
  #reason .block-4 {
    padding-bottom: 1.5rem;
  }
  #reason .col:nth-child(-n + 2) {
    margin-top: 1.5rem;
  }
}
#reason h3,
#reason .pic {
  margin: 0;
  text-align: center;
}
#reason h3 {
  display: table-cell;
  width: 100vw;
  height: 4em;
  line-height: 1.2;
  vertical-align: middle;
}
@media screen and (min-width: 38.74em) {
  #reason {
    padding: 3rem 0;
  }
  #reason .col {
    padding: 1rem 0;
  }
  #reason h3 {
    font-size: 1.375rem;
  }
  #reason .pic &gt; img {
    max-height: 100px;
  }
  #reason .txt {
    margin: 1em;
  }
}
@media screen and (max-width: 38.74em) {
  #reason .pic &gt; img {
    max-height: 67px;
  }
  #reason .txt {
    margin: 0 1em 1rem;
  }
}

#campaign {
  margin-top: 1rem;
}
#campaign h3,
#campaign p {
  margin: 0;
  line-height: 1.2;
}
#campaign .bg-white {
  margin: 10px 0;
  background: #fff;
  border-radius: 4px;
  text-align: left;
}
#campaign .bg-white dl {
  margin: 0 10px;
}
#campaign .bg-white dt {
  text-align: center;
  font-weight: bold;
  background: #ececec;
}
#campaign .bg-white dd {
  margin: 0 0 0.5em 0;
  padding: 0;
  font-size: 0.9rem;
  border-top: 1px solid #ececec;
}

#price {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 1rem;
  background: #f1f6f9;
}
#price .col {
  position: relative;
  text-align: center;
  background: #fff;
}
#price h4 {
  margin: 0;
  background: #008cd6;
  border-radius: 2px 2px 0 0;
  color: #fff;
}
#price h4 &gt; i {
  display: inline-block;
  position: absolute;
  left: 50%;
  border-radius: 50%;
  background: #fff;
  color: #333;
  text-align: center;
  font-size: 200%;
}
#price h4 &gt; .large {
  font-size: 120%;
}
#price .col p {
  margin: 0;
  line-height: 1;
}
#price .col em {
  margin-right: 0.2rem;
  font-size: 200%;
  font-weight: bold;
  font-style: normal;
}
#price .text-note {
  text-align: left;
  margin: 1rem 1rem 0;
}
@media screen and (min-width: 38.74em) {
  #price .block-2 {
    max-width: 620px;
  }
  #price .col {
    width: calc(50% - 20px);
    margin: 70px 10px 0 10px;
    border: 4px solid #008cd6;
  }
  #price h4 {
    font-size: 1.5rem;
    padding: 60px 0 10px;
  }
  #price h4 &gt; i {
    width: 94px;
    height: 94px;
    top: -47px;
    margin-left: -47px;
    line-height: 94px;
    border: 4px solid #008cd6;
  }
  #price .col p {
    padding: 1rem 0;
    font-size: 1.5rem;
  }
  #price .text-note {
    max-width: 600px;
    margin: 1rem auto;
  }
}
@media screen and (max-width: 38.74em) {
  #price .col {
    width: calc(50% - 19px);
    margin: 35px 0 0 10px;
    border: 2px solid #008cd6;
    border-radius: 4px;
  }
  #price h4 {
    padding: 30px 0 10px;
  }
  #price h4 &gt; i {
    width: 44px;
    height: 44px;
    top: -22px;
    margin-left: -22px;
    line-height: 44px;
    border: 2px solid #008cd6;
  }
  #price .col p {
    padding: 0.5rem 0;
    font-size: 120%;
  }
}
#feature {
  padding-bottom: 1rem;
}
@media screen and (min-width: 38.74em) {
  #feature {
    padding-bottom: 50px;
  }
}
#feature .block-2,
#feature .block-3 {
  counter-reset: num;
}
#feature h3,
#feature p {
  margin: 0;
}
#feature h3 {
  position: relative;
  margin: 0;
  padding-top: 0rem;
  padding-bottom: 0.5rem;
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 1.2;
}
#feature h3::before {
  position: absolute;
  width: 5rem;
  top: 0;
  padding: 0.5em 0;
  background: #f77103;
  border-radius: 3px;
  color: #fff;
  text-align: center;
  counter-increment: num;
  content: "POINT " counter(num);
}
#feature h3::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  line-height: 1;
  font-weight: normal;
  color: #f77103;
  content: "\f0a4";
}
@media screen and (min-width: 38.74em) {
  #feature .block-2,
  #feature .block-3 {
    margin-top: 2rem;
  }
  #feature .block-2 .col,
  #feature .block-3 .col {
    padding-right: 1rem;
  }
  #feature .block-2 .col:not(:first-child),
  #feature .block-3 .col:not(:first-child) {
    padding-left: 1rem;
    border-left: 1px solid #dcdcdc;
  }
  #feature h3 {
    min-height: 2.5em;
    padding-left: 7.5rem;
  }
  #feature h3::before {
    left: 0;
    font-size: 0.875rem;
  }
  #feature h3::after {
    top: 0;
    left: 5.5rem;
    font-size: 130%;
  }
  #feature h3 br {
    display: none;
  }
}
@media screen and (max-width: 38.74em) {
  #feature .block-2 .col {
    width: 100%;
  }
  #feature .block-2 .col:not(:first-child),
  #feature .block-3 .col:not(:first-child) {
    margin-top: 0.5rem;
    border-top: 1px solid #dcdcdc;
  }
  #feature .col {
    padding-top: 1rem;
  }
  #feature h3 {
    padding-left: 9rem;
  }
  #feature h3::before {
    left: 1rem;
    font-size: 1rem;
  }
  #feature h3::after {
    top: 0;
    left: 6.5rem;
    font-size: 160%;
  }
  #feature p {
    padding-left: 9rem;
  }
}

#feature .accordion {
  position: relative;
  cursor: pointer;
}
#feature .accordion::after {
  position: absolute;
  top: -0.2em;
  right: 1rem;
  font-size: 160%;
  color: #004ea2;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: bold;
}
#feature .accordion.active::after {
  content: "\f106";
}
#feature .accordion-inside {
  display: none;
}
@media screen and (max-width: 38.74em) {
  #feature .accordion {
    margin-top: 1rem;
  }
  #feature .accordion::after {
    right: 0.5rem;
    top: 1rem;
    font-size: 1.5rem;
  }
}

#flow {
  padding-bottom: 1rem;
}
#flow dl {
  position: relative;
}
#flow dt,
#flow dd {
  margin: 0;
  padding: 0;
}
#flow .label {
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  line-height: 1;
  text-align: center;
  font-weight: bold;
  color: #fff;
  background: #008cd6;
}
#flow .label &gt; span {
  display: block;
  position: relative;
  z-index: 1;
}
#flow .label::after {
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  border-style: solid;
  border-color: #008cd6 transparent transparent transparent;
  content: "";
}
#flow .text {
  font-weight: bold;
}
@media screen and (min-width: 38.74em) {
  #flow .label {
    width: 145px;
    padding-top: 15px;
    font-size: 150%;
  }
  #flow .label::after {
    border-width: 26px 72px 0 72px;
  }
  #flow dl {
    margin-left: 40px;
    margin-bottom: 70px;
    padding-left: 160px;
  }
  #flow .text {
    font-size: 150%;
  }
  #flow .text-note {
    margin-left: 40px;
  }
}
@media screen and (max-width: 38.74em) {
  #flow .label {
    width: 70px;
    padding-top: 5px;
  }
  #flow .label::after {
    border-width: 16px 35px 0 35px;
  }
  #flow dl {
    padding-left: 80px;
  }
  #flow .text {
    font-size: 120%;
  }
}

#faq {
  padding: 0 0 0.5rem;
}
@media screen and (max-width: 38.74em) {
  #faq {
    margin: 0;
    background: #f1f6f9;
  }
  #faq .faq {
    margin-top: 15px;
  }
}
@media screen and (min-width: 38.74em) {
  #faq {
    margin: 0 0 30px 0 !important;
  }
  #faq .wrap {
    padding: 40px 0 20px;
    background: #f1f6f9;
  }
  .acMenu {
    margin: 0 40px;
  }
}
/* アコーディオン */
.duration {
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}
.acMenu {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0px 2px 4px 0px rgba(7, 4, 4, 0.06);
}
.acMenu dt,
.acMenu dd {
  position: relative;
  margin: 0;
}
.acMenu dt {
  cursor: pointer;
  font-size: 1.167rem;
}
.acMenu dd {
  display: none;
  margin-top: 0.5rem;
}
.acMenu dt:before,
.acMenu dd:before {
  display: block;
  position: absolute;
  top: 0.3rem;
  text-indent: 0;
  text-align: center;
  color: #fff;
}
.acMenu dt:before {
  background: #333;
  content: "Q";
}
.acMenu dd:before {
  background: #bebebe;
  content: "A";
}
.acMenu dt:after {
  position: absolute;
  color: #333;
  font-size: 1rem;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: bold;
}
.acMenu dt.active:after {
  content: "\f106";
}
@media screen and (max-width: 38.74em) {
  .acMenu {
    padding: 5px 10px;
  }
  .acMenu dt,
  .acMenu dd {
    padding-left: 30px;
    padding-right: 1rem;
  }
  .acMenu dt:before,
  .acMenu dd:before {
    width: 24px;
    height: 24px;
    left: 0;
    line-height: 22px;
    font-size: 14px;
  }
  .acMenu dt:after {
    top: 0;
    right: 0;
  }
}
@media screen and (min-width: 38.75em) {
  .acMenu {
    margin-bottom: 1rem;
    padding: 35px 70px 35px;
  }
  .acMenu dt,
  .acMenu dd {
    padding-left: 30px;
  }
  .acMenu dt {
    padding-top: 5px;
    padding-bottom: 10px;
    font-size: 20px;
  }
  .acMenu dt:before,
  .acMenu dd:before {
    width: 40px;
    height: 40px;
    left: -30px;
    line-height: 35px;
    font-size: 22px;
  }
  .acMenu dt:after {
    top: 0;
    right: -30px;
    font-size: 160%;
  }
}

.trigger {
  position: relative;
  margin: 1em;
  padding: 0.4rem 0;
  color: #333;
  text-align: center;
  cursor: pointer;
}
.wrap .trigger {
  margin: 1em 0;
}
.trigger &gt; i {
  margin-right: 0.5em;
  color: #666;
}
.trigger + div {
  display: none;
  padding-bottom: 1rem;
}
.trigger::after {
  position: absolute;
  top: 50%;
  right: 1.4rem;
  margin-top: -1.2rem;
  font-size: 1.5rem;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  color: #f72c7d;
  font-weight: bold;
}
.trigger.active::after {
  content: "\f106";
}

/* family-price */
.family-price {
}
.family-price p {
  font-size: 14px;
}
.family-price .lead {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
}
.family-price .lead.bg-color {
  display: inline-block;
  padding: 0.1em 1em;
  color: #fff;
  background: #f77103;
  border-radius: 20px;
}
.family {
  padding: 10px 0;
  background: #feffe3;
}
@media screen and (max-width: 38.74em) {
  .family img {
    max-width: 75px;
  }
  .family &gt; p &gt; img {
    max-width: 238px;
    margin: 0;
  }
}

/* form
-------------------------------- */
.area-form {
  margin: 0;
  padding-bottom: 1px;
  /* background: #f1f6f9; */
}
.area-form h2 {
  position: relative;
  margin: 0 0 12px;
  padding: 1rem 0;
  font-size: 18px;
  color: #fff;
  text-align: center;
  background: #008cd6;
}
.area-form h2::after {
  position: absolute;
  display: block;
  bottom: -8px;
  left: 50%;
  margin-left: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 10px 0 10px;
  border-color: #008cd6 transparent transparent transparent;
  content: "";
}
.area-form-p {
  text-align: center;
  font-weight: bold;
	margin: 30px 0;
}
#sfm-form .button.success {
  width: 100%;
  margin: 1rem auto;
  padding: 1.1em 0 1.1em 1.8em;
  background-image: url(/portbroadband/wp-content/themes/port-theme/lp-assets/biglobe-hikari/img/ico_area.png);
  background-repeat: no-repeat;
  background-position: 20px 15px;
  background-size: 33px 32px;
  font-size: 18px;
}

#sfm-form .button {
  width: 100%;
  max-width: 350px;
  margin: 1rem auto;
  padding: 1.1em 0 1.1em 1.8em;
  background-image: url(../img/ico_area.png);
  background-repeat: no-repeat;
  background-position: 20px 50%;
  background-size: 33px 32px;
	border: none;
	background-color: #49BB4C;
	color: #fff;
}

#sfm-form .button[disabled] {
  padding-left: 0;
  background: #e0e0e0;
  cursor: auto;
  box-shadow: none;
}
#sfm-form .button.success[disabled] {
  padding-left: 0;
  background: #e0e0e0;
  cursor: auto;
  box-shadow: none;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
select {
  border: none;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #afafaf;
  font-size: 16px;
}
input[type="text"],
input[type="tel"],
input[type="email"],
select {
  width: calc(100% - 1.2em);
  padding: 0.5em;
}
input[type="date"] {
	padding: 0.5em;
}
.ERR {
  color: #f00;
  margin: 0.5rem 0 0;
}
.required-focus {
  background: #fce2e2 !important;
  border-color: #e75b5b !important;
}
.any,
.required {
  padding: 0.1em 0.5em;
  font-size: 10px;
  color: #fff;
  vertical-align: middle;
  font-weight: normal;
}
.any {
  background: #666666;
}
.required {
  background: #f72c7d;
}
.area-form table {
  width: 100%;
  border-collapse: collapse;
}
.area-form th,
.area-form td {
  display: block;
}
.area-form th {
  padding: 5px 10px;
  background: #e9e9e9;
  text-align: left;
  font-size: 14px;
}
.area-form td {
  padding: 10px;
  background: #fff;
}
.area-form .input-group {
  display: inline-block;
  width: 49%;
  max-width: 200px;
}
/* ラベル */
input[type="radio"],
input[type="checkbox"] {
  display: none;
  margin: 0;
}
input[type="radio"] + label,
input[type="checkbox"] + label {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
}
input[type="radio"] + label::before,
input[type="checkbox"] + label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;

  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -11px;
}
input[type="radio"] + label::before {
  border: 1px solid #afafaf;
  border-radius: 50%;
  background: #fff;
}
input[type="checkbox"] + label::before {
  border: 1px solid #afafaf;
  background: #fff;
  border-radius: 4px;
}
input[type="radio"]:checked + label::before {
  border-color: #f9d12c;
}
input[type="radio"]:checked + label::after,
input[type="checkbox"]:checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  width: 10px;
  height: 10px;
  margin-top: -6px;
  background: #f9d12c;

  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
}
input[type="radio"]:checked + label::after {
  border-radius: 8px;
}
/* 現在地表示 その2 */
.flow-list-2 {
  display: flex;
  justify-content: center;
  padding-right: 10px;
  font-weight: bold;
}
.flow-list-2 p {
  font-size: 16px;
}
.flow-list-2 ol {
  height: 36px;
  font-size: 12px;
  line-height: 36px;
  margin: 10px 0 0 15px;
  padding: 0;
}
.flow-list-2 li {
  display: inline-block;
  position: relative;
  padding-left: 0;
  padding-right: 5px;
  box-sizing: content-box;
  margin-left: -3px;
  text-indent: 10px;
  background: #fff;
}
.flow-list-2 ol li:not(:first-child) {
  padding-left: 5px;
}
.flow-list-2 li.active {
  background: #0dbeb8;
  color: #fff;
  border-right: none;
}
.flow-list-2 li:nth-child(1) {
  z-index: 3;
}
.flow-list-2 li:nth-child(2) {
  z-index: 2;
}
.flow-list-2 li:nth-child(3) {
  z-index: 1;
}
.flow-list-2 li::before {
  margin-right: 0.2rem;
}
.flow-list-2 li:nth-child(1)::before {
  content: "1.";
}
.flow-list-2 li:nth-child(2)::before {
  content: "2.";
}
.flow-list-2 li:nth-child(3)::before {
  content: "3.";
}
.flow-list-2 li::after {
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  right: -10px;
  border-style: solid;
  border-width: 18px 0 18px 10px;
  border-color: transparent transparent transparent #fff;
  content: "";
}
.flow-list-2 li.active::after {
  border-color: transparent transparent transparent #0dbeb8;
}
@media screen and (min-width: 38.74em) {
  .area-form {
  }
  .area-form h2 {
    font-size: 32px;
  }
  .area-form table {
    width: calc(100% - 60px);
    margin: 30px auto 0;
  }
  .area-form th,
  .area-form td {
    display: table-cell;
    width: auto;
    padding: 10px 20px;
    border-bottom: 1px solid #ebebeb;
  }
  .area-form th {
    width: 200px;
    font-size: 16px;
  }
  input[type="text"],
  input[type="tel"],
  input[type="email"],
	select {
    width: calc(100% - 1.6em);
    padding: 1em 0.8em;
  }
  #sfm-form .button.success {
    max-width: 320px;
    margin: 1rem auto 3rem;
    padding-left: 40px;
    background-position: 60px 18px;
  }
}

.mv {
  background: url(../img/bg_mv.png) no-repeat center top;
  background-size: cover;
  padding: 36px 0 30px;
}

.mv-logo {
  text-align: center;
  width: 406px;
  margin: 0 auto 8px;
}

.mv-box {
  margin: 0 auto;
  max-width: 800px;
  background: #e7d434;
  padding: 15px 50px 20px;
  box-sizing: border-box;
}

.mv-box .mv-box-ttle {
  color: #35318e;
  font-size: 34px;
  font-weight: 600;
  text-align: center;
  padding: 0;
  margin: 0 0 10px;
}

.mv-box .mv-box-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.mv-box .mv-box-inner .mv-box-item {
  width: 49%;
  background: #fff;
  padding: 18px 0 18px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.mv-box .mv-box-inner .mv-box-item .mv-box-vertical span {
  display: block;
  color: #f77103;
  font-weight: 600;
  line-height: 1;
  font-size: 22px;
  margin-right: 6px;
}

.mv-box .mv-box-inner .mv-box-item .mv-box-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-box .mv-box-inner .mv-box-item .mv-box-flex .mv-box-price span {
  color: #f77103;
  display: inline-block;
  font-weight: 600;
  vertical-align: middle;
  line-height: 1;
}

.mv-box .mv-box-inner .mv-box-item .mv-box-flex .mv-box-price.is-bottom span {
  vertical-align: bottom;
}

.mv-box .mv-box-inner .mv-box-item .mv-box-flex .mv-box-price .number {
  font-size: 60px;
  margin-right: 6px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}

.mv-box .mv-box-inner .mv-box-item .mv-box-flex .mv-box-price .unit {
  font-size: 46px;
  margin-top: 8px;
}

.mv-box .mv-box-inner .mv-box-item .mv-box-flex .mv-box-price .content {
  font-size: 24px;
  line-height: 1;
  margin-top: 8px;
}
.mv-box .mv-box-inner .mv-box-item .mv-box-label {
  font-size: 46px;
  font-weight: 600;
  color: #f77103;
  margin: 0;
  padding: 0;
  line-height: 1;
  text-align: center;
}
.mv-box .mv-box-inner .mv-box-item .mv-box-note {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #35318e;
  padding: 0;
  margin: 11px 0 0;
}

.mv-box .mv-box-inner .mv-box-item:nth-child(even) {
  margin-left: auto;
  position: relative;
}

.mv-box .mv-box-inner .mv-box-item:nth-child(even):before {
  display: block;
  position: absolute;
  top: 50%;
  left: -30px;
  background: url(/portbroadband/wp-content/themes/port-theme/lp-assets/biglobe-hikari/img/ico_mv.png)
    no-repeat 0 0;
  width: 38px;
  height: 38px;
  z-index: 2;
  margin-top: -19px;
  content: "";
}

@media screen and (max-width: 38.74em) {
  .mv {
    padding: 26px 21px 22px;
  }

  .mv-logo {
    text-align: center;
    width: 200px;
    margin: 0 auto 16px;
  }
  .mv-box {
    padding: 15px 10px 20px;
  }
  .mv-box .mv-box-ttle {
    font-size: 17px;
  }

  .mv-box .mv-box-inner {
    display: block;
  }

  .mv-box .mv-box-inner .mv-box-item {
    width: 100%;
  }
  .mv-box .mv-box-inner .mv-box-item .mv-box-label {
    font-size: 30px;
    font-weight: 600;
  }

  .mv-box .mv-box-inner .mv-box-item:nth-child(even) {
    margin-left: 0;
    margin-top: 10px;
  }
  .mv-box .mv-box-inner .mv-box-item .mv-box-vertical {
    padding-top: 6px;
  }

  .mv-box .mv-box-inner .mv-box-item .mv-box-vertical span {
    font-size: 16px;
  }

  .mv-box .mv-box-inner .mv-box-item .mv-box-flex .mv-box-price span {
    vertical-align: bottom;
  }
  .mv-box .mv-box-inner .mv-box-item .mv-box-flex .mv-box-price .number {
    font-size: 60px;
  }

  .mv-box .mv-box-inner .mv-box-item .mv-box-flex .mv-box-price .unit {
    font-size: 35px;
    margin-top: 0;
    margin-right: 4px;
  }

  .mv-box .mv-box-inner .mv-box-item .mv-box-flex .mv-box-price .content {
    font-size: 20px;
    line-height: 1;
    margin-top: 0;
  }
  .mv-box .mv-box-inner .mv-box-item .mv-box-note {
    font-size: 14px;
    margin: 6px 0 0;
    line-height: 1.2;
  }

  .mv-box .mv-box-inner .mv-box-item:nth-child(even):before {
    display: block;
    background-size: 23px 23px;
    position: absolute;
    top: -15px;
    left: 50%;
    width: 23px;
    height: 23px;
    z-index: 2;
    margin-top: 0;
    margin-left: -10px;
    content: "";
  }
}
</pre></body></html>