@charset "UTF-8";
/*=======================================================
共通
=======================================================*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  border: 0;
  font-weight: bold;
  font-size: 100%;
  vertical-align: baseline;
}

ol,
ul {
  list-style: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

input,
select,
textarea {
  vertical-align: top;
}

html {
  font-size: 16px;
}
@media not screen and (min-width: 376px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.5;
  background-color: #fff;
  overflow-wrap: anywhere;
  line-break: strict;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.is-noScroll {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: fixed;
  left: 0;
}

.wrapper {
  overflow-x: clip;
}
body.archive .wrapper, body.blog .wrapper, body.single .wrapper, body.error404 .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
}
body.archive .wrapper .main, body.blog .wrapper .main, body.single .wrapper .main, body.error404 .wrapper .main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media not screen and (min-width: 768px) {
  .hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

input[type=text], input[type=email], input[type=tel], input[type=password] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  padding: 0.4em 0.8em;
  width: 100%;
}
input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=password]:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
input[type=radio] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
input[type=radio] + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.2em;
  position: relative;
}
input[type=radio] + span::before {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  content: "";
  display: block;
  height: 16px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
}
input[type=radio] + span::after {
  background-color: rgba(0, 0, 0, 0.32);
  border: 1px solid transparent;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 4px;
  opacity: 0;
  padding: 2px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 8px;
}
input[type=radio]:checked + span::after {
  opacity: 1;
}
input[type=checkbox] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
input[type=checkbox] + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.2em;
  position: relative;
}
input[type=checkbox] + span::before {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 2px;
  content: "";
  display: block;
  height: 1em;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1em;
}
input[type=checkbox] + span::after {
  border-bottom: 3px solid rgba(0, 0, 0, 0.32);
  border-left: 3px solid rgba(0, 0, 0, 0.32);
  content: "";
  display: block;
  height: 0.6em;
  left: 0;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 1em;
}
input[type=checkbox]:checked + span::after {
  opacity: 1;
}
input[type=submit] {
  -webkit-appearance: none;
  background-color: rgba(0, 0, 0, 0.32);
  background-image: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  margin: 0 0 1em;
  padding: 0.6em 2em;
  text-decoration: none;
}
input[type=submit]:hover, input[type=submit]:focus {
  outline: none;
}
input[type=submit]::-moz-focus-inner {
  border: none;
  padding: 0;
}

textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  height: 100px;
  padding: 0.4em 0.8em;
  width: 100%;
}
textarea:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  background-image: url(../img/icon-select.svg);
  background-repeat: no-repeat;
  background-position: center right 8px;
  background-size: 16px 16px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  cursor: pointer;
  padding: 0.4em 0.8em;
  width: 100%;
}
select::-ms-expand {
  display: none;
}
select:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.l-inner {
  padding-inline: 5.3333333333%;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding-inline: 30px;
    max-width: 1306px;
    margin-inline: auto;
  }
}

.p-inner {
  padding-inline: 5.3333333333%;
}
@media screen and (min-width: 768px) {
  .p-inner {
    padding-inline: 30px;
    max-width: 1160px;
    margin-inline: auto;
  }
}

.heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page-title .heading {
  color: #03b5db;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.heading__en {
  text-transform: uppercase;
  font-size: 3.125rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .heading__en {
    font-size: 6.25rem;
    line-height: 1.27;
  }
}

.heading__ja {
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .heading__ja {
    font-size: 1rem;
    margin-left: 9px;
  }
}
.page-title .heading__ja {
  margin-left: 0;
}

.font-en {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  text-align: center;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .section-title {
    gap: 0;
    padding-bottom: 35px;
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background-color: #222;
  }
}

.section-title__en {
  font-size: 3.125rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .section-title__en {
    font-size: 5rem;
    line-height: 1.425;
  }
}
.page-title .section-title__en {
  text-transform: uppercase;
}

.section-title__ja {
  line-height: 1;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .section-title__ja {
    font-size: 1rem;
  }
}

.section-title__s {
  text-align: center;
  font-size: 1.375rem;
  line-height: 1;
  padding-bottom: 17px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .section-title__s {
    font-size: 2.25rem;
    padding-bottom: 30px;
  }
}
.section-title__s::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: currentColor;
}
@media screen and (min-width: 768px) {
  .section-title__s::after {
    width: 60px;
    height: 6px;
  }
}

.button {
  display: inline-block;
  border-radius: 40px;
  border: 2px solid transparent;
  padding: 10.5px 25px 10.5px 40px;
  background-color: #ed4343;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .button {
    padding: 13px 28px 13px 45px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .button:hover {
    border-color: #ed4343;
    background-color: #fff;
  }
  .button:hover > span {
    color: #ed4343;
  }
}
.button > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.02em;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  .button > span {
    font-size: 1rem;
  }
}
.button > span::after {
  content: "・";
  font-size: 1.5625rem;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .button > span::after {
    font-size: 1.875rem;
  }
}

.main--top-padding-sm {
  padding-top: 20px;
  position: relative;
  z-index: 1;
}
.main--top-padding-md {
  padding-top: 58px;
}
@media screen and (min-width: 768px) {
  .main--top-padding-md {
    padding-top: 79px;
  }
}

.is-404 {
  padding-block: 7px 50px;
}
@media screen and (min-width: 768px) {
  .is-404 {
    padding-block: 91px 59px;
  }
}

.is-404__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .is-404__title {
    gap: 30px;
  }
}

.is-404__title-image {
  width: 221px;
}
@media screen and (min-width: 768px) {
  .is-404__title-image {
    width: 450px;
  }
}

.is-404__title-ja {
  color: #c6c6c6;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .is-404__title-ja {
    font-size: 1rem;
  }
}

.is-404__button {
  margin-top: 146px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .is-404__button {
    margin-top: 110px;
  }
}
.is-404__button .button {
  background-color: #03b5db;
  padding: 10.5px 26px 10.5px 37px;
}
@media screen and (min-width: 768px) {
  .is-404__button .button {
    padding: 13px 24px 13px 35px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .is-404__button .button:hover {
    border-color: #03b5db;
    background-color: #fff;
  }
  .is-404__button .button:hover .is-404__button-text {
    color: #03b5db;
  }
}

.mouse-stalker {
  pointer-events: none;
  position: fixed;
  top: -10px;
  left: -10px;
  width: 20px;
  height: 20px;
  background-color: rgba(252, 74, 36, 0.5);
  border-radius: 50%;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  z-index: 999;
  mix-blend-mode: difference;
  will-change: transform;
}

.js-in-view.fadeIn {
  opacity: 0;
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.js-in-view.fadeIn.is-in-view {
  opacity: 1;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.scroll-area-wrapper {
  position: relative;
}
.scroll-area-wrapper .scroll-hint {
  position: absolute;
  top: -1.2em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #686868;
  font-size: 0.75rem;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .scroll-area-wrapper .scroll-hint {
    font-size: 0.875rem;
  }
}
.scroll-area-wrapper.show-hint .scroll-hint {
  opacity: 1;
}

.grecaptcha-badge {
  visibility: hidden;
}

.header {
  position: sticky;
  top: 0;
  height: 61px;
  background-color: #fff;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
  z-index: 20;
}
@media screen and (min-width: 1200px) {
  .header {
    height: 87px;
  }
}
.header[data-scrolled=true] {
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.header__logo {
  width: 154px;
}
@media screen and (min-width: 1200px) {
  .header__logo {
    width: 250px;
  }
}
.header__logo a {
  display: block;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header__nav {
    display: block;
    margin-left: auto;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 45px;
}

.header__nav-item {
  position: relative;
}
.header__nav-item.active > .header__nav-link {
  color: #ed4343;
}

.header__nav-link {
  display: block;
  padding-block: 28px;
  line-height: 1;
  position: relative;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__nav-link.current {
  color: #ed4343;
}

.header__nav-text {
  display: block;
}

.header__nav-dot {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background-color: #a5a5a5;
  border-radius: 50%;
}
.header__nav-dot::before, .header__nav-dot::after {
  content: "";
  position: absolute;
  top: 0;
  width: 4px;
  height: 4px;
  background-color: #a5a5a5;
  border-radius: 50%;
}
.header__nav-dot::before {
  left: -12px;
}
.header__nav-dot::after {
  left: 12px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 168px;
  background-color: #ed4343;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 39;
}

.dropdown-menu__list {
  padding: 26px 20px 27px 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.dropdown-menu__link {
  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;
  color: #fff;
}
.dropdown-menu__link::after {
  content: "\f0da";
  font: var(--fa-font-solid);
  font-size: 0.875rem;
}
@media (hover: hover) and (pointer: fine) {
  .dropdown-menu__link:hover .dropdown-menu__link-text::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}

.dropdown-menu__link-text {
  font-size: 0.75rem;
  line-height: 2;
  position: relative;
}
.dropdown-menu__link-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.header__nav-button {
  display: block;
  color: #fff;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: 24px;
  padding: 14px 24px;
  background-color: #ed4343;
  -webkit-transition: color 0.3s, border-color 0.3s, background-color 0.3s;
  transition: color 0.3s, border-color 0.3s, background-color 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .header__nav-button:hover {
    color: #ed4343;
    border-color: #ed4343;
    background-color: #fff;
  }
}

button.drawer-icon {
  margin-left: auto;
  width: 30px;
  height: 23px;
  position: relative;
  z-index: 40;
}
@media screen and (min-width: 1200px) {
  button.drawer-icon {
    display: none;
  }
}

.drawer-icon__bars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.drawer-icon__bar {
  position: absolute;
  width: 100%;
  height: 3px;
  right: 0;
  background-color: #ed4343;
  border-radius: 1px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 0;
  width: 20px;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 50%;
  -webkit-transform: scale(1) translateY(-50%);
          transform: scale(1) translateY(-50%);
}
.drawer-icon__bar:nth-of-type(3) {
  bottom: 0;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  -webkit-transform: scale(0) translateY(-50%);
          transform: scale(0) translateY(-50%);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-225deg);
          transform: translateY(50%) rotate(-225deg);
}

.drawer__content {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-clip-path: circle(0% at 50% 50%);
          clip-path: circle(0% at 50% 50%);
  -webkit-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.8s, -webkit-clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.8s, -webkit-clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.8s;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.8s, -webkit-clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: calc(100% - 61px);
  position: fixed;
  top: 61px;
  left: 0;
  background-color: #ed4343;
  padding: 40px 5.3333333333% 32px;
  z-index: 39;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.drawer__content.is-drawerActive {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  -webkit-clip-path: circle(150% at 50% 50%);
          clip-path: circle(150% at 50% 50%);
  -webkit-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s, -webkit-clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s, -webkit-clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s, -webkit-clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer__nav {
  max-width: 600px;
  margin-inline: auto;
}

.drawer__nav-item {
  border-bottom: 1px solid #f9cfd0;
}

button.drawer__nav-button,
a.drawer__nav-button {
  width: 100%;
  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;
  padding: 23px 3px 23px 40px;
}

.drawer__nav-button-text {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.1;
}

.drawer__nav-button-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
}
.drawer__nav-button-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 9px;
  height: 2px;
  background-color: #ed4343;
  border-radius: 5px;
}
.drawer__nav-button-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
  width: 9px;
  height: 2px;
  background-color: #ed4343;
  border-radius: 5px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.drawer__nav-item.is-open .drawer__nav-button-icon::after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.drawer-menu {
  display: none;
  padding: 7px 10px 29px 80px;
}

.drawer-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.drawer-menu__link {
  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;
  color: #fff;
}
.drawer-menu__link::after {
  content: "\f0da";
  font: var(--fa-font-solid);
}

.drawer-menu__link-text {
  font-weight: 500;
}

.drawer__nav-button-arrow {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 2px;
  margin: 5.7px 4px 5.7px 0;
  border-radius: 9999px;
  background-color: #fff;
}
.drawer__nav-button-arrow::before, .drawer__nav-button-arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  -webkit-transform-origin: calc(100% - 1px) 50%;
          transform-origin: calc(100% - 1px) 50%;
}
.drawer__nav-button-arrow::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer__nav-button-arrow::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer__button {
  margin-top: 50px;
  text-align: center;
}

.drawer__button-link {
  display: inline-block;
  padding: 25px 85px;
  background-color: #fff;
  border-radius: 35px;
  color: #ed4343;
  font-size: 1.25rem;
  line-height: 1;
}

.drawer__sns {
  margin-top: 50px;
}

.drawer__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 44px;
}

.drawer__sns-link img {
  display: block;
}

.mv__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .mv__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.mv__message {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .mv__message {
    width: 22.150882825%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
}

.mv__title {
  color: #03b5db;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.1354166666em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .mv__title {
    font-size: min(4.375rem, 5.46875vw);
    letter-spacing: 0.0952380953em;
  }
}
.mv__title .lower {
  display: inline-block;
  margin-inline: -0.15625em;
  font-weight: 600;
}
.mv__title .shorten {
  display: inline-block;
  margin-top: -0.15625em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .mv__title .shorten {
    letter-spacing: -0.5714285714em;
  }
}

.mv__image-wrap {
  width: 100%;
  margin-right: calc(50% - 50vw);
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .mv__image-wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 75.922953451%;
    margin-left: 6.7415730337%;
  }
}

.mv__image {
  display: block;
  aspect-ratio: 335/250;
  width: 100%;
  border-radius: 5px 0 0 5px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .mv__image {
    aspect-ratio: 946/660;
    max-height: 800px;
    border-radius: 10px 0 0 10px;
  }
}
.mv__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}

.mv__link {
  position: absolute;
  bottom: 0;
  right: max(5.3333333333%, 50% - 167.5px);
  width: 68px;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  background-color: #f8be2c;
  border-radius: 50%;
  font-size: 0.5rem;
}
@media screen and (min-width: 768px) {
  .mv__link {
    bottom: 7.1212121212%;
    right: 30px;
    width: 10.4134762634%;
    gap: 0.6em;
    font-size: min(0.9375rem, 1.5625vw);
  }
}

.mv__link-image {
  width: 33px;
}
@media screen and (min-width: 768px) {
  .mv__link-image {
    width: 41.9117647059%;
  }
}
.mv__link-image img {
  width: 100%;
  display: block;
}

.mv__link-text {
  color: #fff;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mv__link-text {
    line-height: 1.3333333333;
  }
}

.info {
  margin-top: 50px;
  padding-block: 50px;
}
@media screen and (min-width: 768px) {
  .info {
    margin-top: 60px;
    padding-block: 60px;
  }
}

.info__inner {
  max-width: calc(335px + 10.6666666667%);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .info__inner {
    max-width: 920px;
    width: 67.3499267936%;
  }
}

.info__link {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ed4343;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  padding: 17.5px 20px;
}
@media screen and (min-width: 768px) {
  .info__link {
    padding: 2.7906976744% 3.488372093%;
  }
}
.info__link.is-hover .info__link-arrow::before {
  -webkit-animation-name: transformLeftRight;
          animation-name: transformLeftRight;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.info__link.is-hover .info__link-arrow::after {
  -webkit-animation-name: transformRightLeft;
          animation-name: transformRightLeft;
}
@media (hover: hover) and (pointer: fine) {
  .info__link.is-hover:hover .info__link-arrow::before {
    -webkit-animation-name: transformRightLeft;
            animation-name: transformRightLeft;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .info__link.is-hover:hover .info__link-arrow::after {
    -webkit-animation-name: transformLeftRight;
            animation-name: transformLeftRight;
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
}

@-webkit-keyframes transformLeftRight {
  0% {
    -webkit-transform: translate(-260%, -50%);
            transform: translate(-260%, -50%);
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

@keyframes transformLeftRight {
  0% {
    -webkit-transform: translate(-260%, -50%);
            transform: translate(-260%, -50%);
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@-webkit-keyframes transformRightLeft {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    -webkit-transform: translate(160%, -50%);
            transform: translate(160%, -50%);
  }
}
@keyframes transformRightLeft {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    -webkit-transform: translate(160%, -50%);
            transform: translate(160%, -50%);
  }
}
.info__link-text {
  grid-column: 2;
  justify-self: center;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.02em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .info__link-text {
    font-size: 1.625rem;
  }
}
.info__link-text::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 26px;
  height: 21px;
  background-image: url(../img/communication-failure.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .info__link-text::before {
    left: calc(50% - 134px);
    width: 39px;
    height: 32px;
  }
}

.info__link-arrow {
  grid-column: 3;
  margin-left: auto;
  width: 25px;
  height: 25px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .info__link-arrow {
    width: 50px;
    height: 50px;
  }
}
.info__link-arrow::before, .info__link-arrow::after {
  content: "\f061";
  font: var(--fa-font-solid);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #ed4343;
  font-size: 0.875rem;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
}
@media screen and (min-width: 768px) {
  .info__link-arrow::before, .info__link-arrow::after {
    font-size: 1.125rem;
  }
}
.info__link-arrow::after {
  -webkit-transform: translate(-260%, -50%);
          transform: translate(-260%, -50%);
}

.top-internet {
  padding-block: 84px 67px;
}
@media screen and (min-width: 768px) {
  .top-internet {
    padding-block: 90px 93px;
  }
}

.top-internet__content {
  margin-top: 60px;
}

.top-internet__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .top-internet__list {
    max-width: 1100px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media screen and (min-width: 768px) {
  .top-internet__item--typeMany {
    grid-area: 1/1/2/3;
  }
}
@media screen and (min-width: 768px) {
  .top-internet__item--typeOnly {
    grid-area: 2/1/3/2;
  }
}
@media screen and (min-width: 768px) {
  .top-internet__item--typeWaiMax {
    grid-area: 2/2/3/3;
  }
}

.top-internet__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 120px;
  padding: 12px 3.5820895522%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
          box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
  transition: -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
  transition: box-shadow 0.3s, transform 0.3s;
  transition: box-shadow 0.3s, transform 0.3s, -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 768px) {
  .top-internet__item-link {
    display: block;
    padding: 63px 20px 47px;
    height: 100%;
  }
}
.top-internet__item--typeMany .top-internet__item-link {
  min-height: 160px;
  background-image: linear-gradient(108deg, rgba(3, 181, 219, 0.15) 0% 25%, transparent 25% 100%);
}
@media screen and (min-width: 768px) {
  .top-internet__item--typeMany .top-internet__item-link {
    background-image: linear-gradient(123deg, rgba(3, 181, 219, 0.15) 0% 25%, transparent 25% 100%);
  }
}
@media (hover: hover) and (pointer: fine) {
  .top-internet__item-link:hover {
    -webkit-box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}

.top-internet__item-title-wrap {
  width: 100%;
  max-width: 334px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .top-internet__item-title-wrap {
    max-width: none;
    margin-inline: 0;
  }
}
.top-internet__item--typeMany .top-internet__item-title-wrap::before, .top-internet__item--typeMany .top-internet__item-title-wrap::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-filter: opacity(0.9);
          filter: opacity(0.9);
  z-index: -1;
}
.top-internet__item--typeMany .top-internet__item-title-wrap::before {
  bottom: 100%;
  left: -6px;
  background-image: url(../img/earth.png);
  height: 45px;
  aspect-ratio: 57/45;
}
@media screen and (min-width: 768px) {
  .top-internet__item--typeMany .top-internet__item-title-wrap::before {
    bottom: auto;
    left: 2.7358490566%;
    top: 4.6153846154%;
    height: 83.0769230769%;
    aspect-ratio: 136/108;
  }
}
.top-internet__item--typeMany .top-internet__item-title-wrap::after {
  top: calc(100% - 10px);
  right: 0;
  background-image: url(../img/tvstand.png);
  height: 51px;
  aspect-ratio: 33/51;
}
@media screen and (min-width: 768px) {
  .top-internet__item--typeMany .top-internet__item-title-wrap::after {
    top: -10%;
    right: 4.6226415094%;
    height: 110.7692307692%;
    aspect-ratio: 93/144;
  }
}
.top-internet__item--typeOnly .top-internet__item-title-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 10px;
  background-image: url(../img/earth.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 49px;
  aspect-ratio: 62/49;
  -webkit-filter: opacity(0.9);
          filter: opacity(0.9);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .top-internet__item--typeOnly .top-internet__item-title-wrap::after {
    top: -35.3846153846%;
    right: -0.4%;
    height: 72.3076923077%;
    aspect-ratio: 119/94;
  }
}
.top-internet__item--typeWaiMax .top-internet__item-title-wrap {
  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;
}
@media screen and (min-width: 768px) {
  .top-internet__item--typeWaiMax .top-internet__item-title-wrap {
    display: block;
  }
}

.top-internet__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .top-internet__item-title {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.top-internet__item-title-en {
  color: #f8be2c;
  font-size: 2.625rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .top-internet__item-title-en {
    font-size: min(5rem, 8.3333333333vw);
    line-height: 1.425;
  }
}
.top-internet__item--typeMany .top-internet__item-title-en {
  font-size: min(2.625rem, 10.1333333333vw);
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .top-internet__item--typeMany .top-internet__item-title-en {
    font-size: min(5rem, 8.3333333333vw);
  }
}
.top-internet__item--typeWaiMax .top-internet__item-title-en {
  color: #0181d0;
}
.top-internet__item-title-en span {
  display: inline-block;
  margin-inline: 0.093em;
  color: #222;
}
@media screen and (min-width: 768px) {
  .top-internet__item-title-en span {
    margin-inline: 0.22em;
  }
}

.top-internet__item-title-ja {
  margin-left: 11px;
  font-size: 0.625rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .top-internet__item-title-ja {
    margin-left: 0;
    font-size: 1rem;
  }
}
.top-internet__item-title-ja span {
  display: inline-block;
  margin-inline: 0.28125em;
}

.top-internet__item-title-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
@media screen and (min-width: 768px) {
  .top-internet__item-title-logo {
    gap: 10px;
    position: absolute;
    top: calc(100% - 17px);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

.top-internet__item-title-by {
  color: #03b5db;
  font-size: 0.8125rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .top-internet__item-title-by {
    font-size: 1.125rem;
  }
}

.top-internet__item-title-image {
  width: 122px;
}
@media screen and (min-width: 768px) {
  .top-internet__item-title-image {
    width: 161px;
  }
}

.top-catv {
  padding-block: 67px;
}
@media screen and (min-width: 768px) {
  .top-catv {
    padding-block: 93px;
  }
}

.top-catv__content {
  margin-top: 60px;
}

@media screen and (min-width: 768px) {
  .top-catv__list {
    max-width: 1100px;
    margin-inline: auto;
  }
}

.top-catv__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 120px;
  min-height: 160px;
  padding: 12px 3.5820895522%;
  background-color: #fff;
  background-image: linear-gradient(108deg, rgba(248, 190, 44, 0.15) 0% 25%, transparent 25% 100%);
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
          box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
  transition: -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
  transition: box-shadow 0.3s, transform 0.3s;
  transition: box-shadow 0.3s, transform 0.3s, -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 768px) {
  .top-catv__item-link {
    display: block;
    padding: 63px 20px 47px;
    background-image: linear-gradient(123deg, rgba(248, 190, 44, 0.15) 0% 25%, transparent 25% 100%);
    height: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .top-catv__item-link:hover {
    -webkit-box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}

.top-catv__item-title-wrap {
  width: 100%;
  max-width: 334px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .top-catv__item-title-wrap {
    max-width: none;
    margin-inline: 0;
  }
}
.top-catv__item-title-wrap::before, .top-catv__item-title-wrap::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -1;
}
.top-catv__item-title-wrap::before {
  right: 80px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/no-antenna-required.png);
  height: 76px;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .top-catv__item-title-wrap::before {
    right: auto;
    left: 12.8301886792%;
    top: -9.2307692308%;
    -webkit-transform: none;
            transform: none;
    height: 120%;
  }
}
.top-catv__item-title-wrap::after {
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/tvstand.png);
  height: 88px;
  aspect-ratio: 57/88;
  -webkit-filter: opacity(0.9);
          filter: opacity(0.9);
}
@media screen and (min-width: 768px) {
  .top-catv__item-title-wrap::after {
    right: 6.6981132075%;
    top: -50.7692307692%;
    -webkit-transform: none;
            transform: none;
    height: 219.2307692308%;
    aspect-ratio: 183/285;
  }
}

.top-catv__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .top-catv__item-title {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.top-catv__item-title-en {
  color: #f8be2c;
  font-size: 2.625rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .top-catv__item-title-en {
    font-size: min(5rem, 8.3333333333vw);
    line-height: 1.425;
  }
}

.top-catv__item-title-ja {
  margin-left: 11px;
  font-size: 0.625rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .top-catv__item-title-ja {
    margin-left: 0;
    font-size: 1rem;
  }
}

.top-news {
  padding-block: 67px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-news {
    padding-block: 93px;
  }
}

.top-news__swiper-area {
  margin-top: 60px;
}

.top-news__swiper {
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .top-news__swiper {
    max-width: 1100px;
  }
}

.top-news .top-news__swiper-slide {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media (hover: hover) and (pointer: fine) {
  .top-news .top-news__swiper-slide:hover .top-news__slide {
    -webkit-transform: translateY(-16px);
            transform: translateY(-16px);
    -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.12);
            box-shadow: 0 0 18px rgba(0, 0, 0, 0.12);
  }
  .top-news .top-news__swiper-slide:hover .top-news__slide-media img {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.top-news__slide {
  overflow: hidden;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  width: 280px;
  -webkit-transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.top-news__slide-media {
  width: 100%;
  aspect-ratio: 280/200;
  overflow: hidden;
}
.top-news__slide-media img {
  width: 100%;
  height: calc(100% + 16px);
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translateY(-16px);
          transform: translateY(-16px);
  -webkit-transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.top-news__slide-content {
  padding: 20px 18px 20px;
}

.top-news__slide-info {
  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;
}

.top-news__slide-date {
  color: #818181;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
}

.top-news__slide-cat {
  border: 1px solid #03b5db;
  border-radius: 20px;
  padding: 4.5px 7.5px;
  color: #03b5db;
  font-size: 0.5625rem;
  line-height: 1;
}

.top-news__slide-title {
  margin-top: 29px;
  font-size: 1rem;
  line-height: 1.625;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 52px;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}

.top-news__slide-arrow {
  margin-top: 29px;
}

.top-news__slide-arrow-right {
  margin-left: auto;
  width: 30px;
  height: 30px;
  position: relative;
}
.top-news__slide-arrow-right::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: #f8be2c;
}
.top-news__slide-arrow-right::after {
  content: "\f061";
  font: var(--fa-font-solid);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 0.9375rem;
}

.top-news__swiper-controller {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 40px;
}

.top-news__swiper-button-prev,
.top-news__swiper-button-next {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  -webkit-transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}
@media screen and (min-width: 768px) {
  .top-news__swiper-button-prev,
  .top-news__swiper-button-next {
    width: 50px;
    height: 50px;
  }
}
.top-news__swiper-button-prev::before,
.top-news__swiper-button-next::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ed4343;
  border-radius: 50%;
}
.top-news__swiper-button-prev::after,
.top-news__swiper-button-next::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font: var(--fa-font-solid);
  color: #fff;
  font-size: 1.25rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .top-news__swiper-button-prev::after,
  .top-news__swiper-button-next::after {
    font-size: 1.625rem;
  }
}
.top-news__swiper-button-prev.swiper-button-disabled,
.top-news__swiper-button-next.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.top-news__swiper-button-prev::after {
  content: "\f053";
}

.top-news__swiper-button-next::after {
  content: "\f054";
}

.top-news__button {
  text-align: center;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .top-news__button {
    margin-top: 120px;
  }
}
.top-news__button a {
  display: inline-block;
  border-radius: 40px;
  background-color: #ed4343;
  border: 2px solid transparent;
  padding: 10.5px 13px 10.5px 20px;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}
@media screen and (min-width: 768px) {
  .top-news__button a {
    padding: 13px 18px 13px 27px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .top-news__button a:hover {
    background-color: #fff;
    border-color: #ed4343;
  }
  .top-news__button a:hover .top-news__button-text {
    color: #ed4343;
  }
}

.top-news__button-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.02em;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  .top-news__button-text {
    font-size: 1rem;
  }
}
.top-news__button-text::after {
  content: "・";
  font-size: 1.25rem;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .top-news__button-text::after {
    font-size: 1.875rem;
  }
}

.top-service {
  padding-block: 67px;
}
@media screen and (min-width: 768px) {
  .top-service {
    padding-block: 93px;
  }
}

.top-service__contents {
  margin-top: 60px;
  padding-block: 60px 75px;
  background-color: #03b5db;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .top-service__contents {
    padding-block: 90px 80px;
  }
}
.top-service__contents::after {
  content: "";
  position: absolute;
  top: 0;
  left: max(0px, 50% - 683px);
  height: 100%;
  aspect-ratio: 5/34;
  background-image: url(../img/service-background-logo.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-filter: opacity(0.2);
          filter: opacity(0.2);
  z-index: -1;
}

.top-service__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px 15px;
}
@media screen and (min-width: 768px) {
  .top-service__list {
    grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
    gap: clamp(32px, -3.265px + 4.592vw, 50px) clamp(18px, -1.592px + 2.551vw, 28px);
  }
}

.top-service__item {
  padding: 10px 6px 12px;
  padding: 6.25% 3.75% 7.5%;
  background-color: #fff;
  border-radius: 5px;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .top-service__item {
    padding: 20px 21px 37px;
    padding: 5.7471264368% 6.0344827586% 10.632183908%;
    border-radius: 10px;
  }
}

.top-service__item-image {
  border-radius: 5px;
  width: 100%;
  aspect-ratio: 37/20;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-service__item-image {
    border-radius: 10px;
    aspect-ratio: 51/35;
  }
}
.top-service__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-service__item-title {
  margin-top: 16px;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .top-service__item-title {
    margin-top: 41px;
    font-size: 1.375rem;
  }
}

.top-service__button {
  margin-top: 60px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-service__button {
    margin-top: 80px;
  }
}
.top-service__button a {
  display: inline-block;
  border: 2px solid #fff;
  padding: 10.5px 12.5px 10.5px 24.5px;
  border-radius: 30px;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}
@media screen and (min-width: 768px) {
  .top-service__button a {
    padding: 13px 17px 13px 31px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .top-service__button a:hover {
    background-color: #fff;
    border-color: transparent;
  }
  .top-service__button a:hover .top-service__button-text {
    color: #03b5db;
  }
}

.top-service__button-text {
  color: #fff;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.02em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  .top-service__button-text {
    font-size: 1rem;
  }
}
.top-service__button-text::after {
  content: "・";
  font-size: 1.25rem;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .top-service__button-text::after {
    font-size: 1.875rem;
  }
}

.top-contact {
  padding-block: 67px;
}
@media screen and (min-width: 768px) {
  .top-contact {
    padding-block: 93px 66px;
  }
}

.top-contact__content {
  margin-top: 60px;
}

.top-contact__items {
  overflow: hidden;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .top-contact__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.top-contact__text-area {
  background-color: #f8be2c;
  width: 100%;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
@media screen and (min-width: 768px) {
  .top-contact__text-area {
    width: 50%;
    padding: 20px;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    gap: 0;
  }
}

.top-contact__texts {
  max-width: 448px;
  margin-inline: auto;
}

.top-contact__text {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .top-contact__text {
    font-size: min(1.25rem, 1.953125vw);
    line-height: 1.8;
  }
}
.top-contact__text:last-child {
  color: #fff;
}
.top-contact__text + .top-contact__text {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .top-contact__text + .top-contact__text {
    margin-top: 1.4em;
  }
}

.top-contact__button {
  text-align: center;
}
.top-contact__button .button {
  background-color: #03b5db;
}
@media (hover: hover) and (pointer: fine) {
  .top-contact__button .button:hover {
    background-color: #fff;
    border-color: #03b5db;
  }
  .top-contact__button .button:hover > span {
    color: #03b5db;
  }
}

.top-contact__map {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-contact__map {
    width: 50%;
  }
}

.top-contact__iframe-wrap {
  width: 100%;
  aspect-ratio: 335/301;
}
@media screen and (min-width: 768px) {
  .top-contact__iframe-wrap {
    aspect-ratio: 623/560;
  }
}
.top-contact__iframe-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.external-link {
  padding-block: 67px 50px;
}
@media screen and (min-width: 768px) {
  .external-link {
    padding-block: 66px 59px;
  }
}

.external-link__content {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .external-link__content {
    margin-top: 56px;
    padding-block: 60px;
    background-color: #f8f8f8;
  }
}

@media screen and (min-width: 768px) {
  .external-link__content-inner {
    max-width: 1038px;
  }
}

.external-link__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  max-width: 549px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .external-link__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.9877300613%;
    max-width: none;
    margin-inline: 0;
  }
}

.external-link__item a {
  padding-block: 2.8358208955%;
  background-color: #f8f8f8;
  display: block;
}
@media screen and (min-width: 768px) {
  .external-link__item a {
    padding-block: 0;
    background-color: transparent;
  }
}
.external-link__item a img {
  display: block;
  aspect-ratio: 3/1;
  width: 54.6268656716%;
  margin-inline: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .external-link__item a img {
    width: 100%;
    margin-inline: 0;
  }
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.parallax-bg__image {
  position: sticky;
  top: 0;
  z-index: -1;
  background-image: url(../img/sp/parallax-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 130.4% auto;
  -webkit-filter: opacity(0.25);
          filter: opacity(0.25);
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}
@media screen and (min-width: 768px) {
  .parallax-bg__image {
    background-image: url(../img/fixed-image.png);
    background-position: 60% center;
    background-size: 134.6266471449% auto;
  }
}

.news {
  margin-top: 40px;
  padding-block: 40px 50px;
}
@media screen and (min-width: 768px) {
  .news {
    padding-block: 40px 59px;
  }
}

.news__cat-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .news__cat-list {
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
  }
}

.news__cat-item a {
  display: inline-block;
  border: 2px solid #03b5db;
  border-radius: 20px;
  background-color: #fff;
  padding: 6px 9px;
  color: #03b5db;
  font-size: 0.75rem;
  line-height: 1;
  min-width: 106px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (min-width: 768px) {
  .news__cat-item a {
    font-size: 0.875rem;
    min-width: 120px;
  }
}
.news__cat-item a.current {
  background-color: #03b5db;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .news__cat-item a:hover {
    background-color: #03b5db;
    color: #fff;
  }
}

.news__entries {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .news__entries {
    margin-top: 90px;
  }
}

.news__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 30px 15px;
}
@media screen and (min-width: 768px) {
  .news__list {
    grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
    gap: 60px 40px;
  }
}

.news__item {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
}

.news__card {
  height: 100%;
}

.news__card-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.news__card-link.is-hover .news__card-arrow::before {
  -webkit-animation-name: transformLeftRight;
          animation-name: transformLeftRight;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.news__card-link.is-hover .news__card-arrow::after {
  -webkit-animation-name: transformRightLeft;
          animation-name: transformRightLeft;
}
@media (hover: hover) and (pointer: fine) {
  .news__card-link.is-hover:hover .news__card-arrow::before {
    -webkit-animation-name: transformRightLeft;
            animation-name: transformRightLeft;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .news__card-link.is-hover:hover .news__card-arrow::after {
    -webkit-animation-name: transformLeftRight;
            animation-name: transformLeftRight;
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news__card-link:hover .news__card-thumbnail > img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .news__card-link:hover .news__card-title {
    color: #03b5db;
  }
}

.news__card-thumbnail {
  width: 100%;
  aspect-ratio: 80/57;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .news__card-thumbnail {
    aspect-ratio: 7/5;
  }
}
.news__card-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease-out;
  transition: -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}

.news__card-body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  padding: 12px;
  min-height: 114px;
}
@media screen and (min-width: 768px) {
  .news__card-body {
    gap: 16px;
    padding: 20px;
    min-height: 175px;
  }
}

.news__card-meta {
  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;
}

.news__card-meta-published {
  color: #818181;
  font-size: 0.5rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .news__card-meta-published {
    font-size: 0.875rem;
  }
}

.news__card-meta-cat {
  border: 1px solid currentColor;
  border-radius: 20px;
  padding: 2.5px 4px;
  color: #03b5db;
  font-size: 0.375rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .news__card-meta-cat {
    padding: 4.5px 7.5px;
    font-size: 0.5625rem;
  }
}

.news__card-title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 0.625rem;
  line-height: 1.7;
  -webkit-transition: color 0.4s ease-out;
  transition: color 0.4s ease-out;
}
@media screen and (min-width: 768px) {
  .news__card-title {
    font-size: 1rem;
    line-height: 1.625;
  }
}

.news__card-arrow {
  margin-left: auto;
  width: 19px;
  height: 19px;
  background-color: #f8be2c;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .news__card-arrow {
    width: 30px;
    height: 30px;
  }
}
.news__card-arrow::before, .news__card-arrow::after {
  content: "\f061";
  font: var(--fa-font-solid);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 0.625rem;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}
@media screen and (min-width: 768px) {
  .news__card-arrow::before, .news__card-arrow::after {
    font-size: 0.9375rem;
  }
}
.news__card-arrow::after {
  -webkit-transform: translate(-260%, -50%);
          transform: translate(-260%, -50%);
}

.wp-pagenavi {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi {
    margin-top: 100px;
    gap: 1.8181818182%;
  }
}
.wp-pagenavi span,
.wp-pagenavi a {
  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;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  color: #03b5db;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi span,
  .wp-pagenavi a {
    width: 50px;
    height: 50px;
    font-size: 1.875rem;
  }
}
.wp-pagenavi span.current {
  background-color: #03b5db;
  color: #fff;
}
.wp-pagenavi a {
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.wp-pagenavi a.nextpostslink, .wp-pagenavi a.previouspostslink {
  position: relative;
}
.wp-pagenavi a.nextpostslink::after, .wp-pagenavi a.previouspostslink::after {
  font: var(--fa-font-solid);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.wp-pagenavi a.nextpostslink::after {
  content: "\f054";
}
.wp-pagenavi a.previouspostslink::after {
  content: "\f053";
}
@media (hover: hover) and (pointer: fine) {
  .wp-pagenavi a:hover {
    background-color: #03b5db;
    color: #fff;
  }
}

.no-post {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .no-post {
    font-size: 1rem;
  }
}

.news-post {
  margin-top: 40px;
  padding-block: 40px 50px;
}
@media screen and (min-width: 768px) {
  .news-post {
    padding-block: 40px 59px;
  }
}

.news-post__entry {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .news-post__entry {
    margin: 120px auto 0;
    max-width: 720px;
  }
}

.news-post__published {
  display: block;
  color: #818181;
  font-size: 0.75rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .news-post__published {
    font-size: 0.875rem;
  }
}

.news-post__title {
  margin-top: 20px;
  font-size: 1.375rem;
  line-height: 1.3636363636;
}
@media screen and (min-width: 768px) {
  .news-post__title {
    margin-top: 40px;
    font-size: 1.75rem;
    line-height: 1.3571428571;
  }
}

.news-post__content {
  margin-top: 40px;
}
.news-post__content p {
  color: #3b4043;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7142857143;
}
@media screen and (min-width: 768px) {
  .news-post__content p {
    font-size: 1rem;
    line-height: 2.25;
  }
}
.news-post__content p + p {
  margin-top: 20px;
}
.news-post__content figure {
  margin-block: 40px;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .news-post__content figure {
    margin-block: 60px;
    border-radius: 10px;
  }
}
.news-post__content figure.wp-block-image {
  aspect-ratio: 335/223;
}
@media screen and (min-width: 768px) {
  .news-post__content figure.wp-block-image {
    aspect-ratio: 3/2;
  }
}
.news-post__content figure.wp-block-image.size-full {
  aspect-ratio: 335/419;
}
@media screen and (min-width: 768px) {
  .news-post__content figure.wp-block-image.size-full {
    aspect-ratio: 4/5;
  }
}
.news-post__content figure.wp-block-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-post__content a {
  color: #3b4043;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7142857143;
  text-decoration: underline;
  text-underline-offset: 3px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .news-post__content a {
    font-size: 1rem;
    line-height: 2.25;
  }
}

.news-post__pager {
  margin-top: 80px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news-post__pager {
    margin-top: 160px;
  }
}

.news-post__pager-link {
  display: inline-block;
  border: 2px solid transparent;
  border-radius: 40px;
  background-color: #03b5db;
  padding: 11px 43px;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .news-post__pager-link {
    padding: 20px 78px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news-post__pager-link:hover {
    border-color: #03b5db;
    background-color: #fff;
  }
  .news-post__pager-link:hover .news-post__pager-text {
    color: #03b5db;
  }
  .news-post__pager-link:hover .news-post__pager-text::after {
    left: -8px;
  }
}

.news-post__pager-text {
  display: block;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.02em;
  padding-left: 25px;
  position: relative;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  .news-post__pager-text {
    font-size: 1rem;
    padding-left: 40px;
  }
}
.news-post__pager-text::after {
  content: "\f060";
  font: var(--fa-font-solid);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.75rem;
  -webkit-transition: left 0.3s;
  transition: left 0.3s;
}
@media screen and (min-width: 768px) {
  .news-post__pager-text::after {
    font-size: 1.375rem;
  }
}

.privacy h2 {
  text-align: center;
  font-size: 1.375rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .privacy h2 {
    font-size: 1.75rem;
  }
}
.privacy h2 span {
  margin-top: 15px;
  display: block;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .privacy h2 span {
    margin-top: 18px;
    font-size: 1rem;
  }
}
.privacy h3 {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7142857143;
}
@media screen and (min-width: 768px) {
  .privacy h3 {
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }
}
.privacy h4 {
  margin-top: 30px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7142857143;
}
@media screen and (min-width: 768px) {
  .privacy h4 {
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }
}
.privacy p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7142857143;
}
@media screen and (min-width: 768px) {
  .privacy p {
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }
}
.privacy li {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7142857143;
}
@media screen and (min-width: 768px) {
  .privacy li {
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }
}

@media screen and (min-width: 768px) {
  .privacy__inner {
    max-width: 1030px;
  }
}

.privacy__policy {
  padding-block: 8px 60px;
}
@media screen and (min-width: 768px) {
  .privacy__policy {
    padding-block: 80px 60px;
  }
}

.privacy__policy-texts {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .privacy__policy-texts {
    margin-top: 80px;
  }
}

.privacy__policy-text + .privacy__policy-text {
  margin-top: 30px;
}

.privacy__publicNotice {
  padding-block: 60px;
}

.privacy__publicNotice-content {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .privacy__publicNotice-content {
    margin-top: 46px;
  }
}

.privacy__publicNotice-list {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.privacy__publicNotice-item ol > li {
  position: relative;
  padding-left: 1em;
}
.privacy__publicNotice-item ol > li span {
  position: absolute;
  left: 0;
  font-weight: 400;
}
.privacy__publicNotice-item ol > li ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.privacy__publicNotice-item ol > li ul li::before {
  content: "・";
}
.privacy__publicNotice-item ol + p {
  margin-top: 30px;
}
.privacy__publicNotice-item h4 + ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.privacy__publicNotice-item h4 + ul li::before {
  content: "▪";
}

.privacy__disclosure {
  padding-block: 60px 50px;
}
@media screen and (min-width: 768px) {
  .privacy__disclosure {
    padding-block: 60px 59px;
  }
}

.privacy__disclosure-content {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .privacy__disclosure-content {
    margin-top: 30px;
  }
}
.privacy__disclosure-content p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.privacy__disclosure-button {
  margin-top: 60px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .privacy__disclosure-button {
    margin-top: 80px;
  }
}
.privacy__disclosure-button a {
  display: inline-block;
  border: 2px solid transparent;
  border-radius: 40px;
  padding: 10.5px 19px 10.5px 32px;
  background-color: #646464;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .privacy__disclosure-button a {
    padding: 13px 24px 13px 40px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .privacy__disclosure-button a:hover {
    border-color: #646464;
    background-color: #fff;
  }
  .privacy__disclosure-button a:hover .privacy__disclosure-button-text {
    color: #646464;
  }
}

.privacy__disclosure-button-text {
  display: block;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.02em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  .privacy__disclosure-button-text {
    font-size: 1rem;
  }
}
.privacy__disclosure-button-text::after {
  content: "・";
  font-size: 1.5625rem;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .privacy__disclosure-button-text::after {
    font-size: 1.875rem;
  }
}

.internet {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .internet {
    margin-top: 41px;
  }
}

.internet__merit {
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .internet__merit {
    padding-bottom: 90px;
  }
}

@media screen and (min-width: 768px) {
  .merit__inner {
    max-width: 920px;
  }
}

.merit__image {
  text-align: center;
}
.merit__image img {
  width: 90px;
  -webkit-filter: opacity(0.5);
          filter: opacity(0.5);
}

.merit__title-wrapper {
  margin-top: 68px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .merit__title-wrapper {
    margin-top: 33px;
  }
}

.merit__title {
  display: inline-block;
  padding-inline: 0.275em;
  color: #03b5db;
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .merit__title {
    padding-inline: 19px;
    font-size: 4.625rem;
  }
}
.merit__title::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/internet-merit-title.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 143px;
  height: 16px;
}
@media screen and (min-width: 768px) {
  .merit__title::before {
    top: 20px;
    width: 258px;
    height: 30px;
  }
}
.merit__title::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 21px;
  background-color: #fff360;
  border-radius: 2px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .merit__title::after {
    bottom: 6px;
    height: 37px;
  }
}
.merit__title .large {
  display: inline-block;
  margin-right: 0.0808080808em;
  color: #f8be2c;
  font-size: 6.1875rem;
  line-height: 1;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .merit__title .large {
    margin-right: 7px;
    font-size: 11.25rem;
  }
}

.merit__items {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  counter-reset: number 0;
}
@media screen and (min-width: 768px) {
  .merit__items {
    margin-top: 74px;
    gap: 40px;
  }
}

.merit__item {
  padding-inline: 15px 23px;
  background-color: #03b5db;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .merit__item {
    padding-inline: 4.6511627907% 3.2558139535%;
    border-radius: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
    position: static;
  }
}
.merit__item::before {
  counter-increment: number 1;
  content: counter(number, decimal) ".";
  font-family: "brandon-grotesque", sans-serif;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 2.5rem;
  line-height: 1;
  width: 0.85em;
}
@media screen and (min-width: 768px) {
  .merit__item::before {
    font-size: 3.75rem;
    width: 50px;
  }
}
.merit__item::after {
  content: "\f0eb";
  font: var(--fa-font-solid);
  color: #fff360;
  font-size: 1.6875rem;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
@media screen and (min-width: 768px) {
  .merit__item::after {
    position: static;
    font-size: 2.5rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.merit__item-text {
  padding-block: 22px;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.5714285714;
}
@media screen and (min-width: 768px) {
  .merit__item-text {
    padding-block: 34px;
    width: 77.2727272727%;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }
}

.internet__plan {
  padding-block: 60px 62px;
}
@media screen and (min-width: 768px) {
  .internet__plan {
    padding-block: 90px;
  }
}

.internet__plan-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 134px;
}
@media screen and (min-width: 768px) {
  .internet__plan-items {
    gap: 160px;
  }
}

.internet__plan-item:nth-child(2) {
  background-color: #f8f8f8;
  padding-block: 54px 80px;
}
@media screen and (min-width: 768px) {
  .internet__plan-item:nth-child(2) {
    padding-block: 113px 120px;
  }
}
.internet__plan-item:nth-child(2) .section-title__en span {
  display: block;
  line-height: 0.6;
}
@media screen and (min-width: 768px) {
  .internet__plan-item:nth-child(2) .section-title__en span {
    line-height: 0.075;
  }
}

.tab {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .tab {
    margin-top: 78px;
  }
}

.tab__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.tab__label {
  line-height: 1;
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  border-right: 1px solid currentColor;
  padding: 15px 4px 16px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  text-align: center;
  cursor: pointer;
  width: 24.1044776119%;
  -webkit-transition: color 0.3s, background-color 0.3s, border-color 0.3s;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .tab__label {
    border-top-width: 2px;
    border-left-width: 2px;
    border-right-width: 2px;
    padding: 23px 18px 25px;
    font-size: 1.875rem;
    width: 23.6363636364%;
  }
}
.tab__label:not(:last-of-type) {
  margin-right: 1.1940298507%;
}
@media screen and (min-width: 768px) {
  .tab__label:not(:last-of-type) {
    margin-right: 1.8181818182%;
  }
}
.tab__label--typeFTTH {
  color: #03b5db;
}
.tab__label--typeFTTH + .tab__content .tab__content-dt,
.tab__label--typeFTTH + .tab__content .tab__content-dd {
  border-color: #03b5db;
}
.tab__label--typeHFC {
  color: #f8be2c;
}
.tab__label--typeHFC + .tab__content .tab__content-dt,
.tab__label--typeHFC + .tab__content .tab__content-dd {
  border-color: #f8be2c;
}
.tab__label--typeCollab {
  color: #1e2088;
  letter-spacing: normal;
}
.tab__label--typeCollab + .tab__content .tab__content-dt,
.tab__label--typeCollab + .tab__content .tab__content-dd {
  border-color: #1e2088;
}
.tab__label--typeWaiMax {
  color: #0181d0;
}
.tab__label--typeWaiMax + .tab__content .tab__content-dt,
.tab__label--typeWaiMax + .tab__content .tab__content-dd {
  border-color: #0181d0;
}

.tab__content {
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  display: none;
  background-color: #fff;
  padding: 60px 5.9701492537% 40px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .tab__content {
    margin-inline: 0;
    width: 100%;
    padding: 80px 6.3636363636%;
  }
}

/* アクティブなタブ */
.tab__switch:checked + .tab__label {
  color: #fff;
  border-color: transparent;
}
.tab__switch:checked + .tab__label--typeFTTH {
  background-color: #03b5db;
}
.tab__switch:checked + .tab__label--typeHFC {
  background-color: #f8be2c;
}
.tab__switch:checked + .tab__label--typeCollab {
  background-color: #1e2088;
}
.tab__switch:checked + .tab__label--typeWaiMax {
  background-color: #0181d0;
}
.tab__switch:checked + .tab__label + .tab__content {
  display: block;
}

