@charset "UTF-8";

.annotation {
  font-size: 12px;
  text-align: left;
}

h1 {
  color: var(--black);
  font-size: 32px;
  text-align: center;
  padding: 96px 32px 64px;
}

@media (max-width: 767px) {
  h1 {
    font-size: 24px;
    padding: 48px 24px 24px;
  }
}

/* カテゴリーボタン
-------------------------------------*/
.tab_wrapper {
  display: flex;
  justify-content: center;
  max-width: 1086px;
  width: 100%;
  margin: 40px auto 0;
  gap: 32px;
  padding: 0 32px;
}

.tab_wrapper input[name=tab_radio] {
  display: none;
}

.tab_wrapper .tab {
  flex: 1;
}

.tab_wrapper h2.tab_label_heading {
  width: 100%;
  height: 100%;
}

.tab_wrapper .tab_label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 4px 16px;
  height: inherit;
  transition: 0.3s;
  line-height: 1.3;
  font-size: 16px;
  text-align: center;
  border-radius: 4px 4px 0px 0px;
  border-top: 5px solid #E5E5E5;
  border-right: 1px solid #E5E5E5;
  border-left: 1px solid #E5E5E5;
  background: var(--white);
  cursor: pointer;
  box-sizing: border-box;
  color: rgba(51, 51, 51, 0.5019607843);
}

.selected .tab_label {
  border: none;
  border-top: 5px solid var(--primary);
  color: var(--primary);
  background: var(--background-blue);
  transition: 0.3s;
}

@media (hover: hover) {
  .tab_wrapper .tab_label:hover {
    opacity: 0.7;
  }
}

