@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* 変数 */
:root {
    --main-color: #33CCCC;
    --sb-color: #FF6666;
    --sb-sb-color: #9999CC;
    --sb-sb-sb-color: #B0D020;
    --sb-sb-sb-sb-color: #FFCC00;
    --main-txt-color: #3E3D3B;
    --accent-color: #4156E8;
    --main-background-color: #fff;
    --section-background-color: #FBFBFB;
    --section1-background-color: #F6F6FF;
    --section2-background-color: #EAF8F9;
    --section3-background-color: #F7FBE4;
    --section4-background-color: #FBE7E7;
    --section5-background-color: #FCF7E5;
    --main-border-color: #e0e0e0;
    --main-font-size: 16px;
    --headding-font-size: 32px;
    --headding-font-size-sp: 24px;
    --font-weight-400: 400;
    --font-weight-500: 500;
    --font-weight-700: 700;
    --main-border-radius: 6px;
    --hover-transition: .2s;
}

/* アニメーション */
@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    10% {
        transform: translateY(-5px);
    }
    20% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-5px);
    }
    40% {
        transform: translateY(0);
    }
    }
    .anime-object {
    animation: bounce2 6s linear infinite;
}

/* 基本設定
------------------------------------------*/
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: var(--font-weight-400);
    font-style: normal;
    font-size: var(--main-font-size);
    color: var(--main-txt-color);
    line-height: 1.6;
    /* letter-spacing: 0.1em; */
    text-align: left;
    /* text-align: justify;
    text-justify: inter-ideograph;
    word-break: break-word;
    font-feature-settings: "palt"; */
    background: var(--main-background-color);
}
html, body {
    width: 100%;
    height: 100%;
}
img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.br-2,
.br-3,
.br-4,
.br-5 {
    display: none;
}
.wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 0;
}
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: fixed;
    top:0;
    left: 0;
    /* transform: translate(-50%, -50%); */
    padding: 24px;
    z-index: 30;
    transition: var(--hover-transition);
}
.scroll {
    width: 100%;
    /* margin: 16px auto 0;
    top:2%;
    left: 50%;
    transform: translate(-50%, -50%); */
    background: rgb(255, 255, 255,.4);
    backdrop-filter: blur(2px);
    padding: 16px;
    box-shadow: 0 0.2rem 1rem rgba(121, 120, 126, 0.1);
    transition: var(--hover-transition);
}
.header-logo a img {
    width: 240px;
}
/* ハンバーガーメニュー*/
.hamburger,
.sp-nav-menu {
    display: inherit;
}
.hamburger {
    position: relative;
    /* width: 100px;
    right: 0; */
    z-index: 32;
    width: 0;
    height: 0;
}
.hamburger-menu {
    width: inherit;
    height: 100%;
    border: none;
}
.icon {
    width: 55px;
    height: 55px;
    display: block;
    position: relative;
    position: fixed;
    top: 30px;
    right: 24px;
    background: var(--main-background-color);
    border: 1px solid var(--main-border-color);
    border-radius: 50px;
    transition: var(--hover-transition);
}
.scroll .icon {
    top: 23px;
    right: 20px;
    transition: var(--hover-transition);
}
.icon span {
    width: 32%;
    height: 2px;
    border-radius: 10px;
    position: absolute;
    background: #262626;
    transition: opacity .3s,transform .3s;
}
.icon span:first-child {
    top: 21.5px;
    left: 19px;
}
.icon span:nth-child(2) {
    left: 19px;
    bottom: 24px;
}
.icon span:nth-child(3) {
    left: 19px;
    bottom: 19px;
}
.clicked .icon span:first-child {
    transform: rotate(45deg);
    left: 19px;
    top: 27px;
}
.clicked .icon span:nth-of-type(2) {
    left: 19px;
    bottom: 24px;
    opacity: 0;
}
.clicked .icon span:nth-of-type(3) {
    transform: rotate(-45deg);
    left: 19px;
    bottom: 24px;
}
.sp-nav-menu {
    transition: .4s;
}
.sp-menu-content {
    width: 100%;
    height: 100vh;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    transition: .2s;
    left: 0;
    top: 0;
}
.clicked .sp-menu-content {
    top: 0;
    right: 0;
    opacity: 1;
    z-index: 31;
    visibility: visible;
    transition: .2s;
    width: 100%;
    margin-top: 0;
    margin-left: auto;
    background: var(--main-background-color);
}
.sp-menu-content {
    text-align: left;
    padding: 4vw;
    display: flex;
    flex-direction: column;
    gap: 64px;
    display: flex;
    flex-direction: column;
    justify-content: inherit;
    /* margin-top: -200px; */
    overflow: auto;
}
.sp-logo img {
    width: 280px;
    margin-left: -8px;
}
.sp-globalnav-list {
    margin-left: 24px;
}
.sp-globalnav-item {
    position: relative;
    font-size: 18px;
    font-weight: var(--font-weight-500);
    padding: 8px;
}
.sp-sb-globalnav-list {
    margin: 24px 0 24px 24px;
    display: flex;
    justify-content: baseline;
    gap: 24px;
    font-weight: var(--font-weight-400);
    width: 80%;
}
.sp-sb-globalnav-item a img {
    width: 100%;
    box-shadow: 0 0.2rem 1rem rgba(121, 120, 126, 0.2);
    border-radius: 16px;
    transition: var(--hover-transition);
}
.sp-sb-globalnav-item a:hover img {
    box-shadow: 0 0.2rem 1rem rgba(121, 120, 126, 0.4);
    transition: var(--hover-transition);
    opacity: .8;
}
.sp-globalnav-item a {
    transition: var(--hover-transition);
}
.sp-globalnav-item a:hover {
    transition: var(--hover-transition);
    color: var(--main-color);
}
.sp-ber {
    position: absolute;
    top: 0;
    left: 0;
}
.sp-ber img {
    width: 1.8vw;
    height: 100vh;
}
.globalnav-list {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    font-weight: var(--font-weight-700);
    margin-right: 70px;
}
.scroll .globalnav-list {
    margin-right: 73px;
}
.globalnav-list li a {
    display: block;
    width: 180px;
    text-align: center;
    padding: 16px 0;
    border-radius: 50px;
    color: var(--main-background-color);
    transition: var(--hover-transition);
    box-shadow: 0 0.2rem 1rem rgba(121, 120, 126, 0.2);
}
.globalnav-item:nth-child(1) a {
    background: var(--sb-color);
}
.globalnav-item:nth-child(2) a {
    background: var(--main-color);
}
.globalnav-item:nth-child(1) a:hover {
    background: #f54b4b;
}
.globalnav-item:nth-child(2) a:hover {
    background: #1dc4c4;
}
.headding-title {
    margin-bottom: 40px;
}
.headding-title span {
    font-size: 48px;
    font-weight: var(--font-weight-500);
}
.headding-title h2 {
    font-weight: var(--font-weight-500);
    color: var(--sb-color);
}
.news-list ul article li .news-item{
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 24px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}
.news-item span {
    font-size: 14px;
    letter-spacing: .05em;
}
.news-item p {
    font-size: 11px;
    padding: 2px 12px;
    border: 1px solid #a0a0a0;
    border-radius: 20px;
}
.btn a {
    display: block;
    margin-top: 40px;
    margin-left: auto;
    text-align: right;
    width: fit-content;
}
.fv {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 110vh;
    /* min-width: 1500px; */
    display: flex;
    align-items: center;
    gap: 6vw;
}
.fv-img {
    /* position: absolute;
    top: -24px;
    right: -400px; */
    margin-bottom: 6vw;
}
.fv-img img {
    width: 80vw;
    transition: var(--hover-transition) ;
}
.fv-copy {
    /* position: absolute;
    top: 50%;
    left: 24%;
    transform: translate(-50%, -50%); */
    padding-left: 8vw;
}
.fv-copy-head img {
    width: 28vw;
}
.fv-copy h2 {
    font-size: 1.8vw;
    font-weight: var(--font-weight-500);
    margin: 2vw 0 1.2vw;
    line-height: 2;
}
.fv-logo {
    margin-left: -.7vw;
}
.fv-logo img {
    width: 20vw;
}
.headding {
    margin-bottom: 80px;
}
.headding h2 {
    font-size: 2.4vw;
    font-weight: var(--font-weight-700);
}
.headding-en span {
    font-size: 1vw;
    color: #ABABAB;
    font-weight: var(--font-weight-500);
}
.h-txt {
    margin-top: 24px;
    font-size: 16px;
}
.a-txt {
    margin-top: 40px;
    font-size: 16px;
    line-height: 2;
}
.prologue-content ul {
    display: flex;
    align-items: center;
    gap: 8vw;
}
.prologue-content ul li {
    width: calc((100% - 8vw)/2);
}
.prologue-img img {
    display: block;
    margin: 0 auto;
    width: 22vw;
}
.splide__slide {
    text-align: center;
}
.type-copy h3 {
    margin: 24px 0 8px;
    font-size: 1.5vw;
    font-weight: var(--font-weight-700);
}
.features p {
    font-size: 18px;
}
.f1 {
    color: var(--sb-sb-color);
}
.f2 {
    color: var(--main-color);
}
.f3 {
    color: var(--sb-sb-sb-color);
}
.f4 {
    color: var(--sb-color);
}
.f5 {
    color: var(--sb-sb-sb-sb-color);
}
.t-btn {
    margin: 0 auto;
    margin-top: 24px;
}
.t-btn p {
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 12px 24px;
    border: 1px solid var(--main-txt-color);
    border-radius: 50px;
    width: 180px;
    transition: var(--hover-transition);
    position: relative;
}
.btn-arrow-right p::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 23px;
    width: 8px;
    height: 8px;
    margin: auto;
    border-top: 1px solid var(--main-txt-color);
    border-right: 1px solid var(--main-txt-color);
    transform: rotate(45deg);
    box-sizing: border-box;
}
.type {
    overflow: hidden;
}
.over-wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
}
.splide__arrow {
    -ms-flex-align: center;
    align-items: center;
    background: #ffffff !important;
    border-radius: 50%;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    height: 5em !important;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 30% !important;
    transform: inherit !important;
    width: 5em !important;
    z-index: 1;
    border: 1px solid var(--main-txt-color) !important;
    box-shadow: 0 0.2rem 1rem rgba(121, 120, 126, 0.2);
}
.splide__arrow--prev {
    left: -2em !important;
    right: 17em !important;
}
.splide__arrow--next {
    right: 8em !important;
}
.splide__slide a {
    transition: var(--hover-transition);
}
.splide__slide a:hover {
    transition: var(--hover-transition);
    opacity: .8;
}
.topics-list ul {
    display: flex;
    justify-content: start;
    gap: 80px;
}
.topics-list ul article {
    width: calc((100% - 80px*2)/3);
    position: relative;
}
.topics-img img {
    aspect-ratio: 4/3;
    border-radius: 24px;
}
.topics-item p {
    position: absolute;
    top: 12px;
    right: 10px;
    color: var(--main-background-color);
    font-weight: var(--font-weight-500);
    padding: 2px;
    font-size: 18px;
    width: 120px;
    text-align: center;
    border-radius: 50px;
}
.topics-item {
    transition: var(--hover-transition);
}
.topics-item:hover {
    transition: var(--hover-transition);
    opacity: .8;
}
.cate-news {
    background: var(--main-color);
}
.cate-column {
    background: var(--sb-sb-sb-sb-color);
}
.cate-seminar {
    background: var(--sb-sb-sb-color);
}
.cate-works {
    background: var(--sb-sb-color);
}
.topics-item h3 {
    margin: 24px 0;
    font-size: 24px;
    line-height: 1.6;
    font-weight: var(--font-weight-700);
}
.topics-bate {
    display: block;
    text-align: right;
    color: #A9A9A9;
}
.btn {
    margin-top: 40px;
}
.btn a {
    display: block;
    padding: 12px 40px;
    border-radius: 50px;
    border: 1px solid var(--main-txt-color);
    transition: var(--hover-transition);
    position: relative;
}
.btn a:hover {
    transition: var(--hover-transition);
    opacity: .8;
}
.use-content ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 160px;
}
.use-content ul li {
    width: calc((100% - 160px*2)/3);
    position: relative;
}
.step {
    position: absolute;
    top: -50px;
    left: 24px;
}
.step img {
    width: 100px;
}
.use-img img {
    border-radius: 24px;
}
.use-inner {
    text-align: center;
}
.use-inner h3 {
    margin: 24px 0;
    font-size: 24px;
    font-weight: var(--font-weight-700);
}
.use-inner p {
    text-align: left;
    display: inline-block;
}
.bc {
    background: var(--section-background-color);
}
.qa-6 {
    border-bottom: 1px solid var(--main-border-color);
}