.tab__content-dl-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 768px) {
  .tab__content-dl-wrap {
    overflow-x: visible;
  }
}

.tab__content-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 618px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .tab__content-dl {
    width: 100%;
    margin-inline: 0;
  }
}

.tab__content-dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #818181;
  border-top-width: 1px;
  border-top-style: solid;
  border-right-width: 1px;
  border-right-style: solid;
  padding-inline: 10px 9px;
  width: 15.6957928803%;
}
@media screen and (min-width: 768px) {
  .tab__content-dt {
    padding-inline: clamp(11px, -45.816px + 7.398vw, 40px) clamp(10px, -46.816px + 7.398vw, 39px);
    width: 16.875%;
  }
}
.tab__content-dt:last-of-type {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.tab__content-dd {
  border-top-width: 1px;
  border-top-style: solid;
  padding-inline: 20px;
  width: 84.3042071197%;
}
@media screen and (min-width: 768px) {
  .tab__content-dd {
    padding-inline: 4.1666666667% 2.2916666667%;
    width: 83.125%;
  }
}
.tab__content-dd:last-of-type {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.tab__content-dd.cost {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
.tab__content-dd.monthly-amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
.tab__content-dd.rules .rules__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 54px;
}
@media screen and (min-width: 768px) {
  .tab__content-dd.rules .rules__list {
    gap: 62px;
  }
}
.tab__content-dd.rules .rules__link {
  display: block;
  text-decoration: underline;
  text-underline-offset: 3px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.tab__content-dd.confirmation {
  line-height: 1.625;
}

.tab__content-dt,
.tab__content-dd {
  padding-block: 19px 20px;
  font-size: 0.875rem;
  line-height: 2.25;
}
@media screen and (min-width: 768px) {
  .tab__content-dt,
  .tab__content-dd {
    padding-block: 21px 22px;
    font-size: 1rem;
  }
}
.tab__content-dt:last-of-type,
.tab__content-dd:last-of-type {
  padding-block: 19px;
}
@media screen and (min-width: 768px) {
  .tab__content-dt:last-of-type,
  .tab__content-dd:last-of-type {
    padding-block: 21px;
  }
}

.classification__annotation {
  display: block;
  color: #818181;
  font-size: 0.75rem;
  line-height: 1.71428571;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 768px) {
  .classification__annotation {
    font-size: 0.875rem;
  }
}
.classification__annotation::before {
  content: "※";
}

.cost__join {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cost__join::after {
  content: "+";
  font: var(--fa-font-solid);
  margin-inline: 1em;
}
@media screen and (min-width: 768px) {
  .cost__join::after {
    margin-inline: clamp(10px, -17.429px + 3.571vw, 24px);
  }
}

.cost__join-price {
  font-size: 1.375rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .cost__join-price {
    font-size: min(1.875rem, 2.6041666667vw);
  }
}

.cost__join-price-yen {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .cost__join-price-yen {
    font-size: 1rem;
  }
}

.cost__construction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cost__construction::after {
  content: "\f101";
  font: var(--fa-font-solid);
  margin-inline: 1em;
}
@media screen and (min-width: 768px) {
  .cost__construction::after {
    margin-inline: clamp(10px, -17.429px + 3.571vw, 24px);
  }
}

.cost__construction-price {
  font-size: 1.375rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .cost__construction-price {
    font-size: min(1.875rem, 2.6041666667vw);
  }
}

.cost__construction-price-yen {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .cost__construction-price-yen {
    font-size: 1rem;
  }
}

.cost__total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cost__total-price {
  color: #ed4343;
  font-size: 1.375rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .cost__total-price {
    font-size: min(1.875rem, 2.6041666667vw);
  }
}

.cost__total-price-yen {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .cost__total-price-yen {
    font-size: 1rem;
  }
}

.monthly-amount__price {
  font-size: 1.625rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .monthly-amount__price {
    font-size: 1.875rem;
  }
}
.monthly-amount__price + .monthly-amount__price {
  margin-left: 40px;
}

.monthly-amount__yen {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .monthly-amount__yen {
    font-size: 1rem;
  }
}

.yearly-amount__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 4.0760869565%;
  white-space: nowrap;
}

.yearly-amount__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.yearly-amount__text::before {
  content: "※";
}

.yearly-amount__text-price {
  margin-left: 20px;
  padding-left: 32px;
  font-size: 1.625rem;
  line-height: 1.2;
  position: relative;
}
@media screen and (min-width: 768px) {
  .yearly-amount__text-price {
    margin-left: 16px;
    font-size: 1.875rem;
  }
}
.yearly-amount__text-price::before {
  content: "\f101";
  font: var(--fa-font-solid);
  font-size: 0.875rem;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .yearly-amount__text-price::before {
    font-size: 1rem;
  }
}

.yearly-amount__text-yen {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .yearly-amount__text-yen {
    font-size: 1rem;
  }
}

.yearly-amount__emphasis {
  padding: 5px 19px 5px 24px;
  line-height: 1;
  background-color: #ed4343;
  color: #fff;
  border-radius: 20px;
  font-size: 0.75rem;
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .yearly-amount__emphasis {
    font-size: 0.875rem;
  }
}

.yearly-amount__emphasis-price {
  margin-inline: 0.43333333em 0.23333333em;
  font-size: 1.625rem;
}
@media screen and (min-width: 768px) {
  .yearly-amount__emphasis-price {
    font-size: 1.875rem;
  }
}

.yearly-amount__emphasis-yen {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .yearly-amount__emphasis-yen {
    font-size: 1rem;
  }
}

.yearly-amount__emphasis-economical {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .yearly-amount__emphasis-economical {
    font-size: 1.375rem;
  }
}

.yearly-amount__annotation {
  margin-top: 18px;
  color: #ed4343;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 768px) {
  .yearly-amount__annotation {
    margin-top: 20px;
    font-size: 0.875rem;
    line-height: 1.5714285714;
  }
}
.yearly-amount__annotation::before {
  content: "※";
}
.area-search__annotation {
  display: block;
  color: #818181;
  font-size: 0.75rem;
  line-height: 1.85714286;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 768px) {
  .area-search__annotation {
    font-size: 0.875rem;
  }
}
.area-search__annotation::before {
  content: "※";
}

.tab__content-desc {
  margin-top: 20px;
  max-width: 618px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .tab__content-desc {
    margin-top: 30px;
    max-width: none;
    margin-inline: 0;
  }
}

.tab__content-desc-button {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .tab__content-desc-button {
    gap: 12px;
  }
}

.tab__content-desc-text {
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .tab__content-desc-text {
    font-size: 1rem;
  }
}

.tab__content-desc-q {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background-color: #818181;
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .tab__content-desc-q {
    width: 32px;
    height: 32px;
    font-size: 1.4375rem;
  }
}

.tab__content-detail {
  margin-top: 20px;
  text-align: right;
  max-width: 618px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .tab__content-detail {
    margin-top: 30px;
    max-width: none;
    margin-inline: 0;
  }
}

.tab__content-detail-button {
  display: inline-block;
  border: 2px solid transparent;
  padding: 7px 13px 7px 23px;
  border-radius: 22px;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .tab__content-detail-button {
    padding: 9px 22px 9px 32px;
  }
}
.tab__label--typeCollab + .tab__content .tab__content-detail-button {
  background-color: #1e2088;
}
@media (hover: hover) and (pointer: fine) {
  .tab__label--typeCollab + .tab__content .tab__content-detail-button:hover {
    border-color: #1e2088;
    background-color: #fff;
  }
  .tab__label--typeCollab + .tab__content .tab__content-detail-button:hover .tab__content-detail-text {
    color: #1e2088;
  }
}
.tab__label--typeWaiMax + .tab__content .tab__content-detail-button {
  background-color: #0181d0;
}
@media (hover: hover) and (pointer: fine) {
  .tab__label--typeWaiMax + .tab__content .tab__content-detail-button:hover {
    border-color: #0181d0;
    background-color: #fff;
  }
  .tab__label--typeWaiMax + .tab__content .tab__content-detail-button:hover .tab__content-detail-text {
    color: #0181d0;
  }
}

.tab__content-detail-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.02em;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  .tab__content-detail-text {
    font-size: 1rem;
  }
}
.tab__content-detail-text::after {
  content: "・";
  font-size: 1.125rem;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .tab__content-detail-text::after {
    font-size: 1.375rem;
  }
}

.tab__content-button {
  margin-top: 32px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .tab__content-button {
    margin-top: 18px;
  }
}

.internet__plan-item-options {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .internet__plan-item-options {
    margin-top: 78px;
  }
}

.options__box {
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  padding: 60px 5.9701492537%;
}
@media screen and (min-width: 768px) {
  .options__box {
    margin-inline: 0;
    width: 100%;
    padding: 80px 6.3636363636%;
  }
}

.options__box-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 618px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .options__box-dl {
    max-width: none;
    margin-inline: 0;
  }
}

.options__box-dt,
.options__box-dd {
  padding-block: 14px 15px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .options__box-dt,
  .options__box-dd {
    padding-block: 20px 21px;
    font-size: 1rem;
  }
}
.options__box-dt:last-of-type,
.options__box-dd:last-of-type {
  padding-block: 14px;
}
@media screen and (min-width: 768px) {
  .options__box-dt:last-of-type,
  .options__box-dd:last-of-type {
    padding-block: 20px;
  }
}

.options__box-dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #818181;
  border-right: 1px solid #818181;
  padding-inline: 10px 9px;
  color: #818181;
  width: 50%;
}
@media screen and (min-width: 768px) {
  .options__box-dt {
    padding-inline: 10px 12px;
  }
}
.options__box-dt:last-of-type {
  border-bottom: 1px solid #818181;
}