@media (max-width: 767px) {
  .tab_wrapper {
    justify-content: center;
    gap: 0;
    padding: 0;
  }

  .tab_wrapper .tab {
    width: 31%;
  }

  .tab_wrapper .tab_label {
    display: flex;
    padding: 12px 4px;
    min-height: 54px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-size: 14px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .selected .tab_label {
    border-radius: 0;
  }
}

/* カテゴリーごとの中身
-------------------------------------*/
.tab_panel {
  background: var(--background-blue);
  padding: 56px 32px;
  /* 選択していない時 */
}

.tab_panel.panel_b, .tab_panel.panel_c, .tab_panel.panel_d {
  display: none;
}

.tab_panel .tab_panel_contents {
  max-width: 1024px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  align-content: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  margin: 0 auto;
}

.tab_panel .h2_ttl {
  width: 100%;
  text-align: center;
  font-size: 32px;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .tab_panel .h2_ttl {
    font-size: 24px;
  }
}

@media (max-width: 820px) {
  .tab_panel .tab_panel_contents {
    -moz-column-gap: 24px;
    column-gap: 24px;
    row-gap: 32px;
  }
}

@media (max-width: 640px) {
  .tab_panel {
    padding: 40px 24px;
  }

  .tab_panel .h2_ttl {
    margin-bottom: 16px;
  }

  .tab_panel .tab_panel_contents {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}

@media (max-width: 440px) {
  .tab_panel .tab_panel_contents {
    gap: 24px;
  }
}

/* カードデザイン
-------------------------------------*/
.card {
  width: calc((100% - 32px) / 2);
  display: flex;
  flex-direction: column;
  gap: 8px;
  container-type: inline-size;
  position: relative;
  z-index: 1;
}

.card .content {
  border: transparent 3px solid;
  transition: .3s;
  box-shadow: 0px 0px 32px 0px rgba(0, 148, 255, 0.08);
  display: flex;
  padding: 24px 32px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  border-radius: 16px;
  background: var(--white);
  box-sizing: border-box;
  flex: 1;
  position: relative;
}

a.linkbox {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.card .content:has(a.linkbox:hover) {
  border: solid 3px var(--primary);
  background: var(--background-blue);
}

#toneFamily.card .content:has(a.linkbox:hover) {
  border: solid 3px var(--primary);
  background: var(--background-blue);
}

.card .ttl {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: #e3e3e3 2px solid;
  justify-content: center;
  padding-right: 8px;
}

.card .ttl img {
  height: 80px;
  width: auto;
}

.card .ttl .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  line-height: 1.5;
}

.card .ttl .text p {
  font-size: 12px;
}

.card .ttl .text h3 {
  font-size: 24px;
  line-height: 1.3;
  word-break: break-all;
  color: var(--primary);
}

.card .ttl .AcceptClosed {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  z-index: 1;
  background-color: rgba(236, 84, 55, 0.1);
  color: var(--secondary);
  border-radius: 4px;
  padding: 4px 24px;
  margin-top: 4px;
}

.card .price_center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.card .price_center .price_box {
  text-align: center;
  font-size: 18px;
}

.card .price_center .price_box b {
  text-align: center;
  font-weight: bold;
  font-size: 28px;
  margin-left: 12px;
  letter-spacing: 1px;
}

.card .price_center .price_box b span {
  font-size: 18px;
}

.card .price_center .price_box sup {
  top: 0;
  margin-left: 4px;
}

.card .price_center .annotation {
  display: block;
  text-align: center;
  color: #777;
}

.card .plan_wrapper {
  position: relative;
  display: flex;
  padding: 16px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  align-self: stretch;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  font-size: 16px;
}

.card .plan_wrapper li {
  font-size: 14px;
  list-style: disc;
  margin-left: 32px;
}

.card .plan_wrapper p {
  position: absolute;
  top: 12px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: bold;
  line-height: 1.5;
  font-size: 12px;
  justify-content: flex-end;
}

.card .plan_wrapper p::after {
  font-family: "FontAwesome";
  content: "\f105";
  font-size: 20px;
}

@media (max-width: 820px) {
  .card {
    width: calc((100% - 24px) / 2);
  }
}

@media (max-width: 640px) {
  .card {
    width: 100%;
  }
}

@container (max-width: 460px) {
  .card .ttl img {
    height: 70px;
  }

  .card .ttl .text h3 {
    font-size: 22px;
  }

  .card .ttl .text p br {
    display: none;
  }
}

@container (max-width:400px) {
  .card .content {
    padding: 24px;
  }
}

@container (max-width:360px) {
  .card .content {
    padding: 32px 0 0;
    margin-top: 24px;
    border: var(--white) 8px solid;
    margin-bottom: 8px;
  }

  .card:nth-last-of-type(1) .content {
    margin-bottom: 0;
  }

  .card .ttl {
    width: calc(100% - 36px);
    padding: 0 0 16px;
  }

  .card .ttl img {
    position: absolute;
    background: #fff;
    top: -40px;
    border-radius: 50px;
    padding: 8px;
  }

  .card .ttl .text {
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .card .ttl .text h3 {
    font-size: 20px;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .card .ttl .text .AcceptClosed {
    margin: 0 0 4px;
  }

  .card .plan_wrapper {
    border-radius: 8px;
  }

  .card .plan_wrapper li {
    margin-left: 18px;
    font-size: 12px;
  }

  .card .plan_wrapper a {
    right: 20px;
  }
}

@container (max-width:320px) {
  .card .ttl .text h3 {
    font-size: 20px;
  }

  .card .ttl .text p {
    font-size: 11px;
  }

  .card .price_center .price_box {
    font-size: 14px;
  }

  .card .price_center .price_box b {
    font-size: 24px;
  }

  .card .plan_wrapper {
    padding: 12px 16px 4px 12px;
    align-items: center;
  }

  .card .plan_wrapper li {
    font-size: 12px;
    margin-left: 12px;
    min-width: 190px;
  }

  .card .plan_wrapper a {
    position: initial;
  }
}

/* TONEファミリーオプション */
:root {
  --family: #FF7573;
}

.card#toneFamily {
  width: 100%;
}

.card#toneFamily .content {
  border: var(--family) 3px solid;
  gap: 24px;
}

.card#toneFamily::before {
  content: "おすすめ";
  background: var(--family);
  color: var(--white);
  font-size: 20px;
  font-weight: bold;
  padding: 16px 24px;
  border-radius: 16px 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.card#toneFamily h3 {
  color: var(--family);
}

