@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');
@import url('https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Round|Material+Icons+Sharp|Material+Icons+Two+Tone');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
@import url('root.css');

:where(*) {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
  font-size: 100%; 
}

body {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: 0.015em;
    font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
    font-feature-settings: "palt"1;
    min-height: 100dvh;
    background: #FFFFFF;
    overflow-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

:where(ul, ol) {
  list-style: none;
}

p,
ul,ol,li,table,
blockquote,address,
pre,iframe,form,
figure,dl,dt,dd,
header,main,footer {
    margin: 0;
}

img, video, canvas, iframe {
    display: block;
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    padding: 0;
    font: inherit;
    outline: none;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: 0.5s;
}
button:focus {
    outline:0;
}

input,
textarea,
select {
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input:focus {
    background: #F5F5F5;
}

::placeholder {
    color: #BCBCBC;
    font-weight: 400;
}

a {
    text-decoration: none;
    transition: opacity 0.3s, color 0.3s;
    -webkit-tap-highlight-color: transparent;
    transition: 0.5s;
}







/* ------------------------------ */
/* -------------------- */
/* ---------- */

/* ------------------------------ */
.container {
    position: relative;
    margin: 0;
    padding: 0;
    
    &.heightFull {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }
    &.heightFull > main {
        flex: 1;
    }
}




/* ------------------------------ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    z-index: 99999;
}
.headerContent {
    margin: 0 auto;
    padding: 16px 16px;
    max-width: 1200px;
}
.headerContent__upper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    width: 100%;
}
.headerContent nav h1 {
    flex: 1;
    margin: 0;
    padding: 0;
}
.headerContent nav h1 a img {
    display: block;
    height: 40px;
        
    @media (max-width: 599px) {
        height: 50px;
    }
}
.headerContent nav .lead {
    color: var(--col-base);
    font-size: 14px;
    font-weight: 600;
    @media (max-width: 599px) {
        text-align: right;
    }
}
.headerContent nav .lead b {
    font-weight: 600;
    @media (max-width: 599px) {
        display: none;
    }
}

.headerContent nav .entryBtn {
    margin: 0 0 0 12px;
    padding: 6px 16px 8px 16px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 800;
    color: #FFFFFF;
    background: var(--col-base); 
    border-radius: 50px;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .2);

    @media (max-width: 1024px) {
        font-size: 13px;
    }
    @media (max-width: 599px) {
        display: none;
    }
}
.headerContent nav .entryBtn:hover {
    box-shadow: none;
}
.headerContent nav .loginAdmin {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 0 0 12px;
    padding: 6px 16px 8px 16px;
    color: var(--col-base);
    font-size: 14px;
    font-weight: 800;
    background: #FFFFFF;
    border: solid 1px #01a4ff;
    border-radius: 50px;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .2);
    
    @media (max-width: 1024px) {
        font-size: 13px;
    }
    @media (max-width: 599px) {
        display: none;
    }
}
.headerContent nav .loginAdmin:hover {
    box-shadow: none;
}
.headerContent nav .loginAdmin.is-disabled {
    color: #94a3b8;
    background: #f1f5f9;
    border-color: #cbd5e1;
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
}


.headerContent__lower {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 16px 0 0 0;
    padding: 0 16px;
    width: 100%;
    
    @media (max-width: 599px) {
        padding: 0 0;
    }
}
.headerContent nav a {
}
.headerContent nav .menu {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    
    @media (max-width: 599px) {
        font-weight: 400;
    }
}


/* -------------------- */
.headerSimple {
    position: relative;
    margin: 0 auto;
    padding: 24px 16px;
    max-width: 1200px;
}
.headerSimple h1 {
    text-align: center;
    line-height: 0;
}
.headerSimple h1 a {
    display: inline-block;
}
.headerSimple h1 a img {
    display: block;
    height: 40px
}
.headerSimple .headerSimple__prev {
    position: absolute;
    top: 50%;
    left: 32px;
    transform: translateY(-50%);
}
.headerSimple .headerSimple__prev a {
    position: relative;
}
.headerSimple .headerSimple__prev a::before ,
.headerSimple .headerSimple__prev a::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    font-family: "Material Symbols Outlined";
    color: #000000;
    transition: 0.5s;
}
.headerSimple .headerSimple__prev a::before{
    content: '\e2ea';
    font-size: 20px;
    font-weight: 200;
}
.headerSimple .headerSimple__prev a::after{
    content: '\e836';
    font-size: 46px;
    font-weight: 100;
}
.headerSimple .headerSimple__prev a:hover::before ,
.headerSimple .headerSimple__prev a:hover::after{
    color: var(--col-base);
}


/* スクロールで可変＆透過
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFF6FD80;
    z-index: 99999;
}
.headerContent {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0 auto;
    padding: 16px 0;
    max-width: 1095px;
}
.headerContent.is-active {
    padding: 8px 0;
}
.headerContent nav {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
.headerContent nav h1 {
    margin: 0;
    padding: 0;
    max-width: 122px;
    transition: all .3s ease;
}
.headerContent nav h1.is-active {
    max-width: calc(122px * .7);
}
 */
/*
.headerContent nav a {
    margin: 0;
    padding: 0;
}
.headerContent nav a.is-active {
    font-size: .85em
}
*/






/* ------------------------------ */
main {
    margin: 0 auto;
    padding: var(--header-height) 0 0 0;
    width: 100%;
}








/* -------------------- */
.mv {
    margin: 0;
    padding: 0 0 5vw 0;
    width: 100%;
    background: var(--col-base);
    overflow: hidden;
}


.mv__img {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background: #EEEEEE
}

.mv__img--fixed {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    margin: 0 auto;
    background-image: url(../images/mv.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 3;
}

.mv__img--fixed--lead {
    position: relative;
    margin: 0 auto;
    padding: 7.5vh 0 17.5vh 0;
    width: 1200px;
    z-index: 3;
    @media (max-width: 1200px) {
        padding: 7.5vh 0 15vh 0;
    }
}
.mv__img--fixed--lead img {
    margin: 0 auto 0 0;
    width: 55%;
    @media (max-width: 1200px) {
        padding-left: 24px;
    }
    @media (max-width: 599px) {
        padding-left: 12px;
        width: 65%;
    }
}




.mv__img .wave {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
}
.mv__img .wave.mvArea {
    @media (max-width: 599px) {
        height: 50px;
    }
}

.mv__img--slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}
.mv__img--slider--item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateX(50px);
    animation: slideFadeAnime 10.5s infinite linear;
}
.mv__img--slider--item:nth-child(1) {
    animation-delay: 0s;
}
.mv__img--slider--item:nth-child(2) {
    animation-delay: 3.5s;
}
.mv__img--slider--item:nth-child(3) {
    animation-delay: 7s;
}
@keyframes slideFadeAnime {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }
    4% {
        opacity: 1;
        transform: translateX(0);
    }
    33% {
        opacity: 1;
        transform: translateX(0);
    }
    37% {
        opacity: 0;
        transform: translateX(-40px);
    }
    100% {
        opacity: 0;
    }
}