.options__box-dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  border-top: 1px solid #818181;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .options__box-dd {
    padding-inline: 30px;
  }
}
.options__box-dd:last-of-type {
  border-bottom: 1px solid #818181;
}
.options__box-dd .price {
  font-size: 1.625rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .options__box-dd .price {
    font-size: 1.875rem;
  }
}
.options__box-dd .price .yen {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .options__box-dd .price .yen {
    font-size: 1rem;
  }
}
.options__box-dd .annotation {
  font-size: 0.75rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .options__box-dd .annotation {
    font-size: 0.875rem;
  }
}

.options__box-annotations {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .options__box-annotations {
    margin-top: 60px;
  }
}

.options__box-annotations-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 24px;
  max-width: 618px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .options__box-annotations-inner {
    padding-inline: 20px;
    max-width: 880px;
  }
}

.options__box-annotation {
  padding-left: 1em;
  text-indent: -1em;
  color: #818181;
  font-size: 0.75rem;
  line-height: 1.8333333333;
}
@media screen and (min-width: 768px) {
  .options__box-annotation {
    font-size: 1rem;
    line-height: 1.875;
  }
}
.options__box-annotation::before {
  content: "※";
}

.options__box-button {
  margin-top: 60px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .options__box-button {
    margin-top: 80px;
  }
}

