:root {
  --col-01:#ff4b36;
  --col-02:#5186ec;
  --col-03:#35ae92;
  --col-04:#f6d019;
  --col-05:#847ac6;
  --col-06:#f47abe;
  --col-07:#fa9831;
  --col-08:#29486d;
  --col-09:#111111;
  --col-10:#6b5744;
  --col-11:#17b4cc;
  --col-09-75:#4C4C4C;
}
html{
  scroll-behavior: smooth;
}
body{
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.10rem;
}
:target { scroll-margin-top: 120px; } 
h1,h2,h3,h4,p{
  display: block;
}
/* font size */
h2.heading{
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}
h3.heading{
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}
h4.heading{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}
  @media (max-width: 1280px) {
    h2.heading{
      font-size: 36px;
    }
    h3.heading{
      font-size: 22px;
    }
    h4.heading{
      font-size: 20px;
    }
  }
  @media (max-width: 1080px) {
    h2.heading{
      font-size: 34px;
    }
    h3.heading{
      font-size: 20px;
    }
    h4.heading{
      font-size: 18px;
    }
  }
  @media (max-width: 980px) {
    h2.heading{
      font-size: 30px;
    }
    h3.heading{
      font-size: 20px;
    }
    h4.heading{
      font-size: 18px;
    }
  }
  @media (max-width: 768px) {
    h2.heading{
      font-size: 28px;
    }
    h3.heading{
      font-size: 20px;
    }
    h4.heading{
      font-size: 18px;
    }
  }
  @media (max-width: 768px) {
    h2.heading{
      font-size: 22px;
    }
  }
p{
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
}
p.lead{
  text-align: center;
}
p.attention{
  font-weight: 400;
  font-size: 12px;
}
.text-num{
  font-family: "Roboto", sans-serif;
}
/* hidden */
.hidden-pc{
  display: none;
}
.hidden-sp{
  display: block;
}
@media (max-width: 768px) {
  .hidden-pc{
    display: block;
  }
  .hidden-sp{
    display: none;
  }
}

/*  layout */
.container {
  max-width: 1080px;
  width: 88%;
  margin: 0 auto;
}

@media (max-width: 1280px) {
  .container {
    max-width: 88%;
    width: 88%;
  }
}
@media (max-width: 980px) {
  .container {
    width: 88%;
    padding-left: 8px;
    padding-right: 8px;
  }
  .container .two-cols,
  .container .four-cols {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .container .two-cols{
    flex-direction: column;
    gap: 12px;
  }
  .two-cols .item,
  .four-cols .item {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}
.sub-container {
  max-width: 1056px;
  width: 88%;
  margin: 0 auto;
}
.container .two-cols,
.container .four-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.two-cols .item {
  flex: 1 1 0;
  text-align: center;
}
.four-cols .item {
  flex: 1 1 20%;
  text-align: center;
}

/* button */
.cta-btn {
  display: inline-block;
  color: var(--col-09); 
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}
.cta-btn.large{
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--col-09);
    border-radius: 48px;
}
  .cta-btn.tocontact {
    background: var(--col-04);
    width: 460px;
    height: 96px;
    border-radius: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
  }
    .cta-btn.tocontact:hover {
      text-decoration: none;
      box-shadow: none;
    }
  .cta-btn.tocontact {
    background: var(--col-04);
    border: 3px solid var(--col-09);
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
  }
    .cta-btn.tocontact:hover {
      text-decoration: none;
      box-shadow: none;
    }

/* parts */
.tag-saiyasu{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--col-01);
  color: #FFF;
  height: 24px;
  border-radius: 12px;
  font-size: 11px;
  line-height: 0px;
  padding-left: 8px;
  padding-right: 8px;
}



/* header */
.header {
    position: fixed;
    top: 0;
    height: 96px;
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.4);
    border-bottom: none;
    display: flex;
    align-items: center;
    width: 100%;
    z-index: 10;
}

.header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    width: 88%;
    margin: 0 auto;
}

.header .header-inner .logo img {
    width: 240px;
}

.header .header-inner .hamburger {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.header .header-inner .hamburger span {
    position: absolute;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--col-09, #333);
    transition: transform .25s, opacity .25s, top .25s, bottom .25s;
}

.header .header-inner .hamburger span:nth-child(1) { top: 14px; }
.header .header-inner .hamburger span:nth-child(2) { top: 21px; }
.header .header-inner .hamburger span:nth-child(3) { top: 28px; }

.header .header-inner .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header .header-inner .hamburger.active span:nth-child(2) { opacity: 0; }
.header .header-inner .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header .header-inner .nav-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header .header-inner .nav-wrapper nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header .header-inner .nav-wrapper nav ul li {
    margin-right: 24px;
    font-size: 14px;
    font-weight: 600;
}

.header .header-inner .nav-wrapper a.cta-btn.tocontact {
    width: 200px;
    height: 40px;
    font-size: 14px;
    border: 2px solid var(--col-09);
}

.header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff4b36, #f6d019, #5186ec);
    pointer-events: none;
}

/* media query (max-width: 1280px) */
@media (max-width: 1280px) {
    .header .header-inner .logo a {
        display: block;
        padding-top: 8px;
    }
    .header .header-inner .nav-wrapper nav ul li {
        margin-right: 16px;
        font-size: 14px;
    }
}

/* media query (max-width: 1120px) */
@media (max-width: 1120px) {
    .header {
        box-sizing: border-box;
    }
    .header .header-inner .logo img {
        width: 210px;
    }
    .header .header-inner .nav-wrapper nav ul li {
        margin-right: 16px;
        font-size: 14px;
    }
    .header .header-inner .nav-wrapper a.cta-btn.tocontact {
        width: 180px;
    }
}

/* media query (max-width: 1020px) */
@media (max-width: 1020px) {
    .header .header-inner .logo img {
        width: 172px;
    }
    .header .header-inner .nav-wrapper nav ul li {
        margin-right: 8px;
        font-size: 14px;
    }
    .header .header-inner .nav-wrapper a.cta-btn.tocontact {
        width: 160px;
        font-size: 14px;
    }
}