/* -------------------- */
.wave {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 120px;
}
.wave.rotate {
    transform: rotate(180deg);
}
.wave.bgAvailable {
    background: #01a4ff1A;
}
.wave.bgTransparent {
    background: transparent;
}

.wave__svg {
    display: block;
    vertical-align: bottom;
    width: 200%; 
    height: 120%;
    position: absolute;
    bottom: -15%;
    left: 0;
    transform: translate3d(0, 0, 0);
    animation: wave-motion 4s ease-in-out infinite alternate;
}
@keyframes wave-motion {
    0% {
        transform: translateX(0) scaleY(1);
    }
    100% {
        transform: translateX(-50%) scaleY(0.75); /* 縮み具合を少しマイルドに */
    }
}


/* -------------------- */
.function {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 5vw auto 0 auto;
    padding: 0 16px;
    max-width: 1200px;
    
    @media (max-width: 599px) {
        gap: 56px;
    }
}
.function__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
    width: calc((100% - 32px * 2) / 3); 
    border-radius: 32px;
    
    @media (max-width: 1024px) {
        width: calc((100% - 32px * 1) / 2); 
    }
    @media (max-width: 599px) {
        width: 100%; 
    }
}
.function__item svg {
    display: block;
    margin: 0 auto 0 auto;
    padding: 0;
    height: 100px;
    text-align: center;
    fill: #FFFFFF;
    
    @media (max-width: 1024px) {
        height: 60px;
    }
}
.function__item--title {
    margin: 32px 0 0 0;
    padding: 0;
    width: 100%;
    color: #FFFFFF;
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    
    @media (max-width: 1024px) {
        font-size: calc(24px * 0.8);
    }
}
.function__item--lead {
    display: inline-block;
    margin: 16px auto 0 auto;
    padding: 4px 16px 6px 16px;
    color: var(--col-base);
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    background: #FFFFFF;
    border-radius: 4px;
    
    @media (max-width: 1024px) {
        font-size: calc(18px * 0.8);
    }
}
.function__item--text {
    margin: 16px 0 0 0;
    padding: 0;
    width: 100%;
    text-align: center;
    color: #FFFFFF;
    font-weight: 600;
    line-height: 2;
    
    @media (max-width: 1024px) {
        font-size: calc(16px * 0.9);
    }
}




/* -------------------- */
.content {
    margin: 0;
    padding: 7.5vw 0;
    width: 100%;
}
.content.top {
    padding: 2.5vw 0;
}
.content.bgQa {
    background: #01a4ff1A;
}





/* -------------------- */
.content__title {
    margin: 0 auto;
    padding: 0 16px;
    max-width: 1200px;
    text-align: center;
    font-size: 40px;
    
    @media (max-width: 1024px) {
        font-size: 32px;
    }
    @media (max-width: 599px) {
        font-size: 26px;
    }
}
.content__title--title {
    display: block;
    color: var(--col-base);
    line-height: 1.3;
    font-weight: 800;
}
.content__title--title b {
    font-size: .75em;
}
.content__title--lead {
    display: inline-block;
    padding: 6px 16px 9px 20px;
    color: #FFFFFF;
    line-height: 1;
    font-size: .65em;
    font-weight: 600;
    letter-spacing: .2em;
    background: var(--col-accent-navy);
    border-radius: 4px;
    
    @media (max-width: 1024px) {
        font-size: .5em;
    }
}
.content__title--supple {
    display: block;
    margin: 12px 0 0 0;
    font-size: .5em;
    font-weight: 200;
    letter-spacing: .2em;
    
    @media (max-width: 599px) {
        font-size: .7em;
    }
}





/* -------------------- */
.content__comingsoon {
    margin: 0 auto;
    padding: 7.5vh 16px;
    max-width: 1200px;
    text-align: center;
    font-size: 32px;
    font-weight: 200;
    @media (max-width: 599px) {
        padding: 5vh 16px 7.5vh 16px;
        font-size: 20px;
    }
}






/* -------------------- */
.pageTitle {
    margin: 0 auto;
    padding: 0 16px;
    max-width: 1200px;
    color: var(--col-base);
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    @media (max-width: 1024px) {
        font-size: 32px;
    }
    @media (max-width: 599px) {
        font-size: 28px;
    }
}
.pageTitle span {
    display: block;
    color: #000000;
    line-height: 1.2;
    font-size: .4em;
    font-weight: 400;
    letter-spacing: .1em;
}






/* -------------------- */
.plan {
    display: flex;
    flex-wrap: wrap;
    gap: 0 72px;
    margin: 5vw auto 0 auto;
    padding: 0 16px;
    max-width: 1200px;
    
    @media (max-width: 1024px) {
        gap: 88px 0;
    }
    @media (max-width: 599px) {
        margin: 15vw auto 0 auto;
        gap: 72px 0;
    }
}

.plan__item {
    position: relative;
    margin: 0;
    padding: 0;
    width: calc((100% - 72px * 1) / 2);
    
    @media (max-width: 1024px) {
        margin: 0 auto;
        padding: 24px;
        width: 65%;
        border-radius: 24px;
    }
    @media (max-width: 599px) {
        margin: 0 auto;
        padding: 24px 16px;
        width: 100%;
        border-radius: 24px;
    }
}