.internet__flow {
  padding-block: 62px;
}
@media screen and (min-width: 768px) {
  .internet__flow {
    padding-block: 90px;
  }
}

.flow__column {
  margin-top: 35px;
}
@media screen and (min-width: 768px) {
  .flow__column {
    margin-top: 78px;
  }
}

.flow__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 70px;
  counter-reset: number 0;
}
@media screen and (min-width: 768px) {
  .flow__dl {
    gap: 48px;
  }
}

.flow__item {
  position: relative;
}
.flow__item:not(:last-child)::after {
  content: "\f078";
  font: var(--fa-font-solid);
  position: absolute;
  top: calc(100% + 17.5px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #818181;
  font-size: 1.875rem;
}
@media screen and (min-width: 768px) {
  .flow__item:not(:last-child)::after {
    top: calc(100% + 9px);
  }
}

.flow__item-row {
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .flow__item-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.flow__item-dt {
  color: #fff;
  font-size: 1.25rem;
  background-color: #03b5db;
  padding: 15px 30px;
  white-space: nowrap;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .flow__item-dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15.3333333333%;
    width: 27.2727272727%;
    font-size: min(1.5rem, 2.34375vw);
    padding: 0 20px;
    position: static;
    text-align: start;
  }
}
.flow__item-dt::before {
  counter-increment: number 1;
  content: counter(number, decimal) "";
  position: absolute;
  left: max(30px, 50% - 137.5px);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "brandon-grotesque", sans-serif;
  font-size: 2.25rem;
}
@media screen and (min-width: 768px) {
  .flow__item-dt::before {
    position: static;
    left: auto;
    top: auto;
    -webkit-transform: none;
            transform: none;
    font-size: min(3.125rem, 5.2083333333vw);
    width: 0.6em;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.flow__item-dd {
  padding: 26px 30px;
  font-size: 0.875rem;
  line-height: 1.5714285714;
  font-weight: 500;
  background-color: #f8f8f8;
}
@media screen and (min-width: 768px) {
  .flow__item-dd {
    padding: 35px 2.1818181818% 35px 3.7272727273%;
    font-size: min(1.125rem, 2.0833333333vw);
    line-height: 1.6666666667;
    width: 72.7272727273%;
  }
}
.flow__item-dd .annotation {
  display: block;
  font-weight: 500;
  padding-left: 1em;
  text-indent: -1em;
}
.flow__item-dd .annotation::before {
  content: "※";
}

.internet__flow-button {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .internet__flow-button {
    margin-top: 80px;
  }
}

.internet__qa {
  padding-block: 62px 50px;
}
@media screen and (min-width: 768px) {
  .internet__qa {
    padding-block: 90px 59px;
  }
}

.internet__qa-boxes {
  margin-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .internet__qa-boxes {
    margin-top: 78px;
    gap: 60px;
  }
}

.qa-box {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #646464;
  background-color: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .qa-box {
    border-width: 2px;
  }
}
.qa-box.is-open {
  background-color: #646464;
}
@media (hover: hover) and (pointer: fine) {
  .qa-box:hover {
    background-color: #646464;
  }
  .qa-box:hover .qa-box__head-text {
    color: #fff;
  }
  .qa-box:hover .qa-box__head-icon::before, .qa-box:hover .qa-box__head-icon::after {
    background-color: #fff;
  }
}

button.qa-box__head {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  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;
  gap: 25px;
  width: 100%;
  padding: 28px 24px 28px 29px;
}
@media screen and (min-width: 768px) {
  button.qa-box__head {
    padding: 23px 5.2919708029%;
  }
}

.qa-box__head-text {
  color: #646464;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5714285714;
  text-align: left;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  .qa-box__head-text {
    font-size: 1.375rem;
    line-height: 1.3636363636;
  }
}
.qa-box.is-open .qa-box__head-text {
  color: #fff;
}

.qa-box__head-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: 14px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .qa-box__head-icon {
    width: 15px;
    height: 22px;
  }
}
.qa-box__head-icon::before, .qa-box__head-icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 3px;
  background-color: #646464;
}
.qa-box.is-open .qa-box__head-icon::before, .qa-box.is-open .qa-box__head-icon::after {
  background-color: #fff;
}
.qa-box__head-icon::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.qa-box__head-icon::after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, transform 0.3s;
  transition: background-color 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.qa-box.is-open .qa-box__head-icon::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.qa-box__body {
  display: none;
  padding-inline: 26.5px;
}
@media screen and (min-width: 768px) {
  .qa-box__body {
    padding-inline: 3.4671532847%;
  }
}

.qa-box__a {
  position: relative;
  padding: 31px 0 30px;
}
@media screen and (min-width: 768px) {
  .qa-box__a {
    padding: 31px 2.1078431373% 30px;
  }
}
.qa-box__a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.qa-box__a-text {
  display: block;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5714285714;
}
@media screen and (min-width: 768px) {
  .qa-box__a-text {
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }
}
.qa-box__a-text a {
  display: inline-block;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.desc-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  max-width: 89.3333333333%;
  max-height: calc(100% - 50px);
  width: 1100px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: none;
  padding: 64px 10px;
  border-radius: 20px;
  background-color: #fff;
  border: none;
  z-index: 50;
}
@media screen and (min-width: 768px) {
  .desc-modal {
    max-width: calc(100% - 60px);
    max-height: calc(100% - 70px);
    padding: 75px 20px;
  }
}
.desc-modal::-ms-backdrop {
  background-color: rgba(0, 0, 0, 0.4);
}
.desc-modal::backdrop {
  background-color: rgba(0, 0, 0, 0.4);
}

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

.desc-modal__close-button {
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .desc-modal__close-button {
    margin-top: 60px;
  }
}
.desc-modal__close-button button {
  display: inline-block;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 9999px;
  padding: 16px 24px;
  min-width: 148px;
  background-color: #ed4343;
  -webkit-transition: color 0.3s, border-color 0.3s, background-color 0.3s;
  transition: color 0.3s, border-color 0.3s, background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .desc-modal__close-button button {
    font-size: 1rem;
    padding: 20px 24px;
    min-width: 200px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .desc-modal__close-button button:hover {
    color: #ed4343;
    border-color: #ed4343;
    background-color: #fff;
  }
}

.catv {
  margin-top: 18px;
}

.catv__merit {
  padding-bottom: 67px;
}
@media screen and (min-width: 768px) {
  .catv__merit {
    padding-bottom: 90px;
  }
}
.catv__merit .merit__image img {
  width: 62px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (min-width: 768px) {
  .catv__merit .merit__image img {
    width: 78px;
  }
}
.catv__merit .merit__title-wrapper {
  margin-top: 55px;
}
@media screen and (min-width: 768px) {
  .catv__merit .merit__title-wrapper {
    margin-top: 2px;
  }
}
.catv__merit .merit__title {
  padding-inline: 18px;
}
@media screen and (min-width: 768px) {
  .catv__merit .merit__title {
    padding-inline: 29px;
  }
}
.catv__merit .merit__title .large {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .catv__merit .merit__title .large {
    margin-right: 17px;
  }
}
.catv__merit .merit__item {
  background-color: #f8be2c;
}
@media screen and (min-width: 768px) {
  .catv__merit .merit__item-text {
    width: 81.4393939394%;
  }
}

.catv__plan {
  padding-block: 67px 62px;
}
@media screen and (min-width: 768px) {
  .catv__plan {
    padding-block: 90px;
  }
}
.catv__plan .yearly-amount__row {
  gap: 10px 8.152173913%;
}

.catv__plan-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 134px;
}
@media screen and (min-width: 768px) {
  .catv__plan-items {
    gap: 160px;
  }
}

.catv__plan-item-ch {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .catv__plan-item-ch {
    margin-top: 78px;
  }
}

.ch__box {
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  background-color: #fff;
  padding: 60px 5.9701492537%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .ch__box {
    margin-inline: 0;
    width: 100%;
    padding: 80px 6.3636363636%;
  }
}

.ch__box-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 618px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .ch__box-dl {
    max-width: none;
    margin-inline: 0;
  }
}

.ch__box-dt,
.ch__box-dd {
  padding-block: 16px 17px;
  font-size: 0.875rem;
  line-height: 1.5714285714;
}
@media screen and (min-width: 768px) {
  .ch__box-dt,
  .ch__box-dd {
    padding-block: 26px 27px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
.ch__box-dt:last-of-type,
.ch__box-dd:last-of-type {
  padding-block: 16px;
}
@media screen and (min-width: 768px) {
  .ch__box-dt:last-of-type,
  .ch__box-dd:last-of-type {
    padding-block: 26px;
  }
}

.ch__box-dt {
  width: 85px;
  border-top: 1px solid #818181;
  border-right: 1px solid #818181;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #818181;
  padding-left: 10px;
}
@media screen and (min-width: 768px) {
  .ch__box-dt {
    width: 13.8541666667%;
    padding-left: 11px;
  }
}
.ch__box-dt:last-of-type {
  border-bottom: 1px solid #818181;
}

.ch__box-dd {
  width: calc(100% - 85px);
  border-top: 1px solid #818181;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .ch__box-dd {
    width: 86.1458333333%;
    padding-inline: 4.1666666667%;
  }
}
.ch__box-dd:last-of-type {
  border-bottom: 1px solid #818181;
}
.ch__box-dd .red {
  display: block;
  color: #ed4343;
}

.ch__box-dd-list {
  margin-top: 20px;
}

.ch__box-dd-item {
  color: #818181;
  padding-left: 1em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .ch__box-dd-item {
    line-height: 2.25;
  }
}
.ch__box-dd-item::before {
  content: "・";
  position: absolute;
  left: 0;
}

.ch__box-desc {
  margin-top: 90px;
}
@media screen and (min-width: 768px) {
  .ch__box-desc {
    margin-top: 60px;
  }
}

.ch__box-desc-inner {
  max-width: 618px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .ch__box-desc-inner {
    padding-inline: 20px;
    max-width: 870px;
  }
}

.ch__box-desc-box {
  padding: 36.5px;
  background-color: #f8f8f8;
  border-radius: 5px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .ch__box-desc-box {
    padding: 35px;
  }
}

.ch__box-desc-hukidashi {
  position: absolute;
  left: 0;
  top: -67px;
  width: 121px;
}
@media screen and (min-width: 768px) {
  .ch__box-desc-hukidashi {
    left: clamp(0px, -148.817px + 19.377vw, 56px);
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 19.3975903614%;
  }
}
.ch__box-desc-hukidashi::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 74px;
  aspect-ratio: 74/45;
  background-image: url(../img/point.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .ch__box-desc-hukidashi::after {
    width: 65.2173913043%;
    aspect-ratio: 105/64;
  }
}

.ch__box-desc-text {
  text-align: center;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .ch__box-desc-text {
    font-size: 1.25rem;
  }
}

.ch__box-button {
  margin-top: 66px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .ch__box-button {
    margin-top: 80px;
  }
}

.catv__flow {
  padding-block: 62px;
}
@media screen and (min-width: 768px) {
  .catv__flow {
    padding-block: 90px;
  }
}
.catv__flow .flow__item-dt {
  background-color: #f8be2c;
}

.catv__flow-button {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .catv__flow-button {
    margin-top: 80px;
  }
}

.catv__qa {
  padding-block: 62px 50px;
}
@media screen and (min-width: 768px) {
  .catv__qa {
    padding-block: 90px 59px;
  }
}

.catv__qa-boxes {
  margin-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .catv__qa-boxes {
    margin-top: 78px;
    gap: 60px;
  }
}

.service {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .service {
    margin-top: 80px;
  }
}

.service__list {
  padding-block: 50px;
  background-color: #f8f8f8;
}
@media screen and (min-width: 768px) {
  .service__list {
    padding-block: 80px 100px;
  }
}

.service__list-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .service__list-items {
    gap: 120px;
  }
}

.service__list-col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .service__list-col2 {
    gap: 80px;
  }
}

