@charset "UTF-8";

/* ---------- custom properties ---------- */
:root {
    --color-white: #FFF;
    --color-light-white: #FBFBFB;
    --color-little-light-white: #F4F4F4;
    --color-gray: #E3E5EB;
    --color-black: #222;
    --color-light-blue: #F3F7FF;
    --color-little-light-blue: #e8efff;
    --color-dull-blue: #1A4888;
    --color-blue: #00287C;
    --color-light-red: #FFF7F9;
    --color-little-light-red: #FFE6EB;
    --color-dull-red: #E71B56;
    --color-red: #E6002D;
    --color-shadow: #F1F4F6;
}


/* ---------- base ---------- */
body {
    max-width: 100%;
    overflow-x: hidden;
    background-color: var(--color-white);
    font-family:
        'Zen Kaku Gothic New',
        'Helvetica Neue',
        'Helvetica',
        'Arial',
        'Hiragino Kaku Gothic ProN',
        'Hiragino Sans',
        'BIZ UDPGothic',
        'メイリオ',
        'Meiryo',
        sans-serif;
    font-size: 14px;
    -webkit-text-size-adjust: 100%;
    font-weight: 500;
    margin: 0;
}

button {
    font-family: inherit;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

a {
    text-decoration: underline;
    cursor: pointer;
    transition: 0.3s;
}

a:hover {
    opacity: 0.6;
}

h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
    margin: 0;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

a, p, span, li, h1, h2, h3, h4, h5 {
    color: var(--color-blue);
}


/* ---------- common ---------- */
.sp {
    display: none;
}

.bgc-white {
    background-color: var(--color-white);
}

.bgc-light-white {
    background-color: var(--color-light-white);
}

.bgc-little-light-white {
    background-color: var(--color-little-light-white);
}

.bgc-gray {
    background-color: var(--color-gray);
}

.bgc-light-blue {
    background-color: var(--color-light-blue);
}

.bgc-little-light-blue {
    background-color: var(--color-little-light-blue);
}

.bgc-blue {
    background-color: var(--color-blue);
}

.bgc-dull-red {
    background-color: var(--color-dull-red);
}

.fc-white {
    color: var(--color-white);
}

.fc-black {
    color: var(--color-black);
}

.fc-dull-blue {
    color: var(--color-dull-blue);
}

.fc-blue {
    color: var(--color-blue);
}

.fc-red {
    color: var(--color-red);
}

.font-noto {
    font-family: Noto Sans JP;
}

.font-def {
    font-family:
        'Zen Kaku Gothic New',
        'Helvetica Neue',
        'Helvetica',
        'Arial',
        'Hiragino Kaku Gothic ProN',
        'Hiragino Sans',
        'BIZ UDPGothic',
        'メイリオ',
        'Meiryo',
        sans-serif;
}

.fs-10 {
    font-size: 10px;
}

.fs-11 {
    font-size: 11px;
}

.fs-12 {
    font-size: 12px;
}

.fs-13 {
    font-size: 13px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-24 {
    font-size: 24px;
}

.fs-28 {
    font-size: 28px;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-700 {
    font-weight: 700;
}

.ls-12 {
    letter-spacing: 1.2px;
}

.ls-16 {
    letter-spacing: 1.6px;
}

.ls-19 {
    letter-spacing: 1.9px;
}

.ls-26 {
    letter-spacing: 2.6px;
}

.m-0a {
    margin: 0 auto;
}

.mb-4 {
    margin-bottom: 4px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-12 {
    margin-bottom: 12px;
}

.mb-13 {
    margin-bottom: 13px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-44 {
    margin-bottom: 44px;
}

.mb-48 {
    margin-bottom: 48px;
}

.mb-64 {
    margin-bottom: 64px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-100 {
    margin-bottom: 100px;
}

.ta-left {
    text-align: left;
}

.ta-right {
    text-align: right;
}

.ta-center {
    text-align: center;
}

.vlsible-hidden {
    visibility: hidden;
}

.list-style-on {
    list-style-type: disc;
    padding-left: 28px;
}

.txt-deco-none {
    text-decoration: none;
}

.block {
    display: block;
}

.section-main {
    padding: 120px 0;
    text-align: center;
}

.section-info-page {
    display: flex;
    gap: 32px;
    flex-direction: column;
    text-align: left;
    width: 80%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 120px 24px;
}

.section-info-page-sub-contents {
    display: flex;
    gap: 16px;
    flex-direction: column;
}

.section-sub {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 80px 0;
}

.section-main-heading {
    position: relative;
    font-size: 36px;
    font-weight: 700;
    width: fit-content;
    margin-bottom: 100px;
    padding-bottom: 16px;
}

.section-main-heading::after {
    position: absolute;
    content: '';
    left: 50%;
    bottom: 0;
    transform: translateY(-50%) translateX(-50%);
    width: 50px;
    height: 4px;
    background-color: var(--color-red);
    border-radius: 4px;
}

.button-round {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-decoration: none;
    padding: 16px 0px;
    color: var(--color-white);
    background-color: var(--color-dull-blue);
    border-radius: 100vh;
    transition: 0.3s;
    border: 1px solid var(--color-dull-blue);
    box-sizing: border-box;
}

.button-round:hover {
    color: var(--color-dull-blue);
    background-color: var(--color-white);
    opacity: 1.0;
}

.button-round-mini {
    font-weight: 500;
    text-decoration: none;
    width: 100%;
    padding: 10px 0px;
    color: var(--color-white);
    background-color: var(--color-dull-blue);
    border-radius: 100vh;
    transition: 0.3s;
    border: 1px solid var(--color-dull-blue);
    box-sizing: border-box;
}

.button-round-mini:hover {
    color: var(--color-dull-blue);
    background-color: var(--color-white);
    opacity: 1.0;
}

.button-square-round-corner {
    display: flex;
    gap: 10px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 500;
    width: 100%;
    padding: 10px 0;
    color: var(--color-white);
    background-color: var(--color-dull-blue);
    border-radius: 6px;
    transition: 0.3s;
    border: 1px solid var(--color-dull-blue);
    box-sizing: border-box;
}

.button-square-round-corner:hover {
    color: var(--color-dull-blue);
    background-color: var(--color-white);
    opacity: 1.0;
}

.button-square-round-corner:hover .img_left {
    content: url('/swallowspay/asset/images/blank_blue.svg');
}

.button-square-round-corner:hover .img_right {
    content: url('/swallowspay/asset/images/arrow_right_blue.svg');
}

.button-square-round-corner .img_left, .button-square-round-corner .img_right {
    width: 14px;
    height: auto;
}

.button-slide {
    display: flex;
    gap: 8px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 240px;
    color: var(--color-white);
    background-color: var(--color-dull-blue);
    border-radius: 6px;
    transition: 0.3s;
    border: 1px solid var(--color-dull-blue);
    box-sizing: border-box;
}

.button-slide:hover {
    color: var(--color-dull-blue);
    background-color: var(--color-white);
    opacity: 1.0;
}

.button-slide:hover img {
    content: url('/swallowspay/asset/images/arrow_blue.svg');
}

.button-slide img {
    width: 15px;
    height: 10px;
    margin-bottom: -3px;
    transition: 0.3s;
}

.rotate {
    transform: rotate(180deg);
}

.heading-underline-deco {
    display: flex;
}

.heading-underline-deco-left {
    width: 25%;
    height: 10px;
    background-color: var(--color-light-blue);
}

.heading-underline-deco-right {
    width: 75%;
    height: 10px;
    background-color: var(--color-blue);
}

.heading-line {
    display: flex;
    gap: 8px;
    flex-direction: row;
    justify-content: center;
}

.table-area {
    width: 75%;
    max-width: 1000px;
    margin-bottom: 64px;
}

.table-area:last-child {
    margin-bottom: 0;
}

.table-area-contents {
    width: 100%;
    margin-bottom: 24px;
}

.table-area-contents:last-child {
    margin-bottom: 0;
}

.table-area-contents th {
    font-weight: 600;
}

.table-area-contents th:first-of-type {
    width: 25%;
}

.table-area-contents th:not(:first-of-type) {
    width: 37.25%;
}

.table-area-contents-fill td {
    font-weight: 400;
    padding: 16px 10px;
    color: var(--color-blue);
    background-color: var(--color-light-blue);
    border: 1px solid var(--color-white);
}

.table-area-contents-fill .table-area-contents-fill-first {
    font-weight: 600;
    color: var(--color-white);
    background-color: var(--color-blue);
    border: 1px solid var(--color-white);
}

.notes div {
    margin-bottom: 16px;
}

.notes div:last-child {
    margin-bottom: 0;
}

.dot-line-area-red {
    width: 220px;
    padding: 12px;
    background-color: var(--color-light-red);
    border: 2px dashed var(--color-red);
    box-sizing: border-box;
    border-radius: 8px;
}

/* ---------- ヘッダー ---------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    z-index: 9999;
}

.header-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    height: 80px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

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

.header-inner-logo a {
    display: flex;
}

.header-nav-contents {
    display: flex;
    flex-direction: row;
}

.header-nav-contents nav {
    display: flex;
    flex-direction: row;
}

.header-nav-list {
    display: flex;
    gap: 20px;
    flex-direction: row;
    align-items: center;
}

.header-nav-list li {
    display: flex;
    align-items: center;
    height: 80px;
}

.header-nav-list li a {
    display: flex;
    align-items: center;
    height: 80px;
}

.header-nav-toggle-contents {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 80px;
    margin-right: 32px;
}

.header-nav-toggle-content-hover {
    display: flex;
    gap: 4px;
    align-items: center;
}

.header-nav-toggle-content-hover img {
    width: 22px;
    height: 22px;
}

.header-nav-toggle-content-move {
    position: absolute;
    top: 60px;
    display: flex;
    gap: 6px;
    flex-direction: row;
    align-items: flex-start;
    padding: 16px;
    background-color: var(--color-gray);
    border-top: 3px solid var(--color-blue);
}

.header-nav-toggle-content-move img {
    width: 7px;
    height: 13px;
    margin-top: 6px;
}

.header-nav-toggle-content-move a {
    transition: 0.3s;
}

.header-nav-toggle-content-move a:hover {
    opacity: 0.6;
}

.hamburger-menu {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    z-index: 3;
}

.hamburger-menu-bar {
    position: absolute;
    left: 50%;
    display: block;
    width: 32px;
    height: 2px;
    border-radius: 100vh;
    background-color: var(--color-blue);
    transform: translateX(-50%);
    transition: 0.3s;
}

.hamburger-menu-bar:first-child {
    top: 8px;
}

.hamburger-menu-bar:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

.hamburger-menu-bar:last-child {
    bottom: 8px;
}

.hamburger-menu-open .hamburger-menu-bar:first-child {
    transform: translate(-50%, 10px) rotate(45deg);
}

.hamburger-menu-open .hamburger-menu-bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu-open .hamburger-menu-bar:last-child {
    transform: translate(-50%, -12px) rotate(-45deg);
}

.sp-header-nav {
    position: absolute;
    display: none;
    top: 80px;
    left: 0;
    width: 100%;
    padding: 0px 32px 12px 32px;
    box-sizing: border-box;
    background-color: var(--color-white);
    z-index: 2;
}

.sp-header-nav-list {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.sp-header-nav-list img {
    width: 14px;
    height: auto;
}

.sp-header-nav-list-item {
    border-bottom: 1px solid var(--color-blue);
}

.sp-header-nav-list-item:last-child {
    border-bottom: none;
}

.sp-header-nav-list-item-link {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-weight: 700;
    color: var(--color-blue);
    padding: 20px 4px;
    transition: 0.3s;
}

.sp-header-nav-list-item-last {
    display: flex;
    flex-direction: column;
    padding: 20px 4px;
}

.sp-header-nav-list-item-last .sp-header-nav-list-item-link {
    font-weight: 400;
    padding: 8px 0 0 12px;
}


/* ---------- トップページ ---------- */

/* ----- メインビジュアル ----- */
.mv-top {
    max-width: 1440px;
    width: 100%;
    height: auto;
    margin-top: 80px;
}

/* ----- アプリダウンロード ----- */
.app-contents {
    display: flex;
    gap: 24px;
    flex-direction: column;
    align-items: center;
}

.app-contents-inner {
    display: flex;
    gap: 64px;
    flex-direction: row;
    align-items: center;
}

.app-contents-inner-img-app {
    width: 180px;
    height: auto;
}

.app-contents-inner-img-gp {
    width: 220px;
    height: auto;
}

/* ----- 公式アカウント ----- */
.official-account {
    display: flex;
    gap: 90px;
    flex-direction: row;
    align-items: center;
    text-align: center;
}

.official-account-img {
    display: flex;
    gap: 32px;
    flex-direction: row;
    align-items: center;
}

.official-account-img-x {
    width: 45px;
    height: auto;
}

.official-account-img-note {
    width: 188px;
    height: auto;
}

/* ----- スワローズPayとは ----- */
.what-service img {
    width: 500px;
}

.what-service-point {
    display: flex;
    gap: 64px;
    /* flex-wrap: wrap; */
    width: 1100px;
}

.what-service-point-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 390px;
    padding: 56px 0;
    border: 2.5px solid var(--color-gray);
    box-sizing: border-box;
    border-radius: 32px;
}

.what-service-point-child img {
    width: 280px;
    height: auto;
}

.user-guid {
    display: flex;
    gap: 100px;
    flex-direction: row;
    justify-content: center;
}

.user-guid-inner-download {
    display: flex;
    gap: 16px;
    flex-direction: column;
    width: 500px;
}

.user-guid-inner {
    display: flex;
    gap: 16px;
    flex-direction: column;
    width: 420px;
}

.user-guid-inner-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.user-guid-inner-img {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.user-guid-inner-img-child {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-shadow);
    box-shadow: 0px 0px 5px 3px var(--color-shadow);
    border-radius: 8px;
}

.user-guid-inner-img-child img {
    width: 86px;
    height: 86px;
}

.what-service-notes {
    display: flex;
    flex-direction: column;
    width: 940px;
}

.what-service-notes h3 {
    display: flex;
    gap: 4px;
    align-items: flex-end;
}

.what-service-notes img {
    width: 80px;
    height: auto;
}

/* ----- 今すぐ始めよう ----- */
.guid-step {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    width: 920px;
}

.guid-step-child {
    display: flex;
    flex-direction: column;
    width: 280px;
}

.guid-step-child-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    padding: 32px 24px;
    border: 2.5px solid var(--color-blue);
    box-sizing: border-box;
    border-radius: 24px;
}

.guid-step-child-content>img {
    width: 140px;
    height: auto;
}

.guid-step-child-content-img {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 175px;
}

.guid-step-child-content-img img {
    width: 100%;
}

/* ----- スワローズPayの特徴 ----- */
.service-features {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    width: 920px;
}

.service-features-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 280px;
    padding: 32px 24px;
    border: 2.5px solid var(--color-blue);
    box-sizing: border-box;
    border-radius: 24px;
}

.service-features-child img {
    width: 200px;
}

.servise-use {
    display: flex;
    gap: 24px;
    flex-direction: row;
    justify-content: center;
}

.servise-use-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 300px;
    padding: 32px 24px;
    border: 1px solid var(--color-black);
    box-sizing: border-box;
    border-radius: 24px;
}

.servise-use-child-img {
    width: 100%;
}

.servise-use-child-item, .servise-use-child-item-single {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
}

.servise-use-notice {
    display: flex;
    gap: 40px;
    flex-direction: row;
    align-items: center;
    width: fit-content;
    padding: 12px 24px;
    background-color: var(--color-light-red);
    border: 2px solid var(--color-blue);
}

.servise-use-notice-img-left {
    width: 63px;
    height: auto;
}

.servise-use-notice-img-right {
    width: 19px;
    height: auto;
}

.servise-use-notice-img-blank {
    width: 12px;
    height: auto;
}

.servise-use-notice span {
    display: flex;
    gap: 4px;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
}

/* ----- よくあるご質問 ----- */
.service-faq {
    display: flex;
    gap: 40px;
    flex-direction: row;
    width: 930px;
}

.service-faq-child {
    display: flex;
    gap: 48px;
    flex-direction: column;
    width: calc(50% - 20px)
}

.service-faq-child-slide {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.service-faq-child-slide-heading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 16px;
    cursor: pointer;
}

.service-faq-child-slide-heading img {
    width: 14px;
    height: auto;
    padding-left: 10px;
}

.service-faq-child-slide-contents {
    padding: 24px 16px;
}

.service-faq-notes {
    display: flex;
    flex-direction: column;
    width: 625px;
}

.service-faq-notes-headiing {
    display: flex;
    gap: 8px;
    flex-direction: row;
    align-items: end;
}

.service-faq-notes-headiing img {
    width: 21px;
    height: auto;
}

/* ----- お知らせ ----- */
.news-contents {
    display: flex;
    gap: 40px;
    flex-direction: column;
    width: 75%;
}

.news-contents-child {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-blue);
    cursor: pointer;
}

.news-contents-child-date {
    display: flex;
    gap: 8px;
    flex-direction: row;
    align-items: center;
}

.news-contents-child-date span {
    padding: 4px 8px;
    border-radius: 100vh;
}

.news-contents-child-heading {
    display: flex;
    gap: 8px;
    flex-direction: row;
    align-items: center;
    text-align: left;
}

.news-contents-child-heading-img-first {
    width: 20px;
    height: auto;
}

.news-contents-child-heading-img-second {
    width: 12px;
    height: auto;
}

.news-go-list {
    width: fit-content;
    padding: 16px 64px;
}

/* ----- お問い合わせ ----- */
.contact {
    width: 75%;
}

.contact-notes {
    display: flex;
    gap: 4px;
    flex-direction: column;
}

.contact-notes-child {
    display: flex;
    gap: 4px;
    flex-direction: row;
    align-items: center;
}

.contact-notes-child img {
    width: 21px;
    height: auto;
}

.contact-info {
    display: flex;
    gap: 80px;
    flex-direction: column;
}

.contact-info-heading {
    display: flex;
    gap: 8px;
    flex-direction: row;
    align-items: center;
}

.contact-info-heading img {
    width: 26px;
    height: auto;
}

.contact-info-table-wrapper {
    border-top: 1px solid var(--color-blue);
    border-bottom: 1px solid var(--color-blue);
}

.contact-info-table-contaner {
    border: 2px solid var(--color-white);
}

.contact-info-table {
    width: 100%;
    border-collapse: collapse;
}

.contact-info-table tr {
    height: 64px;
    border-bottom: 1px solid var(--color-blue);
}

.contact-info-table tr:last-child {
    border-bottom: none;
}

.contact-info-table th {
    width: 25%;
    background-color: var(--color-light-blue);
}

.contact-info-table td {
    width: 75%;
    padding-left: 32px;
}

.contact-info .button-square-round-corner {
    width: fit-content;
    padding: 10px 40px;
}

.contact-info-tel {
    display: flex;
    gap: 32px;
    flex-direction: row;
    justify-content: center;
}

.contact-info-tel-child {
    width: 360px;
    padding: 40px 24px 24px;
    box-sizing: border-box;
}

.contact-info-tel-child h5 {
    padding: 8px 0px;
}

.contact-info-tel-wrapper {
    border-top: 1px solid var(--color-blue);
}

/* ----- メンテナンス日時 ----- */
.maintenance-info {
    width: 60%;
}

.maintenance-info-table th {
    width: 40%;
    font-weight: 500;
    color: var(--color-white);
    background-color: var(--color-blue);
}

.maintenance-info-table td {
    color: var(--color-blue);
    background-color: var(--color-light-blue);
}

.maintenance-info-table th, .maintenance-info-table td {
    padding: 16px;
}

/* ----- 利用規約・商品概要 ----- */
.terms-product {
    display: flex;
    gap: 64px;
    flex-direction: column;
    align-items: center;
}

.terms-product-row-contents {
    display: flex;
    gap: 40px;
    flex-direction: row;
    justify-content: center;
}

.terms-product .button-square-round-corner {
    padding: 10px 40px;
}


/* ---------- 本サイトのご利用にあたって ---------- */



/* ---------- フッター ---------- */
footer {
    z-index: 9999;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px 0px 8px;
}

.footer-inner-logo img {
    width: 200px;
}

.official-account-img-footer {
    display: flex;
    gap: 16px;
    flex-direction: row;
    align-items: center;
}

.official-account-img-footer-x {
    width: 32px;
    height: auto;
}

.official-account-img-footer-note {
    width: 120px;
    height: auto;
}

.footer-nav {
    display: flex;
    gap: 32px;
    flex-direction: row;
}


/* ----- トップへ戻るボタン ----- */
.go-top-button {
    position: fixed;
    bottom: 16px;
    right: 24px;
    transition: transform 0.3s ease;
}

.go-top-button:hover {
    transform: scale(1.1);
}

.go-top-button a:hover {
    opacity: 1.0;
}

.go-top-button img {
    width: 48px;
    height: auto;
}


/* ---------- media query ---------- */
@media screen and (max-width:767px) {

    .user-guid-inner-download {
            display: flex;
            gap: 16px;
            flex-direction: column;
            width: 375px;
        }

    /* ---------- common ---------- */
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .sp_fs-13 {
        font-size: 13px;
    }

    .fs-24 {
        font-size: 22px;
    }

    .fs-28 {
        font-size: 26px;
    }

    .mb-100 {
        margin-bottom: 80px;
    }

    .vlsible-hidden {
        display: none;
    }

    .section-main {
        padding: 80px 16px;
    }

    .section-sub {
        padding: 40px 0;
    }

    .section-main-heading {
        font-size: 28px;
        margin-bottom: 64px;
    }

    .button-round {
        font-size: 14px;
    }

    .button-slide {
        width: 100%;
        padding: 10px 0;
    }

    .table-area-wrapper {
        width: 100%;
        overflow-x: scroll;
        padding-bottom: 32px;
    }

    .table-area {
        display: flex;
        flex-direction: column;
        min-width: 767px;
    }

    .table-area-contents th {
        font-size: 14px;
    }

    /* ---------- ヘッダー ---------- */
    .header-inner {
        padding: 0 24px;
    }

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

    /* ---------- トップページ ---------- */
    /* ----- アプリダウンロード ----- */
    .app-contents-inner {
        gap: 16px;
        flex-direction: column;
    }

    /* ----- 公式アカウント ----- */
    .official-account {
        gap: 16px;
        flex-direction: column;
    }

    /* ----- スワローズPayとは ----- */
    .what-service img {
        width: 250px;
    }

    .what-service-point {
        gap: 32px;
        flex-direction: column;
        width: 100%;
    }

    .what-service-point-child {
        width: 100%;
        padding: 40px 24px;
    }

    .what-service-point-child:nth-child(2)>p {
        margin-bottom: 16px;
    }

    .what-service-point-child:nth-child(3)>p {
        margin-bottom: 16px;
    }

    .user-guid {
        gap: 40px;
        flex-direction: column;
    }

    .user-guid-inner {
        width: 100%;
    }

    .user-guid-inner-img-child img {
        width: 70px;
        height: 70px;
    }

    .what-service-notes {
        width: 100%;
    }

    /* ----- 今すぐ始めよう ----- */
    .guid-step {
        gap: 24px;
        flex-direction: column;
        width: 100%;
    }

    .guid-step-child {
        width: 100%;
    }

    .guid-step-child-content-img {
        gap: 8px;
        height: auto;
    }

    .guid-step-child-content-img:first-child {
        width: 70%;
        max-width: 320px;
    }

    .guid-step-child-content>img {
        width: 160px;
        height: auto;
    }

    /* ----- スワローズPayの特徴 ----- */
    .service-features {
        gap: 24px;
        flex-direction: column;
        width: 100%;
    }

    .service-features-child {
        width: 100%;
    }

    .servise-use {
        flex-direction: column;
    }

    .servise-use-child {
        width: 100%;
    }

    .servise-use-child-img {
        max-width: 300px;
    }

    .servise-use-child-item-single {
        margin-bottom: 0;
    }

    .servise-use-notice {
        gap: 16px;
        justify-content: center;
        padding: 8px 10px;
    }

    .servise-use-notice-img-left {
        width: 26px;
        height: auto;
    }

    .servise-use-notice-img-right {
        width: 10px;
        height: auto;
    }

    .servise-use-notice p {
        font-size: 14px;
    }

    /* ----- よくあるご質問 ----- */
    .service-faq {
        flex-direction: column;
        gap: 32px;
        width: 100%;
    }

    .service-faq-child {
        gap: 24px;
        width: 100%;
    }

    .service-faq-notes {
        width: 100%;
    }

    /* ----- お知らせ ----- */
    .news-contents {
        width: 100%;
    }

    /* ----- お問い合わせ ----- */
    .contact {
        width: 100%;
    }

    .contact-notes-child {
        gap: 2px;
        align-items: flex-start;
        font-size: 16px;
    }

    .contact-notes-child img {
        width: 16px;
        padding-top: 1.3%;
    }

    .contact-info-heading {
        font-size: 14px;
    }

    .contact-info-tel {
        gap: 24px;
        flex-direction: column;
        padding-top: 24px;
    }

    .contact-info-tel-child {
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    /* ----- メンテナンス日時 ----- */
    .maintenance-info {
        width: 100%;
        overflow-x: scroll;
        padding-bottom: 32px;
    }

    .maintenance-info-table {
        min-width: 767px;
    }

    /* ----- 利用規約・商品概要 ----- */
    .terms-product-row-contents {
        gap: 24px;
        flex-direction: column;
    }

    .terms-product .button-square-round-corner {
        gap: 4px;
        padding: 10px 16px;
    }

    /* ----- フッター ----- */
    .footer-inner {
        padding: 64px 16px 8px;
    }

    .footer-inner nav {
        width: 100%;
    }

    .footer-nav {
        flex-direction: column;
        width: 80%;
        margin: 0 auto;
    }

    /* ----- トップへ戻るボタン ----- */
    .go-top-button {
        bottom: 20px;
        right: 16px;
    }

    .go-top-button:hover {
        transform: scale(1.1);
    }

    .go-top-button img {
        width: 48px;
        height: auto;
    }
}