.qa-6 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1.8em 2em 1.8em 3.6em;
    cursor: pointer;
    font-weight: var(--font-weight-500);
    font-size: 16px;
    color: var(--main-color);
    transition: var(--hover-transition);
}
.qa-6 summary:hover {
    background: var(--section2-background-color);
    transition: var(--hover-transition);
}
.qa-6 summary::before,
.qa-6 p::before {
    position: absolute;
    left: 1em;
    font-weight: var(--font-weight-700);
    font-size: 20px;
}

.qa-6 summary::before {
    color: var(--main-color);
    content: "Q";
}

.qa-6 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 10px;
    height: 10px;
    margin-left: 10px;
    border-bottom: 3px solid var(--main-color);
    border-right: 3px solid var(--main-color);
    content: '';
    transition: transform .5s;
}

.qa-6[open] summary::after {
    transform: rotate(225deg);
}

.qa-6 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 1.8em 2em 1.8em 3.6em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qa-6[open] p {
    transform: none;
    opacity: 1;
}

.qa-6 p::before {
    color: var(--sb-color);
    line-height: 1.2;
    content: "A";
}
.qa-6 p a {
    color: var(--main-color);
    text-decoration: underline;
}
.qa-6 p a:hover {
    opacity: .8;
    text-decoration: none;
}
.faq-title {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: var(--font-weight-700);
}
.faq-top-m {
    margin-top: 40px;
}
.contemt-btn {
    margin-top: 40px;
}
.contemt-btn a {
    display: inline-block;
    background: var(--sb-color);
    color: var(--main-background-color);
    font-weight: var(--font-weight-700);
    font-size: 18px;
    padding: 16px;
    width: 240px;
    text-align: center;
    border-radius: 50px;
    transition: var(--hover-transition);
    position: relative;
}
.contemt-btn a:hover {
    background: #f54b4b;
    transition: var(--hover-transition);
}
.f-content {
    display: flex;
    justify-content: space-between;
}
.f-logo img {
    width: 14vw;
}
.f-inner {
    display: flex;
    flex-direction: column;
}
.f-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--main-border-color);
}
.f-nav ul li {
    width: calc((100% - 16px)/2);
}
.f-nav ul li a {
    transition: var(--hover-transition);
}
.f-nav ul li a:hover {
    transition: var(--hover-transition);
    color: var(--main-color);
}
.f-company {
    padding-top: 40px;
    margin-bottom: 120px;
}
.table {
    width: 100%;
}
.tbody {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.th {
    font-weight: var(--font-weight-400);
    font-size: 14px;
    width: 100px;
}
.tr2 {
    margin-top: 24px;
}
.td2 {
    font-size: 14px;
}
.f-sns ul {
    display: flex;
    align-items: center;
    gap: 8px;
}
small {
    display: block;
    text-align: right;
}
.u-page {
    border-bottom: 1px solid var(--main-border-color);
}
.u-content {
    margin: 0 auto;
    margin-top: 8vw;
    max-width: 1200px;
    margin-bottom: 120px;
}
.u-title {
    margin-bottom: 80px;
}
.u-title h2 {
    font-size: 40px;
    font-weight: var(--font-weight-700);
}
.u-leed-txt {
    margin-top: 64px;
}
.terms-list {
    display: flex;
    flex-direction: column;
    gap: 64px;
}
.u-terms-name {
    margin-bottom: 24px;
}
.u-terms-name h3 {
    font-size: 24px;
    font-weight: var(--font-weight-700);
    margin-bottom: 12px;
}
.line-img img {
    height: 4px;
    display: block;
}
.sb-terms-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sb-sb-terms-list {
    margin-top: 16px;
    font-size: 15px;
    margin-left: 16px;
}
.term-txt a {
    text-decoration: underline;
    color: var(--main-color);
}
.term-txt a:hover {
    text-decoration: none;
    opacity: .8;
}
.term-add {
    margin-top: 24px;
}
.u-pagenav-bottom ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 80px;
    letter-spacing: .01em;
}
.u-pagenav-bottom ul li a {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 2.9;
    text-align: center;
    border-radius: 50px;
    border: 1px solid var(--main-border-color);
    transition: var(--hover-transition);
}
.u-pagenav-bottom ul li a:hover {
    transition: var(--hover-transition);
    background: var(--main-color);
    border: 1px solid var(--main-color);
    color: var(--main-background-color);
}
.u-pagenav-bottom ul li .current {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 2.9;
    text-align: center;
    border-radius: 50px;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    color: var(--main-background-color);
}
.next, .prev {
    font-size: 15px;
}
.s-topics-title {
    padding-bottom: 16px;
    margin-bottom: 16px;
}
.s-news-body img {
    display: block;
    margin: 40px 0;
    height: auto;
    max-width: 100%;
    border-radius: 24px;
}
.s-news-body p {
    letter-spacing: .02em;
    line-height: 1.8;
}
.s-news-body h2 {
    position: relative;
    margin-top: 4rem;
    padding: 1rem 0;
    margin-bottom: 3rem;
    font-size: 32px;
    letter-spacing: .05em;
    font-weight: var(--font-weight-700);
    line-height: 1.6;
    color: var(--main-color);
}
.s-news-body h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: .2rem;
    margin: auto;
    background-position: left bottom;
    background-size: 100% .3rem;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(1.2rem, var(--main-color)), color-stop(1.2rem, var(--main-color)), color-stop(2rem, var(--main-color)), color-stop(2rem, var(--main-color)));
    background-image: linear-gradient(to right, var(--main-color) 1.2rem, var(--main-color) 1.2rem, var(--main-color) 2rem, var(--main-color) 2rem);
    background-repeat: repeat-x;
}
.s-news-body a {
    transition: var(--hover-transition);
    color: var(--main-color);
    text-decoration: underline;
}
.s-news-body a:hover {
    transition: var(--hover-transition);
    opacity: .8;
    text-decoration: none;
}
.s-topics-head p {
    display: inline-block;
    text-align: center;
    color: var(--main-background-color);
    font-weight: var(--font-weight-700);
    padding: 2px 16px;
    border-radius: 50px;
}
.s-op {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 80px;
}
.top-btn {
    margin: 80px auto 0;
}
.top-btn a {
    display: block;
    margin: 0 auto;
    text-align: center;
    background: var(--main-color);
    color: var(--main-background-color);
    font-weight: var(--font-weight-700);
    width: 240px;
    padding: 16px;
    border-radius: 50px;
    border: 1px solid var(--main-color);
    transition: var(--hover-transition);
}
.top-btn a:hover {
    background: var(--main-background-color);
    border: 1px solid var(--main-color);
    color: var(--main-color);
    transition: var(--hover-transition);
}
.u-cate-tag ul {
    display: flex;
    justify-content: baseline;
    align-items: center;
    gap: 8px;
    margin-bottom: 80px;
}
.u-cate-tag ul li a {
    padding: 16px 32px;
    background: #eee;
    border-radius: 50px;
    font-weight: var(--font-weight-500);
    transition: var(--hover-transition);
}
.u-cate-tag ul .active a {
    background: var(--main-color);
    color: var(--main-background-color);
}
.u-cate-tag ul li a:hover {
    background: var(--main-color);
    color: var(--main-background-color);
    transition: var(--hover-transition);
}
.u-type {
    width: 100%;
    height: auto;
}
/* .u-min-w {
    min-width: 1500px;
} */
.u-type-content {
    margin-top: 10vw;
    margin-bottom: 10vw;
    padding: 0 8vw;
}
.u-type-img {
    margin: 0 auto;
}
.u-type-content img {
    display: block;
    margin: 0 auto;
    width: 34vw;
}
.u-type-content ul {
    display: flex;
    align-items: center;
    gap: 6vw;
}
.u-type-content ul li {
    width: calc((100% - 6vw)/2);
}
.u-type-leed {
    font-size: 1.6vw;
    font-weight: var(--font-weight-500);
}
.ul-color1 span {
    color: var(--sb-sb-color);
}
.ul-color2 span {
    color: var(--main-color);
}
.ul-color3 span {
    color: var(--sb-sb-sb-color);
}
.ul-color4 span {
    color: var(--sb-color);
}
.ul-color5 span {
    color: var(--sb-sb-sb-sb-color);
}
.u-type-copy h2 {
    font-size: 2.8vw;
    font-weight: var(--font-weight-700);
    margin-top: 8px;
    margin-bottom: 16px;
    margin-left: -5px;
}
.u-type-copy span {
    font-size: 1.6vw;
    font-weight: var(--font-weight-500);
}
.u-type-txt {
    margin-top: 32px;
    font-size: 1.2vw;
}
.u-reason-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.u-reason-inner li {
    margin: 0 auto;
    text-align: center;
}
.u-reason-ber {
    color: var(--main-background-color);
    font-weight: var(--font-weight-700);
    text-align: center;
    margin: 32px auto;
    text-align: center;
    padding: 12px 40px;
    font-size: 20px;
    border-radius: 50px;
    display: inline-block;
}
.ber-color1 {
    background: var(--sb-sb-color);
}
.ber-color2 {
    background: var(--main-color);
}
.ber-color3 {
    background: var(--sb-sb-sb-color);
}
.ber-color4 {
    background: var(--sb-color);
}
.ber-color5 {
    background: var(--sb-sb-sb-sb-color);
}
.u-bc {
    background: var(--section-background-color);
}
.u-bc1 {
    background: var(--section1-background-color);
}
.u-bc2 {
    background: var(--section2-background-color);
}
.u-bc3 {
    background: var(--section3-background-color);
}
.u-bc4 {
    background: var(--section4-background-color);
}
.u-bc5 {
    background: var(--section5-background-color);
}
.u-section-title {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 64px;
}
.u-section-title h2 {
    font-size: 40px;
    font-weight: var(--font-weight-700) ;
    margin-bottom: 24px;
}
.u-section-title span {
    font-size: 24px;
    font-weight: var(--font-weight-700) ;
}
.u-section-title .w-l {
    font-size: 16px;
    font-weight: var(--font-weight-400);
    display: inline-block;
    margin-left: 2.8px;
}
.u-section-title p {
    text-align: left;
    display: inline-block;
}
.u-reason-inner {
    margin-top: 80px;
}
.u-reason-inner ul {
    display: flex;
    justify-content: center;
    gap: 120px;
}
.u-reason-inner ul li p {
    text-align: left;
    width: 80%;
    margin: 40px auto 0
}
.u-reason-btn {
    margin-top: 32px;
}
.u-reason-btn a {
    transition: var(--hover-transition);
    display: inline-block;
    border: 1px solid var(--main-txt-color);
    padding: 16px 40px;
    border-radius: 50px;
    transition: var(--hover-transition);
    background: var(--main-background-color);
    position: relative;
    letter-spacing: .01em;
}
.btn-arrow-right a::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 8px;
    height: 8px;
    margin: auto;
    border-top: 1px solid var(--main-txt-color);
    border-right: 1px solid var(--main-txt-color);
    transform: rotate(45deg);
    box-sizing: border-box;
}
.u-reason-btn a:hover {
    transition: var(--hover-transition);
    opacity: .8;
    box-shadow: 0 0.2rem 1rem rgba(121, 120, 126, 0.2);
}
.u-note-inner ul {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.u-note-inner ul li {
    display: flex;
    align-items: center;
    gap: 40px;
}
.u-note-img img {
    width: 220px;
}
.u-note-box span {
    font-weight: var(--font-weight-500);
    font-size: 18px;
}
.u-note-box h3 {
    font-size: 24px;
    font-weight: var(--font-weight-700);
    margin-bottom: 24px;
}
.reason-po {
    text-align: center;
    margin-top: 64px;
}
.u-disease {
    margin-top: 120px;
    text-align: center;
}
.u-disease-title {
    font-size: 32px;
    font-weight: var(--font-weight-700);
}
.u-disease-list {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 64px;
}
.u-disease-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    text-align: left;
}
.u-disease-list ul li {
    width: calc((100% - 40px*3)/4);
}
.disease-title h3 {
    font-weight: var(--font-weight-700);
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px dotted var(--main-border-color);
}
.face-list {
    max-width: 1200px;
    margin: 0 auto;
}
.face-list ul {
    display: flex;
    flex-direction: column;
    gap: 64px;
}
.face-list ul li .face-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.face-no img {
    width: 64px;
    display: block;
}
.face-title span {
    font-size: 28px;
    font-weight: var(--font-weight-700);
}
.face-inner {
    display: flex;
    justify-content: space-between;
    background: var(--main-background-color);
    border-radius: 16px;
}
.f-inner-l,
.f-inner-r {
    padding: 56px;
}
.f-inner-r {
    padding-left: 0;
}
.face-headding p {
    font-size: 24px;
    font-weight: var(--font-weight-700);
    margin-bottom: 24px;
}
.f-inner-r img {
    width: 200px;
}
.arupa {
    margin: 0 auto;
    margin-top: 80px;
    max-width: 800px;
}
.arupa-icon img {
    width: 140px;
}
.arupa-content a {
    display: flex;
    align-items: center;
    gap: 48px;
    background: var(--main-background-color);
    padding: 56px;
    border-radius: 16px;
    transition: var(--hover-transition);
}
.arupa-content a:hover {
    transition: var(--hover-transition);
    opacity: .8;
}
.arupa-content a:hover .arupa-btn span {
    transition: var(--hover-transition);
    box-shadow: 0 0.2rem 1rem rgba(121, 120, 126, 0.2);
}
.arupa-inner h3 {
    font-size: 24px;
    font-weight: var(--font-weight-700);
    margin-bottom: 24px;
}
.arupa-btn {
    margin-top: 24px;
    text-align: right;
}
.arupa-btn span {
    display: inline-block;
    border: 1px solid var(--main-txt-color);
    padding: 8px 32px;
    border-radius: 50px;
    font-size: 14px;
    transition: var(--hover-transition);
    position: relative;
    letter-spacing: .01em;
}
.br {
    display: none;
}
.terms-item a {
    margin-top: 16px;
    display: block;
    color: var(--main-color);
    text-decoration: underline;
    transition: var(--hover-transition);
}
.terms-item a:hover {
    text-decoration: none;
    transition: var(--hover-transition);
    opacity: .8;
}
.u-reason-img-l img {
        /* display: block;
        margin: 0 auto;
        text-align: center; */
        width: 110%;
    }
    .u-reason-img-r img {
        display: block;
        margin: 0 auto;
        text-align: center;
        width: 80%;
    }
    .u-reason-img-l-b img {
        width: 120%;
    }