/* media query (max-width: 980px) */
@media (max-width: 980px) {
    .header {
        height: 104px;
        padding-top: 8px;
        padding-bottom: 16px;
    }
    .header .header-inner {
        flex-flow: column;
    }
    .header .header-inner .logo img {
        width: 210px;
    }
    .header .header-inner .nav-wrapper {
        margin-left: 16px;
    }
    .header .header-inner .nav-wrapper nav ul li {
        margin-right: 24px;
        font-size: 14px;
    }
    .header .header-inner .nav-wrapper a.cta-btn.tocontact {
        width: 160px;
        font-size: 14px;
    }
}

/* media query (max-width: 768px) */
@media (max-width: 768px) {
    .header {
        height: 72px;
    }
    .header .header-inner {
        flex-flow: row;
    }
    .header .header-inner .hamburger {
        display: inline-block;
        left: 12px;
    }
    .header .header-inner .nav-wrapper {
        margin-left: 0px;
        position: fixed;
        top: 72px; 
        left: 0;
        width: 100%;
        height: calc(100vh - 72px);
        padding: 24px 20px 32px;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        transform: translateX(100%);
        transition: transform .28s ease;
        display: block;
        z-index: 9990;
    }
    .header .header-inner .nav-wrapper.open {
        transform: translateX(0);
    }
    .header .header-inner .nav-wrapper nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .header .header-inner .nav-wrapper nav ul li {
        margin-right: 0;
        font-size: 18px;
    }
    .header .header-inner .nav-wrapper nav ul li a {
        display: block;
        padding: 14px 8px;
        border-bottom: 1px solid rgba(0,0,0,.06);
    }
    .header .header-inner .nav-wrapper a.cta-btn.tocontact {
        display: block;
        width: 100%;
        height: 56px;
        line-height: 56px;
        margin-top: 16px;
        text-align: center;
        font-weight: 700;
        font-size: 18px;
    }
}

body.is-scroll-locked {
    overflow: hidden;
    touch-action: none;
}

/* biyou-section 基本設定 */
.biyou-section {
  margin-top: 80px;
}

.biyou-section h2 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 180%;
}