.service__list-col2-box {
  padding: 30px 6.7164179104%;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .service__list-col2-box {
    padding: 30px 3.6363636364% 30px 2.7272727273%;
  }
}

.service__list-col2-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 26px;
}
@media screen and (min-width: 768px) {
  .service__list-col2-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .service__list-col2-box:nth-of-type(even) .service__list-col2-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.service__list-col2-image {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 145/102;
}
@media screen and (min-width: 768px) {
  .service__list-col2-image {
    width: 43.6893203883%;
    aspect-ratio: 45/34;
  }
}
.service__list-col2-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service__list-col2-body {
  padding-inline: 3.4482758621%;
}
@media screen and (min-width: 768px) {
  .service__list-col2-body {
    padding-inline: 0;
    width: 52.427184466%;
  }
}

.service__list-col2-title {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1;
  position: relative;
}
@media screen and (min-width: 768px) {
  .service__list-col2-title {
    padding-bottom: 1.6em;
    text-align: start;
    font-size: min(1.875rem, 3.125vw);
  }
}
.service__list-col2-box:nth-of-type(1) .service__list-col2-title {
  color: #03b5db;
}
@media screen and (min-width: 768px) {
  .service__list-col2-box:nth-of-type(1) .service__list-col2-title {
    color: #000;
  }
}
.service__list-col2-box:nth-of-type(2) .service__list-col2-title {
  color: #f8be2c;
}
@media screen and (min-width: 768px) {
  .service__list-col2-box:nth-of-type(2) .service__list-col2-title {
    color: #000;
  }
}
@media screen and (min-width: 768px) {
  .service__list-col2-title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #222;
  }
}
.service__list-col2-box:nth-of-type(1) .service__list-col2-title::after {
  content: "";
  position: absolute;
  right: max(-22px, 50% - 157px);
  bottom: 0;
  width: 69px;
  aspect-ratio: 23/22;
  background-image: url(../img/service-internet-title.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .service__list-col2-box:nth-of-type(1) .service__list-col2-title::after {
    right: 4.6296296296%;
    bottom: 50%;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    width: 22.5925925926%;
    aspect-ratio: 122/117;
  }
}
.service__list-col2-box:nth-of-type(2) .service__list-col2-title::after {
  content: "";
  position: absolute;
  right: max(-22px, 50% - 157px);
  bottom: 0;
  width: 69px;
  aspect-ratio: 69/85;
  background-image: url(../img/tvstand.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .service__list-col2-box:nth-of-type(2) .service__list-col2-title::after {
    right: 5.5555555556%;
    bottom: 50%;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    width: 19.2592592593%;
    aspect-ratio: 104/132;
  }
}

.service__list-col2-text {
  margin-top: 25px;
  color: #3b4043;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
}
@media screen and (min-width: 768px) {
  .service__list-col2-text {
    margin-top: 2.5555555556em;
    font-size: min(1.125rem, 2.0833333333vw);
    line-height: 2;
  }
}

.service__list-row3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  padding-inline: 6.7164179104%;
}
@media screen and (min-width: 768px) {
  .service__list-row3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(292px, 1fr));
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 80px 4.4545454545%;
    padding-inline: 0;
  }
}