#fixed-btn {
    position: fixed;
    left: 0;
    bottom: -80px;
    z-index: 29;
    transition: var(--hover-transition);
    visibility: hidden;
}
#fixed-btn.is-show {
    bottom: 0;
    visibility: visible;
    transition: var(--hover-transition);
}
.supporter-f-btn {
    width: 100%;
    padding: 24px 0;
    /* border-top: 1px solid #E5E5E5;
    background: var(--main-background-color); */
}
.sup-back1 {
    background: rgb(153, 153, 204,.7);
}
.sup-back2 {
    background: rgb(51, 204, 204,.7);
}
.sup-back3 {
    background: rgb(176, 208, 32,.7);
}
.sup-back4 {
    background: rgb(245, 75, 75,.7);
}
.sup-back5 {
    background: rgb(255, 204, 0,.7);
}
.f-btn {
    margin: 0 auto;
    text-align: center;
}
.f-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 18px;
    border-radius: 50px;
    width: 360px;
    background: var(--main-background-color);
    margin: 0 auto;
    font-weight: var(--font-weight-500);
}
.f-btn a img {
    width: 16px;
    height: fit-content;
    display: block;
}
details summary::-webkit-details-marker,
details summary::marker {
    display: none;
}
/* Width Adjustment
-------------------------------------*/
@media only screen and (min-width: 1440px) {
    .wrap {
        max-width: 1600px;
        margin: 0 auto;
        padding: 120px 0;
    }
    /* .fv {
        min-width: 1600px;
    } */
    /* .fv-img {
        position: absolute;
        top: 0;
        right: -400px;
    }
    .fv-img img {
        width: 1380px;
        margin-left: 40px;
        transition: var(--hover-transition) ;
    } */
    .headding h2 {
        font-size: 40px;
        font-weight: var(--font-weight-700);
    }
    .headding-en span {
        font-size: 24px;
        color: #ABABAB;
        font-weight: var(--font-weight-500);
    }
    .h-txt {
        margin-top: 24px;
        font-size: 18px;
    }
    .a-txt {
        margin-top: 40px;
        font-size: 18px;
        line-height: 2;
    }
    .u-type-txt {
        margin-top: 32px;
        font-size: 1vw;
    }
}
@media only screen and (max-width: 1440px) {
}
/* タブレット
-------------------------------------*/
@media screen and (max-width: 1024px) {
    .br-2 {
        display: inherit;
    }
    .br-3 {
        display: inherit;
    }
    .br-4 {
        display: inherit;
    }
    .header {
        padding: 16px;
    }
    .scroll {
        width: 100%;
        padding: 16px;
        border-radius: 0;
    }
    .header-logo a img {
        width: 180px;
    }
    .icon, .scroll .icon {
        top: 16px;
        right: 20px;
    }
    .sp-sb-globalnav-list {
        margin: 24px 0;
        display: flex;
        justify-content: baseline;
        gap: 8px;
        width: 90%;
    }
    .globalnav-item:nth-child(1) a {
        display: none;
    }
    .globalnav-item:nth-child(2) a {
        display: none;
    }
    .sp-sb-globalnav-item a img {
        border-radius: 12px;
    }
    .fv {
        width: 100%;
        height: auto;
        gap: 4vw;
    }
    /* .fv-img {
        top: 12vw;
        right: -26vw;
    } */
    .fv-img img {
        width: 82vw;
    }
    .fv-copy {
        padding-left: 6vw;
    }
    .fv-copy-head img {
        width: 38vw;
    }
    .fv-copy h2 {
        font-size: 2.6vw;
        margin: 2.8vw 0 1.8vw;
    }
    /* .fv-logo {
        margin-left: -1vw;
    } */
    .fv-logo img {
        width: 28vw;
    }
    .wrap {
        padding: 8vw;
    }
    .prologue-content ul li {
        width: calc((100% - 8vw)/2);
    }
    .prologue-img img {
        width: 300px;
    }
    .type-copy h3 {
        margin: 24px 0 8px;
    }
    .features p {
        font-size: 16px;
    }
    .headding {
        margin-bottom: 40px;
    }
    .use-headding {
        margin-bottom: 80px;
    }
    .headding h2 {
        font-size: 3vw;
    }
    .splide__arrow--prev {
        left: -5% !important;
        right: inherit !important;
        top: 30% !important;
    }
    .splide__arrow--next {
        right: 5% !important;
        top: 30% !important;
    }
    .type-copy h3 {
        font-size: 24px;
        line-height: 1.4;
    }
    .topics-list ul {
        display: flex;
        justify-content: start;
        gap: 24px;
        flex-wrap: wrap;
    }
    .topics-list ul article {
        width: 100%;
        width: calc((100% - 24px*2)/3);
    }
    .topics-item p {
        font-size: 12px;
        width: 88px;
    }
    .topics-item h3 {
        margin: 16px 0;
        font-size: 18px;
    }
    .topics-bate {
        font-size: 14px;
    }
    .btn {
        margin: 80px auto 0;
        text-align: center;
        /* min-width: 800px; */
    }
    .btn a {
        display: block;
        margin-left: inherit;
        text-align: center;
        margin: 0 auto;
    }
    .use-content ul {
        gap: 40px;
        /* min-width: 800px; */
    }
    .use-content ul li {
        width: calc((100% - 40px*2)/3);
        position: relative;
    }
    .use-img img {
        border-radius: 24px;
        width: 90%;
        display: block;
        margin: 0 auto;
    }
    .use-inner p {
        font-size: 1.4vw;
    }
    .step {
        top: -32px;
    }
    .step img {
        width: 64px;
    }
    .f-content {
        flex-direction: column;
        gap: 80px;
    }
    .f-logo a {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    .f-logo img {
        width: 24vw;
    }
    small {
        text-align: center;
    }
    .u-title h2 {
        font-size: 32px;
    }
    .u-type-content {
        margin-top: 20vw;
        padding: 0 6vw;
    }
    .u-type-content ul li {
        width: 100%;
    }
    .u-type-content ul {
        gap: 2vw;
        /* flex-direction: column; */
    }
    .u-type-leed {
        font-size: 1.8vw;
    }
    .u-type-copy h2 {
        font-size: 3vw;
        margin-top: .8vw;
        margin-bottom: 1.2vw;
    }
    .u-type-copy span {
        font-size: 2vw;
    }
    .u-type-txt {
        margin-top: 3vw;
        font-size: 1.4vw;
    }
    /* .u-type-content img {
        width: 70%;
    } */
    /* .u-type-leed {
        font-size: 3vw;
        font-weight: var(--font-weight-500);
    }
    .u-type-copy h2 {
        font-size: 5vw;
        font-weight: var(--font-weight-700);
        margin-top: 1vw;
        margin-bottom: 1.2vw;
    }
    .u-type-copy span {
        font-size: 3.2vw;
    }
    .u-type-txt {
        margin-top: 3vw;
        font-size: 2vw;
    } */
    .u-type-content img {
        width: 36vw;
    }
    .u-section-title h2 {
        font-size: 3vw;
        margin-bottom: 1vw;
        letter-spacing: .01em;
    }
    .u-section-title span {
        font-size: 2vw;
    }
    .u-reason-inner ul {
        display: flex;
        justify-content: center;
        gap: 48px;
        /* flex-direction: column; */
    }
    .u-reason-img-l img {
        display: block;
        margin: 0 auto;
        text-align: center;
        width: 100%;
    }
    .u-reason-img-r img {
        display: block;
        margin: 0 auto;
        text-align: center;
        width: 80%;
    }
    .u-reason-inner ul li p {
        text-align: left;
        margin-top: 40px;
        font-size: 1.3vw;
    }
    .u-reason-btn a {
        font-size: 1.3vw;
    }
    .u-reason-ber {
        margin: 32px auto;
        padding: 10px 40px;
        font-size: 18px;
    }
    .br {
        display: inherit;
    }
    .u-section-title p {
        font-size: 1.3vw;
    }
    .u-note-inner ul {
        gap: 48px;
    }
    .u-note-inner ul li {
        display: flex;
        gap: 24px;
    }
    .u-note-img img {
        width: 200px;
    }
    .u-note-box span {
        font-size: 2vw;
    }
    .u-note-box h3 {
        font-size: 2.4vw;
        font-weight: var(--font-weight-700);
        margin-bottom: 16px;
        line-height: 1.4;
        margin-top: 8px;
    }
    .u-note-box p {
        font-size: 1.3vw;
    } 
    .u-disease {
        margin-top: 80px;
        text-align: center;
    }
    .u-disease-title {
        font-size: 2.4vw;
    }
    .u-disease-list {
        margin-top: 40px;
    }
    .u-disease-list ul {
        gap: 32px;
        text-align: left;
    }
    .u-disease-list ul li {
        width: calc((100% - 32px * 3) / 4);
        font-size: 1.2vw;
    }
    .f-inner-l {
        width: 70%;
    }
    .f-inner-r {
        width: 30%;
        padding: 0;
        padding-right: 40px;
    }
    .face-title span {
        line-height: 1.4;
        font-size: 2.4vw
    }
    .face-headding p {
        font-size: 2vw;
        margin-bottom: 24px;
    }
    .face-txt p {
        font-size: 1.3vw;
    }
    .face-inner {
        /* flex-direction: column; */
        align-items: center;
        border-radius: 16px;
    }
    .f-inner-r img {
        width: 100%;
        display: block;
        margin: 0 auto;
        border-radius: 0 0 16px 16px;
    }
    .arupa-content a {
        padding: 40px;
    }
    .arupa-icon img {
        width: 9vw;
    }
    .arupa-inner h3 {
        font-size: 2vw;
        font-weight: var(--font-weight-700);
        margin-bottom: 16px;
    }
    .arupa-inner p {
        font-size: 1.3vw;
    }
    .arupa-btn span {
        font-size: 1.3vw;
    }
    .u-cate-tag ul {
        gap: 40px 8px;
        margin-bottom: 64px;
        flex-wrap: wrap;
    }
    .s-news-body h2 {
        margin-top: 32px;
        padding: 1rem 0;
        margin-bottom: 28px;
        font-size: 24px;
    }
}
/* スマートフォン
-------------------------------------*/
@media screen and (max-width: 768px) {
    .header {
        top: inherit;
        padding: 12px 8px;
        left: inherit;
        transform: inherit;
    }
    .header-logo a img {
        width: 160px;
    }
    .globalnav-list {
        margin-right: 48px;
    }
    .globalnav-list li a {
        width: 108px;
        padding: 12px 0;
        font-size: 12px;
    }
    .scroll .icon {
        top: 12.5px;
        right: 12px;
    }
    .icon {
        width: 43px;
        height: 43px;
        top: 12.5px;
        right: 12px;
    }
    .icon span {
        width: 40%;
        height: 1px;
    }
    .icon span:first-child {
        top: 16px;
        left: 13px;
    }
    .icon span:nth-child(2) {
        left: 13px;
        bottom: 19px;
    }
    .icon span:nth-child(3) {
        left: 13px;
        bottom: 14px;
    }
    .clicked .icon span:first-child {
        transform: rotate(45deg);
        left: 13px;
        top: 20px;
    }
    .clicked .icon span:nth-of-type(2) {
        left: 13px;
        bottom: 19px;
        opacity: 0;
    }
    .clicked .icon span:nth-of-type(3) {
        transform: rotate(-45deg);
        left: 13px;
        bottom: 20px;
    }
    .sp-menu-content {
        gap: 40px;
        padding: 2vw 2vw 2vw 6vw;
    }
    .sp-ber img {
        width: 4vw;
    }
    .clicked .sp-menu-content {
        top: 0;
        right: 0;
        margin-top: 0;
    }
    .sp-logo img {
        width: 42vw;
        margin-left: 0;
    }
    .sp-globalnav-item {
        font-size: 18px;
        padding: 6px;
    }
    .sp-globalnav-list {
        margin-left: 0;
        padding: 0 16px;
    }
    .sp-sb-globalnav-list {
        margin: 16px 0;
        display: flex;
        justify-content: baseline;
        gap: 8px;
        width: 100%;
        flex-wrap: wrap;
    }
    .sp-sb-globalnav-item {
        width: calc((100% - 8px*2)/3);
    }
    .scroll .globalnav-list {
        margin-right: 48px;
    }
    .fv {
        min-width: inherit;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .fv-img {
        margin-bottom: 8vw;
        margin-left: 14vw;
    }
    .fv-img img {
        width: 130vw;
        margin-top: -4vw;
    }
    .fv-copy {
        padding-left: 9vw;
        margin-top: 38vw;
    }
    .fv-copy-head img {
        width: 64vw;
    }
    .fv-copy h2 {
        font-size: 4.6vw;
        margin: 4vw 0 2vw;
    }
    .fv-logo {
        margin-left: -2vw;
    }
    .fv-logo img {
        width: 58vw;
    }
    /* .fv {
        min-width: inherit;
    }
    .fv-img {
        top: 47vh;
        right: -37vw;
    }
    .fv-img img {
        width: 128vw;
    }
    .fv-copy {
        top: 34%;
        left: 40%;
    }
    .fv-copy-head img {
        width: 60vw;
    }
    .fv-copy h2 {
        font-size: 4vw;
        margin: 2.8vw 0 2.2vw;
    }
    .fv-logo img {
        width: 100%;
    } */
    .wrap {
        padding: 12vw 8vw;
    }
    .type-wrap {
        padding: 12vw 0 12vw 8vw;
    }
    .headding h2 {
        font-size: 20px;
    }
    .a-txt {
        margin-top: 32px;
        font-size: 16px;
        line-height: 2;
    }
    .headding {
        margin-bottom: 24px;
    }
    .headding-en span {
        font-size: 14px;
    }
    .prologue-content ul {
        gap: 8vw;
        flex-direction: column-reverse;
    }
    .prologue-content ul li {
        width: 100%;
    }
    .prologue-img img {
        width: 40vw;
    }
    .use-headding {
        margin-bottom: 48px;
    }
    .h-txt {
        margin-top: 16px;
        font-size: 14px;
    }
    .splide__arrow {
        height: 2em !important;
        width: 2em !important;
        z-index: 1;
        border: 1px solid var(--main-txt-color) !important;
    }
    .splide__arrow svg {
        fill: var(--main-txt-color) !important;
        height: 1em !important;
        width: 1em !important;
    }
    .splide__arrow--prev {
        left: -2% !important;
        right: inherit !important;
        top: 30% !important;
    }
    .splide__arrow--next {
        right: 6% !important;
        top: 29.6% !important;
    }
    .type-copy h3 {
        margin: 16px 0 6px;
        font-size: 20px;
    }
    .features-head {
        margin-bottom: 4px;
        font-weight: var(--font-weight-500);
        font-size: 12px;
    }
    .features p {
        font-size: 14px;
        letter-spacing: .01em;
    }
    .t-btn p {
        padding: 8px 16px;
        width: 38vw;
        font-size: 13px;
    }
    .over-wrap {
        width: 100%;
        margin-left: inherit;
        padding-left: 0;
    }
    .topics-list ul article {
        width: 100%;
        width: calc((100% - 24px) / 2);
    }
    .topics-item p {
        top: 10px;
        right: 10px;
        padding: 2px;
        font-size: 13px;
        width: 80px;
        text-align: center;
        border-radius: 50px;
        letter-spacing: .01em;
    }
    .topics-img img {
        aspect-ratio: 4 / 3;
        border-radius: 12px;
    }
    .topics-item h3 {
        margin: 12px 0;
        font-size: 16px;
        line-height: 1.4;
    }
    .topics-bate {
        font-size: 12px;
    }
    .btn a {
        font-size: 14px;
    }
    .step {
        top: -32px;
    }
    .step img {
        width: 64px;
    }
    .use-content ul {
        gap: 64px 16px;
    }
    .use-content ul li {
        width: calc((100% - 16px)/2);
    }
    .use-inner h3 {
        margin: 16px 0;
        font-size: 18px;
    }
    .use-inner p {
        font-size: 12px;
    }
    .qa-6 summary {
        padding: 1.4em 1em 1.4em 2.2em;
        font-size: 14px;
        letter-spacing: .01em;
        line-height: 1.4;
    }
    .qa-6 summary::before, .qa-6 p::before {
        position: absolute;
        left: 8px;
        font-weight: var(--font-weight-700);
        font-size: 16px;
    }
    .qa-6 summary::after {
        width: 8px;
        height: 8px;
        margin-left: 10px;
        border-bottom: 2px solid var(--main-color);
        border-right: 2px solid var(--main-color);
    }
    .qa-6 p {
        padding: 1.4em 1em 1.4em 2.4em;
        color: #333;
        font-size: 14px;
        letter-spacing: .01em;
        line-height: 1.4;
    }
    .faq-top-m {
        margin-top: 32px;
    }
    .faq-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .contemt-btn a {
        font-size: 16px;
        padding: 12px;
        width: 50vw;
    }
    .f-company {
        padding-top: 40px;
        margin-bottom: 64px;
    }
    .f-content {
        flex-direction: column;
        gap: 48px;
    }
    .f-logo img {
        width: 32vw;
    }
    .f-nav ul {
        gap: 12px;
        padding-bottom: 40px;
        border-bottom: 1px solid var(--main-border-color);
        font-size: 15px;
        align-items: center;
        /* justify-content: center; */
        text-align: center;
    }
    .f-nav ul li {
        width: 100%;
    }
    .tbody {
        gap: 0;
    }
    .tr {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .th {
        font-size: 12px;
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
    }
    .td {
        font-size: 14px;
        text-align: center;
    }
    .td2 {
        font-size: 12px;
    }
    .f-sns ul {
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: center;
    }
    small {
        font-size: 11px;
        letter-spacing: .05em;
    }
    .u-content {
        margin-top: 18vw;
        margin-bottom: 40px;
    }
    .u-title {
        margin-bottom: 40px;
    }
    .u-title h2 {
        font-size: 24px;
    }
    .u-leed-txt {
        margin-top: 40px;
        font-size: 14px;
        text-align: justify;
    }
    .u-terms-name h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    .line-img img {
        height: 3px;
    }
    .term-txt {
        font-size: 14px;
        text-align: justify;
    }
    .terms-list {
        gap: 24px;
    }
    .sb-sb-terms-list {
        margin-top: 16px;
        font-size: 14px;
        padding: 0 8px;
    }
    .sb-terms-list {
        margin-top: 16px;
        gap: 16px;
        font-size: 14px;
        text-align: justify;
    }
    .term-add {
        margin-top: 16px;
        font-size: 14px;
    }
    .u-cate-tag ul {
        gap: 24px 8px;
        margin-bottom: 40px;
        flex-wrap: wrap;
        font-size: 12px;
    }
    .u-cate-tag ul li a {
        padding: 8px 16px;
    }
    .u-pagenav-bottom ul {
        gap: 4px;
        margin-top: 40px;
        flex-wrap: wrap;
    }
    .u-pagenav-bottom ul li .current {
        width: 36px;
        height: 36px;
        line-height: 2.4;
        font-size: 14px;
    }
    .u-pagenav-bottom ul li a {
        display: block;
        width: 36px;
        height: 36px;
        line-height: 2.4;
        font-size: 14px;
    }
    .u-pagenav-bottom ul li .next,
    .u-pagenav-bottom ul li .prev {
        font-size: 12px;
        line-height: 2.6;
    }
    .s-topics-head p {
        font-size: 12px;
    }
    .s-topics-title {
        margin-bottom: 0;
    }
    .s-op {
        gap: 16px;
        margin-bottom: 24px;
    }
    .s-news-body img {
        margin: 24px 0;
        border-radius: 12px;
    }
    .s-news-body h2 {
        margin-top: 24px;
        padding: 8px 0;
        margin-bottom: 24px;
        font-size: 20px;
    }
    .s-news-body p {
        font-size: 14px;
        text-align: justify;
    }
    .top-btn a {
        width: 44vw;
        padding: 12px;
        font-size: 14px;
    }
    .top-btn {
        margin: 64px auto 0;
    }
    .u-type {
        width: 100%;
        height: auto;
    }
    .u-type-content {
        margin-top: 0;
        padding: 80px 8vw 40px;
        text-align: center;
    }
    .u-type-content ul {
        gap: 8vw;
        flex-direction: column;
    }
    .u-type-content img {
        width: 68%;
    }
    .u-type-leed {
        font-size: 14px;
        font-weight: var(--font-weight-500);
    }
    .u-type-copy h2 {
        font-weight: var(--font-weight-700);
        margin-top: 8px;
        margin-bottom: 8px;
        letter-spacing: .01em;
        font-size: 20px;
    }
    .u-type-copy span {
        letter-spacing: .02em;
        font-size: 16px;
        /* display: inline-block;
        text-align: left; */
    }
    /* .u-type-txt {
        margin: 0 auto;
        width: 80%;
    } */
    .u-type-txt p {
        margin-top: 16px;
        font-size: 14px;
        text-align: left;
        text-align: justify;
    }
    .u-section-title h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }
    .u-section-title span {
        font-size: 16px;
        line-height: 1.4;
    }
    .u-section-title {
        text-align: center;
        margin-bottom: 40px;
    }
    .u-reason-inner {
        margin-top: 40px;
    }
    .u-reason-img-l img {
        width: 60%;
    }
    .u-reason-img-r img {
        width: 60%;
    }
    .u-reason-ber {
        margin: 24px auto;
        padding: 6px 16px;
        font-size: 14px;
        letter-spacing: .02em;
    }
    .u-reason-inner ul li p {
        font-size: 14px;
        display: inline-block;
        text-align: left;
        text-align: justify;
    }
    .u-reason-btn a {
        padding: 12px 32px;
        font-size: 14px;
    }
    .u-section-title p {
        text-align: left;
        font-size: 14px;
        text-align: justify;
    }
    .u-note-inner ul li {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .u-note-img img {
        /* width: 240px; */
        display: block;
        margin: 0 auto;
    }
    .u-note-box {
        text-align: center;
    }
    .u-note-box span {
        font-size: 16px;
        display: block;
    }
    .u-note-box h3 {
        font-size: 18px;
        font-weight: var(--font-weight-700);
        margin-bottom: 16px;
        line-height: 1.4;
        margin-top: 4px;
    }
    .u-note-box p {
        font-size: 14px;
        text-align: justify;
    }
    .reason-po {
        text-align: center;
        margin-top: 40px;
    }
    .u-disease {
        margin-top: 48px;
        text-align: center;
    }
    .u-disease-title {
        font-size: 18px;
    }
    .u-disease-list {
        margin-top: 24px;
    }
    .u-disease-list ul {
        gap: 16px;
        text-align: left;
        font-size: 13px;
    }
    .u-disease-list ul li {
        width: calc((100% - 16px) / 2);
    }
    .disease-title h3 {
        padding-bottom: 4px;
        margin-bottom: 4px;
        font-size: 14px;
    }
    .u-disease-list ul li p {
        font-size: 12px;
    }
    .face-list ul li .face-title {
        gap: 8px;
        margin-bottom: 24px;
    }
    .face-no img {
        width: 32px;
    }
    .face-title span {
        line-height: 1.4;
        font-size: 18px;
    }
    .f-inner-l {
        width: 100%;
        padding: 0 64px 64px;
    }
    .face-inner {
        flex-direction: column-reverse;
        border-radius: 12px;
    }
    .face-headding p {
        font-size: 18px;
        margin-bottom: 16px;
        line-height: 1.4;
    }
    .face-txt p {
        font-size: 14px;
        text-align: justify;
    }
    .f-inner-r {
        width: 50%;
    }
    .f-inner-r img {
        width: 100%;
        border-radius: 0 0 12px 12px;
    }
    .f-inner-r {
        padding-top: 0;
        padding-left: 0;
        padding: 24px 24px 0;
    }
    .face-list ul {
        gap: 40px;
    }
    .arupa {
        margin-top: 40px;
    }
    .arupa-content a {
        padding: 40px 24px;
        flex-direction: column;
        gap: 24px;
    }
    .arupa-icon img {
        width: 14vw;
    }
    .arupa-inner h3 {
        font-size: 18px;
        font-weight: var(--font-weight-700);
        margin-bottom: 16px;
        text-align: center;
    }
    .arupa-inner p {
        font-size: 14px;
    }
    .arupa-btn {
        margin-top: 24px;
        text-align: center;
    }
    .arupa-btn span {
        padding: 6px 24px;
        font-size: 13px;
    }
    .terms-item a {
        font-size: 14px;
    }
    .u-reason-inner ul {
        gap: 48px;
        flex-direction: column;
    }
    
}
@media screen and (max-width: 430px) {
    .sp-ber img {
        width: 4vw;
        height: 100vh;
    }
    /* .fv {
        min-width: inherit;
        height: 100vh;
    } */
    /* .fv-img {
        top: 47vh;
        right: -37vw;
    }
    .fv-img img {
        width: 128vw;
    }
    .fv-copy {
        top: 34%;
        left: 40%;
    }
    .fv-copy-head img {
        width: 60vw;
    }
    .fv-copy h2 {
        font-size: 4vw;
        margin: 2.8vw 0 2.2vw;
    }
    .fv-logo img {
        width: 100%;
    } */
    .a-txt {
        letter-spacing: .01em;
    }
    .prologue-content ul {
        min-width: inherit;
        flex-direction: column-reverse;
        gap: 24px
    }
    .prologue-content ul li {
        width: 100%;
    }
    .prologue-img img {
        width: 70%;
    }
    .topics-list ul {
        display: flex;
        justify-content: start;
        gap: 24px;
        flex-wrap: wrap;
        min-width: inherit;
    }
    .topics-list ul article {
        width: 100%;
    }
    .btn {
        min-width: inherit;
    }
    .use-content ul {
        gap: 64px;
        min-width: inherit;
    }
    .use-content ul li {
        width: 100%;
    }
    .use-inner p {
        font-size: 14px;
    }
    .u-note-inner ul li {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .u-note-img img {
        /* width: 240px; */
        display: block;
        margin: 0 auto;
    }
    .u-note-box span {
        font-size: 16px;
        display: block;
    }
    .u-note-box h3 {
        font-size: 18px;
        font-weight: var(--font-weight-700);
        margin-bottom: 16px;
        line-height: 1.4;
        margin-top: 4px;
    }
    .u-note-box p {
        font-size: 14px;
        text-align: justify;
    }
    .f-content {
        gap: 40px;
    }
    .f-logo img {
        width: 44vw;
    }
    .u-note-img img {
        width: 60%;
        display: block;
        margin: 0 auto;
    }
    .u-note-box span {
        font-size: 15px;
        text-align: center;
        display: block;
    }
    .u-note-box h3 {
        font-size: 16px;
        font-weight: var(--font-weight-700);
        margin-bottom: 16px;
        line-height: 1.4;
        margin-top: 4px;
        text-align: center;
        letter-spacing: .01em;
    }
    .face-inner {
        flex-direction: column-reverse;
        border-radius: 12px;
    }
    .f-inner-r img {
        width: 70%;
        border-radius: 0 0 12px 12px;
    }
    .u-type-content ul {
        gap: 8vw;
        flex-direction: column;
    }
    .u-min-w {
        min-width: inherit;
    }
    .u-type-content {
        text-align: left;
    }
    .u-type-content ul li {
        width: 100%;
        text-align: center;
    }
    .u-type-content img {
        width: 90%;
    }
    .u-reason-inner ul {
        gap: 40px;
        flex-direction: column;
    }
    .u-type-leed {
        font-size: 13px;
    }
    .u-type-copy h2 {
        font-size: 5.5vw;
        margin-left: 0;
    }
    .u-type-copy span {
        letter-spacing: .02em;
        font-size: 16px;
    }
    .u-type-txt {
        width: 100%;
    }
    .u-section-title span {
        display: inline-block;
        text-align: left;
    }
    /* .face-title {
        justify-content: center;
    } */
    .face-headding p {
        font-size: 18px;
        margin-bottom: 16px;
        line-height: 1.4;
        /* text-align: center; */
    }
    .u-reason-inner {
        margin-top: 40px;
    }
    .u-reason-img-l img {
        width: 80%;
    }
    .u-reason-img-r img {
        width: 90%;
    }
    .u-reason-ber {
        margin: 24px auto;
        padding: 6px 16px;
        font-size: 14px;
        letter-spacing: .02em;
    }
    .u-reason-inner ul li p {
        font-size: 14px;
        text-align: left;
        text-align: justify;
        width: 100%;
    }
    .u-reason-btn a {
        padding: 12px 32px;
        font-size: 13px;
    }
    .face-headding p {
        font-size: 18px;
        margin-bottom: 16px;
        line-height: 1.4;
    }
    .face-txt p {
        font-size: 14px;
        text-align: justify;
    }
    .f-inner-r img {
        width: 100%;
        border-radius: 0 0 12px 12px;
    }
    .f-inner-r {
        padding-top: 0;
        padding-left: 0;
        padding: 0;
    }
    .f-inner-r {
        width: 70%;
    }
    .f-inner-l {
        width: 100%;
        padding: 0 24px 32px;
    }
    .face-list ul {
        gap: 40px;
    }
    .arupa {
        margin-top: 40px;
    }
    .arupa-content a {
        padding: 24px;
        flex-direction: column;
        gap: 24px;
    }
    .arupa-icon img {
        width: 24vw;
    }
    .arupa-inner h3 {
        font-size: 17px;
        font-weight: var(--font-weight-700);
        margin-bottom: 16px;
        text-align: center;
    }
    .arupa-inner p {
        font-size: 14px;
    }
    .arupa-btn {
        margin-top: 24px;
        text-align: center;
    }
    .arupa-btn span {
        padding: 6px 24px;
        font-size: 13px;
    }
    .br-5 {
        display: inherit;
    }
    .br-6 {
        display: none;
    }
    .supporter-f-btn {
        width: 100%;
        padding: 12px 0;
    }
    .f-btn a {
        gap: 6px;
        padding: 14px;
        width: 74%;
        font-size: 14px;
    }
    .f-btn a img {
        width: 13px;
		height: 11.63px;
    }
}
/* tel-sp
-------------------------------------*/
@media (min-width: 767px) {
    a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    }
}
@media screen and (max-width: 350px) {}