﻿@charset "utf-8";

.pc_view {
  display: block;
}

.sp_view {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc_view {
    display: none;
  }

  .sp_view {
    display: block;
  }
}



/* CSS Document */
#container *,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.mv .tl {
  text-align: center;
}


#container {
  width: 960px;
  margin: 0 auto;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  color: #222222;
  font-size: 16px;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 768px) {
  #container {
    width: 100%;
  }

  .tl img {
    width: 100%;
    height: auto;
  }
}

.lead {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 32px;
}

#container h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #00968B;
}

@media screen and (max-width: 768px) {
  .lead {
    margin-top: 32px;
    margin-bottom: 32px;
    padding: 0 16px;
  }

  #container h2 {
    font-size: 26px;
  }
}

#container .about {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 44px;
}

#container .about li {
  width: 33%;
  background: #F2F2F2;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 16px;
  color: #0E1B12;
  font-size: 14px;
}

#container .about li img {
  width: 85px;
  height: 85px;
}

#container .about li h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
  #container .about {
    display: block;
    margin-top: 24px;
    padding: 0 16px;
  }

  #container .about li {
    width: 100%;
    margin-bottom: 24px;

  }
}


.coupon_wrap {
  background: #D4F4F1;
  border-radius: 8px;
  padding: 48px;
  margin-bottom: 80px;
}

.coupon_wrap .tl {
  text-align: center;
  color: #00968B;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.coupon_wrap .tl span {
  color: #000000;
  font-size: 18px;
}

.coupon_wrap .coupon {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 36px;
}

.coupon_wrap .coupon img {
  width: 370px;
  height: auto;
}

.coupon_wrap .coupon .baloon {
  display: inline-block;
  background: #FFF800;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  padding: 6px 36px;
  line-height: 1.1;
  position: relative;
  margin-bottom: 16px;
  width: 370px;
}

.coupon_wrap .coupon .baloon::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #FFF800;
  margin-left: -4px;
}


@media screen and (max-width: 768px) {
  .coupon_wrap {
    border-radius: 0;
    display: block;
    padding: 24px 18px;
  }

  .coupon_wrap .tl {
    font-size: 26px;
  }

  .coupon_wrap .tl span {
    font-size: 20px;
  }

  .coupon_wrap .coupon {
    gap: 8px;

  }

  .coupon_wrap .coupon img {
    width: 168px;
    height: auto;
  }

  .coupon_wrap .coupon .baloon {
    font-size: 16px;
    width: 166px;
    padding: 6px 6px;
  }

  .coupon_wrap .coupon .baloon::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #FFF800;
    margin-left: -3px;
  }
}

.tabs {
  display: flex;
  border-bottom: 1px solid #cccccc;
  margin-top: 43px;
  margin-bottom: 20px;
}

.tabs button {
  width: 25%;
  text-align: center;
  font-size: 18px;
  padding-bottom: 12px;
}

.tabs button:hover {
  border-bottom: 5px solid #0071BE;
  color: #0071BE;
  padding-bottom: 7px;
}

.tabs button.active {
  border-bottom: 5px solid #0071BE;
  color: #0071BE;
  padding-bottom: 7px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .tabs {
    margin: 40px 16px 20px 16px;
  }

  .tabs button {
    width: 25%;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    padding-bottom: 12px;
  }

  .tabs button.active {
    border-bottom: 5px solid #0071BE;
    color: #0071BE;
    padding-bottom: 7px;
  }
}

.anchor-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  margin-bottom: 60px;
}

.anchor-links a {
  display: inline-block;
  text-align: center;
  border: 1px solid #0071BE;
  border-radius: 5px;
  color: #0071BE;
  font-size: 16px;
  font-weight: 700;
  padding: 10px;
  width: 145px;
}

.anchor-links a:hover {
  color: #0071BE;
  opacity: 0.6;
}

.area-title {
  font-size: 24px;
  font-weight: 700;
  color: #2A2A2E;
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .anchor-links {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin: 0 16px;
  }

  .anchor-links a {
    width: 48%;
    flex-shrink: 0;
  }

  .area-title {
    margin-top: 46px;
  }
}


.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

@media screen and (max-width: 768px) {
  .area-section {
    width: calc(100% - 48px);
    margin: 0 auto;
  }

  .cards {
    display: block;
  }
}

.card {
  overflow: hidden;
  width: 304px;
  position: relative;
  padding-bottom: 44px;
}

@media screen and (max-width: 768px) {
  .card {
    width: 100%;
    padding-bottom: 36px;
  }
}

.image-container {
  width: 304px;
  height: 175px;
  overflow: hidden;
  /* はみ出す部分を隠す */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 容器いっぱいにして切り抜く */
  border-radius: 4px;
}

.card img {
  width: 100%;
  display: block;
}

@media screen and (max-width: 768px) {
  .image-container {
    width: 100%;
    height: 193px;
    margin-bottom: 16px;
  }
}