.plan__item.simple {
    background: url(../images/logo-mark.svg);
    background-size: 55%;
    background-position: bottom 37.5% right 15%;
    background-repeat: no-repeat;

    @media (max-width: 1024px) {
        background-color: #01a4ff0D!important;
    }
    @media (max-width: 1024px) {
        background-position: bottom 37.5% right 5%;
    }
}
.plan__item.expansion {
    background: url(../images/logo-mark-expansion.svg);
    background-size: 55%;
    background-position: bottom 37.5% right 15%;
    background-repeat: no-repeat;

    @media (max-width: 1024px) {
        background-color: #01a4ff0D!important;
    }
    @media (max-width: 599px) {
        background-position: bottom 37.5% right 5%;
    }
}

/*
    animation: yurayura 3s ease-in-out infinite;
    transform-origin: center bottom;
}

@keyframes yurayura {
    0%   { transform: rotate(-3deg); }
    50%  { transform: rotate(3deg); }
    100% { transform: rotate(-3deg); }
}
*/



.plan__item--supple {
    position: absolute;
    top: 0;
    right: 5%;
    margin: 0;
    padding: 0;
    transform:rotate(15deg);
    
    @media (max-width: 1024px) {
        right: 0;
    }
    @media (max-width: 599px) {
        top: -5%;
    }
}
.plan__item--supple span {
    display: block;
    margin-top: 4px;
    padding: 0 10px 2px 12px;
    color: #FFFFFF;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    background: var(--col-accent-orange);
    border-radius: 2px;
    
    @media (max-width: 1024px) {
        font-size: 15px;
    }
}

.plan__item--title {
    margin: 0 0 0 0;
    padding: 0;
    font-size: 32px;
    font-weight: 800;
    @media (max-width: 1024px) {
        font-size: 26px;
    }
}
.plan__item--title span {
    display: block;
    color: var(--col-base);
    line-height: 1.2;
    font-size: .5em;
    font-weight: 800;
}
.plan__item--lead {
    margin: 0 0 0 0;
    padding: 0;
    color: #7F8487;
}
.plan__item--recommend {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 8px 0 0 0;
    padding: 0;
    font-weight: 600;
    letter-spacing: .1em;
}
.plan__item--recommend .type {
    display: block;
    width: 100%;
}
.plan__item--recommend .type b {
    display: inline-block;
    padding: 3px 8px;
    color: #FFFFFF;
    line-height: 1.2;
    font-size: .75em;
    font-weight: 800;
    background: var(--col-accent-navy);
    border-radius: 3px;
}
.plan__item--recommend .supple {
    display: block;
    margin: 0 0  0;
    padding: 0;
    color: var(--col-accent-navy);
    font-weight: 400;
    font-size: .9em;
}
.plan__item--price {
    margin: 0;
    padding: 0;
    font-size: 48px;
    font-weight: 800;
}
.plan__item--price::before {
    content: '月々';
    font-size: .6em
}
.plan__item--price::after {
    content: '円（税別）';
    font-size: .4em
}

.plan__item--function {
    display: inline-block;
    margin: 0 auto 0 auto;
    padding: 0;
    text-align: left;
}
.plan__item--function span {
    display: flex;
    align-items: center;
    margin: 12px 0 0 0;
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .05em;
}
.plan__item--function span::before {
    display: inline-block;
    margin-right: 8px;
    width: 25px;
    height: 25px;
}
.plan__item--function span.check::before {
    content: url(../images/check.svg);
}
.plan__item--function span.plus::before {
    content: url(../images/plus.svg);
}
.plan__item--function span b {
    font-weight: 600;
    border-bottom: solid 3px var(--col-accent-orange);
}

.plan__item--btnQr {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 24px auto 0 auto;
    padding: 0;
    width: 100%;
}
.plan__item--btnQr .btn {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0 auto;/*QRが無い場合*/
    /*margin: 0;QRが有る場合*/
    padding: 0;
    height: 100px;
    width: 75%;
    text-align: center;
    background: var(--col-base);
    border-radius: 100px;
    box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, .2);
    overflow: hidden;
}
.plan__item--btnQr .btn:hover {
    box-shadow: none;
}
.plan__item--btnQr .btn::after {
	position: absolute;
	top: 0;
	left: -100%;
	transform: skewX(-15deg);
	content: '';
	height: 100%;
	width: 100%;
	animation: 3s 0s shine linear infinite;
	background: linear-gradient(to right, rgba(255,255,255,0) 25%, rgba(255,255,255,.6) 50%, rgba(255, 255, 255, 0) 75%);
}
@keyframes shine {
	5% {
		left: 100%;
	}
	100% {
		left: 100%;
	}
}
.plan__item--btnQr .btn span {
    display: block;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 800;
}
.plan__item--btnQr .btn span b {
    display: block;
    margin: 0;
    font-size: .55em;
    font-weight: 600;
}
.plan__item--btnQr .qr {
    margin: 0;
    padding: 0;
    width: 25%;
    border-radius: 4px;
    background: #FFFFFF
}




.plan__mujinka {
    margin: 0;
    padding: 7.5vw 0 2.5vw 0;
    width: 100%;
    border-bottom: solid 1px #0061A3;
    
    @media (max-width: 1024px) {
        padding: 7.5vw 16px 2.5vw 16px;
    }
    
    @media (max-width: 599px) {
        padding: 7.5vw 0 2.5vw 0;
    }
}
    .plan__mujinka.is-close {
        border-bottom: none;
    }



.plan__mujinka--title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    font-size: 32px;
    font-weight: 800;
    cursor: pointer;
    
    @media (max-width: 1024px) {
        font-size: 24px;
    }
}

.plan__mujinka--title--lead {
    width: calc(100% - 60px);
}

.plan__mujinka--title--lead span:first-of-type {
    display: block;
    color: var(--col-accent-navy);
    line-height: 1.2;
    font-size: .5em;
    font-weight: 800;
}