.card#toneFamily .recommend {
  display: flex;
  gap: 32px;
  width: 100%;
}

.card#toneFamily .recommend>div {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card#toneFamily .left_contents {
  background-color: rgb(from var(--family) r g b/0.08);
  border-radius: 8px;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 0 0;
}

.card#toneFamily .left_contents .title span {
  font-size: 30px;
}

.card#toneFamily .left_contents .title h4 {
  display: flex;
  align-items: end;
  gap: 8px;
  text-align: center;
  font-size: 22px;
  color: var(--family);
}

.card#toneFamily .left_contents .title h4::after, .card#toneFamily .left_contents .title h4::before {
  content: "";
  background: no-repeat url(/contract/change/img/device_comment.png);
  background-size: cover;
  width: 17px;
  height: 25px;
  display: block;
}

.card#toneFamily .left_contents .title h4::after {
  transform: scale(-1, 1);
}

.card#toneFamily .left_contents img {
  width: 230px;
}

.card#toneFamily .right_contents .price_center {
  padding-bottom: 16px;
}

.card#toneFamily .right_contents .price_center .price_box {
  align-items: center;
  justify-content: center;
}

@container (max-width:832px) {
  .card#toneFamily .content {
    padding: 24px;
  }
}

@container (max-width:664px) {
  .card#toneFamily::before {
    font-size: 16px;
    padding: 12px 20px;
  }

  .card#toneFamily .recommend {
    gap: 24px;
  }

  .card#toneFamily .left_contents {
    gap: 28px;
  }

  .card#toneFamily .left_contents .title h4 {
    font-size: 20px;
  }

  .card#toneFamily .left_contents img {
    width: 230px;
  }

  .card#toneFamily .plan_wrapper {
    padding: 12px 16px 4px 12px;
    align-items: center;
  }

  .card#toneFamily .plan_wrapper li {
    font-size: 12px;
    margin-left: 12px;
    min-width: 190px;
  }

  .card#toneFamily .plan_wrapper a {
    position: initial;
  }
}

@container (max-width:640px) {
  .card#toneFamily::before {
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 16px 16px 16px 0;
    top: -24px;
  }

  .card#toneFamily .left_contents {
    background: none;
    padding: 0;
    gap: 16px;
  }

  .card#toneFamily .left_contents .title {
    background-color: rgb(from var(--family) r g b/0.08);
    padding: 10px 32px;
    border-radius: 4px;
  }

  .card#toneFamily .left_contents .title span {
    font-size: 20px;
  }

  .card#toneFamily .left_contents .title h4 {
    font-size: 18px;
  }

  .card#toneFamily .left_contents .title h4::after, .card#toneFamily .left_contents .title h4::before {
    display: none;
  }

  .card#toneFamily .left_contents img {
    display: none;
  }

  .card#toneFamily .plan_wrapper {
    padding: 16px 24px;
    align-items: flex-start;
  }

  .card#toneFamily .plan_wrapper li {
    font-size: 14px;
    margin-left: 32px;
  }

  .card#toneFamily .plan_wrapper a {
    position: absolute;
  }
}

@container (max-width:360px) {
  .card#toneFamily::before {
    border-radius: 16px 16px 16px 0;
    padding: 10px 20px;
    top: 0;
  }

  .card#toneFamily .content {
    padding: 32px 8px 8px;
  }
}

@media (max-width: 820px) {
  .card#toneFamily .recommend {
    gap: 24px;
  }

  @container (max-width:640px) {
    .card#toneFamily .recommend {
      gap: 10px;
      flex-direction: column;
    }
  }
}

/*# sourceMappingURL=options.css.map */