.service__list-row3-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.service__list-row3-col:not(:last-of-type) {
  padding-bottom: 30px;
  border-bottom: 1px solid #c6c6c6;
}
@media screen and (min-width: 768px) {
  .service__list-row3-col:not(:last-of-type) {
    padding-bottom: 0;
    border-bottom: none;
  }
}

.service__list-row3-image {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 145/102;
}
@media screen and (min-width: 768px) {
  .service__list-row3-image {
    aspect-ratio: 334/256;
  }
}
.service__list-row3-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service__list-row3-body {
  padding-inline: 3.4482758621%;
}
@media screen and (min-width: 768px) {
  .service__list-row3-body {
    padding-inline: 0;
  }
}

.service__list-row3-title {
  color: #ed4343;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .service__list-row3-title {
    color: #222;
    font-size: 1.625rem;
  }
}

.service__list-row3-text {
  margin-top: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
}
@media screen and (min-width: 768px) {
  .service__list-row3-text {
    margin-top: 26px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }
}

.service__support {
  margin-top: 120px;
  padding-block: 0 50px;
}
@media screen and (min-width: 768px) {
  .service__support {
    margin-top: 85px;
    padding-block: 100px 59px;
  }
}

@media screen and (min-width: 768px) {
  .service__support-contents {
    margin-top: 64px;
  }
}