.plan__mujinka--title--lead span {
    display: block;
    color: var(--col-accent-navy);
    line-height: 1.2;
    font-size: .5em;
    font-weight: 800;
}
.plan__mujinka--title--lead span:last-of-type {
    color: #000000;
    line-height: 1.2;
    font-size: .6em;
    font-weight: 200;
}
.plan__mujinka--title--lead span:last-of-type b {
    margin-left: 8px;
    color: var(--col-base);
    font-weight: 800;
    font-size: .85em;
}
.plan__mujinka--title .sapOpen {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    width: 57px;
    height: 57px;
    background: var(--col-accent-navy);
    border-radius: 50%;
    animation: blinking 1s ease-in-out infinite alternate;
    
    @media (max-width: 1024px) {
        width: 46px;
        height: 46px;
    }
}
@keyframes blinking {
    0% { opacity: .5; }
    100% { opacity: 1; }
}
.plan__mujinka--title .sapOpen::before ,
.plan__mujinka--title .sapOpen::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 23px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 10px;
}
.plan__mujinka--title .sapOpen::before {
    transform: translateY(-50%) translateX(-50%);
}
.plan__mujinka--title .sapOpen::after {
    transform: translateY(-50%) translateX(-50%) rotate(90deg);
}
.plan__mujinka--title .sapOpen.is-close {
    transform: rotate(45deg);
}











.plan__mujinka--desc {
    margin: 0 0 0 0;
    padding: 5vw 0 0 0;
    text-align: center;
    font-size: 36px;
    
    @media (max-width: 1024px) {
        padding: 5vw 16px 0 16px;
        font-size: 24px;
    }
    @media (max-width: 599px) {
        padding: 7.5vw 0 0 0;
        font-size: 18px;
    }
}
.plan__mujinka--desc .title {
    display: block;
    text-align: center;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: .05em;
}
.plan__mujinka--desc .title span {
    display: inline-block;
    margin: 0 4px;
    font-size: 1.5em;
}
.plan__mujinka--desc .stitle {
    display: block;
    margin: 16px 0 0 0;
    text-align: center;
    font-size: .5em;
    @media (max-width: 599px) {
        margin: 8px 0 0 0;
        font-size: .7em;
    }
}
.plan__mujinka--desc .stitle span {
    margin: 0 4px;
    padding: 0 8px 2px 8px;
    color: #FFFFFF;
    background: var(--col-accent-orange);
}
.plan__mujinka--desc .sstitle {
    display: flex;
    align-items: center;
    display: inline-block;
    margin: 16px auto 0 auto;
    padding: 4px 12px;
    font-size: .45em;
    background: #EEEEEE;
    border-radius: 3px;
    
    @media (max-width: 1024px) {
        font-size: 14px;
    }
    @media (max-width: 599px) {
        font-size: 13px;
    }
}
.plan__mujinka--desc .sstitle .plus {
    color: var(--col-accent-orange);
}

.mujinka__img {
    display: flex;
    margin: 2.5vw 0 0 0;
    
    @media (max-width: 599px) {
        margin: 5vw 0 0 0;
    }
}
.mujinka__img img {
    margin: 0 0 0 0;
    width: 50%
}
.mujinka__img img:first-child {
    border-radius: 72px 0 0 72px;
    
    @media (max-width: 599px) {
        border-radius: 32px 0 0 32px;
    }
}
.mujinka__img img:last-child {
    border-radius: 0 72px 72px 0;
    
    @media (max-width: 599px) {
        border-radius: 0 32px 32px 0;
    }
}


.mujinka__merit {
    display: flex;
    flex-wrap: wrap;
    margin: 2.5vw 0 0 0;
    padding: 0 0 0 0;
    width: 100%;
}
.mujinka__merit--sitle {
    display: block;
    margin: 0 0 0 0;
    width: 100%;
    text-align: center;
    font-size: 35px;
    font-weight: 800;
    
    @media (max-width: 1024px) {
        font-size: 30px;
    }
    @media (max-width: 599px) {
        margin: 2vw 0 10vw 0;
        font-size: 24px;
    }
}
.mujinka__merit--item {
    margin: 2.5vw 0 0 0;
    padding: 0 7.5%;
    width: calc(100% / 2);
    text-align: center;
    
    @media (max-width: 1024px) {
        padding: 0 16px;
    }
    @media (max-width: 599px) {
        margin: 0 0 0 0;
        padding: 24px 16px;
        width: 100%;
        border-bottom: solid 1px #DDDDDD;
    }
}
.mujinka__merit--item:nth-child(odd) {
    border-left: solid 1px #000000;
    
    @media (max-width: 599px) {
        border-left: none;
    }
}
.mujinka__merit--item:first-of-type {
    border-left: none;
}

.mujinka__merit--item .stitle {
    margin: 0 0 0 0;
    font-size: 22px;
    font-weight: 800;
    
    @media (max-width: 1024px) {
        font-size: 20px;
    }
}
.mujinka__merit--item .stitle::before {
    display: block;
    margin: 0 auto 32px auto;
    width: 75px;
    height: 75px;
}
.mujinka__merit--item .stitle.kouji::before {
    content: url(../images/mujinka-kouji.svg);
}
.mujinka__merit--item .stitle.kagi::before {
    align-items: center;
    content: url(../images/mujinka-pass.svg);
}
.mujinka__merit--item .stitle.mujin::before {
    content: url(../images/mujinka-mujin.svg);
}
.mujinka__merit--item .stitle.security::before {
    content: url(../images/mujinka-security.svg);
}
.mujinka__merit--item .text {
    margin: 24px 0 0 0;
    padding: 0;
    line-height: 1.8;
    font-size: 18px;
    
    @media (max-width: 1024px) {
        font-size: 15px;
    }
}
.mujinka__merit--item .text b {
    display: block;
    margin: 8px 0 0 0;
    padding: 0 0 0 1em;
    text-indent: -1em;
    color: var(--col-accent-navy);
    text-align: left;
    line-height: 1.4;
    font-weight: 600;
    font-size: .75em;
}


.mujinka__flow {
    display: flex;
    flex-wrap: wrap;
    margin: 7.5vw 0 0 0;
    padding: 0 0 0 0;
    width: 100%;
    @media (max-width: 599px) {
        margin: 10vw 0 0 0;
    }
}
.mujinka__flow--title {
    display: block;
    margin: 0 0 0 0;
    width: 100%;
    text-align: center;
    font-size: 35px;
    font-weight: 800;
    
    @media (max-width: 1024px) {
        font-size: 30px;
    }
    @media (max-width: 599px) {
        font-size: 24px;
    }
}
.mujinka__flow--title span {
    display: block;
    color: var(--col-base);
    line-height: 1.2;
    font-size: .6em;
    font-weight: 200;
    
    @media (max-width: 599px) {
        font-size: .5em;
    }
}


