@charset "utf-8";

:root {
  --text-black: #000;
  --text-white: #fff;
  --text-blue: #234990;
  --text-orange: #db4c01;
  --text-soft-orange: #ec930d;
  --text-light-orange: #f5b453;

  --base-black: #000;
  --base-white: #fff;
  --base-light-gray: #d3d3d3;
  --base-light-yellow: #fef4db;
  --base-orange: #db4c01;
  --base-soft-orange: #ec930d;
  --base-light-orange: #f5b453;
  --base-navy: #234990;
  --base-light-blue: #d8ebf5;

  --line-white: #fff;
  --line-green: #c8ffb4;
}

/* ******************************************** */
/*　画面サイズが480pxからはここを読み込む　スマホ　*/
/* ******************************************** */
@media screen and (min-width: 0) and (max-width: 768px) {
  header {
    background-color: var(--base-white);
    display: none;
  }

  header div#topbar {
    display: flex;
    width: 90%;
    margin: 0 2% 0 8%;
    justify-content: space-between;
    color: var(--base-orange);
  }

  header div#topbar div#topbarinner {
    display: flex;
  }

  .top1 {
    padding: 5px 0;
    color: var(--text-orange);
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .top1 > .strong {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .top2 {
    padding: 5px 0;
    margin-right: 15px;
    text-align: center;
  }

  .top2 .tel {
    color: var(--text-orange);
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .top2 .time {
    font-size: 0.9em;
    border-top: solid 1px #333;
    color: var(--text-orange);
  }

  .top3 {
    padding: 5px 15px;
    display: flex;
    align-items: center;
    background: var(--base-orange);
    color: var(--text-white);
    font-size: 1.25em;
    line-height: 30px;
  }

  .top3 img {
    width: 30px;
    height: 30px;
    margin-right: 1em;
  }

  .topview {
    background-color: var(--base-light-orange);
    background-blend-mode: lighten;
    width: 100vw;
    position: relative;
  }
  .topview::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../img/topbg2.png);
    background-size: contain;
  }
  .topview-fukidashi {
    position: relative;
  }
  .topview-fukidashi > .fukidashi {
    display: none;
  }
  .topview-fukidashi > .fukidashi90 {
    display: block;
  }
  .topview-logo-and-service {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 75vw;
    transform: translate(-50%, -50%);
    margin: auto;
  }
  .topview-logo {
    width: 100%;
  }
  .topview-logo.toplogo {
    display: none;
  }
  .topview-logo.toplogo2 {
    display: block;
  }
  .topview-service {
    display: block;
    width: 100%;
    margin: auto;
  }
  .topview-service > .service-title {
    background-color: var(--base-white);
    color: var(--text-soft-orange);
    border: var(--base-orange) solid 3px;
    border-radius: 3%;
    color: var(--text-orange);
    margin: 3px;
    padding: 5px;
    white-space: nowrap;
    text-align: center;
    align-items: center;
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .topview-service > .service-title > br {
    display: none;
  }
  .topview-service > .services {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
  }
  .topview-service > .services > p {
    list-style: none;
    color: var(--base-white);
    background-color: var(--text-orange);
    border-radius: 3%;
    margin: 3px;
    padding: 5px;
    white-space: nowrap;
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .topview-merit {
    position: absolute;
    bottom: 5%;
    left: 58%;
    width: 85vw;
    transform: translate(-50%, 0);
  }
  .topview-merit .merittop {
    display: none;
  }
  .topview-merit .merittop2 {
    display: block;
  }

  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
  }
  .calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
  }
  .calendar-day:hover {
    background-color: #3b82f6;
    color: white;
    transform: scale(1.05);
  }
  .calendar-day.selected {
    background-color: #1d4ed8;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.4);
  }
  .calendar-day.disabled {
    color: #d1d5db;
    cursor: not-allowed;
    opacity: 0.5;
  }
  .calendar-day.disabled:hover {
    background-color: transparent;
    color: #d1d5db;
    transform: none;
  }
  .time-slot {
    transition: all 0.2s;
  }
  .time-slot:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  .time-slot.selected {
    background-color: #1d4ed8;
    color: white;
  }

  /* ナビゲーション部分 */
  .nav {
    display: none;
  }
  .nav > li {
    text-align: center;
    border-right: 1px solid var(--base-light-gray);
  }
  .nav > li:first-of-type {
    border-left: 1px solid var(--base-light-gray);
  }
  .nav > li > a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 15px;
    font-size: 0.75rem;
    line-height: 1rem;
  }

  /* チャット部分 */
  .chat {
    position: relative;
    padding: 50px 0;
    background-color: var(--base-light-yellow);
  }
  .chat-container {
    width: 90%;
    border-radius: 50px;
    background-image: url(../img/chatbg.jpg);
    background-size: cover;
    padding: 50px 20px 20px 20px;
    margin: 0 auto;
  }
  .chat-title {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translate(-50%);
    font-weight: bold;
    background-color: var(--base-navy);
    color: var(--text-white);
    padding: 5px 10px;
    width: 300px;
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .chat-bubble-left {
    background: var(--line-white);
    border-radius: 18px;
    position: relative;
    left: 15px;
    width: 90%;
    margin-top: 40px;
    padding: 15px 30px;
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .chat-bubble-left::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: -5px;
    left: -40px;
    border: 15px solid transparent;
    border-right: 50px solid var(--line-white);
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
  }
  .chat-bubble-left-no-avatar {
    padding-left: calc(50px + 0.75rem);
  }
  .chat-bubble-right {
    background: var(--line-green);
    border-radius: 18px;
    position: relative;
    right: 15px;
    width: 90%;
    margin-top: 40px;
    padding: 15px 30px;
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .chat-bubble-right::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -40px;
    border: 15px solid transparent;
    border-left: 50px solid var(--line-green);
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }
  .chat-text-strong {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: bold;
  }
  .support-avatar {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  }

  /* 予約アナウンス */

  .application-announcement-container {
    padding: 20px;
    background-color: var(--base-light-orange);
    position: relative;
  }
  .application-announcement-container::before {
    content: '';
    position: absolute;
    top: -10vw;
    left: 0;
    border-bottom: 11vw solid var(--text-light-orange); /* 好みで高さ色を変えてください */
    border-right: 55vw solid transparent;
  }
  .application-announcement-container::after {
    content: '';
    position: absolute;
    top: -10vw;
    right: 0;
    border-bottom: 11vw solid var(--text-light-orange); /* 好みで高さ色を変えてください */
    border-left: 55vw solid transparent;
  }
  .application-announcement-body {
    padding: 20px;
    background-color: var(--base-white);
    text-align: center;
  }
  .application-announcement-body > .announce-text {
    color: var(--text-black);
    letter-spacing: 3px;
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .application-announcement-body > .announce-text.strong {
    color: var(--text-black);
    letter-spacing: 8px;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .application-announcement-flexGroup {
    /* display: flex;
        justify-content: center; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  .application-announcement-flexGroup > .announce-info1 {
    color: var(--text-soft-orange);
    padding: 15px 0;
    letter-spacing: 3px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
  }
  .application-announcement-flexGroup > .announce-info1 > .strong {
    color: var(--text-soft-orange);
    padding: 5px 0;
    letter-spacing: 3px;
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .application-announcement-flexGroup > .announce-info2 {
    color: var(--text-soft-orange);
    padding: 5px 0;
    margin-right: 15px;
    text-align: center;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .application-announcement-flexGroup > .announce-info2 .tel {
    color: var(--base-soft-orange);
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .application-announcement-flexGroup > .announce-info2 .time {
    font-size: 0.9em;
    border-top: solid 1px #333;
    color: var(--base-soft-orange);
    font-size: 0.55rem;
    line-height: 1rem;
  }
  .application-announcement-flexGroup > .announce-info3 {
    padding: 5px 15px;
    display: flex;
    align-items: center;
    background-color: var(--base-soft-orange);
    color: var(--text-white);
    font-size: 0.875rem;
    line-height: 1.25rem;
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .application-announcement-flexGroup > .announce-info3 img {
    width: 15px;
    height: 15px;
    margin-right: 1em;
  }

  /* お客様の声 */
  .customer-voice {
    padding: 50px 0;
  }
  .customer-voice-title {
    color: var(--text-blue);
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 5px;
  }
  .customer-voice-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 10px;
    margin: 0 10px 0 20px;
  }

  /* ご利用の流れ */
  .usage-flow {
    padding: 100px 0;
  }
  .usage-flow-title {
    display: flex;
    justify-content: center;
    align-items: end;
    color: var(--text-black);
  }
  .usage-flow-title > img {
    width: 200px;
  }
  .usage-flow-title > p {
    color: var(--text-black);
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .usage-flow-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 80px 1fr 80px 1fr;
    padding: 50px 100px;
    background-color: var(--base-light-yellow);
  }
  .usage-flow-content > p {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    text-align: center;
    font-size: 1rem;
    color: var(--text-black);
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .usage-flow-arrow {
    display: flex;
    transform: rotate(90deg);
  }
  .usage-flow-arrow > img {
    margin: auto;
    padding: 0 10px;
    width: 80px;
  }

  /* 対応地域 */
  .service-area {
    padding: 0;
  }
  .service-area-title {
    color: var(--text-blue);
  }
  .service-area-container {
    position: relative;
    padding: 50px 10px 10px 10px;
    background-color: var(--base-light-blue);
  }
  .service-area-textGroup {
    position: absolute;
    top: 10px;
    left: 10px;
  }
  .service-area-textGroup > .text1 {
    color: var(--text-blue);
    font-weight: bold;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .service-area-textGroup > .text2 {
    color: var(--text-white);
    background-color: var(--base-navy);
    font-weight: bold;
    padding: 5px;
    letter-spacing: 0.5rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .service-area-map {
    width: 80%;
    margin: auto;
  }

  /* ご利用料金 */
  .usage-fee {
    padding: 100px 0;
  }
  .usage-fee-title {
    color: var(--text-blue);
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .usage-fee-container > .description > p {
    color: var(--text-blue);
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .usage-fee-content {
    width: 100vw;
  }
  .usage-fee-content.bgImage {
    background-image: url(../img/topbg2.png);
    background-size: contain;
  }
  .usage-fee-content > .usage-fee-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
    width: 90%;
  }
  .usage-fee-content > .usage-fee-servce {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 0 10px;
  }
  .usage-fee-servce-item {
    height: 50px;
    background-color: var(--base-soft-orange);
    color: var(--text-white);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .usage-fee-content > .usage-fee-table {
    display: grid;
    grid-template-rows: 50px 60px 60px 60px 60px;
    gap: 10px;
    width: 100vw;
    margin: 0 auto;
    padding-bottom: 30px;
  }
  .usage-fee-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: var(--base-light-yellow);
    color: var(--text-blue);
  }
  .usage-fee-table-row.header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    background-color: var(--base-light-orange);
    color: var(--text-white);
  }
  .usage-fee-table-row.header > div > span {
    font-weight: 700;
  }

  .usage-fee-table-row > div {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
  }
  .usage-fee-table-row > div .normal {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .usage-fee-table-row > div .strong {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .usage-fee-note > p {
    color: var(--text-blue);
    margin: 0 auto;
    width: 80%;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  /* FAQ */
  .faq {
    padding: 150px 0;
  }

  /* お問い合わせフォーム */
  .contact {
    padding: 100px 0;
  }

  /* オフィス情報 */
  .office-info p {
    color: var(--text-black);
  }

  /* フッター */
  .footer {
    color: var(--text-white);
    background-color: var(--base-soft-orange);
    padding: 20px;
  }
  .footer-logo {
    width: 300px;
  }
}

/* ******************************************** */
/*　画面サイズが768pxから1024pxまではここを読み込む　タブレット　*/
/* ******************************************** */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  header {
    background-color: var(--base-white);
    display: block;
  }

  header div#topbar {
    display: flex;
    width: 90%;
    margin: 0 2% 0 8%;
    justify-content: space-between;
    color: var(--base-orange);
  }

  header div#topbar div#topbarinner {
    display: flex;
  }

  .top1 {
    padding: 5px 0;
    color: var(--text-orange);
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .top1 > .strong {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .top2 {
    padding: 5px 0;
    margin-right: 15px;
    text-align: center;
  }

  .top2 .tel {
    color: var(--text-orange);
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .top2 .time {
    font-size: 0.9em;
    border-top: solid 1px #333;
    color: var(--text-orange);
  }

  .top3 {
    padding: 5px 15px;
    display: flex;
    align-items: center;
    background: var(--base-orange);
    color: var(--text-white);
    font-size: 1.25em;
    line-height: 30px;
  }

  .top3 img {
    width: 30px;
    height: 30px;
    margin-right: 1em;
  }

  .topview {
    margin-top: 50px;
    background-color: var(--base-light-orange);
    background-blend-mode: lighten;
    width: 100vw;
    position: relative;
  }
  .topview::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../img/topbg2.png);
    background-size: cover;
  }
  .topview-fukidashi {
    position: relative;
  }
  .topview-fukidashi > .fukidashi {
    display: block;
  }
  .topview-fukidashi > .fukidashi90 {
    display: none;
    transform: rotate(0deg);
  }
  .topview-logo-and-service {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 65vw;
    transform: translate(0%, -50%);
  }
  .topview-logo {
    width: 70%;
  }
  .topview-logo.toplogo {
    display: block;
  }
  .topview-logo.toplogo2 {
    display: none;
  }
  .topview-service {
    display: flex;
  }
  .topview-service > .service-title {
    background-color: var(--base-white);
    color: var(--text-soft-orange);
    width: 7em;
    border: var(--base-orange) solid 3px;
    border-radius: 3%;
    color: var(--text-orange);
    margin: 3px 3px 3px 30px;
    padding: 5px;
    white-space: nowrap;
    text-align: center;
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .topview-service > .services {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
  }
  .topview-service > .services > p {
    list-style: none;
    color: var(--base-white);
    background-color: var(--text-orange);
    border-radius: 3%;
    margin: 3px;
    padding: 5px;
    white-space: nowrap;
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .topview-merit {
    position: absolute;
    top: 55%;
    right: 5%;
    width: 30vw;
    transform: translate(0, -50%);
  }
  .topview-merit .merittop {
    display: block;
  }
  .topview-merit .merittop2 {
    display: none;
  }

  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
  }
  .calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 60px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
  }
  .calendar-day:hover {
    background-color: #3b82f6;
    color: white;
    transform: scale(1.05);
  }
  .calendar-day.selected {
    background-color: #1d4ed8;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.4);
  }
  .calendar-day.disabled {
    color: #d1d5db;
    cursor: not-allowed;
    opacity: 0.5;
  }
  .calendar-day.disabled:hover {
    background-color: transparent;
    color: #d1d5db;
    transform: none;
  }
  .time-slot {
    transition: all 0.2s;
  }
  .time-slot:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  .time-slot.selected {
    background-color: #1d4ed8;
    color: white;
  }

  /* ナビゲーション部分 */
  .nav {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin: 0;
  }
  .nav > li {
    text-align: center;
    border-right: 1px solid var(--base-light-gray);
  }
  .nav > li:first-of-type {
    border-left: 1px solid var(--base-light-gray);
  }
  .nav > li > a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 15px;
    font-size: 0.75rem;
    line-height: 1rem;
  }

  /* チャット部分 */
  .chat {
    position: relative;
    padding: 150px 0;
    background-color: var(--base-light-yellow);
  }
  .chat-container {
    width: 80%;
    border-radius: 50px;
    background-image: url(../img/chatbg.jpg);
    background-size: cover;
    padding: 100px 20px 20px 20px;
    margin: 0 auto;
  }
  .chat-title {
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translate(-50%);
    font-weight: bold;
    background-color: var(--base-navy);
    color: var(--text-white);
    padding: 25px 50px;
    width: 550px;
    text-align: center;
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .chat-bubble-left {
    background: var(--line-white);
    border-radius: 18px;
    position: relative;
    left: 15px;
    width: 80%;
    margin-top: 40px;
    padding: 15px 30px;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .chat-bubble-left::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: -5px;
    left: -40px;
    border: 15px solid transparent;
    border-right: 50px solid var(--line-white);
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
  }
  .chat-bubble-left-no-avatar {
    padding-left: calc(100px + 0.75rem);
  }
  .chat-bubble-right {
    background: var(--line-green);
    border-radius: 18px;
    position: relative;
    right: 15px;
    width: 80%;
    margin-top: 40px;
    padding: 15px 30px;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .chat-bubble-right::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -40px;
    border: 15px solid transparent;
    border-left: 50px solid var(--line-green);
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }
  .chat-text-strong {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: bold;
  }
  .support-avatar {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  }

  /* 予約アナウンス */
  .application-announcement-container {
    padding: 40px 40px 40px 40px;
    background-color: var(--base-light-orange);
    position: relative;
  }
  .application-announcement-container::before {
    content: '';
    position: absolute;
    top: -10vw;
    left: 0;
    border-bottom: 11vw solid var(--text-light-orange); /* 好みで高さ色を変えてください */
    border-right: 55vw solid transparent;
  }
  .application-announcement-container::after {
    content: '';
    position: absolute;
    top: -10vw;
    right: 0;
    border-bottom: 11vw solid var(--text-light-orange); /* 好みで高さ色を変えてください */
    border-left: 55vw solid transparent;
  }
  .application-announcement-body {
    padding: 20px;
    background-color: var(--base-white);
    text-align: center;
  }
  .application-announcement-body > .announce-text {
    color: var(--text-black);
    letter-spacing: 3px;
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .application-announcement-body > .announce-text.strong {
    color: var(--text-black);
    letter-spacing: 8px;
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .application-announcement-flexGroup {
    display: flex;
    justify-content: center;
  }
  .application-announcement-flexGroup > .announce-info1 {
    color: var(--text-soft-orange);
    padding: 15px 0;
    letter-spacing: 3px;
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .application-announcement-flexGroup > .announce-info1 > .strong {
    color: var(--text-soft-orange);
    padding: 5px 0;
    letter-spacing: 3px;
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .application-announcement-flexGroup > .announce-info2 {
    color: var(--text-soft-orange);
    padding: 5px 0;
    margin-right: 15px;
    text-align: center;
  }
  .application-announcement-flexGroup > .announce-info2 .tel {
    color: var(--base-soft-orange);
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .application-announcement-flexGroup > .announce-info2 .time {
    font-size: 0.9em;
    border-top: solid 1px #333;
    color: var(--base-soft-orange);
  }
  .application-announcement-flexGroup > .announce-info3 {
    padding: 5px 15px;
    display: flex;
    align-items: center;
    background-color: var(--base-soft-orange);
    color: var(--text-white);
    font-size: 1.25em;
    line-height: 30px;
  }
  .application-announcement-flexGroup > .announce-info3 img {
    width: 30px;
    height: 30px;
    margin-right: 1em;
  }

  /* お客様の声 */
  .customer-voice {
    padding: 150px 0;
  }
  .customer-voice-title {
    color: var(--text-blue);
    font-size: 2.25rem;
    line-height: 2.5rem;
    margin-bottom: 12px;
  }
  .customer-voice-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    margin: 0 40px 0 80px;
  }

  /* ご利用の流れ */
  .usage-flow {
    padding: 100px 0;
  }
  .usage-flow-title {
    display: flex;
    justify-content: center;
    align-items: end;
    color: var(--text-black);
  }
  .usage-flow-title > img {
    width: 300px;
  }
  .usage-flow-title > p {
    color: var(--text-black);
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .usage-flow-container {
    display: grid;
    grid-template-columns: 1fr 80px 1fr 80px 1fr;
    padding: 50px 100px;
    background-color: var(--base-light-yellow);
  }
  .usage-flow-content > p {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    text-align: center;
    margin-top: 20px;
    font-size: 1rem;
    color: var(--text-black);
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .usage-flow-arrow {
    padding-bottom: 100px;
    display: flex;
  }
  .usage-flow-arrow > img {
    margin: auto;
    padding: 0 10px;
  }

  /* 対応地域 */
  .service-area {
    padding: 100px 0;
  }
  .service-area-title {
    color: var(--text-blue);
  }
  .service-area-container {
    position: relative;
    padding: 60px;
    background-color: var(--base-light-blue);
  }
  .service-area-textGroup {
    position: absolute;
    top: 10%;
    left: 15%;
  }
  .service-area-textGroup > .text1 {
    color: var(--text-blue);
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .service-area-textGroup > .text2 {
    color: var(--text-white);
    background-color: var(--base-navy);
    font-weight: bold;
    padding: 10px;
    letter-spacing: 0.5rem;
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .service-area-map {
    width: 80%;
    margin: auto;
  }

  /* ご利用料金 */
  .usage-fee {
    padding: 150px 0;
  }
  .usage-fee-title {
    color: var(--text-blue);
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .usage-fee-container > .description > p {
    color: var(--text-blue);
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .usage-fee-content {
    width: 100vw;
  }
  .usage-fee-content.bgImage {
    background-image: url(../img/topbg2.png);
    background-size: cover;
  }
  .usage-fee-content > .usage-fee-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    width: 60%;
  }
  .usage-fee-content > .usage-fee-servce {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    padding: 0 50px;
  }
  .usage-fee-servce-item {
    height: 75px;
    background-color: var(--base-soft-orange);
    color: var(--text-white);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .usage-fee-content > .usage-fee-table {
    display: grid;
    grid-template-rows: 50px 60px 60px 60px 60px;
    gap: 10px;
    width: 80vw;
    margin: 0 auto;
    padding-bottom: 30px;
  }
  .usage-fee-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: var(--base-light-yellow);
    color: var(--text-blue);
  }
  .usage-fee-table-row.header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    background-color: var(--base-light-orange);
    color: var(--text-white);
  }
  .usage-fee-table-row > div {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .usage-fee-table-row > div .normal {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .usage-fee-table-row > div .strong {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .usage-fee-note > p {
    color: var(--text-blue);
    margin: 0 auto;
    width: 80%;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  /* FAQ */
  .faq {
    padding: 150px 0;
  }

  /* お問い合わせフォーム */
  .contact {
    padding: 100px 0;
  }

  /* オフィス情報 */
  .office-info p {
    color: var(--text-black);
  }

  /* フッター */
  .footer {
    color: var(--text-white);
    background-color: var(--base-soft-orange);
    padding: 20px 40px;
  }
  .footer-logo {
    width: 300px;
  }
}

/* ******************************************** */
/*　画面サイズが1024pxからはここを読み込む　PC　*/
/* ******************************************** */
@media screen and (min-width: 1024px) {
  body {
    overflow-x: hidden;
  }

  header {
    background-color: var(--base-white);
    display: block;
  }

  header div#topbar {
    display: flex;
    width: 90%;
    margin: 0 2% 0 8%;
    justify-content: space-between;
    color: var(--base-orange);
  }

  header div#topbar div#topbarinner {
    display: flex;
  }

  .top1 {
    padding: 15px 0;
    color: var(--text-orange);
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .top1 > .strong {
    font-size: 3rem;
    line-height: 1;
  }

  .top2 {
    padding: 15px 0;
    margin-right: 15px;
    text-align: center;
  }

  .top2 .tel {
    color: var(--text-orange);
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .top2 .time {
    font-size: 0.9em;
    border-top: solid 1px #333;
    color: var(--text-orange);
  }

  .top3 {
    padding: 15px 25px;
    display: flex;
    align-items: center;
    background: var(--base-orange);
    color: var(--text-white);
    font-size: 1.5em;
    line-height: 50px;
  }

  .top3 img {
    width: 50px;
    height: 50px;
    margin-right: 1em;
  }

  .topview {
    margin-top: 90px;
    background-color: var(--base-light-orange);
    background-blend-mode: lighten;
    width: 100vw;
    position: relative;
  }
  .topview::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../img/topbg2.png);
    background-size: cover;
  }
  .topview-fukidashi {
    position: relative;
  }
  .topview-fukidashi > .fukidashi {
    display: block;
  }
  .topview-fukidashi > .fukidashi90 {
    display: none;
    transform: rotate(0deg);
  }
  .topview-logo-and-service {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 70vw;
    transform: translate(0%, -50%);
  }
  .topview-logo {
    width: 70%;
  }
  .topview-logo.toplogo {
    display: block;
  }
  .topview-logo.toplogo2 {
    display: none;
  }
  .topview-service {
    display: flex;
  }
  .topview-service > .service-title {
    background-color: var(--base-white);
    color: var(--text-soft-orange);
    width: 7em;
    border: var(--base-orange) solid 3px;
    border-radius: 3%;
    color: var(--text-orange);
    margin: 3px 3px 3px 30px;
    padding: 5px;
    white-space: nowrap;
    text-align: center;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .topview-service > .services {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
  }
  .topview-service > .services > p {
    list-style: none;
    color: var(--base-white);
    background-color: var(--text-orange);
    border-radius: 3%;
    margin: 3px;
    padding: 5px;
    white-space: nowrap;
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .topview-merit {
    position: absolute;
    top: 55%;
    right: 5%;
    width: 30vw;
    transform: translate(0, -50%);
  }
  .topview-merit .merittop {
    display: block;
  }
  .topview-merit .merittop2 {
    display: none;
  }

  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
  }
  .calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 60px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
  }
  .calendar-day:hover {
    background-color: #3b82f6;
    color: white;
    transform: scale(1.05);
  }
  .calendar-day.selected {
    background-color: #1d4ed8;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.4);
  }
  .calendar-day.disabled {
    color: #d1d5db;
    cursor: not-allowed;
    opacity: 0.5;
  }
  .calendar-day.disabled:hover {
    background-color: transparent;
    color: #d1d5db;
    transform: none;
  }
  .time-slot {
    transition: all 0.2s;
  }
  .time-slot:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  .time-slot.selected {
    background-color: #1d4ed8;
    color: white;
  }

  /* ナビゲーション部分 */
  .nav {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin: 0 50px;
  }
  .nav > li {
    text-align: center;
    border-right: 1px solid var(--base-light-gray);
  }
  .nav > li:first-of-type {
    border-left: 1px solid var(--base-light-gray);
  }
  .nav > li > a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 15px;
  }

  /* チャット部分 */
  .chat {
    position: relative;
    padding: 150px 0;
    background-color: var(--base-light-yellow);
  }
  .chat-container {
    width: 80%;
    border-radius: 50px;
    background-image: url(../img/chatbg.jpg);
    background-size: cover;
    padding: 100px 20px 20px 20px;
    margin: 0 auto;
  }
  .chat-title {
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translate(-50%);
    font-weight: bold;
    background-color: var(--base-navy);
    color: var(--text-white);
    padding: 25px 50px;
    width: 650px;
    text-align: center;
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .chat-bubble-left {
    background: var(--line-white);
    border-radius: 18px;
    position: relative;
    left: 15px;
    width: 80%;
    margin-top: 40px;
    padding: 15px 30px;
  }
  .chat-bubble-left::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: -5px;
    left: -40px;
    border: 15px solid transparent;
    border-right: 50px solid var(--line-white);
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
  }
  .chat-bubble-left-no-avatar {
    padding-left: calc(100px + 0.75rem);
  }
  .chat-bubble-right {
    background: var(--line-green);
    border-radius: 18px;
    position: relative;
    right: 15px;
    width: 80%;
    margin-top: 40px;
    padding: 15px 30px;
  }
  .chat-bubble-right::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -40px;
    border: 15px solid transparent;
    border-left: 50px solid var(--line-green);
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }
  .chat-text-strong {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: bold;
  }
  .support-avatar {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  }

  /* 予約アナウンス */
  .application-announcement-container {
    padding: 40px 80px 80px 80px;
    background-color: var(--base-light-orange);
    position: relative;
  }
  .application-announcement-container::before {
    content: '';
    position: absolute;
    top: -10vw;
    left: 0;
    border-bottom: 11vw solid var(--text-light-orange); /* 好みで高さ色を変えてください */
    border-right: 55vw solid transparent;
  }
  .application-announcement-container::after {
    content: '';
    position: absolute;
    top: -10vw;
    right: 0;
    border-bottom: 11vw solid var(--text-light-orange); /* 好みで高さ色を変えてください */
    border-left: 55vw solid transparent;
  }
  .application-announcement-body {
    padding: 20px;
    background-color: var(--base-white);
    text-align: center;
  }
  .application-announcement-body > .announce-text {
    color: var(--text-black);
    letter-spacing: 8px;
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .application-announcement-body > .announce-text.strong {
    color: var(--text-black);
    letter-spacing: 8px;
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .application-announcement-flexGroup {
    display: flex;
    justify-content: center;
  }
  .application-announcement-flexGroup > .announce-info1 {
    color: var(--text-soft-orange);
    padding: 15px 0;
    letter-spacing: 3px;
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .application-announcement-flexGroup > .announce-info1 > .strong {
    color: var(--text-soft-orange);
    padding: 15px 0;
    letter-spacing: 3px;
    font-size: 3rem;
    line-height: 1;
  }
  .application-announcement-flexGroup > .announce-info2 {
    color: var(--text-soft-orange);
    padding: 15px 0;
    margin-right: 15px;
    text-align: center;
  }
  .application-announcement-flexGroup > .announce-info2 .tel {
    color: var(--base-soft-orange);
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .application-announcement-flexGroup > .announce-info2 .time {
    font-size: 0.9em;
    border-top: solid 1px #333;
    color: var(--base-soft-orange);
  }
  .application-announcement-flexGroup > .announce-info3 {
    padding: 15px 25px;
    display: flex;
    align-items: center;
    background-color: var(--base-soft-orange);
    color: var(--text-white);
    font-size: 1.5em;
    line-height: 50px;
  }
  .application-announcement-flexGroup > .announce-info3 img {
    width: 50px;
    height: 50px;
    margin-right: 1em;
  }

  /* お客様の声 */
  .customer-voice {
    padding: 150px 0;
  }
  .customer-voice-title {
    color: var(--text-blue);
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 12px;
  }
  .customer-voice-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    margin: 0 40px 0 80px;
  }

  /* ご利用の流れ */
  .usage-flow {
    padding: 100px 0;
  }
  .usage-flow-title {
    display: flex;
    justify-content: center;
    align-items: end;
    color: var(--text-black);
  }
  .usage-flow-title > img {
    width: 400px;
  }
  .usage-flow-title > p {
    color: var(--text-black);
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .usage-flow-container {
    display: grid;
    grid-template-columns: 1fr 80px 1fr 80px 1fr;
    padding: 50px 100px;
    background-color: var(--base-light-yellow);
  }
  .usage-flow-content > p {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    text-align: center;
    margin-top: 20px;
    font-size: 1rem;
    color: var(--text-black);
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .usage-flow-arrow {
    padding-bottom: 100px;
    display: flex;
  }
  .usage-flow-arrow > img {
    margin: auto;
    padding: 0 10px;
  }

  /* 対応地域 */
  .service-area {
    padding: 100px 0;
  }
  .service-area-title {
    color: var(--text-blue);
  }
  .service-area-container {
    position: relative;
    padding: 60px;
    background-color: var(--base-light-blue);
  }
  .service-area-textGroup {
    position: absolute;
    top: 10%;
    left: 15%;
  }
  .service-area-textGroup > .text1 {
    color: var(--text-blue);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .service-area-textGroup > .text2 {
    color: var(--text-white);
    background-color: var(--base-navy);
    font-weight: bold;
    padding: 10px;
    font-size: 3rem;
    line-height: 1;
    letter-spacing: 0.5rem;
  }
  .service-area-map {
    width: 80%;
    margin: auto;
  }

  /* ご利用料金 */
  .usage-fee {
    padding: 150px 0;
  }
  .usage-fee-title {
    color: var(--text-blue);
    font-size: 3rem;
    line-height: 1;
  }

  .usage-fee-container > .description > p {
    color: var(--text-blue);
    text-align: center;
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .usage-fee-content {
    width: 100vw;
  }
  .usage-fee-content.bgImage {
    background-image: url(../img/topbg2.png);
    background-size: cover;
  }
  .usage-fee-content > .usage-fee-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    width: 60%;
  }
  .usage-fee-content > .usage-fee-servce {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    padding: 0 100px;
  }
  .usage-fee-servce-item {
    height: 100px;
    background-color: var(--base-soft-orange);
    color: var(--text-white);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .usage-fee-content > .usage-fee-table {
    display: grid;
    grid-template-rows: 50px 60px 60px 60px 60px;
    gap: 10px;
    width: 80vw;
    margin: 0 auto;
    padding-bottom: 30px;
  }
  .usage-fee-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: var(--base-light-yellow);
    color: var(--text-blue);
  }
  .usage-fee-table-row.header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    background-color: var(--base-light-orange);
    color: var(--text-white);
  }
  .usage-fee-table-row > div {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .usage-fee-table-row > div .normal {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .usage-fee-table-row > div .strong {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .usage-fee-note > p {
    color: var(--text-blue);
    margin: 0 auto;
    width: 80%;
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  /* FAQ */
  .faq {
    padding: 150px 0;
  }

  /* お問い合わせフォーム */
  .contact {
    padding: 100px 0;
  }

  /* オフィス情報 */
  .office-info p {
    color: var(--text-black);
  }

  /* フッター */
  .footer {
    color: var(--text-white);
    background-color: var(--base-soft-orange);
    padding: 20px 80px;
  }
  .footer-logo {
    width: 300px;
  }
}

.form_wrap > div:not(:first-child) {
  margin-top: 16px;
}

.submit_btn {
    margin-top: 40px;
    position: relative;
    text-align: center;
}

.submit_btn .btn {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;
}

.screen-reader-response ul {
    display: none;
}

.wpcf7-radio {
    display: flex;
    gap: 8px;
}