@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
:root {
  --inner-padding-inline: 1.5rem;
}
@media screen and (max-width: 768px) {
  :root {
    --inner-padding-inline: 3rem;
  }
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 960px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 1.3020833333vw;
  }
}

body {
  position: relative;
  color: #242424;
  font-size: 1.6rem;
  font-weight: normal;
  font-family: "Zen Kaku Gothic New", "YuGothic", "Yu Gothic", "游ゴシック", "Meiryo", "メイリオ", "MS PGothic", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  line-height: 1.8;
  background-color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 2.8rem;
  }
}

a {
  color: #242424;
  text-decoration: none;
  display: inline-block;
}

em {
  color: #00945E;
  font-weight: bold;
  font-style: normal;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

picture {
  display: block;
}

button {
  cursor: pointer;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

table {
  border-collapse: collapse;
}

.pc-view {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-view {
    display: none;
  }
}

.sp-view {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-view {
    display: block;
  }
}

.text-center {
  text-align: center;
}

.text-font-en {
  font-family: "Outfit", sans-serif;
}

.flex-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
}

.mb-12 {
  margin-bottom: 1.2rem;
}

.mb-16 {
  margin-bottom: 1.6rem;
}

.mb-20 {
  margin-bottom: 2rem;
}

.mb-48 {
  margin-bottom: 4.8rem;
}

.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 9999;
}
.header-nav .header {
  height: auto;
}
@media screen and (max-width: 768px) {
  .header-nav .header .wrap {
    width: 100%;
    padding: 0;
  }
}
.header-nav .header__menu {
  height: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #0078D7;
}
@media screen and (max-width: 768px) {
  .header-nav .header__menu .logo {
    padding-left: var(--inner-padding-inline);
  }
  .header-nav .header__menu .logo a img {
    width: 40rem;
  }
}
.header-nav .header__menu .button a {
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.8;
  padding: 0.6rem 2.4rem;
  border-radius: 30px;
  -webkit-box-shadow: 0px 0.4rem 0.75rem rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0.4rem 0.75rem rgba(0, 0, 0, 0.25);
  background-image: -webkit-gradient(linear, left top, right top, from(#0078D7), color-stop(50%, #0099EB), to(#0078D7));
  background-image: -webkit-linear-gradient(left, #0078D7 0%, #0099EB 50%, #0078D7 100%);
  background-image: linear-gradient(90deg, #0078D7 0%, #0099EB 50%, #0078D7 100%);
  background-size: 200%;
  background-position: left center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.header-nav .header__menu .button a:hover, .header-nav .header__menu .button a:focus-visible {
  background-position: right center;
}
.header-nav .header__menu .button a:active {
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
  background-position: center;
}
@media (prefers-reduced-motion: reduce) {
  .header-nav .header__menu .button a {
    -webkit-transition: none;
    transition: none;
  }
}
@media screen and (max-width: 768px) {
  .header-nav .header__menu .humberger-button {
    background-color: #0078D7;
    display: grid;
    place-content: center;
    width: 10rem;
    height: 100%;
    gap: 1.6rem;
    position: relative;
    z-index: 9999;
  }
  .header-nav .header__menu .humberger-button__bar {
    display: inline-block;
    width: 5rem;
    height: 1px;
    background-color: #ffffff;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .header-nav .header__menu .humberger-button.--open .humberger-button__bar:nth-of-type(1) {
    -webkit-transform: translateY(1.8rem) rotate(45deg);
            transform: translateY(1.8rem) rotate(45deg);
  }
  .header-nav .header__menu .humberger-button.--open .humberger-button__bar:nth-of-type(2) {
    opacity: 0;
    -webkit-transform: translateX(3rem);
            transform: translateX(3rem);
  }
  .header-nav .header__menu .humberger-button.--open .humberger-button__bar:nth-of-type(3) {
    -webkit-transform: translateY(-1.8rem) rotate(-45deg);
            transform: translateY(-1.8rem) rotate(-45deg);
  }
}
@media screen and (max-width: 768px) {
  .header-nav .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: 100%;
    background-color: #0078D7;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .header-nav .nav.--open {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.header-nav .nav .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 3.5rem;
  height: 4.4rem;
  font-size: 1.4rem;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .header-nav .nav .links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 2.8rem;
    color: #ffffff;
    height: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 18rem;
    gap: 6rem;
  }
}
.header-nav .nav .links__button a {
  font-weight: 600;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (max-width: 768px) {
  .header-nav .nav .links__button a {
    color: #ffffff;
  }
}
.header-nav .nav .links__button a:hover {
  color: #0078D7;
}

body .wrap {
  width: 100%;
  max-width: calc(106.2rem + var(--inner-padding-inline) * 2);
  padding: 0 var(--inner-padding-inline);
  margin: 0 auto;
}
body .main {
  padding: 14.4rem 0 0;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  body .main {
    padding: 10rem 0 0;
  }
}

.common-section {
  padding: 9.5rem 0 8rem;
}
.common-section.non-tax {
  padding: 8rem 0;
}
.common-section .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.8rem;
}

.common-caption {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.common-caption__list {
  position: relative;
  font-size: 1.2rem;
  padding-left: 2.4rem;
}
@media screen and (max-width: 768px) {
  .common-caption__list {
    font-size: 2rem;
  }
}
.common-caption__list::before {
  position: absolute;
  top: 0;
  left: 0;
}
.common-caption__list.num-no::before {
  content: "※";
}
.common-caption__list.num-1::before {
  content: "※1";
}
.common-caption__list.num-2::before {
  content: "※2";
}
.common-caption__list.no-caption {
  padding-left: 0;
}
.common-caption__list.no-caption::before {
  content: "";
}
.common-caption__list a {
  color: #0078D7;
  text-decoration: underline;
}

.common-midashi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
}

.common-title {
  font-size: 2.4rem;
  color: #0078D7;
  text-align: center;
  border: 1px solid #0078D7;
  padding: 1.6rem 2rem;
  position: relative;
  background-color: #ffffff;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .common-title {
    font-size: 3.2rem;
  }
}
.common-title::before {
  position: absolute;
  top: -3.5rem;
  left: 0;
  font-size: 7rem;
  color: #DEF1FF;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  z-index: 1;
  font-weight: 700;
  mix-blend-mode: multiply;
}
.common-title.about-label::before {
  content: "ABOUT";
}
.common-title.price-label::before {
  content: "PRICE";
}
.common-title.bouns-label::before {
  content: "BOUNS";
}
.common-title.option-label::before {
  content: "OPTION";
}

.common-title-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem;
}
.common-title-2__num {
  width: 5.2rem;
  border: 1px solid #0078D7;
  background-color: #0078D7;
  color: #ffffff;
  font-size: 3rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .common-title-2__num {
    font-size: 4rem;
    width: 8rem;
  }
}
.common-title-2__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 2rem;
  font-weight: 600;
  color: #0078D7;
  border: 1px solid #0078D7;
  background-color: #ffffff;
  padding: 0.8rem 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .common-title-2__text {
    font-size: 3.2rem;
  }
}

.common-text {
  font-size: 1.6rem;
}
.common-text a {
  color: #0078D7;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .common-text {
    font-size: 2.8rem;
  }
}
.common-text--right {
  text-align: right;
}