.mujinka__flow_flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 32px 0 0 0;
    width: 100%;
    
    @media (max-width: 599px) {
        margin: 32px 0 0 0;
    }
}

.flowitem {
    position: relative;
    margin: 0;
    padding: 16px;
    width: calc(100% / 3);
    text-align: center;
    font-size: 18px;
    
    @media (max-width: 599px) {
        margin: 0 auto;
        width: 80%;
    }
}
.flowitem.flow1 {
    background: var(--col-accent-navy);
    border-radius: 40px 0 0 40px;
    
    @media (max-width: 599px) {
        border-radius: 32px 32px 0 0;
    }
}
.flowitem.flow2 {
    background: #0282C7;
}
.flowitem.flow3 {
    background: #01A4FF;
    border-radius: 0 40px 40px 0;
    
    @media (max-width: 599px) {
        border-radius: 0 0 32px 32px;
    }
}

.flowitem__triangle1 {
    position: absolute;
    top: 0;
    left: -25px;
    width: 50px;
    height: 100%;
    background: #0282C7;
    @media (max-width: 599px) {
        display: none;
    }
}
.flowitem__triangle2 {
    position: absolute;
    top: 0;
    right: -25px;
    width: 50px;
    height: 100%;
    background: var(--col-base);
    z-index: 9;
    @media (max-width: 599px) {
        display: none;
    }
}
.flowitem__triangle1 g path{
    fill: #0061A3;
}
.flowitem__triangle2 g path{
    fill: #0282C7;
}

.flowitem__triangle1sp ,
.flowitem__triangle2sp {
    position: relative;
    display: block;
    margin: 0 auto;
    padding: 0;
    width: 80%;
    height: 25px;
    @media (min-width: 599px) {
        display: none;
    }
}
.flowitem__triangle1sp {
    background: #0282C7;
}
.flowitem__triangle2sp {
    background: var(--col-base);
}
.flowitem__triangle1sp g path{
    fill: #0061A3;
}
.flowitem__triangle2sp g path{
    fill: #0282C7;
}













.flowitem__upper {
    margin: 0;
    color: #FFFFFF;
    font-weight: 800;
    z-index: 99999;
    
    @media (max-width: 1024px) {
        font-size: 15px;
    }
}
.flowitem__image {
    position: relative;
    display: block;
    margin: 16px auto 0 auto;
    width: 75%;
    border-radius: 50%;
}
.flowitem__image img {
    display: block;
    width: 100%;
    border-radius: 50%;
}
.flowitem__lower {
    margin: 16px 0 0 0;
    color: #FFFFFF;
    font-size: .95em;
    font-weight: 200;
    
    @media (max-width: 1024px) {
        font-size: 15px;
    }
}

.flowitem__image svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 50%;
    height: 50%;
}


/* -------------------- */
.qa {
    margin: 0 auto 0 auto;
    padding: 0 16px;
    max-width: 1000px;
}
.qa__stitle {
    margin: 32px 0 0 0;
    padding: 0 16px;
    color: var(--col-base);
    font-size: 18px;
    font-weight: 800;
    
    @media (max-width: 1024px) {
        margin: 32px auto 0 auto;
        padding: 0 0;
        width: 90%;
        font-size: 16px;
    }
}
.qa__stitle span {
    display: inline-block;
    margin-right: 8px;
    padding: 0 6px 3px 6px;
    color: #FFFFFF;
    font-size: 14px;
    background: var(--col-accent-navy);
    border-radius: 4px;
}
.qa ul {
    margin: 32px 0 0 0;
    padding: 0;

    @media (max-width: 1024px) {
        margin: 32px auto 0 auto;
        width: 90%;
    }

    @media (max-width: 599px) {
        width: 100%;
    }
}
.qa ul li {
    margin: 0;
    padding: 0;
    border-top: solid 1px #000000;
}
.qa ul li:last-child {
    border-bottom: solid 1px #000000;
}

.qa__item {
    margin: 0;
    padding: 24px 0 24px 16px;
    width: 100%;
    
    @media (max-width: 1024px) {
        padding: 18px 0 18px 16px;
    }
    
    @media (max-width: 599px) {
        padding: 18px 0 18px 8px;
    }
}

.qa__item--que {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0 15% 0 0;
    width: 100%;
    font-weight: 700;
    cursor: pointer;
    
    @media (max-width: 1024px) {
        font-size: 16px;
    }
}
.qa__item--que b {
    margin-right: 16px;
    font-size: 1.5em;
    font-weight: 600;
    
    @media (max-width: 599px) {
        margin-right: 12px;
        font-size: 1.25em;
    }
}
.qa__item--button {
    position: absolute;
    right: 16px;
    display: block;
    margin: 0;
    padding: 0;
    width: 37px;
    height: 37px;
    border-radius: 50%;

    @media (max-width: 599px) {
        right: 0;
    }
}
.qa__item--button.is-close {
    transform: rotate(45deg);
}
.qa__item--button::before ,
.qa__item--button::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 28px;
    height: 2px;
    background: #000000;
    border-radius: 10px;
}
.qa__item--button::before {
    transform: translateY(-50%) translateX(-50%);
}
.qa__item--button::after {
    transform: translateY(-50%) translateX(-50%) rotate(90deg);
}
@media (max-width: 1024px) {
    .qa__item--button::before ,
    .qa__item--button::after {
        zoom: .75;
        height: 2px;
    }
}

.qa__item--ans {
    margin: 0;
    padding: 0;
    width: 100%;
}
.qa__item--ans p {
    margin: 0;
    padding: 24px 0 0 0;
    width: 100%;
    font-size: 18px;
    
    @media (max-width: 1024px) {
        font-size: 16px;
    }
    @media (max-width: 599px) {
        font-size: 16px;
    }
}
.qa__item--ans p b {
    margin-right: 16px;
    color: var(--col-accent-orange);
    font-size: 1.75em;
    font-weight: 600;
    line-height: 1;
}