.service__support-box {
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  padding: 64px 5.9701492537% 60px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  position: relative;
}
@media screen and (min-width: 768px) {
  .service__support-box {
    margin-inline: 0;
    width: 100%;
    padding: 78px 5.9090909091% 80px;
  }
}
.service__support-box::before {
  content: "";
  position: absolute;
  top: 156px;
  right: calc(50% - 54.5px);
  background-image: url(../img/salesman_online_simple.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 90px;
  aspect-ratio: 15/17;
}
@media screen and (min-width: 768px) {
  .service__support-box::before {
    top: -26px;
    right: clamp(0px, -117.551px + 15.306vw, 60px);
    width: 17.1818181818%;
    aspect-ratio: 63/71;
  }
}

.service__support-list {
  margin-top: 162px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 120px;
}
@media screen and (min-width: 768px) {
  .service__support-list {
    margin-top: 0;
  }
}

.service__support-content-wrapper {
  margin-top: 34px;
}
@media screen and (min-width: 768px) {
  .service__support-content-wrapper {
    margin-top: 78px;
  }
}

.service__support-content {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.service__support-table {
  width: 714px;
  margin-inline: auto;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 3px;
}
@media screen and (min-width: 768px) {
  .service__support-table {
    width: 970px;
    border-spacing: 4px;
  }
}
.service__support-table thead th {
  background-color: #03b5db;
  height: 50px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .service__support-table thead th {
    height: 80px;
  }
}
.service__support-table tbody th,
.service__support-table tbody td {
  background-color: #f8f8f8;
}
.service__support-table th,
.service__support-table td {
  padding: 4px 12px;
  font-size: 0.875rem;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .service__support-table th,
  .service__support-table td {
    padding: 16px 17px;
    font-size: 1rem;
  }
}
.service__support-table td .thin {
  display: inline-block;
  font-weight: 500;
}
.service__support-table td .large {
  display: block;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .service__support-table td .large {
    font-size: 1.25rem;
  }
}
.service__support-table td .price {
  display: inline-block;
  margin-right: 0.23076923em;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .service__support-table td .price {
    font-size: 1.625rem;
  }
}
.service__support-table td .price .yen {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .service__support-table td .price .yen {
    font-size: 1rem;
  }
}
.service__support-table.setup-table td {
  height: 122px;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .service__support-table.setup-table td {
    height: 180px;
  }
}
.service__support-table.setup-table td:nth-child(3) {
  color: #818181;
}
.service__support-table.setup-table td .price {
  margin-left: 0.23076923em;
}
.service__support-table.trip-table tbody tr:nth-child(2) th {
  color: #03b5db;
}
.service__support-table.trip-table tbody tr:nth-child(2) th .small-thin {
  margin-top: 0;
}
.service__support-table.trip-table tbody tr:nth-child(n+4) td:nth-child(3) {
  color: #818181;
}
.service__support-table.trip-table tbody th,
.service__support-table.trip-table tbody td {
  height: 76px;
  padding: 12px 11px;
}
@media screen and (min-width: 768px) {
  .service__support-table.trip-table tbody th,
  .service__support-table.trip-table tbody td {
    height: 143px;
    padding: 19px 17px;
  }
}
.service__support-table.trip-table tbody th {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .service__support-table.trip-table tbody th {
    font-size: 1.25rem;
  }
}
.service__support-table.trip-table tbody th .small-thin {
  display: block;
  margin-top: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .service__support-table.trip-table tbody th .small-thin {
    margin-top: 16px;
    font-size: 1rem;
  }
}

.service__support-notes {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .service__support-notes {
    margin-top: 80px;
  }
}

.service__support-notes-inner {
  padding-inline: 9.1044776119%;
}
@media screen and (min-width: 768px) {
  .service__support-notes-inner {
    padding-inline: 20px;
    max-width: 869px;
    margin-inline: auto;
  }
}

.service__support-note {
  color: #818181;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 768px) {
  .service__support-note {
    font-size: 1rem;
    line-height: 1.875;
  }
}
.service__support-note::before {
  content: "※";
}

.service__support-button {
  margin-top: 60px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service__support-button {
    margin-top: 80px;
  }
}

.company {
  margin-top: 40px;
  padding-block: 40px 59px;
}
@media screen and (min-width: 768px) {
  .company__head-inner {
    max-width: 1306px;
  }
}

.company__head-images {
  position: relative;
  padding-bottom: 17.9104477612%;
}
@media screen and (min-width: 768px) {
  .company__head-images {
    padding-bottom: 11.316211878%;
  }
}
.company__head-images::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 335/49;
  background-image: url(../img/company-logo.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-filter: opacity(0.2);
          filter: opacity(0.2);
}
@media screen and (min-width: 768px) {
  .company__head-images::after {
    aspect-ratio: 1246/183;
  }
}

.company__head-image {
  display: block;
  margin-inline: calc(50% - 50vw);
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .company__head-image {
    border-radius: 10px;
    overflow: hidden;
    max-width: 1100px;
    width: 100%;
    margin-inline: auto;
  }
}

.company__overview {
  padding-block: 74px 67px;
}
@media screen and (min-width: 768px) {
  .company__overview {
    padding-block: 80px;
  }
}

.company__overview-content {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .company__overview-content {
    margin-top: 78px;
  }
}

.company__overview-box {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  padding: 60px 5.9701492537%;
  margin-inline: calc(50% - 50vw);
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .company__overview-box {
    padding: 80px 6.3636363636%;
    margin-inline: 0;
    width: 100%;
  }
}

.company__overview-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.company__overview-dt {
  border-top: 1px solid #818181;
  border-right: 1px solid #818181;
  padding: 16px 0 17px 10px;
  color: #818181;
  font-size: 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 28.6567164179%;
}
@media screen and (min-width: 768px) {
  .company__overview-dt {
    padding: 27px 0 28px 11px;
    font-size: 1rem;
    width: 16.6666666667%;
  }
}
.company__overview-dt:last-of-type {
  border-bottom: 1px solid #818181;
  padding-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .company__overview-dt:last-of-type {
    padding-bottom: 27px;
  }
}

.company__overview-dd {
  border-top: 1px solid #818181;
  padding: 16px 9px 17px 20px;
  font-size: 0.875rem;
  line-height: 1.5714285714;
  width: 71.3432835821%;
}
@media screen and (min-width: 768px) {
  .company__overview-dd {
    padding: 27px 6.25% 28px;
    font-size: 1rem;
    line-height: 1.5;
    width: 83.3333333333%;
  }
}
.company__overview-dd:last-of-type {
  border-bottom: 1px solid #818181;
  padding-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .company__overview-dd:last-of-type {
    padding-bottom: 27px;
  }
}

.company__recruit {
  padding-block: 67px 120px;
}
@media screen and (min-width: 768px) {
  .company__recruit {
    padding-block: 80px 180px;
  }
}

@media screen and (min-width: 768px) {
  .company__recruit-inner {
    max-width: 1306px;
  }
}

.company__recruit-rocketWoman {
  margin-top: 30px;
  text-align: center;
}
.company__recruit-rocketWoman img {
  width: 130px;
}

.company__recruit-content {
  margin-top: 29px;
}
@media screen and (min-width: 768px) {
  .company__recruit-content {
    margin-top: 78px;
  }
}

.company__recruit-title {
  text-align: center;
  color: #03b5db;
  font-size: 1.625rem;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .company__recruit-title {
    font-size: min(3.75rem, 6.7708333333vw);
  }
}

.company__recruit-desc {
  margin-top: 40px;
}

.company__recruit-desc-box {
  background-color: #03b5db;
  border-radius: 10px;
  padding: 33px 8.5074626866%;
}
@media screen and (min-width: 768px) {
  .company__recruit-desc-box {
    border-radius: 20px;
    max-width: 860px;
    margin-inline: auto;
    padding: 36.5px 9.9518459069%;
  }
}

.company__recruit-desc-text {
  color: #fff;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .company__recruit-desc-text {
    font-size: min(1.125rem, 2.0833333333vw);
    line-height: 1.6666666667;
  }
}
@media screen and (min-width: 1200px) {
  .company__recruit-desc-text {
    position: relative;
  }
}
@media screen and (min-width: 1200px) {
  .company__recruit-desc-text::after {
    content: "";
    position: absolute;
    left: -264px;
    top: -77px;
    width: 250px;
    aspect-ratio: 250/251;
    background: url(../img/rocket_suit_woman_color.png) no-repeat center center/cover;
  }
}

.company__recruit-list {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
}
@media screen and (min-width: 768px) {
  .company__recruit-list {
    margin-top: 120px;
    gap: 0;
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .company__recruit-list::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-image: url(../img/company-recruit-text.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 69.0208667737%;
    aspect-ratio: 215/19;
  }
}

@media screen and (min-width: 768px) {
  .company__recruit-item.column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 2.6484751204%;
    position: relative;
  }
  .company__recruit-item.column:first-child {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .company__recruit-item.column:first-child::after {
    content: "";
    position: absolute;
    top: 15.5384615385%;
    right: 8.1059390048%;
    background-image: url(../img/videoediter.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 19.5024077047%;
    aspect-ratio: 27/20;
    -webkit-filter: opacity(0.8);
            filter: opacity(0.8);
    z-index: -1;
  }
  .company__recruit-item.column:last-child::after {
    content: "";
    position: absolute;
    bottom: 97.0769230769%;
    right: 3.2102728732%;
    background-image: url(../img/cameraman.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 14.6869983949%;
    aspect-ratio: 61/77;
    -webkit-filter: opacity(0.8);
            filter: opacity(0.8);
    z-index: -1;
  }
  .company__recruit-item.column .company__recruit-item-image {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 440px;
            flex: 0 1 440px;
    border-radius: 5px;
    overflow: hidden;
  }
}
.company__recruit-item.row {
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .company__recruit-item.row {
    display: none;
  }
}
.company__recruit-item.row .company__recruit-item-image {
  width: 50%;
  position: relative;
}
.company__recruit-item.row .company__recruit-item-image:nth-of-type(1) {
  margin-top: 49px;
}
.company__recruit-item.row .company__recruit-item-image:nth-of-type(1)::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -90.9333333333%;
  background-image: url(../img/sp/company-recruit-text02.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 274px;
  height: 68px;
}
.company__recruit-item.row .company__recruit-item-image:nth-of-type(2)::after {
  content: "";
  position: absolute;
  top: -50px;
  left: -96.8%;
  background-image: url(../img/sp/company-recruit-text01.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 245px;
  height: 68px;
}

.company__recruit-item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .company__recruit-item-body {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 60px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 700px;
            flex: 0 1 700px;
  }
}

.company__recruit-item-title {
  color: #03b5db;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0 6.5px 5px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .company__recruit-item-title {
    font-size: min(2.25rem, 3.6458333333vw);
    padding: 0 5px 5px;
  }
}
.company__recruit-item-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 14px;
  background-color: #fff360;
  border-radius: 2px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .company__recruit-item-title::after {
    height: 0.5555555556em;
  }
}

.company__recruit-item:first-child .company__recruit-item-character {
  width: 130px;
}
.company__recruit-item:last-child .company__recruit-item-character {
  width: 110px;
}
.company__recruit-item-character img {
  -webkit-filter: opacity(0.8);
          filter: opacity(0.8);
}

.company__recruit-item-text {
  font-size: 0.875rem;
  line-height: 1.7142857143;
}
@media screen and (min-width: 768px) {
  .company__recruit-item-text {
    font-size: min(1.625rem, 2.0833333333vw);
    line-height: 1.7692307692;
  }
}

.company__initiative {
  padding-block: 64px 60px;
  background-color: #f8f8f8;
}
@media screen and (min-width: 768px) {
  .company__initiative {
    padding-block: 60px 80px;
  }
}

.company__initiative-images {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .company__initiative-images {
    margin-top: 78px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5.6818181818%;
  }
}

.company__initiative-image {
  background-color: #fff;
  border-radius: 10px;
  width: 72.8358208955%;
  max-width: 325px;
  aspect-ratio: 244/338;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .company__initiative-image {
    width: 100%;
    max-width: none;
    aspect-ratio: 325/448;
  }
}
.company__initiative-image:nth-child(1) img {
  width: 91.8032786885%;
}
@media screen and (min-width: 768px) {
  .company__initiative-image:nth-child(1) img {
    width: 92%;
  }
}
.company__initiative-image:nth-child(2) img {
  width: 74.5901639344%;
}
@media screen and (min-width: 768px) {
  .company__initiative-image:nth-child(2) img {
    width: 74.1538461538%;
  }
}
.company__initiative-image:nth-child(3) img {
  width: 63.5245901639%;
}
@media screen and (min-width: 768px) {
  .company__initiative-image:nth-child(3) img {
    width: 63.0769230769%;
  }
}

.contact {
  padding-block: 2px 50px;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-block: 80px 59px;
  }
}

@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 880px;
  }
}