.biyou-section h2 > span {
  display: inline;
  background-image: linear-gradient(
    to right,
    #ff4b36, 
    #f6d019,
    #5186ec
  );
  background-size: 100% 4px; 
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 3px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.biyou-section h2 > span > span {
  display: inline;
}

.biyou-section .cols {
  margin-top: 48px;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
}

.biyou-section .cols .box {
  width: 14%;
  text-align: center;
  margin-bottom: 16px;
}

.biyou-section .cols .box .image {
  width: 80px;
  margin: 0px auto;
}

.biyou-section .cols .box p {
  border: 1px solid var(--col-09);
  border-radius: 21px;
  height: 42px;
  padding-left: 4px;
  padding-right: 4px;
  margin-top: 8px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.biyou-section .attention {
  text-align: right;
}

/* media query 1280px */
@media screen and (max-width: 1280px) {
  .biyou-section h2 {
    font-size: 28px;
  }
  .biyou-section h2 > span > span:first-child::before {
    content: "\A";
    white-space: pre;
  }
}

/* media query 1180px */
@media (max-width: 1180px) {
  .biyou-section .cols {
    gap: 4%;
    justify-content: center;
  }
  .biyou-section .cols .box {
    width: 22%;
    margin-bottom: 28px;
  }
}

/* media query 980px */
@media (max-width: 980px) {
  .biyou-section h2 {
    font-size: 20px;
  }
  .biyou-section .cols .box {
    width: 30%;
  }
  .biyou-section .cols .box p {
    font-size: 14px;
  }
  .biyou-section .attention {
    text-align: left;
  }
}

/* media query 900px */
@media screen and (max-width: 900px) {
  .biyou-section {
    margin-top: 64px;
  }
  .biyou-section h2 {
    font-size: 32px;
  }
  .biyou-section h2 span > span::before {
    content: "\A";
    white-space: pre;
  }
}

/* media query 768px */
@media (max-width: 768px) {
  .biyou-section {
    margin-top: 24px;
  }
  .biyou-section h2 {
    font-size: 28px;
  }
  .biyou-section h2 > span {
    background-size: 100% 2px; 
  }
  .biyou-section .cols .box {
    margin-bottom: 14px;
  }
  .biyou-section .cols .box p {
    font-size: 14px;
    border-radius: 19px;
    height: 38px;
  }
}

/* media query 600px */
@media (max-width: 600px) {
  .biyou-section h2 {
    font-size: 24px;
  }
  .biyou-section .cols .box {
    width: 30%;
  }
  .biyou-section .cols .box .image {
    width: 64px;
    margin: 0px auto;
  }
  .biyou-section .cols .box p {
    line-height: 1.2;
    height: 32px;
    border-radius: 19px;
    letter-spacing: 0.01rem;
    font-size: 10px;
  }
}

/* media query 500px */
@media screen and (max-width: 500px) {
  .biyou-section h2 {
    font-size: 20px;
  }
}



/* --- adaptiveplan 基本設定 --- */
.adaptiveplan {
  margin-top: 80px;
}

.adaptiveplan .adaptiveplan-content {
  margin-top: 28px;
}

.adaptiveplan .adaptiveplan-content .item {
  border: 3px solid var(--col-09);
  border-radius: 16px;
  margin-top: 16px;
  box-sizing: border-box;
}

.adaptiveplan .adaptiveplan-content .item:first-child {
  border: 2px solid var(--col-02);
}

.adaptiveplan .adaptiveplan-content .item:nth-child(2) {
  border: 2px solid var(--col-08);
}

/* head-area */
.adaptiveplan .adaptiveplan-content .item .head-area {
  width: 100%;
  border-radius: 12px 12px 0px 0px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 28px 20px 72px;
}

.adaptiveplan .adaptiveplan-content .item .head-area .text {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 32%;
}

.adaptiveplan .adaptiveplan-content .item .head-area .text p {
  font-size: 16px;
  font-weight: 500;
  color: #FFF;
}

.adaptiveplan .adaptiveplan-content .item .head-area .text h3 {
  font-size: 26px;
  font-weight: 700;
  color: #FFF;
}

/* fee-area */
.adaptiveplan .adaptiveplan-content .item .head-area .fee-area {
  text-align: left;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: 32px;
  font-weight: 700;
  margin-left: 32px;
  width: 68%;
}

.adaptiveplan .adaptiveplan-content .item .head-area .fee-area .title {
  background-color: #FFF;
  border-radius: 12px;
  height: 24px;
  box-sizing: border-box;
  padding: 2px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  white-space: nowrap;
}

.adaptiveplan .adaptiveplan-content .item .head-area .fee-area .fee-container {
  display: flex;
  width: 72%;
  align-items: flex-start;
}

.adaptiveplan .adaptiveplan-content .item .head-area .fee-area .fee-container .box {
  margin-left: 16px;
  display: flex;
  flex-direction: column;
  width: 50%;
}

.adaptiveplan .adaptiveplan-content .item .head-area .fee-area .fee-container .box p.label {
  font-size: 12px;
  line-height: 1.2;
  display: flex;
  align-items: flex-end;
}

.adaptiveplan .adaptiveplan-content .item .head-area .fee-area .fee-container .box p.value {
  display: block;
  font-size: 40px;
  line-height: 1.2;
}

.adaptiveplan .adaptiveplan-content .item .head-area .fee-area .fee-container .box p.small {
  font-size: 12px;
  letter-spacing: 0;
}

/* desc-area */
.adaptiveplan .adaptiveplan-content .item .desc-area {
  padding: 8px 24px 16px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
}

.adaptiveplan .adaptiveplan-content .item .desc-area h4 {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 12px;
  text-align: center;
  letter-spacing: 0;
}

.adaptiveplan .adaptiveplan-content .item .desc-area h4::before,
.adaptiveplan .adaptiveplan-content .item .desc-area h4::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #000;
}

.adaptiveplan .adaptiveplan-content .item .desc-area h4::before {
  padding-right: 4px;
}

.adaptiveplan .adaptiveplan-content .item .desc-area p.desc-head {
  font-weight: 700;
  font-size: 12px;
  margin-top: 4px;
}

.adaptiveplan .adaptiveplan-content .item .desc-area p.note {
  font-size: 10px;
  font-weight: 400;
  margin-top: 0px;
  padding-left: 1em;
}

/* small plan specific */
.adaptiveplan .adaptiveplan-content .small .head-area {
  background-color: var(--col-02);
}

.adaptiveplan .adaptiveplan-content .small .head-area .text p {
  color: #D3E1FA;
}

.adaptiveplan .adaptiveplan-content .small .fee-area .title {
  color: var(--col-02);
}

/* standard plan specific */
.adaptiveplan .adaptiveplan-content .standard .head-area {
  background-color: var(--col-08);
}

.adaptiveplan .adaptiveplan-content .standard .head-area .text p {
  color: #C9D1DA;
}

.adaptiveplan .adaptiveplan-content .standard .fee-area .title {
  color: var(--col-08);
}

/* --- Media Queries --- */

@media (max-width: 1080px) {
  .adaptiveplan .adaptiveplan-content .item .head-area {
    gap: 10px;
    padding: 20px 28px 20px 48px;
  }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area .fee-container .box p.value {
    font-size: 36px;
  }
}

@media (max-width: 1020px) {
  .adaptiveplan { margin-top: 64px; }
  .adaptiveplan .adaptiveplan-content { margin-top: 0px; }
  .adaptiveplan .adaptiveplan-content .item .head-area { gap: 24px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .text h3 { font-size: 24px; }
}

@media (max-width: 1000px) {
  .adaptiveplan .adaptiveplan-content .item .head-area .text p { font-size: 13px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .text h3 { font-size: 24px; }
}

@media (max-width: 980px) {
  .adaptiveplan .adaptiveplan-content .item .head-area { gap: 24px; padding: 20px 20px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .text p { font-size: 14px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .text h3 { font-size: 24px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area { padding: 0px; margin-left: 0px; margin-top: 12px; gap: 4px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area .fee-container .box p.value { font-size: 32px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area .fee-container .box p { font-size: 12px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area .fee-container .box p span { font-size: 32px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area .title { font-size: 11px; }
  .adaptiveplan .adaptiveplan-content .item .desc-area h4 { font-size: 12px; }
  .adaptiveplan .adaptiveplan-content .item .desc-area p.desc-head { font-size: 11px; margin-top: 2px; }
  .adaptiveplan .adaptiveplan-content .item .desc-area p.note { font-size: 10px; }
}

@media (max-width: 940px) {
  .adaptiveplan .adaptiveplan-content .item .head-area .text { width: 40%; }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area { width: 60%; }
}

@media (max-width: 860px) {
  /* 1つ目の860px設定 */
  .adaptiveplan .adaptiveplan-content .item .head-area { gap: 24px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .text p { font-size: 12px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .text h3 { font-size: 20px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area { padding: 0px; margin-left: 0px; margin-top: 12px; gap: 4px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area .fee-container .box { margin-left: 12px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area .fee-container .box p { font-size: 14px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area .fee-container .box p span { font-size: 30px; }
  .adaptiveplan .adaptiveplan-content .item .desc-area h4 { font-size: 12px; }
  .adaptiveplan .adaptiveplan-content .item .desc-area p.desc-head { font-size: 11px; margin-top: 2px; }
  .adaptiveplan .adaptiveplan-content .item .desc-area p.note { font-size: 10px; }
  
  /* 2つ目の860px設定の統合 */
  .adaptiveplan .adaptiveplan-content .item .head-area { gap: 12px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .text { width: 38%; }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area .fee-container { width: 62%; }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area .fee-container .box p.label { font-size: 12px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area .fee-container .box p.small { font-size: 10px; }
}

@media (max-width: 768px) {
  .adaptiveplan { margin-top: 48px; }
  .adaptiveplan .adaptiveplan-content .item { flex-flow: column; }
  .adaptiveplan .adaptiveplan-content .item .head-area { flex-direction: column; align-items: center; justify-content: center; gap: 6px; width: 100%; border-radius: 14px 14px 0px 0px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .text { width: 100%; text-align: center; align-items: center; }
  .adaptiveplan .adaptiveplan-content .item .head-area .text p { font-size: 12px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .text h3 { font-size: 20px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area { width: 100%; margin-left: 0px; justify-content: center; }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area .title { font-size: 12px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area .fee-container .box { margin-left: 24px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area .fee-container .box p { font-size: 12px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area .fee-container .box p span { font-size: 32px; }
  .adaptiveplan .adaptiveplan-content .item .desc-area { padding: 8px 16px 16px 16px; }
}

@media (max-width: 600px) {
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area { margin-top: 4px; gap: 4px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area .fee-container .box { margin-left: 12px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area .fee-container .box .title { font-size: 10px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area .fee-container .box p { font-size: 12px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area .fee-container .box p span { font-size: 24px; }
}

@media (max-width: 500px) {
  .adaptiveplan .adaptiveplan-content .item .head-area { padding: 16px 10px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area { flex-direction: column; }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area .title { font-size: 10px; letter-spacing: 0.0rem; padding: 0px 6px; height: 20px; width: 28%; margin-top: 4px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area .fee-container { width: 100%; margin-top: 8px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area .fee-container .box p { font-size: 10px; }
  .adaptiveplan .adaptiveplan-content .item .head-area .fee-area .fee-container .box p.small { font-size: 11px; }
}
/* --- fourzero-section 基本設定 --- */
.fourzero-section {
  margin-top: 32px;
}

.fourzero-section .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid var(--col-09-75);
  border-radius: 16px;
  padding: 20px 16px 8px;
}

.fourzero-section .item .title {
  font-size: 20px;
  font-weight: 700;
  border-bottom: solid 4px var(--col-02);
  padding-bottom: 4px;
}

.fourzero-section .item .amount {
  font-size: 72px;
  font-weight: 700;
  line-height: 100%;
}

.fourzero-section .item .amount .yenmark {
  font-size: 32px;
  position: relative;
  top: -0.06em;
}

/* 枠線・下線カラーの個別設定 */
.fourzero-section .item:nth-of-type(2) .title {
  border-color: var(--col-01);
}

.fourzero-section .item:nth-of-type(3) .title {
  border-color: var(--col-04);
}

.fourzero-section .item:nth-of-type(4) .title {
  border-color: var(--col-11);
}

.fourzero-section p.attention {
  text-align: right;
  margin-top: 8px;
  font-size: 12px;
}

/* --- Media Queries --- */

/* 1280px以下 */
@media (max-width: 1280px) {
  .fourzero-section .item .title {
    font-size: 18px;
  }
  .fourzero-section .item .amount {
    font-size: 72px;
  }
  .fourzero-section .item .amount .yenmark {
    font-size: 32px;
    position: relative;
    top: -0.06em;
  }
}

/* 1080px以下 */
@media (max-width: 1080px) {
  .fourzero-section .item .title {
    font-size: 16px;
  }
  .fourzero-section .item .amount {
    font-size: 70px;
  }
  .fourzero-section .item .amount .yenmark {
    font-size: 30px;
  }
}

/* 980px以下 */
@media (max-width: 980px) {
  .fourzero-section .four-cols {
    gap: 16px;
  }
  .fourzero-section .item {
    display: flex;
    flex-flow: column;
    align-items: center;
    padding: 12px 12px 0px 12px;
  }
  .fourzero-section .item .title {
    font-size: 18px;
    font-weight: 700;
  }
  .fourzero-section .item .amount {
    font-size: 72px;
  }
  .fourzero-section .item .amount .yenmark {
    font-size: 32px;
  }
}

/* 768px以下 */
@media (max-width: 768px) {
  .fourzero-section {
    margin-top: 32px;
  }
  .fourzero-section .four-cols {
    gap: 8px;
  }
  .fourzero-section .four-cols .item {
    flex: 1 1 48%;
  }
  .fourzero-section .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid var(--col-09-75);
    border-radius: 16px;
  }
  .fourzero-section .item .title {
    font-size: 20px;
  }
  .fourzero-section .item .amount {
    font-size: 72px;
    line-height: 100%;
  }
  .fourzero-section .item .amount .yenmark {
    font-size: 40px;
    position: relative;
    top: -0.06em;
  }
  .fourzero-section p.attention {
    text-align: left;
  }
}

/* 600px以下 */
@media (max-width: 600px) {
  .fourzero-section .four-cols {
    gap: 12px;
  }
  .fourzero-section .item .amount {
    font-size: 72px;
  }
  .fourzero-section .item .amount .yenmark {
    font-size: 32px;
  }
}
/* --- fee-section 基本設定 --- */
.fee-section {
  margin-top: 72px;
}

.fee-section .fee-content {
  border: 2px solid var(--col-09-75);
  padding: 48px 32px;
  border-radius: 24px;
}

.fee-section .fee-content .four-cols {
  justify-content: center;
  gap: 0px;
}

.fee-section .fee-content .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: column;
  max-width: 25%;
  width: 25%;
  border-right: 1px dotted var(--col-09-75);
  padding-left: 16px;
  padding-right: 16px;
}

.fee-section .fee-content .item:nth-of-type(4) {
  border-right: none;
}

.fee-section .fee-content .item .icon {
  width: 100px;
  height: auto;
}

.fee-section .fee-content .item h3 {
  font-weight: 700;
  font-size: 16px;
  margin-top: 8px;
}

.fee-section .fee-content .item .brands {
  height: 160px;
  width: auto;
  margin-top: 8px;
}

.fee-section .fee-content .item .fee {
  font-size: 32px;
  margin-top: 6px;
}

.fee-section .fourzero-section {
  margin-top: 16px;
}

/* --- Media Queries --- */

/* 1080px以下 */
@media (max-width: 1080px) {
  .fee-section .fee-content {
    padding: 32px 24px;
  }
  .fee-section .fee-content .item .icon {
    width: 80px;
    height: auto;
  }
  .fee-section .fee-content .item .brands {
    height: 120px;
  }
  .fee-section .fee-content .item .fee {
    font-size: 28px;
  }
}

/* 980px以下 */
@media (max-width: 980px) {
  .fee-section {
    margin-top: 64px;
  }
  .fee-section .fee-content {
    padding: 24px 18px;
  }
  .fee-section .fee-content .four-cols {
    justify-content: center;
    gap: 0px;
  }
  .fee-section .fee-content .item {
    padding-left: 12px;
    padding-right: 12px;
  }
  .fee-section .fee-content .item .icon {
    width: 80px;
  }
  .fee-section .fee-content .item h3 {
    font-size: 14px;
    margin-top: 4px;
  }
  .fee-section .fee-content .item .brands {
    height: 120px;
    width: auto;
    margin-top: 8px;
  }
  .fee-section .fee-content .item .fee {
    font-size: 24px;
  }
  .fee-section .fee-content .item:nth-of-type(4) {
    border-right: none;
  }
}

/* 768px以下 */
@media (max-width: 768px) {
  .fee-section {
    margin-top: 32px;
  }
  .fee-section h2.heading {
    letter-spacing: 0.12rem;
  }
  .fee-section .fee-content {
    padding: 24px;
  }
  .fee-section .fee-content .four-cols {
    justify-content: center;
    gap: 0px;
  }
  .fee-section .fee-content .item {
    flex: 1 1 50%;
    width: 50%;
    max-width: 50%;
    padding-left: 8px;
    padding-right: 8px;
    border-right: none;
  }
  .fee-section .fee-content .item .icon {
    width: 80px;
  }
  .fee-section .fee-content .item h3 {
    font-size: 16px;
    margin-top: 4px;
  }
  .fee-section .fee-content .item .brands {
    height: 140px;
    width: auto;
    margin-top: 8px;
  }
  .fee-section .fee-content .item .fee {
    font-size: 32px;
  }
  /* ボーダー制御 */
  .fee-section .fee-content .item:nth-of-type(1) {
    border-right: 1px dotted var(--col-09-75);
    border-bottom: 1px dotted var(--col-09-75);
    padding-bottom: 16px;
  }
  .fee-section .fee-content .item:nth-of-type(2) {
    border-bottom: 1px dotted var(--col-09-75);
    padding-bottom: 16px;
  }
  .fee-section .fee-content .item:nth-of-type(3) {
    padding-top: 16px;
    border-right: 1px dotted var(--col-09-75);
  }
  .fee-section .fee-content .item:nth-of-type(4) {
    padding-top: 16px;
    border-right: none;
  }
}

/* 600px以下 */
@media (max-width: 600px) {
  .fee-section .fee-content {
    padding: 16px;
    border-radius: 16px;
  }
  .fee-section .fee-content .item .icon {
    width: 60px;
  }
  .fee-section .fee-content .item .brands {
    height: 100px;
  }
  .fee-section .fee-content .item h3 {
    font-size: 14px;
    letter-spacing: -0.1;
  }
  .fee-section .fee-content .item .fee {
    font-size: 26px;
  }
}/* --- compare-section 基本設定 --- */
.compare-section {
  margin-top: 80px;
}

.compare-section .compare-fee,
.compare-section .compare-service {
  margin-top: 48px;
}

.compare-section .compare-table-pc {
  margin-top: 32px;
}

.compare-section .compare-table-sp {
  display: none;
}

.compare-section p.attention {
  text-align: right;
}

/* --- Media Queries (768px以下) --- */
@media (max-width: 768px) {
  .compare-section {
    margin-top: 48px;
  }

  .compare-section .compare-fee {
    margin-top: 16px;
  }

  .compare-section .compare-table-pc {
    display: none;
  }

  .compare-section .compare-table-sp {
    justify-content: flex-start;
    place-items: center;
    min-width: -moz-fit-content;
    display: flex;
    position: relative;
    overflow: scroll;
  }

  .compare-section .compare-table-head {
    z-index: 1;
    outline-offset: 0px;
    flex: none;
    width: 128px;
    position: sticky;
    bottom: 0;
    left: 0;
    background-color: #FFF;
  }

  .compare-section .compare-table-content {
    flex: none;
    padding-right: 80px;
    position: relative;
    overflow: auto;
  }

  .compare-section .compare-table-content img {
    width: 460px;
  }

  .compare-section .compare-fee p.attention {
    text-align: left;
  }
}
    .interlude{
      margin-top: 80px;
    }/* --- howto-section 基本設定 --- */
.howto-section {
  margin-top: 80px;
  max-width: 1056px;
  width: 88%;
}

.howto-section .inner {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  margin-top: 32px;
}

.howto-section .inner .box {
  width: 30%;
  border: 1px solid var(--col-09);
  padding: 24px 24px;
  text-align: center;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; 
  align-items: stretch;
  box-sizing: border-box;
}

.howto-section .inner .box .icon {
  width: 100px;
  height: auto;
  margin: 0px auto;
}

.howto-section .inner .box h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.howto-section .inner .box > p {
  font-weight: 400;
  font-size: 12px;
  margin-bottom: 12px;
}

.howto-section .inner .box .timerequired {
  font-size: 14px;
  display: inline-flex; 
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 0 24px;
  height: 28px;
  border-radius: 16px;
  background-color: #29486D;
  color: #FFF;
  margin-top: auto;
  white-space: nowrap;  
}

.howto-section .inner .arrow {
  width: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Media Queries --- */

/* 1080px以下 */
@media (max-width: 1080px) {
  .interlude {
    margin-top: 48px;
  }
  .howto-section {
    margin-top: 64px;
  }
  .howto-section .inner {
    margin-top: 24px;
  }
  .howto-section .inner .box .icon {
    width: 88px;
  }
  .howto-section .inner .box h3 {
    font-size: 18px;
  }
}

/* 768px以下 */
@media (max-width: 768px) {
  .howto-section {
    margin-top: 48px;
  }
  .howto-section .inner {
    display: block;
    margin-top: 16px;
  }
  .howto-section .inner .box {
    width: 100%;
    padding: 20px 24px;
  }
  .howto-section .inner .box .icon {
    width: 32%;
  }
  .howto-section .inner .box h3 {
    font-size: 22px;
  }
  .howto-section .inner .arrow {
    transform: rotate(90deg);
    margin: 0px auto;
    width: 16%;
  }
}

/* 600px以下 */
@media (max-width: 600px) {
  .howto-section .inner .box {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
/* --- FAQ section 基本設定 --- */
.faq-section {
  background-color: #F4F6F8;
  width: 100%;
  padding: 48px 0px;
  margin-top: 80px;
}

.faq-section .trigger {
  font-weight: 600;
}

.faq-section p {
  font-weight: 400;
}

.faq-section .sub-container {
  max-width: 1056px;
  width: 88%;
  margin-top: 32px;
}

.faq-section .attention {
  font-size: 12px;
}

/* アニメーション用変数 */
:root {
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur: .32s;
}

/* FAQ Item */
.faq-section .item {
  display: grid;
  background-color: #FFF;
  row-gap: var(--gap, 0px);
  border: 1px solid var(--col-09);
  border-radius: .5rem;
  padding: 24px 32px;
  margin-top: 16px;
}

.faq-section .item.is-open {
  --gap: 8px;
}

/* Trigger */
.trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.trigger:focus-visible {
  outline-offset: 2px;
}

.arrow {
  transition: transform var(--dur) var(--ease);
}

.trigger[aria-expanded="true"] .arrow {
  transform: rotate(90deg); 
} 

.item .trigger span {
  font-size: 20px;
}

/* Panel */
.panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur) var(--ease), opacity var(--dur) linear;
  opacity: 0;
}

.panel.open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.panel-inner {
  overflow: hidden;
  padding: 0;
  transition: padding .18s var(--ease);
}

.panel.open .panel-inner {
  padding-top: 8px; 
}

/* --- Media Queries --- */

/* 980px以下 */
@media (max-width: 980px) {
  .faq-section {
    margin-top: 48px;
  }
  .faq-section .sub-container {
    margin-top: 24px;
  }
}

/* 600px以下 */
@media (max-width: 600px) {
  .faq-section {
    margin-top: 32px;
    padding: 48px 0px;
    padding-top: 32px;
  }
  .faq-section .item {
    padding: 16px 24px;
  }
}/* --- contact-section 基本設定 --- */
.contact-section {
  margin-top: 48px;
  border-bottom: 1px dashed var(--col-09-75);
  padding-bottom: 64px;
  gap: 32px;
}

.contact-section .contact-btns {
  margin-top: 16px;
}

/* CTAボタン共通 */
.contact-section .contact-btns .cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 24px 24px 42px;
  width: 640px;
  height: 86px;
  border-radius: 56px;
  margin: 0px auto;
}

.contact-section .contact-btns .cta-btn .icon {
  width: 72px;
  height: auto;
  margin-right: 16px;
}

.contact-section .contact-btns .cta-btn .text {
  text-align: left;
  letter-spacing: 0.1rem;
  line-height: 1.4;
}

.contact-section .contact-btns .cta-btn .text p.title {
  font-size: 28px;
  line-height: 1.0;
  margin-top: 0px;
}

.contact-section .contact-btns .cta-btn .text p {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.4;
}

/* 電話リンク */
.contact-section .contact-btns a.tel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 640px;
  height: 112px;
  margin: 32px auto 0px;
}

.contact-section .contact-btns a.tel .icon {
  width: 56px;
  height: auto;
  margin-right: 8px;
  padding-top: 2px;
}

.contact-section .contact-btns a.tel .text p {
  line-height: 1.0;
}

.contact-section .contact-btns a.tel .text p.tel-num {
  font-size: 40px;
  margin-top: 4px;
}

.contact-section .contact-btns a.tel .text p.attention {
  letter-spacing: 0.01rem;
  margin-top: 4px;
}

/* --- Media Queries --- */

/* 1280px以下 */
@media (max-width: 1280px) {
  .contact-section .contact-btns .cta-btn {
    padding: 24px 24px 24px 32px;
  }
  .contact-section .contact-btns .cta-btn .icon {
    width: 72px;
  }
  .contact-section .contact-btns .cta-btn .text p.title {
    font-size: 24px;
  }
  .contact-section .contact-btns .cta-btn .text p {
    font-size: 14px;
  }
}

/* 980px以下 */
@media (max-width: 980px) {
  .contact-section .contact-btns .cta-btn {
    padding: 24px;
    width: 88%;
  }
  .contact-section .contact-btns .cta-btn .icon {
    width: 72px;
  }
  .contact-section .contact-btns .cta-btn .text p.title {
    font-size: 20px;
  }
  .contact-section .contact-btns .cta-btn .text p {
    font-size: 14px;
  }
  .contact-section .contact-btns a.tel {
    width: 88%;
  }
  .contact-section .contact-btns a.tel .text p.tel-num {
    font-size: 30px;
  }
  .contact-section .contact-btns a.tel .text p.attention {
    margin-top: 4px;
    line-height: 1.2;
  }
}

/* 768px以下 */
@media (max-width: 768px) {
  .contact-section {
    padding-bottom: 32px;
  }
  .contact-section .contact-btns .cta-btn {
    width: 100%;
  }
  .contact-section .contact-btns .cta-btn .icon {
    width: 72px;
  }
  .contact-section .contact-btns .cta-btn .text p.title {
    font-size: 24px;
  }
  .contact-section .contact-btns .cta-btn .text p {
    font-size: 14px;
  }
}

/* 600px以下 */
@media (max-width: 600px) {
  .contact-section {
    margin-top: 32px;
  }
  .contact-section .contact-btns .cta-btn {
    flex-direction: column;
    height: 72px;
    text-align: center;
    border-radius: 36px;
  }
  .contact-section .contact-btns .cta-btn .icon {
    width: 60px;
    margin-right: 0px;
  }
  .contact-section .contact-btns .cta-btn .text p.title {
    font-size: 24px;
    text-align: center;
  }
  .contact-section .contact-btns .cta-btn .text p {
    font-size: 14px;
  }
  .contact-section .contact-btns a.tel .icon {
    width: 56px;
    height: auto;
    margin-right: 8px;
  }
}
  /* --- systeminfo-section 基本設定 --- */
.systeminfo-section {
  margin-top: 64px;
  width: 88%;
  max-width: 1280px;
  display: flex;
}

.systeminfo-section .system-one {
  width: 50%;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.systeminfo-section .system-one .content {
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.systeminfo-section .system-one .content .sysytemlogo {
  width: 340px;
  text-align: center;
  margin: 0px auto 8px;
}

.systeminfo-section .system-one .content h2 {
  font-size: 28px;
  font-weight: 700;
  padding-left: 8px;
  margin-top: 8px;
  text-align: center;
}

.systeminfo-section .system-one .content p {
  font-weight: 400;
  padding-left: 8px;
  margin-top: 8px;
  text-align: center;
}

.systeminfo-section .system-one .content .bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.systeminfo-section .system-one .content .image {
  width: 80%;
  margin: 16px auto 0px;
}

.systeminfo-section .system-one .content a.cta-btn {
  margin: 24px auto 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  width: 72%;
  padding: 24px;
  border: none;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

/* --- Media Queries --- */

/* 1220px以下 */
@media (max-width: 1220px) {
  .systeminfo-section .system-one .content {
    padding-top: 16px;
  }
  .systeminfo-section .system-one .content .sysytemlogo {
    width: 320px;
  }
  .systeminfo-section .system-one .content h2 {
    font-size: 24px;
  }
  .systeminfo-section .system-one .content a.cta-btn {
    width: 78%;
    height: 56px;
    padding: 24px;
    border: none;
  }
  .systeminfo-section .system-one .content .image {
    width: 100%;
  }
}

/* 1040px以下 */
@media (max-width: 1040px) {
  .systeminfo-section .system-one .content h2 {
    font-size: 20px;
  }
  .systeminfo-section .system-one .content p {
    font-size: 14px;
  }
}

/* 980px以下 */
@media (max-width: 980px) {
  .systeminfo-section .system-one .content {
    width: 90%;
    padding-top: 0px;
    height: auto;
  }
  .systeminfo-section .system-one .content .sysytemlogo {
    width: 80%;
  }
  .systeminfo-section .system-one .content h2 {
    font-size: 20px;
    margin-top: 4px;
  }
  .systeminfo-section .system-one .content p {
    font-size: 14px;
    margin-top: 4px;
  }
  .systeminfo-section .system-one .content a.cta-btn {
    width: 90%;
    height: 64px;
    padding: 24px;
    border: none;
    margin-top: 12px;
  }
  .systeminfo-section .system-one .content .bottom .image {
    width: 88%;
    margin-top: 8px;
  }
}

/* 768px以下 */
@media (max-width: 768px) {
  .systeminfo-section {
    margin-top: 16px;
    width: 88%;
    flex-flow: column;
    justify-content: center;
  }
  .systeminfo-section .system-one {
    height: auto;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
    width: 100%;
  }
  .systeminfo-section .system-one:nth-of-type(2) {
    margin-top: 32px;
  }
  .systeminfo-section .system-one .content {
    padding-top: 32px;
    width: 100%;
  }
  .systeminfo-section .system-one .content .sysytemlogo {
    width: 72%;
    margin: 0px auto;
  }
  .systeminfo-section .system-one .content h2 {
    font-size: 22px;
    padding-left: 0px;
  }
  .systeminfo-section .system-one .content p {
    font-size: 16px;
    padding-left: 0px;
    margin-top: 8px;
  }
  .systeminfo-section .system-one .content .image {
    max-width: 100%;
    margin-top: 16px;
    width: 100%;
  }
  .systeminfo-section .system-one .content a.cta-btn {
    width: 100%;
    height: 64px;
    padding: 24px;
    border: none;
    margin-top: 8px;
  }
}
/* contact */
.contact-content .contact_container {
    max-width: 720px;
    width: 88%;
    margin: 0px auto;
    padding-top: 112px;
}

/* footer */
#bgCanvas{
  inset:0;
  width:100%; height:120px; display:block;
  opacity:0; transition:opacity .3s ease;
}
#bgCanvas.is-ready{ opacity:1; }
#bgCanvas {
    background-image: url('<?php echo get_template_directory_uri(); ?>/src/anni/city.jpg');
    background-size: cover;
    background-position: center;
}
/* --- footer 基本設定 --- */
footer {
  width: 100%;
  color: #FFF;
  background-color: #bcb3ab;
  margin-top: 80px;
}

footer .footer-inner {
  max-width: 1080px;
  width: 88%;
  margin: 0 auto;
  padding: 48px 0px;
}

footer .footer-inner .footer-content {
  display: block;
}

footer .footer-inner .footer-content .logo-section {
  width: 36%;
}

footer .footer-inner .footer-content .logo-section img {
  width: 280px;
}

footer .footer-inner .footer-content .logo-section p {
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 0.04rem;
}

footer .footer-inner .footer-content .footer-links {
  margin-top: 32px;
}

footer .footer-inner .footer-content .footer-links ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none; /* リスト記号消去の追加 */
  padding: 0;
}

footer .footer-inner .footer-content .footer-links ul li {
  margin-right: 24px;
  font-size: 14px;
}

footer .footer-inner .company {
  text-align: left;
  margin-top: 80px;
}

footer .footer-inner .company img {
  width: 112px;
  margin-top: 0px;
}

footer .footer-inner .company p {
  font-size: 12px;
}

footer .footer-inner .company p.company-name {
  font-size: 14px;
  margin-bottom: 8px;
}

footer .footer-inner .company p.company-adress {
  margin-top: 0px;
  font-weight: 400;
}

footer .footer-inner p.copyright {
  text-align: center;
  font-size: 12px;
  margin-top: 48px;
}

/* --- Media Queries --- */

/* 1080px以下 */
@media (max-width: 1080px) {
  footer .footer-inner .footer-content .logo-section img {
    width: 72%;
  }
  footer .footer-inner .footer-content .logo-section p {
    margin-top: 8px;
  }
  footer .footer-inner .footer-content .footer-links {
    margin-left: 4%;
  }
  footer .footer-inner .footer-content .footer-links ul li {
    font-size: 12px;
  }
}

/* 980px以下 */
@media (max-width: 980px) {
  footer .footer-inner .footer-content .logo-section {
    width: 100%;
  }
  footer .footer-inner .footer-content .logo-section img {
    width: 48%;
  }
  footer .footer-inner .footer-content .logo-section p {
    font-size: 14px;
  }
  footer .footer-inner .footer-content .footer-links {
    width: 100%;
    margin-left: 0px;
    margin-top: 24px;
  }
  footer .footer-inner .footer-content .footer-links ul {
    margin-left: 0px;
    flex-wrap: wrap;
    line-height: 180%;
  }
  footer .footer-inner .footer-content .footer-links ul li {
    font-size: 16px;
  }
}

/* 768px以下 */
@media (max-width: 768px) {
  footer .footer-inner .footer-content .logo-section {
    width: 100%;
  }
  footer .footer-inner .footer-content .logo-section img {
    width: 62%;
  }
  footer .footer-inner .footer-content .logo-section p {
    margin-top: 8px;
  }
  footer .footer-inner .footer-content .footer-links {
    width: 100%;
  }
  footer .footer-inner .footer-content .footer-links ul li {
    font-size: 14px;
  }
}

/* 600px以下 */
@media (max-width: 600px) {
  footer .footer-inner .footer-content .footer-links ul {
    display: block;
  }
  footer .footer-inner .footer-content .footer-links ul li {
    margin-top: 12px;
  }
}

/* contact */
	.contact-content .contact_container.contact-complete {
		text-align: center;
	}
	.contact-content .contact_container.contact-complete h3{
		font-size: 26px;
		font-weight: 900;
		margin-bottom: 12px;
	}
	.contact-content .contact_container.contact-complete .icon{
		width: 32%;
		margin: 0px auto;
	}
	@media screen and (max-width:780px) {
		.contact-content .contact_container.contact-complete .icon{
			width: 48%;
			margin: 0px auto;
		}
	}/* --- modal 基本設定 --- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
  z-index: 11;
}

.modal:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}

.modal.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 800px;
  width: 88%;
}

.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
}

/* --- modal-content --- */
.modal-content {
  background: #fff;
  padding: 48px 32px 48px 48px;
  overflow: hidden;
  border-radius: 24px;
  max-height: 80vh;
}

.modal-content p.lead {
  font-size: 16px;
  text-align: center;
  margin-bottom: 8px;
}

/* modal-content-inner */
.modal-content .modal-content-inner {
  max-height: calc(80vh - 320px);
  overflow-y: scroll;
  height: auto;
  padding-right: 16px;
  border-bottom: 1px dashed #CCC;
  border-top: 1px dashed #CCC;
}

.modal-content .modal-content-inner p {
  text-indent: -28px;
  padding-left: 28px;
}

.modal-content .modal-content-inner p:before {
  content: "";
  background-image: url(../images/icon-check.png);
  color: var(--col-01);
  font-weight: 700;
  margin-right: 4px;
  padding-left: 24px;
  background-size: 24px;
  background-repeat: no-repeat;
}

/* modal box & list */
.modal-content .modal-content-inner .box p {
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  margin-top: 32px;
}

.modal-content .modal-content-inner .box ul {
  margin-left: 32px;
  list-style: none; /* デフォルトのポッチを消す */
  padding: 0;
}

.modal-content .modal-content-inner .box ul li {
  border: 1px solid var(--col-09);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 12px;
  font-size: 12px;
  margin-top: 4px;
}

.modal-content .modal-content-inner .box ul li span {
  width: 24%;
}

.modal-content .modal-content-inner .box p.attention {
  font-size: 14px;
  font-weight: 400;
  margin-top: 8px;
}

.modal-content .modal-content-inner .box p.attention:before {
  background: none;
  padding-left: 0px;
}

/* modal CTA */
.modal-content .modal-cta .cta-btn {
  width: 100%;
  height: 80px;
  margin-top: 16px;
  display: flex;
  flex-flow: column;
}

.modal-content .modal-cta .cta-btn span {
  display: block;
  font-size: 12px;
}

.modal-content .modal-cta p.attention {
  font-size: 14px;
  margin-top: 16px;
}

.modal-content .modal-cta-sub a.cta-btn {
  width: 100%;
  height: 48px;
  margin-top: 16px;
  display: flex;
  flex-flow: column;
  font-size: 16px;
  background-color: #FFF;
  border: 2px solid var(--col-09);
  box-shadow: none;
}

/* --- Media Queries (768px以下) --- */
@media (max-width: 768px) {
  .modal-container {
    width: 98%;
  }

  .modal-container .modal-close {
    top: -16px;
    right: -16px;
  }

  .modal-content {
    padding: 20px 12px;
    border-radius: 16px;
  }

  .modal-content .modal-content-inner .box p {
    margin-top: 16px;
  }

  .modal-content .modal-content-inner .box ul {
    margin-left: 24px;
  }

  .modal-content .modal-content-inner .box ul li {
    padding: 8px;
    display: block;
  }

  .modal-content .modal-content-inner .box ul li span {
    display: block;
  }

  .modal-content .modal-cta a {
    font-size: 20px;
  }
}
body.is-scroll-locked {
    position: fixed;
    width: 100%;
  }
html.is-scroll-locked {
    overflow-y: scroll;
  }