.qa__item--ans table {
    margin: 24px 0 0 0;
    padding: 0 0 0 46px;
    width: 80%;
    font-size: 14px;
}
.qa__item--ans table tr {
    margin: 0;
    padding: 0;
}
.qa__item--ans table tr th {
    margin: 0;
    padding: 12px 32px;
    text-align: right;
    background: #01a4ff33;
    
    &:first-child{
        text-align: center;
        font-weight: 600;
    }
}
.qa__item--ans table tr td {
    margin: 0;
    padding: 12px 32px;
    text-align: right;
    background: #01a4ff1A;
    
    &:first-child{
        text-align: center;
        font-weight: 600;
    }
}
@media (max-width: 599px) {
    .qa__item--ans table {
        padding: 0 0 0 0;
        width: 100%;
        font-size: 13px;
    }
    .qa__item--ans table tr th,
    .qa__item--ans table tr td {
        padding: 8px 12px;
    }
}
.qa__item--ans table tr td b {
    font-size: .95em;
    font-weight: 200;
}




/* -------------------- */
.consider {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 5vw auto 0 auto;
    padding: 0 16px;
    max-width: 1200px;
    
    @media (max-width: 1024px) {
        gap: 24px;
    }
    @media (max-width: 599px) {
        gap: 16px;
    }
}
.consider__item {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0 auto;
    padding: 0;
    width: calc((100% - 40px * 1) / 2);
    
    @media (max-width: 1024px) {
        gap: 12px;
    }
    @media (max-width: 599px) {
        gap: 12px;
        width: 100%; 
    }
}
.consider__item--img {
    margin: 0;
    padding: 0;
    width: 200px;
    border-radius: 40px;
    
    @media (max-width: 1024px) {
        width: 100px;
        border-radius: 16px;
    }
    @media (max-width: 599px) {
        width: 100px;
        border-radius: 20px;
    }
}
.consider__item--text {
    margin: 0;
    padding: 0;
    width: calc(100% - 200px);
    font-size: 20px;
    font-weight: 600;
    
    @media (max-width: 1024px) {
        width: calc(100% - 100px);
        font-size: 16px;
    }
    @media (max-width: 599px) {
        width: calc(100% - 100px);
        font-size: 16px;
    }
}



/* -------------------- */
.achievements {
    margin: 5vw auto 0 auto;
    padding: 0;
    width: 100%;
}
.achievements__item {
    margin: 0 auto;
    padding: 0;
}
.achievements__item--img {
    margin: 0;
    padding: 0;
    border-radius: 40px
}
.achievements__item--expl {
    margin: 24px 0 0 0;
    padding: 0;
}
.achievements__item--expl .title {
    margin: 0;
    padding: 0;
    font-weight: 800;
}
.achievements__item--expl .text {
    margin: 8px 0 0 0;
    padding: 0;
    line-height: 2;
}



/* --- */
.achievements .swiper {
    padding: 0 24px;
}
.achievements .achievementsSwiper {
    padding: 0 24px;
}





/* -------------------- */
.swiper {
    width: 100%;
    height: 100%;
}
.swiper-wrapper { /*「.swiper-pagination」をつけるとき*/
    padding-bottom: 48px !important;
}
















/* ------------------------------ */
.terms {
    margin: 0 auto 0 auto;
    padding: 16px 16px 56px 16px;
    max-width: 1000px;
    @media (max-width: 1024px) {
       width: 80%; 
    }
    @media (max-width: 599px) {
       width: 95%; 
    }
}
.terms .title {
    display: block;
    margin: 0 auto 0 auto;
    font-size: 28px;
    text-align: center;
    font-weight: 200;
}
.terms .lead {
    margin: 24px 0 0 0;
    font-size: 14px;
}
.terms .sstitle {
    margin: 40px 0 0 0;
    font-size: 16px;
    font-weight: 200;
    
    @media (max-width: 599px) {
        margin: 24px 0 0 0; 
    }

}
.terms .text {
    margin: 8px 0 0 0;
    padding: 0 0 0 1em;
    font-size: 14px;

    &.right {
        margin: 16px 0 0 0;
        text-align: right;
        font-size: 14px;
    }
}
.terms ol {
    margin: 0 0 0 0;
    padding: 0 0 0 2em;
    font-size: 14px;
    list-style-type: disc;
}
.terms ol li {
    margin: 8px 0 0 0;
    padding: 0 0 0 0;
}

.terms table {
    margin: 24px 0 0 0;
    padding: 0 0 0 0;
    width: 100%;
    font-size: 14px;
}
.terms table tr {
    margin: 0;
    padding: 0 0 0 0;
}
.terms table tr td {
    margin: 0;
    padding: 16px 16px;
    line-height: 1.75;
    border: solid 1px #DDDDDD;

    &:first-child {
        font-size: 15px;
        font-weight: 200;
        white-space: nowrap;
        @media (max-width: 599px) {
            &:first-child {
                width: 35%;
                font-size: 14px;
                white-space: wrap;
            }
        }
    }
}




/* ------------------------------ */
.entry {
    margin: 5vw auto 0 auto;
    padding: 0 16px;
    width: 100%;
    max-width: 750px;
}

.entry__lead {
    margin: 5vw auto 0 auto;
    padding: 0;
    max-width: 638px;
    text-align: center;
    @media (max-width: 599px) {
        width: 100%;
        text-align: left;
    }
}
.entry__lead p {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    @media (max-width: 1024px) {
        font-size: 15px;
    }
}
.entry .formContent {
    @media (max-width: 1024px) {
        width: 75%;
    }
    @media (max-width: 599px) {
        width: 100%;
    }
}