.common-subtitle {
  font-size: 2.4rem;
  font-weight: 600;
  color: #0078D7;
  position: relative;
  margin-bottom: 2rem;
  padding-left: 3rem;
}
@media screen and (max-width: 768px) {
  .common-subtitle {
    font-size: 3.2rem;
  }
}
.common-subtitle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  background-color: #0078D7;
  border-radius: 0.4rem;
}

.common-subtitle-2 {
  font-size: 2rem;
  font-weight: 600;
  color: #0078D7;
  border: 1px solid #0078D7;
  background-color: #ffffff;
  padding: 0.8rem 1.6rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .common-subtitle-2 {
    font-size: 2.8rem;
  }
}

.common-contact {
  background-color: #0078D7;
  padding: 4.8rem 0;
}
.common-contact__title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 2.4rem;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .common-contact__title {
    font-size: 3.2rem;
  }
}
.common-contact__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .common-contact__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.4rem;
  }
}
.common-contact__buttons .button {
  width: 51.6rem;
}
@media screen and (max-width: 768px) {
  .common-contact__buttons .button {
    width: 100%;
  }
}
.common-contact__buttons .button a {
  font-size: 2rem;
  font-weight: 600;
  padding: 2.4rem 1rem;
  line-height: 1.5;
  color: #0078D7;
  background-color: #ffffff;
  width: 100%;
  text-align: center;
  border-radius: 4.5rem;
  position: relative;
  -webkit-box-shadow: 0px 0.4rem 0.75rem rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0.4rem 0.75rem rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (max-width: 768px) {
  .common-contact__buttons .button a {
    font-size: 2.8rem;
    padding: 3.2rem 1rem;
    border-radius: 6rem;
  }
}
.common-contact__buttons .button a .arrow {
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.common-contact__buttons .button a:hover {
  background-color: #8EC2EB;
}
.common-contact__buttons .button a:hover .arrow {
  right: 1.5rem;
}

.common-page-title__inner {
  height: 10rem;
  background-image: url(/ftth/withflets/assets/images/pages/top/main-bg.webp);
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .common-page-title__inner {
    height: 16rem;
  }
}
.common-page-title__inner .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.common-page-title__inner h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0078D7;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .common-page-title__inner h2 {
    font-size: 3.2rem;
  }
}
.common-page-title__inner h2 .en-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0078D7;
  line-height: 1;
  background-color: #ffffff;
  margin-left: 2rem;
  border-radius: 0.4rem;
  -webkit-transform: translateY(-0.3rem);
          transform: translateY(-0.3rem);
  display: inline-block;
  padding: 0.5rem;
}
@media screen and (max-width: 768px) {
  .common-page-title__inner h2 .en-title {
    font-size: 2.4rem;
  }
}
.common-page-title__caption {
  font-size: 1.2rem;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .common-page-title__caption {
    font-size: 2rem;
  }
}

body #service_footer .site-map {
  background-color: #0078D7;
}
body #service_footer .site-map .wrap dl dd ul li.head {
  background-color: #4598D8;
}
body #service_footer .site-map .site-map_sp li a {
  background: url(/common/image/header-footer/sitemap_ic02.png) no-repeat right 30px center/8px auto, #0078D7;
}