.card-body {
  position: absolute;
  top: 134px;
  left: 16px;
}

.badge {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 5px 8px;
  border-radius: 50px;
  margin-right: 4px;
  font-size: 12px;
  line-height: 1.1;
  border: 1px solid #D7D7D7;
}

.badge.prepaid {
  background: #ECF9FF;
  color: #0272BE;
  border: 1px solid #0272BE;
}

@media screen and (max-width: 768px) {
  .card-body {
    position: absolute;
    top: 152px;
    left: 16px;
  }
}

.card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}

.card-footer {
  text-align: center;
}

.btn {
  display: inline-block;
  text-align: center;
  width: 304px;
  height: 48px;
  line-height: 48px;
  background: #0071BE;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15);
}

.btn:hover {
  color: #fff;
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .btn {
    width: 100%;
  }
}

.more-btn {
  display: block;
  width: 472px;
  height: 56px;
  margin: 12px auto;
  color: #0071BE;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #0071BE;
  font-size: 17px;
  font-weight: 700;
  line-height: 56px;
  margin-bottom: 64px;
  margin-top: -10px;

}

.more-btn:hover {
  opacity: 0.6;
}

.more-btn span {
  position: relative;
  display: block;
}

.more-btn span::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-top: 2px solid #0071BE;
  border-right: 2px solid #0071BE;
  transform: rotate(135deg);
  position: absolute;
  right: 5%;
  bottom: 44%;
}

@media screen and (max-width: 768px) {
  .more-btn {
    width: 100%;
    margin-bottom: 80px;
  }

  .more-btn:hover {
    opacity: 1.0;
  }

}

.close-btn {
  display: block;
  width: 472px;
  height: 56px;
  margin: 12px auto;
  color: #0071BE;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #0071BE;
  font-size: 17px;
  font-weight: 700;
  line-height: 56px;
  margin-bottom: 64px;
}

.close-btn:hover {
  opacity: 0.6;
}

.close-btn span {
  display: block;
  position: relative;
}

.close-btn span::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-top: 2px solid #0071BE;
  border-right: 2px solid #0071BE;
  transform: rotate(-45deg);
  position: absolute;
  right: 5%;
  bottom: 28%;
}

@media screen and (max-width: 768px) {
  .close-btn {
    width: 100%;
    margin-bottom: 80px;
  }

  .close-btn:hover {
    opacity: 1.0;
  }
}

.bnr {
  margin-top: 80px;
  margin-bottom: 60px;
}

.bnr:hover {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .bnr {
    margin-top: 52px;
    padding: 0 16px;
  }
}

.notice h3 {
  font-weight: 700;
  margin-bottom: 18px;
}

.notice table {
  border-radius: 4px;
}

.notice table th,
.notice table td {
  border: 1px solid #dfdfdf;
  padding: 10px 14px;
}

.notice table th {
  background: #f4f4f4;
  width: 30%;
  font-weight: 700;
  vertical-align: middle;
}

.notice table td {
  line-height: 1.5;
}

.notice table td .ind {
  text-indent: -1em;
  margin-left: 1em;
  padding-left: -1em;
}

.notice table td a {
  color: #000;
  text-decoration: underline;
}

.notice_tl {
  font-size: 1.17em;
  font-weight: 700;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .notice {
    padding: 0 16px;
  }
}




/* summary */
#contents h3.section__title {
  text-align: left;
  color: #000;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 24px;
}

.summary {
  position: relative;
}

.summary__lists {
  border: 1px solid #DEDEDF;
  border-radius: 4px;
}

@media (max-width: 767.9px) {
  .summary__lists {
    border: none;
    border-radius: inherit;
  }
}

.summary__lists>li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.summary__lists>li:not(:first-child) {
  border-top: 1px solid #DEDEDF;
}

@media (max-width: 767.9px) {
  .summary__lists>li {
    display: block;
    padding-bottom: 24px;
  }

  .summary__lists>li:not(:first-child) {
    padding-top: 24px;
  }

  .summary__lists>li:last-child {
    border-bottom: 1px solid #DEDEDF;
  }
}

@media (max-width: 767.9px) {
  .summary__lists-noLine>li {
    padding-top: 0 !important;
    border: none !important;
  }
}

.summary__label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 210px;
  padding: 10px 16px;
  font-weight: bold;
  font-size: 16px;
  background-color: #F4F4F4;
}

@media (max-width: 767.9px) {
  .summary__label {
    display: block;
    width: 100%;
    padding: 0 0 10px 0;
    background-color: transparent;
  }
}

.summary__detail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 16px;
  font-size: 16px;
}

.summary__detail .summary__txt-lists,
.summary__detail p {
  width: 100%;
}

.summary__detail a {
  color: #000;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .summary__detail a:hover {
    color: #0071BE;
    text-decoration: none;
  }
}

@media (max-width: 767.9px) {
  .summary__detail {
    display: block;
    padding: 0;
  }
}