/* ------------------------------ */
.inquery {
    margin: 2.5vw auto 2.5vw auto;
    padding: 0 16px;
    max-width: 750px;
    
    @media (max-width: 1024px) {
        max-width: 600px;
    }
    @media (max-width: 599px) {
        margin: 7.5vw auto 7.5vw auto;
    }
}
.inquery__lead {
    margin: 0 auto 0 auto;
    padding: 0;
    text-align: center;
    @media (max-width: 599px) {
        text-align: left;
    }
}
.inquery__lead p {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}
.inquery__thanks {
    margin: 0;
    padding: 0;
}
.inquery__thanks .title {
    margin: 0;
    padding: 0;
    font-weight: 600;
    font-size: 18px
}
.inquery__thanks .lead {
    margin: 0;
    padding: 0;
}
.inquery__thanks .text {
    margin: 16px 0 0 0;
    padding: 0;
    font-size: 16px
}
.inquery__thanks .textOpen {
    margin: 24px 0 0 0;
    padding: 0;
    font-size: 14px
}
.inquery__thanks .totop {
    display: block;
    margin: 80px 0 0 0;
    padding: 0;
    text-align: center;
    font-size: 14px
}




/* -------------------- */
.content__btn {
    margin: 5vw auto 0 auto;
    padding: 0;
    width: 100%;
    max-width: 560px;
}
.content__btn .btn {
	position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 17px 0 20px 0;
    width: 100%;
    text-align: center;
    line-height: 1;
    background: var(--col-base);
    border-radius: 100px;
    box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, .2);
    overflow: hidden;

}
.content__btn .btn:hover {
    box-shadow: none;
}
.content__btn .btn.is-disabled,
.content__btn .btn:disabled {
    background: #cbd5e1;
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
}
.content__btn .btn.is-disabled::after,
.content__btn .btn:disabled::after {
    content: none;
}
.content__btn .btn.is-disabled span,
.content__btn .btn:disabled span {
    color: #64748b;
}
.content__btn .btn::after {
	position: absolute;
	top: 0;
	left: -100%;
	transform: skewX(-15deg);
	content: '';
	height: 100%;
	width: 100%;
	animation: 4s 0s shine linear infinite;
	background: linear-gradient(to right, rgba(255,255,255,0) 25%, rgba(255,255,255,.6) 50%, rgba(255, 255, 255, 0) 75%);
}
@keyframes shine {
	10% {
		left: 100%;
	}
	100% {
		left: 100%;
	}
}
.content__btn .btn span {
    display: block;
    color: #FFFFFF;
    line-height: 1.3;
    font-size: 22px;
    font-weight: 800;
    
    @media (max-width: 599px) {
        font-size: 18px;
    }
}
.content__btn .btn span b {
    display: block;
    margin: 4px 0 0 0;
    font-size: .55em;
    font-weight: 600;
}









/* ------------------------------ */
.formContent {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    position: relative;
    margin: 2.5vh auto 0 auto;
    padding: 32px 32px 40px 32px;
    width: 100%;
    background: #01a4ff1A;
    border-radius: 24px;
    
    @media (max-width: 599px) {
        padding: 24px 16px 32px 16px;
    }
}
.formContent.is-disabled {
    background: #f1f5f9;
    border: solid 1px #e2e8f0;
}
.formContent.is-disabled input:disabled,
.formContent.is-disabled textarea:disabled {
    color: #94a3b8;
    background: #f8fafc;
    border-color: #cbd5e1;
    cursor: not-allowed;
}
.formContent.is-disabled input[type="radio"]:disabled,
.formContent.is-disabled input[type="checkbox"]:disabled {
    cursor: not-allowed;
}
.formContent.is-disabled .name,
.formContent.is-disabled .ckb,
.formContent.is-disabled .supple {
    color: #64748b;
}

    .formContent .content__btn {
        margin: 0 auto 0 auto;
        width: 100%;
        &.inquerySubmitBtn {
            max-width: 320px;
        }
        &.inquerySubmitBtn span {
            font-size: 18px;
        }
    }
    .formContent .content__btn .agreeChecked {
        opacity: .2;
        pointer-events: none;
    }
    .formContent .content__btn .agreeChecked.is-active {
        opacity: 1;
        box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, .2);
        pointer-events: auto;
        cursor: pointer;
    }
    .formContent .content__btn .agreeChecked.is-active:hover {
        box-shadow: none;
    }
    .formContent .content__btn .content__btn--bottomtext {
        margin-top: 8px;
        text-align: center;
        font-size: 14px;
    }



@media (max-width: 599px) {
    .agree {
        font-size: .8em;
        white-space: nowrap;
    }
}







/* ---------- */
.formContent__lead {
    display: block;
    margin: 0 0 0 0;
    width: 100%;
    font-size: 15px;
    
    &.center{
        text-align: center;
    }
}

/* ---------- */
.inputText ,
.inputTextarea {
    display: block;
    margin: 0;
    width: 100%;
}
.checkbox {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: none;
    margin: 0;
    padding: 0 0 24px 0;
    width: 100%;
    border-bottom: solid 1px #000000;
}

.inputText .name ,
.inputTextarea .name ,
.checkbox .name {
    display: block;
    margin: 0;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
}
.inputText .name.req ,
.inputTextarea .name.req ,
.checkbox .name.req {
}
.inputText .name.req::before ,
.inputTextarea .name.req::before ,
.checkbox .name.req::before {
    content: '必須';
    margin-right: 4px;
    padding: 0 4px 2px 4px;
    color: #FFFFFF;
    font-size: .7em;
    background: #FF0000;
    border-radius: 2px;
}

.inputText .supple ,
.inputTextarea .supple ,
.checkbox .supple {
    display: block;
    margin: 6px 0 0 4px;
    width: 100%;
    color: #0061A3;
    font-size: 12px;
    font-weight: 500;
}
.inputText .error ,
.inputTextarea .error ,
.checkbox .error {
    display: block;
    margin: 6px 0 0 4px;
    width: 100%;
    color: #FF0000;
    font-size: 13px;
    font-weight: 500;
}
.inputText .check ,
.inputTextarea .check ,
.checkbox .check {
    display: block;
    margin: 6px 0 0 4px;
    padding: 8px 0 8px 1em;
    width: 100%;
    font-size: 15px;
    border-bottom: solid 1px #000000;
}

.inputText input {
    display: block;
    margin: 12px 0 0 0;
    padding: .75em;
    width: 100%;
    font-size: 16px;
    border: solid 1px #0061A3;
    border-radius: 5px;
}
.inputText textarea {
    display: block;
    margin: 12px 0 0 0;
    padding: .75em;
    width: 100%;
    height: 7.5em;
    font-size: 16px;
    border: solid 1px #0061A3;
    border-radius: 5px;
    transition: 0.5s;
}

