@charset "UTF-8";

@font-face {
  font-family: "Barlow Condensed";
  src: url("fonts/barlow-condensed-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

/* ===== Base ===== */
:root {
  --blue: #003a7b;
  --light-blue: #eaf4ff;
  --yellow: #fff900;
  --text: #111;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  font-family:
    "Noto Sans JP", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo,
    sans-serif;
  font-weight: 500;
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}

.sp-break {
  display: inline;
}

@media (max-width: 767px) {
  .sp-break {
  display: block;
}
}

a {
  color: inherit;
}
p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}
.content {
  width: min(900px, calc(100% - 40px));
  margin-inline: auto;
}
.en-heading {
  width: fit-content;
  margin: 0 auto 16px;
  color: #076bd1;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.en-heading::before,
.en-heading::after {
  color: #84bfff;
  font-family: Arial, sans-serif;
  font-weight: 300;
}
.en-heading::before {
  content: "[ ";
}
.en-heading::after {
  content: " ]";
}
h2 {
  text-align: center;
  font-size: 38px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #002F6F;
}

.sp-break-title {
  display: inline;
}

/* ===== Common CTA button (MUGEN WiFi official) ===== */
.cv_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}
.cv_wrap .cv-btn {
  display: flex;
  position: relative;
  top: 0;
  align-items: center;
  justify-content: center;
  width: 30vw;
  max-width: 100%;
  height: 4.86vw;
  margin: 0 auto;
  overflow: hidden;
  border: 2px solid #a8a300;
  border-radius: 999px;
  background: #fff717;
  box-shadow: 0 4px 0 #c0b900;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cv_wrap .cv-btn::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 50%;
  width: 94.5%;
  height: 50%;
  border-radius: 999px;
  background: linear-gradient(
    to bottom,
    #fffedbcc 0%,
    #fffedb80 80%,
    #fffedb00 100%
  );
  transform: translateX(-50%);
}
.cv_wrap .cv-btn::after {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 100px;
  height: 100px;
  background-image: linear-gradient(100deg, #fff0 10%, #fff 100%, #fff0 0%);
  animation: cta-shiny 3s ease-in-out infinite;
}
.cv_wrap .cv-btn p {
  display: inline-block;
  position: relative;
  color: #222;
  font-size: 1.6vw;
  font-weight: 700;
  line-height: 1.4;
  filter: drop-shadow(1px 1px 2px #dad20066);
  transition: all 0.3s ease;
}
.cv_wrap .cv-btn p::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -80px;
  width: 12px;
  height: 12px;
  border-right: 2.5px solid #222;
  border-bottom: 2.5px solid #222;
  transform: rotate(-45deg) translateY(-50%);
}
.cv_wrap .cv-btn:hover {
  transform: translateY(3px);
  box-shadow: 0 1px 0 #c0b900;
}
@keyframes cta-shiny {
  0% {
    opacity: 0;
    transform: scale(0) rotate(25deg);
  }
  50% {
    opacity: 1;
    transform: scale(1) rotate(25deg);
  }
  100% {
    opacity: 0;
    transform: scale(50) rotate(25deg);
  }
}

/* ===== Header ===== */
header {
  position: relative;
  z-index: 100;
  background: #fff;
}
header ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
header a {
  text-decoration: none;
}
.header_wrap {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  height: min(3.75vw, 54px);
  padding-left: min(3.472vw, 50px);
}
.header_logo {
  display: flex;
  width: min(12.5vw, 180px);
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}
.header_logo img {
  width: 100%;
  height: auto;
}
.header_nav {
  display: flex;
  height: 100%;
  align-items: center;
  margin-left: auto;
}
.nav_menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(1.042vw, 15px);
  padding: 0 min(1.25vw, 18px) !important;
  font-size: min(0.972vw, 14px);
  font-weight: 700;
  white-space: nowrap;
}
.nav_menu a {
  display: flex;
  height: min(3.75vw, 54px);
  align-items: center;
}
.nav_menu a:hover,
.header_btn_wrap a:hover {
  opacity: 0.6;
}
.header_btn_wrap {
  display: flex;
  height: min(3.75vw, 54px);
  flex: 0 0 auto;
}
.header_btn_wrap a {
  display: flex;
  width: min(13.889vw, 200px);
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: min(1.111vw, 16px);
  font-weight: 700;
  line-height: 1.3;
}
.header_btn_wrap .simulation-link {
  background: #222;
  color: #fff;
}
.header_btn_wrap .header-cv {
  background: #fff717;
  color: #222;
}
.sp_header_btn,
.nav_btn {
  display: none;
}
.menu-open {
  overflow: hidden;
}

/* ===== First View ===== */
.fv {
  position: relative;
  min-height: 605px;
  overflow: hidden;
  background:
    radial-gradient(circle at 9px 9px, #ffffff47 1.4px, transparent 1.7px) 0
      0/18px 18px,
    repeating-conic-gradient(
      from 76deg at 50% 62%,
      #ffffff1a 0 8deg,
      transparent 8deg 21deg
    ),
    linear-gradient(145deg, #ff9b00, #ff6200 68%, #ff8700);
}
.fv::before,
.fv::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 70px;
  background: #ffc000;
  border-radius: 100% 0 100% 0;
  opacity: 0.8;
  transform: rotate(-20deg);
}
.fv::before {
  top: 62px;
  left: -45px;
}
.fv::after {
  right: -65px;
  bottom: 38px;
  transform: rotate(25deg);
}
.fv__inner {
  position: relative;
  z-index: 1;
  width: min(1200px, 100%);
  height: 605px;
  margin: auto;
  padding-top: 20px;
}
.fv__title {
  width: fit-content;
  margin: auto;
  text-align: center;
  font-family: Impact, "Arial Black", sans-serif;
  line-height: 0.88;
  transform: rotate(-2deg);
}
.fv__season {
  display: block;
  width: fit-content;
  margin: 0 0 -30px -45px;
  color: #b81700;
  font-family: "Yu Gothic", sans-serif;
  font-size: 66px;
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 8px #fff6d6;
  paint-order: stroke fill;
}
.fv__main-title {
  display: block;
  color: #fff2b2;
  font-size: clamp(70px, 8.5vw, 124px);
  letter-spacing: 0.01em;
  -webkit-text-stroke: 18px #050505;
  paint-order: stroke fill;
  filter: drop-shadow(0 12px 0 #71330c);
}
.fv__main-title span {
  font-family: "Yu Gothic", sans-serif;
  font-size: 0.68em;
  font-weight: 900;
}
.fv__offer {
  display: flex;
  position: absolute;
  top: 240px;
  left: 50%;
  z-index: 3;
  align-items: center;
  width: 850px;
  height: 195px;
  padding: 12px 35px 12px 25px;
  border: 7px solid #ab0700;
  border-radius: 22px;
  background: #fff;
  transform: translateX(-50%);
}
.fv__shop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 138px;
  height: 138px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #c90000;
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
}
.fv__price {
  margin-left: 24px;
  color: #e20a00;
  font-family: Impact, "Arial Black", sans-serif;
  line-height: 0.8;
  white-space: nowrap;
}
.fv__price strong {
  font-size: 145px;
  letter-spacing: -0.03em;
  -webkit-text-stroke: 9px #fff;
  paint-order: stroke fill;
  filter: drop-shadow(0 8px 0 #f4ad27);
}
.fv__price span {
  font-family: "Yu Gothic", sans-serif;
  font-size: 37px;
  font-weight: 900;
}
.fv__off {
  margin-left: auto;
  color: #b40000;
  font-size: 48px;
  font-weight: 900;
  line-height: 0.85;
}
.fv__off small {
  font-size: 28px;
  line-height: 1.05;
}
.fv__products {
  position: absolute;
  inset: 365px 0 auto;
  z-index: 4;
  height: 160px;
  pointer-events: none;
}
.device {
  position: absolute;
  bottom: 0;
  border: 3px solid #bbb;
  background: #eceff2;
  box-shadow: 0 9px 15px #0004;
}
.device::after {
  content: "";
  position: absolute;
  top: 24%;
  left: 15%;
  width: 70%;
  height: 34%;
  background: #28333a;
}
.device--red {
  left: 4%;
  width: 80px;
  height: 155px;
  border-color: #9d0015;
  background: #d30026;
  transform: rotate(-11deg);
}
.device--white {
  left: 12%;
  width: 205px;
  height: 95px;
  border-radius: 9px;
  transform: rotate(5deg);
}
.device--black {
  right: 10%;
  width: 195px;
  height: 106px;
  border-color: #191919;
  border-radius: 8px;
  background: #222;
  transform: rotate(-4deg);
}
.device--tower {
  right: 1%;
  width: 115px;
  height: 220px;
  border-radius: 8px;
  background: #fff;
  transform: rotate(12deg);
}
.device--tower::after {
  display: none;
}

/* ===== About Campaign ===== */
.about {
  padding-top: 78px;
}
.content--about {
  overflow: hidden;
}
.about__lead {
  margin-top: 23px;
  margin-bottom: 23px;
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
}
.about__lead small {
  display: block;
  font-size: 12px;
}

.sp-only {
  display: none;
}

@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.coupon {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: flex-end;
  height: 255px;
  margin-top: 16px;
}
.coupon__person {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}
.coupon__person--woman {
  width: 172px;
  margin-right: -36px;
}
.coupon__person--man {
  width: 184px;
  margin-left: -35px;
}
.coupon__card {
  display: flex;
  position: relative;
  z-index: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 425px;
  height: 160px;
  margin-bottom: -3px;
  border: 2px solid #74baff;
  border-radius: 8px;
  background: #fff;
  line-height: 1;
}
.coupon__card > p {
  position: absolute;
  top: -23px;
  min-width: 255px;
  padding: 6px 25px;
  border-radius: 30px;
  background:#0056CC;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}
.coupon__card > p::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  border: 10px solid transparent;
  border-top-color: #0056CC;
  transform: translateX(-50%);
}
.coupon__card strong {
  background: linear-gradient(
    168deg,
    #0088EE 0%,
    #0088EE 50%,
    #0056CC 50%,
    #0056CC 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  font:
    600 78px/1 "Barlow Condensed",
    sans-serif;
}

.coupon__card strong small {
  color: #0056CC;
  font-family: "Yu Gothic", sans-serif;
  font-size: 31px;
  font-weight: 900;
}

.coupon__card > span {
  font-size: 27px;
  font-weight: 900;
}

/* ===== Flow ===== */
.flow {
  padding: 78px 0 80px;
  background: var(--light-blue);
}
.flow__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}
.flow-card {
  display: flex;
  min-height: 315px;
  padding: 18px 18px 20px;
  border-radius: 10px;
  background: #fff;
  flex-direction: column;
  align-items: center;
}
.flow-card__step {
  width: 100px;
  border-radius: 20px;
  background: #0068cf;
  color: #fff;
  text-align: center;
  font:
    600 14px/22px "Barlow Condensed",
    sans-serif;
}
.flow-card h3 {
  margin-top: 15px;
  text-align: center;
  font-size: 16px;
}
.flow-card img {
  width: 100%;
  height: 116px;
  margin: 16px 0 18px;
  object-fit: contain;
}
.flow-card > p:last-child {
  align-self: stretch;
  font-size: 13px;
  line-height: 1.65;
}

/* ===== Campaign Detail ===== */
.detail {
  padding: 78px 0 86px;
}
.detail__list {
  margin-top: 38px;
}
.detail__item + .detail__item {
  margin-top: 22px;
}
.detail__item dt,
.contact__heading {
  position: relative;
  padding: 8px 15px;
  background: var(--blue);
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}
.detail__item dd {
  padding-top: 13px;
  font-size: 14px;
  line-height: 1.65;
}
.detail__date {
  text-align: center;
}
.detail__item ul {
  margin: 0;
  padding-left: 20px;
}
.contact {
  margin-top: 23px;
  text-align: center;
  font-size: 14px;
}
.contact__heading span {
  display: flex;
  position: absolute;
  top: 50%;
  right: 14px;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  transform: translateY(-50%);
}
.contact__title {
  margin: 18px 0 22px;
  color: #0879df;
  font-size: 16px;
  font-weight: 700;
}
.contact p + p {
  margin-top: 17px;
}
.contact a {
  color: #168ee8;
  overflow-wrap: anywhere;
}

.contact__heading {
  cursor: pointer;
}

.contact__body {
  display: block;
}

.contact.is-closed .contact__body {
  display: none;
}

.contact__body.is-hidden {
  display: none;
}

/* ===== Bottom CTA ===== */
.cta {
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: center;
  background-image:
    linear-gradient(#00376eba, #00376eba), url("images/cta_background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.cta__inner {
  text-align: center;
}
.cta__inner > p {
  position: relative;
  color: #fff;
  font-size: 23px;
  line-height: 1.35;
  text-shadow: 0 1px 4px #00244d;
}
.cta__inner > p::before,
.cta__inner > p::after {
  content: "";
  position: absolute;
  top: 22px;
  width: 2px;
  height: 57px;
  background: #fff;
  box-shadow: 0 1px 3px #00244d;
}
.cta__inner > p::before {
  left: -42px;
  transform: rotate(-28deg);
}
.cta__inner > p::after {
  right: -42px;
  transform: rotate(28deg);
}
.cta__inner strong {
  font-size: 26px;
}

/* ===== Smartphone ===== */
@media (max-width: 767px) {
  .content {
    width: min(350px, calc(100% - 40px));
  }
  .en-heading {
    margin-bottom: 13px;
    font-size: 20px;
  }
  h2 {
    font-size: 23px;
  }

  .cv_wrap .cv-btn {
    width: 84.6vw;
    height: 14.8vw;
    border-width: 1px;
  }
  .cv_wrap .cv-btn p {
    font-size: 4.1vw;
    white-space: nowrap;
  }
  .cv_wrap .cv-btn p::after {
    right: -56px;
    width: 8px;
    height: 8px;
    border-right-width: 2.5px;
    border-bottom-width: 2.5px;
  }
  /* Header - SP */
  .header_wrap {
    height: 54px;
    padding-left: 15px;
  }
  .header_logo {
    width: 130px;
  }
  .sp_header_btn {
    display: block;
    height: 54px;
    margin-left: auto;
    margin-right: 54px;
  }
  .sp_header_btn ul {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
  }
  .sp_header_btn li {
    height: 54px;
    font-size: 10px;
    font-weight: 700;
  }
  .sp_header_btn a {
    display: flex;
    width: 80px;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 8px;
    text-align: center;
    line-height: 1.3;
  }
  .sp_header_btn .simulation-link {
    background: #222;
    color: #fff;
  }
  .sp_header_btn .header-cv {
    background: #fff717;
    color: #222;
  }
  .nav_btn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1001;
    width: 54px;
    height: 54px;
    padding: 18px 13px;
    border: 0;
    background: #fff;
    cursor: pointer;
  }
  .nav_btn span {
    position: absolute;
    left: 13px;
    width: 27px;
    height: 3px;
    background: #222;
    transition: all 0.4s;
  }
  .nav_btn span:first-child {
    top: 18px;
  }
  .nav_btn span:nth-child(2) {
    top: 26px;
  }
  .nav_btn span:last-child {
    top: 34px;
  }
  .nav_btn.open span:first-child {
    top: 26px;
    transform: rotate(-45deg);
  }
  .nav_btn.open span:nth-child(2) {
    opacity: 0;
  }
  .nav_btn.open span:last-child {
    top: 26px;
    transform: rotate(45deg);
  }
  .header_nav {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 1000;
    display: block;
    width: 100%;
    height: 100dvh;
    margin: 0;
    background: #000d;
    color: #fff;
    font-size: 14px;
    transition: right 0.4s;
    overflow-y: auto;
  }
  .header_nav.open {
    right: 0;
  }
  .nav_menu {
    display: block;
    padding: 0 !important;
    margin-top: 60px;
    text-align: center;
    font-size: 14px;
  }
  .nav_menu a {
    display: flex;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
  }
  .header_btn_wrap {
    display: none;
  }
  /* First View - SP */
  .fv,
  .fv__inner {
    max-width: 100%;
    padding-top: 0px;
  }
  .fv__season {
    margin: 0 0 -8px 4px;
    font-size: 31px;
    -webkit-text-stroke-width: 4px;
  }
  .fv__main-title {
    font-size: 48px;
    line-height: 0.9;
    -webkit-text-stroke-width: 8px;
    filter: drop-shadow(0 6px 0 #71330c);
  }
  .fv__main-title span {
    display: block;
    font-size: 0.8em;
  }
  .fv__offer {
    top: 163px;
    width: 354px;
    height: 130px;
    padding: 9px 13px;
    border-width: 4px;
    border-radius: 13px;
  }
  .fv__shop {
    width: 88px;
    height: 88px;
    font-size: 15px;
  }
  .fv__price {
    margin-left: 8px;
  }
  .fv__price strong {
    font-size: 68px;
    -webkit-text-stroke-width: 5px;
    filter: drop-shadow(0 4px 0 #f4ad27);
  }
  .fv__price span {
    font-size: 20px;
  }
  .fv__off {
    margin-left: 5px;
    font-size: 26px;
  }
  .fv__off small {
    font-size: 16px;
  }
  .fv__products {
    inset: 272px 0 auto;
    height: 134px;
  }
  .device--red {
    left: 24%;
    width: 43px;
    height: 102px;
  }
  .device--white {
    left: 28%;
    width: 120px;
    height: 60px;
  }
  .device--black {
    right: 24%;
    width: 108px;
    height: 63px;
  }
  .device--tower {
    right: 17%;
    width: 60px;
    height: 128px;
  }

  /* About - SP */
  .about {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .about__lead {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.7;
  }
  .about__lead small {
    font-size: 10px;
  }
  .coupon {
    height: 180px;
    margin-top: 12px;
  }
 .coupon-image {
  margin-top: -38px;
}

  /* Flow - SP */
  .flow {
    padding: 30px 0;
  }
  .flow h2 {
    width: 250px;
    margin-inline: auto;
  }
  .sp-break-title {
  display: block;
}
  .flow__list {
    display: block;
    margin-top: 28px;
  }
  .flow-card {
    min-height: 0;
    padding: 18px 20px 20px;
    border-radius: 9px;
  }
  .flow-card + .flow-card {
    margin-top: 18px;
  }
  .flow-card h3 {
    font-size: 16px;
  }
  .flow-card img {
    width: 250px;
    height: 132px;
    margin: 10px auto;
  }
  .flow-card > p:last-child {
    font-size: 12px;
  }
  /* Detail - SP */
  .detail {
    padding: 30px 0 50px;
  }
  .detail__list {
    margin-top: 28px;
  }
  .detail__item + .detail__item {
    margin-top: 18px;
  }
  .detail__item dt,
  .contact__heading {
    padding: 6px 10px;
    font-size: 11px;
  }
  .detail__item dd {
    padding-top: 10px;
    font-size: 12px;
  }
  .contact {
    margin-top: 20px;
    font-size: 12px;
  }
  .contact__title {
    margin: 16px 0 12px;
    font-size: 14px;
  }
  .contact p + p {
    margin-top: 14px;
  }
  /* Bottom CTA - SP */
  .cta {
    min-height: 205px;
    padding: 24px 0;
  }
  .cta__inner > p {
    font-size: 16px;
  }
  .cta__inner strong {
    font-size: 18px;
  }
  .cta__inner > p::before,
  .cta__inner > p::after {
    top: 17px;
    height: 40px;
  }
  .cta__inner > p::before {
    left: -17px;
  }
  .cta__inner > p::after {
    right: -17px;
  }
}

@media (max-width: 370px) {
  .header_logo {
    width: 90px;
  }
  .sp_header_btn {
    margin-right: 50px;
  }
  .sp_header_btn a {
    width: 70px;
    padding: 6px;
    font-size: 9px;
  }
  .nav_btn {
    width: 50px;
  }
  .fv__offer {
    width: calc(100% - 20px);
  }
  .fv__shop {
    width: 76px;
    height: 76px;
    font-size: 13px;
  }
  .fv__price strong {
    font-size: 60px;
  }
  .fv__off {
    font-size: 22px;
  }
  .fv__off small {
    font-size: 13px;
  }
}

/* ===== First View image layout ===== */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.fv {
  min-height: 0;
  background: none;
}
.fv::before,
.fv::after {
  display: none;
}
.fv__inner {
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.fv__visual {
  display: block;
  width: 100%;
}
.fv__visual img {
  width: 100%;
  height: auto;
  max-width: none;
}
.fv__action {
  position: absolute;
  top: 92%;                        /* ← この数字だけで位置を調整します */
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: normal;
  z-index: 6;
}


.footer {
  padding-top: 30px;
  background: #555555;
  color: #fff;
  font-weight: 500;
  width: 100%;
  text-align: center;
}
@media (max-width: 750px) {
  .footer {
    padding: 30px 0 0;
  }
}

.footer--ttl {
  margin: 0 auto 20px;
}
@media (max-width: 750px) {
  .footer--ttl {
    padding: 0;
    margin-bottom: 30px;
  }
}

.footer--ttl .logo img {
  width: 330px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .footer--ttl .logo img {
    width: 256px;
  }
}

.footer--ttl--message {
  color: #fff;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 750px) {
  .footer--ttl--message {
    margin: 12px 0 0;
    font-size: 14px;
  }
}

.footer--link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: top;
  text-align: left;
  gap: 15px;
}
@media (max-width: 750px) {
  .footer--link {
    flex-direction: row;
    margin-top: 30px;
    padding: 0 24px;
    justify-content: space-between;
    gap: 0;
  }
}

.footer--link--list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}
@media (max-width: 750px) {
  .footer--link--list {
    display: block;
  }
}

.footer--link--list--item {
  font-size: 14px;
  line-height: 1.5;
  list-style: none;
}
@media (max-width: 750px) {
  .footer--link--list--item {
    font-size: 12px;
  }
}

@media (max-width: 750px) {
  .footer--link--list--item + li {
    margin-top: 8px;
  }
}

.footer--link--list .gray {
  color: var(--color-l-gray);
}

.footer .footer_bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 270px 0;
  padding-top: 20px;
  border-top: solid 1px #555;
  border-width: 60%;
  text-align: center;
  padding: 0;
}
@media (max-width: 750px) {
  .footer .footer_bottom {
    margin: 20px 0 0;
  }
}

.footer .footer_bottom .callcenter_info {
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  line-height: 1.2;
}
@media (max-width: 750px) {
  .footer .footer_bottom .callcenter_info {
    font-size: 12px;
    gap: 5px;
  }
}

.footer .footer_bottom .callcenter_info p span {
  font-size: 14px;
}
@media (max-width: 750px) {
  .footer .footer_bottom .callcenter_info p span {
    font-size: 10px;
  }
}

.footer .footer_bottom .callcenter_info .note_wrap {
  padding: 10px;
  border: solid 1px #ffffff;
}
@media (max-width: 750px) {
  .footer .footer_bottom .callcenter_info .note_wrap {
    margin: 0 10px;
  }
}

.footer .footer_bottom .callcenter_info .note_wrap ::before {
  display: none;
}

.footer .footer_bottom .callcenter_info .note_wrap .title {
  margin-top: 0;
  font-weight: 700;
  font-size: 12px;
  text-align: left;
  justify-content: left;
  color: #ffffff;
}

.footer .footer_bottom .callcenter_info .note_wrap .note {
  text-align: left;
  color: #ffffff;
  font-size: 12px;
}

.footer .footer_bottom .more_info {
  margin-top: 1em;
  line-height: 1.4;
}

.footer .copyright {
  background: var(--color-black);
  padding: 15px 0;
  color: #fff;
  font-size: 12px;
  text-align: center;
  width: 100%;
}