.contact__title {
  text-align: center;
  font-size: 1.375rem;
  line-height: 1.3636363636;
  max-width: 242px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .contact__title {
    font-size: 1.75rem;
    line-height: 1;
    max-width: none;
    margin-inline: 0;
  }
}

.contact__text {
  margin-top: 60px;
  color: #3b4043;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7142857143;
}
@media screen and (min-width: 768px) {
  .contact__text {
    font-size: 1.125rem;
    line-height: 1.8888888889;
  }
}

.contact__form {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .contact__form {
    margin-top: 120px;
  }
}

.contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .contact__fields {
    gap: 60px;
  }
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .form-field__head {
    gap: 20px;
  }
}

.form-field__label {
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .form-field__label {
    font-size: 1.125rem;
  }
}

.form-field__tag {
  padding: 2px 6.5px;
  border-radius: 2px;
  background-color: #f8be2c;
  color: #fff;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .form-field__tag {
    padding: 3px 4.5px;
    font-size: 0.875rem;
  }
}

.form-field__item {
  margin-top: 20px;
}
.form-field__item .form-text {
  background-color: #f8f8f8;
  border: none;
  border-radius: 8px;
  padding: 13px 18px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  display: block;
}
@media screen and (min-width: 768px) {
  .form-field__item .form-text {
    padding: 18px 25px;
  }
}
.form-field__item .form-text:focus {
  border: none;
}
.form-field__item .form-text:focus-visible {
  outline: auto;
  outline: auto -webkit-focus-ring-color;
}
.form-field__item .form-select {
  background-color: #f8f8f8;
  background-position: center right 20px;
  background-size: 14px 16px;
  border: none;
  border-radius: 8px;
  padding: 13px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  display: block;
}
@media screen and (min-width: 768px) {
  .form-field__item .form-select {
    background-position: center right 40px;
    background-size: 16px 18px;
    padding: 18px 25px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
.form-field__item .form-select:focus {
  border: none;
}
.form-field__item .form-select:focus-visible {
  outline: auto;
  outline: auto -webkit-focus-ring-color;
}
.form-field__item input[type=radio][name=your-connection-method] + span {
  margin: 0;
  padding-left: 30px;
}
@media screen and (min-width: 768px) {
  .form-field__item input[type=radio][name=your-connection-method] + span {
    padding-left: 36px;
  }
}
.form-field__item input[type=radio][name=your-connection-method] + span::before {
  border: 1px solid #707070;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .form-field__item input[type=radio][name=your-connection-method] + span::before {
    height: 26px;
    width: 26px;
  }
}
.form-field__item input[type=radio][name=your-connection-method] + span::after {
  background-color: #f04f5a;
  border: none;
  padding: 0;
  left: 3px;
  width: 14px;
  height: 14px;
}
@media screen and (min-width: 768px) {
  .form-field__item input[type=radio][name=your-connection-method] + span::after {
    left: 4px;
    width: 18px;
    height: 18px;
  }
}
.form-field__item input[type=radio][name=your-connection-method]:focus-visible + span::before {
  outline: auto;
  outline: auto -webkit-focus-ring-color;
}
.form-field__item .form-textarea {
  background-color: #f8f8f8;
  border: none;
  border-radius: 8px;
  height: 160px;
  padding: 13px 18px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  display: block;
}
@media screen and (min-width: 768px) {
  .form-field__item .form-textarea {
    height: 260px;
    padding: 18px 25px;
  }
}
.form-field__item .form-textarea:focus {
  border: none;
}
.form-field__item .form-textarea:focus-visible {
  outline: auto;
  outline: auto -webkit-focus-ring-color;
}

.form-field__radios .wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(50px, 13.7313432836%);
}
@media screen and (min-width: 768px) {
  .form-field__radios .wpcf7-form-control {
    gap: 48px;
  }
}
.form-field__radios .wpcf7-list-item {
  display: block;
  margin: 0;
}
.form-field__radios label {
  font-size: 0.875rem;
  line-height: 20px;
  display: block;
}
@media screen and (min-width: 768px) {
  .form-field__radios label {
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
}

.contact__button {
  margin-top: 80px;
}
.contact__button .contact__button-submit {
  background-color: #ed4343;
  border: 2px solid transparent;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.02em;
  width: 100%;
  max-width: 180px;
  height: 50px;
  -webkit-transition: border-color 0.3s, background-color 0.3s, color 0.3s;
  transition: border-color 0.3s, background-color 0.3s, color 0.3s;
}
@media screen and (min-width: 768px) {
  .contact__button .contact__button-submit {
    font-size: 1rem;
    max-width: 210px;
    height: 60px;
  }
}
.contact__button .contact__button-submit:focus-visible {
  outline: auto;
  outline: auto -webkit-focus-ring-color;
}
@media (hover: hover) and (pointer: fine) {
  .contact__button .contact__button-submit:hover {
    border-color: #ed4343;
    background-color: #fff;
    color: #ed4343;
  }
}

.footer__top {
  padding-block: 50px;
}
@media screen and (min-width: 768px) {
  .footer__top {
    padding-block: 200px 81px;
  }
}

.footer__top-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .footer__top-inner {
    position: relative;
  }
  .footer__top-inner::before {
    content: "";
    position: absolute;
    top: max(-138px, -11.8965517241vw);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-image: url(../img/footer-logo1.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: calc(100% - 60px);
    aspect-ratio: 550/81;
    -webkit-filter: opacity(0.2);
            filter: opacity(0.2);
  }
}

.footer__top-logo {
  width: 234px;
}
@media screen and (min-width: 768px) {
  .footer__top-logo {
    width: 360px;
  }
}

.footer__top-sns {
  margin-top: 96px;
}

.footer__top-sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}

.footer__top-sns-link img {
  display: block;
}

.footer__top-privacy {
  margin-top: 36px;
}

.footer__top-privacy-link {
  display: block;
  color: #03b5db;
  font-size: 0.875rem;
}

.footer__copies {
  height: 60px;
  background-color: #03b5db;
}
@media screen and (min-width: 768px) {
  .footer__copies {
    height: 80px;
  }
}

.footer__copies-inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer__copies-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
  }
}

.footer__copies-sns {
  grid-column: 2;
  justify-self: center;
}

.footer__copies-sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 26px;
}

@media (hover: hover) and (pointer: fine) {
  .footer__copies-sns-link:hover > img {
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
  }
}
.footer__copies-sns-link img {
  display: block;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

@media screen and (min-width: 768px) {
  .footer__copies-text-area {
    grid-column: 3;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 6px;
  }
}

.footer__copyright {
  display: block;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 0.875rem;
    line-height: 1.3571428571;
  }
}

.footer__copies-privacy-link {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .footer__copies-privacy-link:hover {
    opacity: 0.7;
  }
}