.checkbox .ckb {
    position: relative;
    display: flex;
    align-items: center;
    gap: .25em;
    margin: 12px 0 0 24px;
    cursor: pointer;
}
.checkbox .ckb:first-of-type {
    margin: 12px 0 0 1em;
    @media (max-width: 599px) {
        margin: 12px 0 0 0;
    }
}





.checkbox .ckb input {
    display: none;
}
.checkbox .ckb a {
    color: #0000FF;
    font-weight: 600;
    text-decoration: underline;
}
.checkbox .ckb::before,
.checkbox .ckb:has(:checked)::after {
    content: '';
}
.checkbox .ckb::before {
    min-width: 21px;
    min-height: 21px;
    border-radius: 3px;
    background-color: #F5F5F5;
    border: solid 1px #0061A3;
}
.checkbox .ckb:has(:checked)::before {
    background: #f56125;
    border: solid 1px #f56125;
}
.checkbox .ckb:has(:checked)::after {
    position: absolute;
    top: 45%;
    left: 8px;
    transform: translateY(-45%) rotate(45deg);
    width: 4px;
    height: 8px;
    border: solid #FFFFFF;
    border-width: 0 2px 2px 0;
}
@media (max-width: 1024px) {
    .checkbox .ckb:has(:checked)::after {
        top: 47.5%;
        transform: translateY(-47.5%) rotate(45deg);
    }
}






/* ------------------------------ */
footer {
    display: block;
    width: 100%;
    background: var(--col-base);
}
footer .inner {
    padding: 64px 16px 4px 16px;
    width: 100%;
    text-align: center;
    
    @media (max-width: 1024px) {
        padding: 56px 16px 4px 16px;
    }
}
footer .inner img {
    display: block;
    margin: 0 auto;
    width: 150px;
    @media (max-width: 1024px) {
        width: 100px;
    }
    @media (max-width: 599px) {
        width: 75px;
    }
}
footer .inner ul {
    display: flex;
    flex-wrap: wrap;
    margin: 80px auto 0 auto;
    justify-content: center;
    gap: 120px;
    
    @media (max-width: 1024px) {
        margin: 48px auto 0 auto;
        gap: 48px;
    }
}
footer .inner ul li {
    margin: 0;
    @media (max-width: 1024px) {
        font-size: 14px;
    }
}
footer .inner ul li a {
    color: #FFFFFF;
}
footer .inner .copy {
    margin: 80px auto 0 auto;
    color: #FFFFFF;
    font-size: 12px;
}







/* -------------------- */
.fixedBtn {
    position: fixed;
    right: 16px;
    bottom: 2.5vw;    
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
    z-index: 999999;
    &.is-show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    @media (max-width: 599px) {
        right: 8px;
    }
}
.fixedBtn__topagetop ,
.fixedBtn__entryBtn ,
.fixedBtn__loginAdmin {
    display: block;
    margin: 16px 0 0 0;
    padding: 0;
    &::before {
        display: block;
        margin: 0 auto;
        width: 50px;
        line-height: 1;
        filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.2));
        transition: 0.5s;
    }
    &:hover::before {
        filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0));
    }
}
.fixedBtn__loginAdmin.is-disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .45;
    filter: grayscale(1);
}


.fixedBtn__topagetop {
    &::before {
        content: url(../images/icon-pagetop.svg);
        @media (max-width: 599px) {
            width: 33px;
        }
    }
}
.fixedBtn__entryBtn {
    @media (min-width: 599px) {
        display: none;
    }
    &::before {
        content: url(../images/icon-reg.svg);
        @media (max-width: 599px) {
            width: 30px;
        }
    }
}
.fixedBtn__loginAdmin {
    @media (min-width: 599px) {
        display: none;
    }
    &::before {
        content: url(../images/icon-admin.svg);
        @media (max-width: 599px) {
            width: 32px;
        }
    }
}









/* -------------------- */
.modal00 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
}
.modal00-bg {
    position: absolute;
    height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
}
.modal00-close {
    margin: 0 auto;
    padding: 0;
    text-align: center;
}
.modal00-close span {
}
.modal00-close-fixed {
    position: fixed;
    top: 3%;
    right: 2%;
    margin: 0;
    padding: 0;
    z-index: 99999;
}
.modal00-close-fixed span {
    display: inline-block;
    vertical-align: middle;
    width: 60px;
    height: 1px;
    background: var(--color-wh);
    position: relative;
    transform: rotate(45deg);
}
.modal00-close-fixed span::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-wh);
    transform: rotate(90deg);
}
body.mdlFixed {
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden!important;
}
.modal00-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    margin: 0 auto;
    padding: 0;
    max-height: 95vh;
    background: var(--color-wh);
    overflow: auto;
    border-radius: 5px;
}
@media (max-width: 599px) {
    .modal00-content {
        width: 80%;
    }
}
.modal00__desc {
    margin: 0 auto;
    padding: 32px 48px;
    max-width: 380px;
    text-align: center;
    background: #FFFFFF;
    border-radius:  16px;
}
@media (max-width: 599px) {
    .modal00__desc {
        padding: 32px 16px 16px 16px;
    }
}




/* -------------------- */
.thanksEntry {
    text-align: center;
}
.thanksEntry .logo {
    display: block;
    margin: 0 auto;
    padding: 0;
    width: 150px;
}
.thanksEntry .title {
    display: block;
    margin: 32px 0 0 0;
    padding: 0;
    font-size: 17px;
    font-weight: 700;
}
.thanksEntry .title b {
    display: block;
    color: var(--col-base);
    font-size: 1.2em;
}
.thanksEntry .lead {
    margin: 16px 0 0 0;
    padding: 0;
    font-size: 15px;
    text-align: left;
}
.modal00__desc .close {
    display: block;
    margin: 24px auto 0 auto;
    padding: 6px 48px;
    width: 150px;
    color: #FFFFFF;
    letter-spacing: .1em;
    font-size: 14px;
    background: var(--col-accent-navy);
    border-radius: 100px;        
}









/* -------------------- */
.activeSp {
    display: inline-block;
}
@media (min-width: 599px) {
    .activeSp {
        display: none;
    }
}
















