/* stylelint-disable no-descending-specificity */
/* stylelint is buggy.. */
/* stylelint-disable custom-property-empty-line-before */
:root {
    --max-width: 1280px;
    
    --color-grey: #969696;
    --color-light-grey: #f3f3f3;
    --color-blue: #004066;
    --color-red: #b10510;
    --color-gold: #a88e50;
    --color-border: #e4e4e4;
    --color-border-dark: #bfbfbf;
}
/* stylelint-disable function-whitespace-after */
@font-face {
    font-family: YuGothicM;
    src: local("Yu Gothic Medium");
}
:root {
    /*
     * z-index
     */
    --z-lv-1: 1;
    --z-lv-2: 10;
    --z-lv-3: 100;
    --z-lv-4: 1000;
    --z-lv-5: 10000;
    --z-lv-6: 100000;
    --z-lv-7: 1000000;
    --z-lv-8: 10000000;
    --z-lv-9: 100000000;
    --z-lv-10: 1000000000;
    --z-behindLv-1: -1;
    --z-behindLv-2: -10;
    --z-behindLv-3: -100;
    --z-behindLv-4: -1000;
    --z-behindLv-5: -10000;
    --z-behindLv-6: -100000;
    --z-behindLv-7: -1000000;
    --z-behindLv-8: -10000000;
    --z-behindLv-9: -100000000;
    --z-behindLv-10: -1000000000;
    
    /*
     * font
     * http://mw-s.jp/2017css-font-win-mac/
     * http://silight.hatenablog.jp/entry/2015/07/02/214601
     */
    --fontFamily-base: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
    --fontFamily-mincho: Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
    --fontFamily-mono: monospace, serif;
    --fontWeight-thin: 100;
    --fontWeight-extraLight: 200;
    --fontWeight-light: 300;
    --fontWeight-normal: 400;
    --fontWeight-medium: 500;
    --fontWeight-semiBold: 600;
    --fontWeight-bold: 700;
    --fontWeight-extraBold: 800;
    --fontWeight-black: 900;
    
    /*
     * easing
     */
    --easeIn-sine: cubic-bezier(0.47, 0, 0.745, 0.715);         /* http://easings.net/ja#easeInSine */
    --easeOut-sine: cubic-bezier(0.39, 0.575, 0.565, 1);        /* http://easings.net/ja#easeOutSine */
    --easeInOut-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);    /* http://easings.net/ja#easeInOutSine */
    --easeIn-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);       /* http://easings.net/ja#easeInQuad */
    --easeOut-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);       /* http://easings.net/ja#easeOutQuad */
    --easeInOut-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);  /* http://easings.net/ja#easeInOutQuad */
    --easeIn-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);     /* http://easings.net/ja#easeInCubic */
    --easeOut-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);       /* http://easings.net/ja#easeOutCubic */
    --easeInOut-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);    /* http://easings.net/ja#easeInOutCubic */
    --easeIn-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);     /* http://easings.net/ja#easeInQuart */
    --easeOut-quart: cubic-bezier(0.165, 0.84, 0.44, 1);        /* http://easings.net/ja#easeOutQuart */
    --easeInOut-quart: cubic-bezier(0.77, 0, 0.175, 1);         /* http://easings.net/ja#easeInOutQuart */
    --easeIn-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);     /* http://easings.net/ja#easeInQuint */
    --easeOut-quint: cubic-bezier(0.23, 1, 0.32, 1);            /* http://easings.net/ja#easeOutQuint */
    --easeInOut-quint: cubic-bezier(0.86, 0, 0.07, 1);          /* http://easings.net/ja#easeInOutQuint */
    --easeIn-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);      /* http://easings.net/ja#easeInExpo */
    --easeOut-expo: cubic-bezier(0.19, 1, 0.22, 1);             /* http://easings.net/ja#easeOutExpo */
    --easeInOut-expo: cubic-bezier(1, 0, 0, 1);                 /* http://easings.net/ja#easeInOutExpo */
    --easeIn-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);        /* http://easings.net/ja#easeInCirc */
    --easeOut-circ: cubic-bezier(0.075, 0.82, 0.165, 1);        /* http://easings.net/ja#easeOutCirc */
    --easeInOut-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);   /* http://easings.net/ja#easeInOutCirc */
    --easeIn-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);      /* http://easings.net/ja#easeInBack */
    --easeOut-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);    /* http://easings.net/ja#easeOutBack */
    --easeInOut-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);   /* http://easings.net/ja#easeInOutBack */
    
    /*
     * famous layouts
     */
    --size-ipad-long: 1024px;
    --size-ipad-short: 768px;
    --size-ipadPro10inch-long: 1112px;
    --size-ipadPro10inch-short: 834px;
}
/* major breakpoints */
@keyframes funyafunya {
    from {
    border-radius: 50% 50% 50% 70%/50% 50% 70% 60%;
}

12.5% {
    border-radius: 80% 30% 50% 50%/50%;
}

25% {
    border-radius: 40% 40% 50%/30% 50% 50%;
}

37.5% {
    border-radius: 20% 30% 56% 70%/80% 50% 70% 20%;
}

50% {
    border-radius: 5%;
}

62.5% {
    border-radius: 3%;
}

75% {
    border-radius: 2%;
}

86.5% {
    border-radius: 1%;
}

to {
    border-radius: 0;
}
}
:root {
    --max-width: 1280px;
}
.Header {
    position: relative;
    z-index: 10000000;
    z-index: var(--z-lv-8);
    width: 100%;
    background: #fff;
}
.BodyWrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000;
    z-index: var(--z-lv-7);
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    transition: background 400ms;
}
.BodyWrapper.-visually-hidden {
    background: transparent;
}
.BodyWrapper[hidden] {
    display: none;
}
:root {
    --max-width: 1280px;
}
.observer-fadein {
    opacity: 0;
    
    /*transition: all 1200ms cubic-bezier(0.165, 0.84, 0.44, 1);*/
    transition: all 1s ease-out;
    transform: translate3d(0, 30px, 0);
}
.observer.-active.observer-fadein {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
.-delay300 {
    transition-delay: 300ms;
}
.-delay1200 {
    transition-delay: 1200ms;
}
.Navigation {
    background: #f3f3f3;
    background: var(--color-light-grey);
}
.Navigation__inner {
    max-width: 1280px;
    max-width: var(--max-width);
    padding: 4vw 4vw 10vw;
    margin: 0 auto;
    background: #f3f3f3;
    background: var(--color-light-grey);
}
@media (min-width: 768px) {
    .Navigation__inner {
    padding: 0 40px 80px
}
}
.Navigation__headline {
    font-size: 5.86667vw;
    line-height: 1.77273;
    
    padding-bottom: 0.9em;
    margin-bottom: 0.9em;
    text-align: center;
}
@media (min-width: 768px) {
    .Navigation__headline {
    font-size: 1.6rem;
    
    line-height: 2.28571
}
}
@media (min-width: 768px) {
    .Navigation__headline {
    padding-bottom: 0;
    margin-bottom: 30px
}
}
@media (max-width: 767px) {
    .Navigation__headline {
    position: relative;
    padding-bottom: 0.9em;
    margin-bottom: 0.9em;
    text-align: center
}
@media (min-width: 768px) {
    .Navigation__headline {
    padding-bottom: 1.07em;
    margin-bottom: 1.25em
}
}
.Navigation__headline::before,
.Navigation__headline::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    width: 0.45em;
    height: 2px;
    content: "";
}

@media (min-width: 768px) {
    .Navigation__headline::before,
        .Navigation__headline::after {
        width: 0.35em;
    height: 3px
}
}
.Navigation__headline::before {
    background-color: #b10510;
    transform: translateX(-90%);
}
.Navigation__headline::after {
    background-color: #004066;
}
}
@media (min-width: 768px) {
    .Navigation__links {
    display: flex;
    align-content: center;
    justify-content: center
}
}
.Navigation__link {
    /* NOTE: ghost like, but has white background button */
    color: #004066;
    color: var(--color-blue);
    text-align: center;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #004066;
    border: 1px solid var(--color-blue);
    transition-duration: 400ms;
    transition-property: color, background-color;
    position: relative;
    font-size: 3.73333vw;
    
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    width: 100%;
    padding: 0.8em;
}
@media (min-width: 768px) {
    .Navigation__link:hover {
        color: #fff;
    background-color: #004066;
    background-color: var(--color-blue);
}
}
.Navigation__link svg {
    position: absolute;
    top: 50%;
    right: 1em;
    z-index: 1;
    width: 0.4em;
    transform: rotate(90deg) translateY(-50%);
    transform-origin: top left;
}
@media (min-width: 768px) {
    .Navigation__link {
    font-size: 1.6rem
}
}
.Navigation__link:not(:last-child) {
    margin-bottom: 0.8em;
}
@media (min-width: 768px) {
    .Navigation__link {
    flex-direction: column;
    align-items: center;
    max-width: 156px
}

.Navigation__link:not(:last-child) {
    margin-right: 5px;
    margin-bottom: 0;
}
}
.Navigation__link.-isNarrow {
    padding: 0.8em 2em;
}
.Navigation__link em,
.Navigation__link span {
    vertical-align: baseline;
}
@media (min-width: 768px) {
    .Navigation__link em,
    .Navigation__link span {
    display: block
}
}
.Navigation__link em {
    font-size: 5.33333vw;
    
    margin-right: 0.2ex;
}
@media (min-width: 768px) {
    .Navigation__link em {
    font-size: 2rem
}
}
@media (min-width: 768px) {
    .Navigation__link em {
    margin: 0 0 0.15em
}
}
/* stylelint-disable no-descending-specificity */
.SharedSection-KaikaeLinks h3 {
    position: relative;
    padding-bottom: 0.9em;
    margin-bottom: 0.9em;
    text-align: center;
    font-size: 5.86667vw;
    line-height: 1.77273;
}
@media (min-width: 768px) {
    .SharedSection-KaikaeLinks h3 {
    padding-bottom: 1.07em;
    margin-bottom: 1.25em;
}
}
.SharedSection-KaikaeLinks h3::before,
.SharedSection-KaikaeLinks h3::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    width: 0.45em;
    height: 2px;
    content: "";
}
@media (min-width: 768px) {
    .SharedSection-KaikaeLinks h3::before,
        .SharedSection-KaikaeLinks h3::after {
        width: 0.35em;
    height: 3px
}
}
.SharedSection-KaikaeLinks h3::before {
    background-color: #b10510;
    transform: translateX(-90%);
}
.SharedSection-KaikaeLinks h3::after {
    background-color: #004066;
}
@media (min-width: 768px) {
    .SharedSection-KaikaeLinks h3 {
    font-size: 2.8rem;
    
    line-height: 1.57143;
}
}
.SharedSection-KaikaeLinks__inner {
    max-width: 1280px;
    max-width: var(--max-width);
    padding: 8vw 4vw 12vw;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .SharedSection-KaikaeLinks__inner {
    padding: 80px 40px
}
}
.SharedSection-KaikaeLinks__items > div:not(:first-child) {
    margin-top: 2.5em
}
@media (min-width: 768px) {
    .SharedSection-KaikaeLinks__items {
    display: flex;
    align-items: stretch;
    justify-content: center
}

.SharedSection-KaikaeLinks__items > div {
    width: calc((100% - 120px)/4);
}

.SharedSection-KaikaeLinks__items > div:not(:first-child) {
    margin-top: 0;
    margin-left: 40px;
}
}
.SharedSection-KaikaeLinks__items a {
    text-decoration: none;
}
@media (min-width: 768px) {
    .SharedSection-KaikaeLinks__items a {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    height: 100%
}
}
.SharedSection-KaikaeLinks__items a:hover span, .SharedSection-KaikaeLinks__items a:focus span {
    color: #fff;
    background-color: #004066;
    background-color: var(--color-blue);
}
.SharedSection-KaikaeLinks__items a:hover img, .SharedSection-KaikaeLinks__items a:focus img {
    opacity: 0.7;
}
.SharedSection-KaikaeLinks__items img {
    display: block;
    width: 100%;
    height: auto;
    flex-shrink: 0;
    min-width: 100%;
    opacity: 1;
    transition: opacity 0.4s;
}
.SharedSection-KaikaeLinks__items p {
    font-size: 4.3vw;
    line-height: 1.84615;
    margin: 1em 0;
}
@media (min-width: 768px) {
    .SharedSection-KaikaeLinks__items p {
    font-size: 1.6rem;
    line-height: 2
}
}
@media (min-width: 768px) {
    .SharedSection-KaikaeLinks__items p {
    margin-bottom: 1.25em
}
}
.SharedSection-KaikaeLinks__items span {
    position: relative;
    font-size: 4vw;
    line-height: 1.33333;
    display: block;
    width: 100%;
    padding: 1em 0;
    color: #004066;
    color: var(--color-blue);
    text-align: center;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #004066;
    border: 1px solid var(--color-blue);
    transition-duration: 400ms;
    transition-property: color, background-color;
}
.SharedSection-KaikaeLinks__items span svg {
    position: absolute;
    top: 50%;
    right: 1em;
    z-index: 1;
    width: 0.4em;
    transform: rotate(0deg) translateY(-50%);
    transform-origin: top left;
}
@media (min-width: 768px) {
    .SharedSection-KaikaeLinks__items span {
    font-size: 1.6rem;
    
    line-height: 1.57143
}
}
@media (min-width: 768px) {
    .SharedSection-KaikaeLinks__items span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75em 2em;
    margin-top: auto
}
}
/* stylelint-disable no-descending-specificity */
.Overview {
    border-top: 1px solid #f3f3f3;
    border-top: 1px solid var(--color-light-grey);
}
@media (min-width: 768px) {
    .Overview {
    max-width: calc(100% - 80px);
    margin: 0 auto
}
}
.Overview.-sub {
    margin-top: -2vw;
}
@media (min-width: 768px) {
    .Overview.-sub {
    margin-top: -50px
}
}
.Overview.-sub .Overview__inner {
    padding-top: 8vw;
}
@media (min-width: 768px) {
    .Overview.-sub .Overview__inner {
    padding-top: 40px
}
}
.Overview__inner {
    max-width: 880px;
    padding: 10vw 4vw;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .Overview__inner {
    padding: 70px 40px 90px
}
}
.Overview__heading {
    position: relative;
    padding-left: 2.25em;
    font-size: 4.26667vw;
    line-height: 1.0625;
    
    margin-bottom: 1em;
}
.Overview__heading::before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 1.5em;
    height: 1px;
    content: "";
    background-color: #4c4a4b;
}
@media (min-width: 768px) {
    .Overview__heading {
    padding-left: 2.5em
}

.Overview__heading::before {
    width: 1.75em;
}
}
@media (min-width: 768px) {
    .Overview__heading {
    font-size: 2.2rem;
    
    line-height: 1.18182
}
}
@media (min-width: 768px) {
    .Overview__heading {
    margin-bottom: 40px
}
}
.Overview__subHead {
    font-size: 3.46667vw;
    
    position: relative;
    display: inline-block;
    padding: 0.25em 1.5em;
    margin-bottom: 1em;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    background-color: #61879f;
}
@media (min-width: 768px) {
    .Overview__subHead {
    font-size: 1.6rem
}
}
@media (min-width: 768px) {
    .Overview__subHead {
    padding: 0.25em 2em
}
}
.Overview__subHead::after {
    position: absolute;
    top: 0;
    left: 100%;
    display: block;
    content: "";
    border-color: transparent transparent transparent #61879f;
    border-style: solid;
    border-width: 0.75em 0 0.75em 0.75em;
}
.Overview__list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    margin-bottom: 0.75em;
}
.Overview__list dt,
.Overview__list dd {
    font-size: 4.3vw;
    line-height: 2.07692;
    padding: 0.75em 0;
    border-bottom: 1px solid #e4e4e4;
    border-bottom: 1px solid var(--color-border);
}
@media (min-width: 768px) {
    .Overview__list dt,
    .Overview__list dd {
    font-size: 1.6rem;
    line-height: 2.28571
}
}
.Overview__list dt.-notBorder, .Overview__list dd.-notBorder {
    border-bottom-width: 0;
}
.Overview__list dt {
    width: 32%;
    padding-right: 1.5em;
    font-weight: bold;
}
.Overview__list dd {
    width: 68%;
}
.Overview__list ol {
    padding-left: 0.5em;
}
.Overview__list ol li {
    padding-left: 1em;
    text-indent: -1em;
}
.Overview__list ol li span {
    display: inline-block;
    width: 1em;
    text-align: center;
}
.Overview__list ul li {
    position: relative;
    padding-left: 1.5em;
}
.Overview__list ul li::before {
    position: absolute;
    left: -0.025em;
    display: inline-block;
    width: 1em;
    text-align: center;
    content: "\30FB";
}
.Overview__list .-hasMargin {
    margin-top: 1.5em;
}
.Overview__listSubHead {
    padding-left: 1em;
    text-indent: -0.75em;
}
.Overview__listSubHead span {
    display: inline-block;
    width: 1em;
    text-align: center;
}
.Overview__listDisclaimer {
    font-size: 3vw;
    line-height: 1.66667;
    padding-left: 1em;
    margin-top: 0.5ex;
}
@media (min-width: 768px) {
    .Overview__listDisclaimer {
    font-size: 1.3rem;
    
    line-height: 1.75
}
}
.Overview__listDisclaimer span {
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
.Overview__listDisclaimer + .Overview__listDisclaimer {
    margin-top: 0;
}
.Overview__listDisclaimer + .Overview__listDisclaimer.-hasMargin {
    margin-top: 1em;
}
.Overview__footnote {
    font-size: 3vw;
    line-height: 1.66667;
    padding-left: 1em;
}
@media (min-width: 768px) {
    .Overview__footnote {
    font-size: 1.3rem;
    line-height: 1.75
}
}
.Overview__footnote span {
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
.Overview__note {
    font-size: 2.4vw;
    line-height: 1.66667;
}
@media (min-width: 768px) {
    .Overview__note {
    font-size: 1.3rem;
    line-height: 1.75;
}
}
.Overview__footnote + .Overview__note {
    margin-top: 1em;
}
.Breadcrumb {
    background: none;
}
.Intro {
    padding-top: 0 !important;
    padding-bottom: 6vw;
}
@media (min-width: 768px) {
    .Intro {
    padding-bottom: 60px
}
}
.Intro .Section__inner {
    padding: 6vw 4vw;
}
@media (min-width: 768px) {
    .Intro .Section__inner {
    max-width: 1080px;
    padding: 40px 40px 50px;
    margin: auto
}
}
.Intro__support {
    margin-top: 2.5em;
}
@media (min-width: 768px) {
    .Intro__support {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-top: 4em
}
}
.Intro__supportItem {
    position: relative;
    background-color: #fff;
}
@media (min-width: 768px) {
    .Intro__supportItem {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 48%
}
}
@media (max-width: 767px) {
    .Intro__supportItem:not(:first-child) {
        margin-top: 1.5em
}
}
.Intro__supportIndex {
    font-size: 3.5vw;
    
    position: absolute;
    top: -0.5em;
    left: -0.3em;
    z-index: 1;
    padding: 1.4em 1em;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background-color: #a88e50;
}
@media (min-width: 768px) {
    .Intro__supportIndex {
    font-size: 1.3rem
}
}
@media (min-width: 768px) {
    .Intro__supportIndex {
    top: -0.7em;
    left: -0.5em
}
}
.Intro__supportIndex span:last-child {
    font-size: 6.4vw;
    
    display: block;
    margin-top: 0.25ex;
}
@media (min-width: 768px) {
    .Intro__supportIndex span:last-child {
        font-size: 2.4rem;
}
}
.Intro__supportText {
    font-size: 4.3vw;
    line-height: 1.84615;
    
    flex-grow: 1;
    width: 100%;
    padding: 4vw 2.5vw 4vw 24vw;
    background-color: #f9f9f9;
}
@media (min-width: 768px) {
    .Intro__supportText {
    font-size: 1.6rem;
    
    line-height: 1.85714
}
}
@media (min-width: 768px) {
    .Intro__supportText {
    padding: 1.6em 1.6em 1.8em 7em
}
}
.Intro__supportHeadline {
    font-size: 4.3vw;
    line-height: 1.8125;
    
    color: #a88e50;
}
@media (min-width: 768px) {
    .Intro__supportHeadline {
    font-size: 2rem;
    
    line-height: 1.6;
}
}
.Intro__supportBodycopy {
    margin-top: 0.5em;
}
.Intro__supportBodycopy em {
    color: #b10510;
    color: var(--color-red);
}
.Intro__supportNotes {
    font-size: 3vw;
    line-height: 1.66667;
    
    margin-top: 0.5em;
}
@media (min-width: 768px) {
    .Intro__supportNotes {
    font-size: 1.3rem;
    
    line-height: 1.58333
}
}
.Intro__supportNotes li {
    padding-left: 1.2em;
    text-indent: -0.9em;
}
.Intro__supportNotes li::before {
    content: '※ ';
}
.Proposition__inner {
    max-width: 1080px;
    padding: 10vw 4vw;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 768px) {
    .Proposition__inner {
    padding: 60px 40px 80px
}
}
.app__copy {
    font-size: 4.8vw;
    line-height: 1.94444;
    
    margin-bottom: 1.5em;
    text-align: center;
}
@media (min-width: 768px) {
    .app__copy {
    font-size: 2.4rem;
    
    line-height: 1.83333
}
}
.app__copy em {
    color: #b10510;
}

 .app__copy2 {
    font-size: 4.8vw;
    line-height: 1.94444;
    
    margin-bottom: 1.5em;
    text-align: center;
}
@media (min-width: 768px) {
    .app__copy2 {
    font-size: 3.0rem;
    
    font-weight: bold;
    line-height: 1.83333
}
}
.app__copy2 {
    color: #b10510;
}

.app__copy3 {
    font-size: 4.8vw;
    line-height: 1.94444;
    
    margin-bottom: 1.0em;
    text-align: left;
}
@media (min-width: 768px) {
    .app__copy3 {
    font-size: 2.7rem;
    
    font-weight: bold;
    line-height: 1.0
}
}
.app__copy3 {
    color: #b10510;
}

.app__copy4 {
    font-size: 4.8vw;
    line-height: 1.94444;
    
    margin-bottom: 1.0em;
    text-align: left;
}
@media (min-width: 768px) {
    .app__copy4 {
    font-size: 2.7rem;
    
    font-weight: bold;
    line-height: 1.0
}
.app__copy5 {
    line-height: 1.4;
    
    margin-bottom: 1.5em;
}
}



.Proposition__questions {
    padding-bottom: 12vw;
    margin-bottom: 2vw;
    background-color: #e4e4e4;
}
@media (min-width: 768px) {
    .Proposition__questions {
    padding-bottom: 0;
    margin-bottom: 20px
}
}
.Proposition__questionsBaloons {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
}
@media (min-width: 768px) {
    .Proposition__questionsBaloons {
    justify-content: center;
    width: 100%;
    margin: 0 auto
}
}
.Proposition__questionsBaloons > div {
    font-size: 3.5vw;
    line-height: 1.81818;
    
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47.5%;
    padding: 1.5em 1em;
    margin-bottom: 1.5em;
    text-align: center;
    background-color: #f7f7f7;
    border-radius: 1.5em;
}
@media (min-width: 768px) {
    .Proposition__questionsBaloons > div {
    font-size: 1.6rem;
    line-height: 1.85714
}
}
@media (min-width: 768px) {
    .Proposition__questionsBaloons > div {
    width: 30%;
    margin-bottom: 2.25em;
    margin-left: 1.5%
}
}
.Proposition__questionsBaloons > div::after {
    position: absolute;
    top: 100%;
    left: calc(50% - 6px);
    width: 0;
    height: 0;
    content: "";
    border-color: #f7f7f7 transparent transparent transparent;
    border-style: solid;
}
@media (max-width: 767px) {
    .Proposition__questionsBaloons > div:first-child {
        width: 68.84%;
    margin-right: auto;
    margin-left: auto
}
}
.Proposition__questionsBaloons > div:first-child::after {
    border-width: 8px 6px 0 6px;
}
@media (min-width: 768px) {
    .Proposition__questionsBaloons > div:first-child::after {
        right: 15%;
    left: auto;
    border-width: 12px 0 0 20px
}
}
.Proposition__questionsBaloons > div:nth-child(2)::after {
    border-width: 8px 0 0 12px;
}
@media (min-width: 768px) {
    .Proposition__questionsBaloons > div:nth-child(2)::after {
        left: calc(50% - 10px);
    border-width: 12px 10px 0 10px
}
}
.Proposition__questionsBaloons > div:last-child::after {
    border-width: 8px 12px 0 0;
}
@media (min-width: 768px) {
    .Proposition__questionsBaloons > div:last-child::after {
        left: 15%;
    border-width: 12px 20px 0 0
}
}
@media (max-width: 767px) {
    .Proposition__questionsBaloons.-noArrow > div:first-child {
        width: 47.5%
}
}
.Proposition__questionsBaloons.-noArrow > div::after {
    content: none;
}
.Proposition__questionsIcon {
    width: 25.79%;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .Proposition__questionsIcon {
    width: 12.2%
}
}
.Proposition__questionsIcon img {
    display: block;
    width: 100%;
    height: auto;
}
.Proposition__subHead {
    position: relative;
    padding-left: 2.25em;
    font-size: 4.26667vw;
    line-height: 1.6875;
    
    margin: 0 0 1.5em;
}
.Proposition__subHead::before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 1.5em;
    height: 1px;
    content: "";
    background-color: #4c4a4b;
}
@media (min-width: 768px) {
    .Proposition__subHead {
    padding-left: 2.5em;
}

.Proposition__subHead::before {
    width: 1.75em;
}
}
@media (min-width: 768px) {
    .Proposition__subHead {
    font-size: 2.2rem;
    
    line-height: 1.18182;
}
}
.Proposition__staggeredCopy {
    position: relative;
    top: -1vw;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    transform: translateY(-50%);
}
@media (min-width: 768px) {
    .Proposition__staggeredCopy {
    top: -10px
}
}
.Proposition__staggeredCopy p {
    font-size: 5.33333vw;
    line-height: 1.6;
    
    width: 90vw;
    padding: 1.25em 0.75em;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
    background-image: url("/plus/souzoku/images/bg_left-sp.png"),
        url("/plus/souzoku/images/bg_right.png");
    background-repeat: no-repeat;
    background-position: center left 2vw, center right 2vw;
    background-size: 11.11%, 10.81%;
    border-radius: 3em;
}
@media (min-width: 768px) {
    .Proposition__staggeredCopy p {
    font-size: 2.6rem;
    
    line-height: 1.65385
}
}
@media (min-width: 768px) {
    .Proposition__staggeredCopy p {
    width: 65%;
    background-image: url("/plus/app/images/bg_left.png"),
        url("/plus/app/images/bg_right.png");
    background-repeat: no-repeat;
    background-position: center left 4.59%, bottom 17.9% right 4.42%;
    background-size: 11.47%, 10.49%
}
}
@media (min-width: 1001px) {
    .Proposition__staggeredCopy p {
    background-size: 11.03%, 9.81%
}
}
.Proposition__staggeredCopy::after {
    position: absolute;
    bottom: -15.5vw;
    left: calc(50% - 30px);
    width: 0;
    height: 0;
    content: "";
    border-color: #a88e50 transparent transparent transparent;
    border-style: solid;
    border-width: 38px 30px 0 30px;
}
@media (min-width: 768px) {
    .Proposition__staggeredCopy::after {
        bottom: -4.5em;
    left: calc(50% - 15px);
    border-width: 30px 25px 0 25px
}
}
.Proposition__answer {
    background-color: #f7f3e9;
}
.Proposition__answer .Proposition__inner {
    padding-top: 4vw;
}
@media (min-width: 768px) {
    .Proposition__answer .Proposition__inner {
    padding-top: 20px
}
}
.Proposition__merits {
    margin-top: 1.5em;
}
@media (min-width: 768px) {
    .Proposition__merits {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-top: 3em
}
}
.Proposition__meritItem {
    position: relative;
    background-color: #fff;
}
@media (min-width: 768px) {
    .Proposition__meritItem {
    width: 31.33333%
}
}
@media (max-width: 767px) {
    .Proposition__meritItem:not(:first-child) {
        margin-top: 6vw
}
}
.Proposition__meritIndex {
    font-size: 3.5vw;
    
    position: absolute;
    top: -0.5em;
    left: -0.3em;
    z-index: 1;
    padding: 1em 1.4em;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background-color: #a88e50;
}
@media (min-width: 768px) {
    .Proposition__meritIndex {
    font-size: 1.3rem
}
}
@media (min-width: 768px) {
    .Proposition__meritIndex {
    top: -0.7em;
    left: -0.5em;
    padding: 0.7em 1em
}
}
.Proposition__meritIndex span:last-child {
    font-size: 6.4vw;
    
    display: block;
    margin-top: 0.25ex;
}

.Proposition__meritIndex {
    font-size: 3.5vw;
    
    position: absolute;
    top: -0.5em;
    left: -0.3em;
    z-index: 1;
    padding: 1em 1.4em;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background-color: #a88e50;
}
@media (min-width: 768px) {
    .Proposition__meritIndex {
    font-size: 1.3rem
}
}
@media (min-width: 768px) {
    .Proposition__meritIndex {
    top: -0.7em;
    left: -0.5em;
    padding: 0.7em 1em
}
}
.Proposition__meritIndex span:last-child {
    font-size: 6.4vw;
    
    display: block;
    margin-top: 0.25ex;
}
@media (min-width: 768px) {
    .Proposition__meritIndex span:last-child {
        font-size: 2.4rem;
}
}

.Proposition__meritText {
    padding: 10vw 2.5vw 10vw 22vw;
}
@media (min-width: 768px) {
    .Proposition__meritText {
    padding: 2em 2.5em 2em 5em
}
}
.Proposition__meritEyebrow {
    font-size: 3.5vw;
    line-height: 1.69231;
    
    margin-bottom: 0.4em;
}
@media (min-width: 768px) {
    .Proposition__meritEyebrow {
    font-size: 1.6rem;
    
    line-height: 1.57143
}
}
@media (min-width: 768px) {
    .Proposition__meritEyebrow {
    margin-bottom: 0.8em
}
}
.Proposition__meritBodycopy {
    font-size: 4.8vw;
    line-height: 1.5;
}
@media (min-width: 768px) {
    .Proposition__meritBodycopy {
    font-size: 2rem;
    
    line-height: 1.4
}
}
.Proposition__meritBodycopy em {
    color: #b10510;
    color: var(--color-red);
}
.Kaikae.Navigation {
    background-color: #fff;
}
.Kaikae .Navigation__inner {
    max-width: 1080px;
    background-color: #fff;
}
@media (min-width: 768px) {
    .Kaikae .Navigation__inner {
    padding: 40px
}
}
.Kaikae .Navigation__link {
    max-width: none;
    padding: 1.2em 0.8em;
}
.Navigation__link span {
    font-size: 4vw;
    line-height: 1.61538;
}
@media (min-width: 768px) {
    .Navigation__link span {
    font-size: 1.6rem;
    
    line-height: 1.57143;
}
}
.Navigation__link em {
    font-size: 4.26667vw;
    line-height: 1.3125;
    
    margin: 0;
}
@media (min-width: 768px) {
    .Navigation__link em {
    font-size: 2rem;
    
    line-height: 1.4
}
}
@media (min-width: 768px) {
    .Navigation__link em {
    display: inline
}
}
.Warranty {
    background-color: #f3f3f3;
    background-color: var(--color-light-grey);
}
.Warranty__inner {
    max-width: 1080px;
    padding: 10vw 4vw;
    margin: 0 auto;
    background-color: #f3f3f3;
    background-color: var(--color-light-grey);
}
@media (min-width: 768px) {
    .Warranty__inner {
    padding: 70px 40px 100px
}
}
.Warranty__head {
    margin-bottom: 2em;
    text-align: center;
}
@media (min-width: 768px) {
    .Warranty__head {
    margin-bottom: 3em
}
}
.Warranty__heading {
    position: relative;
    padding-bottom: 0.9em;
    margin-bottom: 0.9em;
    text-align: center;
    font-size: 5.86667vw;
    line-height: 1.77273;
}
@media (min-width: 768px) {
    .Warranty__heading {
    padding-bottom: 1.07em;
    margin-bottom: 1.25em;
}
}
.Warranty__heading::before,
.Warranty__heading::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    width: 0.45em;
    height: 2px;
    content: "";
}
@media (min-width: 768px) {
    .Warranty__heading::before,
        .Warranty__heading::after {
        width: 0.35em;
    height: 3px
}
}
.Warranty__heading::before {
    background-color: #b10510;
    transform: translateX(-90%);
}
.Warranty__heading::after {
    background-color: #004066;
}
@media (min-width: 768px) {
    .Warranty__heading {
    font-size: 2.8rem;
    
    line-height: 1.57143;
}
}
.Warranty__body {
    font-size: 4.3vw;
    line-height: 2;
}
@media (min-width: 768px) {
    .Warranty__body {
    font-size: 1.6rem;
    
    line-height: 2.28571
}
}
.Warranty__body em {
    color: #b10510;
    color: var(--color-red);
}
@media (max-width: 767px) {
    .Warranty__body {
    text-align: left
}
}
.Warranty__merits {
    margin-top: 1.5em;
}
@media (min-width: 768px) {
    .Warranty__merits {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-top: 3em
}
}
.Warranty__meritItem {
    position: relative;
    background-color: #fff;
}
@media (min-width: 768px) {
    .Warranty__meritItem {
    width: 48.5%
}
}
@media (max-width: 767px) {
    .Warranty__meritItem:not(:first-child) {
        margin-top: 6vw
}
}
.Warranty__meritIndex {
    font-size: 3.2vw;
    
    position: absolute;
    top: -0.5em;
    left: -0.3em;
    z-index: 1;
    padding: 0.8em 1.4em;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background-color: #a15d67;
}
@media (min-width: 768px) {
    .Warranty__meritIndex {
    font-size: 1.3rem
}
}
@media (min-width: 768px) {
    .Warranty__meritIndex {
    top: -0.7em;
    left: -0.5em;
    padding: 2em 2.4em
}
}
.Warranty__meritIndex span:last-child {
    font-size: 6.4vw;
    
    display: block;
    margin-top: 0.25ex;
}
@media (min-width: 768px) {
    .Warranty__meritIndex span:last-child {
        font-size: 2.4rem;
}
}
.Warranty__meritText {
    padding: 5vw 3vw 5vw 24vw;
}
@media (min-width: 768px) {
    .Warranty__meritText {
    padding: 1.4em 3em 2em 9em
}
}
.Warranty__meritHeadline {
    font-size: 4.8vw;
    line-height: 1.5;
    
    margin-bottom: 1.2em;
}
@media (min-width: 768px) {
    .Warranty__meritHeadline {
    font-size: 2rem;
    
    line-height: 1.7
}
}
.Warranty__meritHeadline em {
    color: #b10510;
    color: var(--color-red);
}
.Warranty__meritBodycopy {
    font-size: 4.3vw;
    line-height: 2.07692;
}
@media (min-width: 768px) {
    .Warranty__meritBodycopy {
    font-size: 1.6rem;
    
    line-height: 1.71429;
}
}
.Convince {
    background-color: #f3f3f3;
    background-color: var(--color-light-grey);
}
.Convince__inner {
    max-width: 1080px;
    padding-right: 4vw;
    padding-bottom: 2vw;
    padding-left: 4vw;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .Convince__inner {
    padding-right: 40px;
    padding-bottom: 20px;
    padding-left: 40px
}
}
.Convince__head {
    display: flex;
    align-items: center;
    padding-top: 10vw;
    margin-bottom: 4vw;
}
@media (min-width: 768px) {
    .Convince__head {
    padding-top: 60px;
    margin-bottom: 30px
}
}
.Convince__headIcon {
    padding: 0.8em 1.4em;
    color: white;
    text-align: center;
    white-space: nowrap;
    background-color: #a88e50;
    background-color: var(--color-gold);
}
@media (min-width: 768px) {
    .Convince__headIcon {
    padding: 0.6em 1.2em
}
}
.Convince__headIconLabel {
    font-size: 3.5vw;
    
    display: block;
    padding-bottom: 0.3em;
    line-height: 1;
}
@media (min-width: 768px) {
    .Convince__headIconLabel {
    font-size: 1.3rem;
}
}
.Convince__headIconNumber {
    font-size: 6.4vw;
    
    display: block;
    line-height: 1;
}
@media (min-width: 768px) {
    .Convince__headIconNumber {
    font-size: 2.4rem;
}
}
.Convince__heading {
    font-size: 4vw;
    line-height: 1.57143;
    
    margin-left: 20px;
    color: #a88e50;
    color: var(--color-gold);
}
@media (min-width: 768px) {
    .Convince__heading {
    font-size: 2rem;
    
    line-height: 1.3
}
}
.Convince__heading em {
    font-size: 4.53333vw;
    
    font-weight: bold;
    color: #b10510;
    color: var(--color-red);
}
@media (min-width: 768px) {
    .Convince__heading em {
    font-size: 2.6rem;
}
}
.Convince__bodycopy {
    font-size: 4.3vw;
    line-height: 2.07692;
}
@media (min-width: 768px) {
    .Convince__bodycopy {
    font-size: 1.6rem;
    
    line-height: 1.71429;
}
}
.Convince__note {
    font-size: 3vw;
    line-height: 1.66667;
    
    padding-left: 1em;
    margin-top: 0.5ex;
}
@media (min-width: 768px) {
    .Convince__note {
    font-size: 1.3rem;
    
    line-height: 1.75
}
}
.Convince__note span {
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
.Convince__note + .Convince__note {
    margin-top: 0;
}
.Convince__subHead {
    position: relative;
    padding-left: 2.25em;
    font-size: 4.26667vw;
    line-height: 1.6875;
    
    margin: 1.5em 0;
}
.Convince__subHead::before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 1.5em;
    height: 1px;
    content: "";
    background-color: #4c4a4b;
}
@media (min-width: 768px) {
    .Convince__subHead {
    padding-left: 2.5em;
}

.Convince__subHead::before {
    width: 1.75em;
}
}
@media (min-width: 768px) {
    .Convince__subHead {
    font-size: 2.2rem;
    
    line-height: 1.18182;
}
}
.Convince__imageScrollContainer {
    margin: 0 -4vw;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
    .Convince__imageScrollContainer {
    margin: 10px auto auto;
    overflow-x: hidden
}
}
.Convince__imageScrollContainer .Convince__imageScroll {
    width: 200%;
    height: auto;
    padding: 0 4vw;
}
@media (min-width: 768px) {
    .Convince__imageScrollContainer .Convince__imageScroll {
    display: block;
    width: 100%;
    height: auto;
    
    padding: 0
}
}
.Kaikae__scrollableImageButtonContainer {
    position: relative;
}
.Kaikae__scrollableImageButton {
    position: absolute;
    top: calc(50% - 45px);
    display: block;
    width: 90px;
    height: 90px;
    background-color: #a98f52;
    background-image: url("/plus/kaikae/images/button-arrow.png");
    background-repeat: no-repeat;
    background-position: center left 20px;
    background-size: 15%;
    border: 0;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s;
}
@media (min-width: 768px) {
    .Kaikae__scrollableImageButton {
    display: none
}
}
.Kaikae__scrollableImageButton.-ready {
    opacity: 0.4;
}
.Kaikae__scrollableImageButton.-ready:hover,
.Kaikae__scrollableImageButton.-ready:focus {
    opacity: 0.7;
}
.Kaikae__scrollableImageButton[data-direction="left"] {
    left: calc(-4vw - 45px);
    transform: rotate(180deg);
}
.Kaikae__scrollableImageButton[data-direction="right"] {
    right: calc(-4vw - 45px);
}
.Convince__image {
    display: block;
    width: 100%;
    height: auto;
}
.Loan__inner {
    max-width: 1080px;
    padding: 10vw 4vw;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .Loan__inner {
    padding: 70px 40px 100px
}
}
.Loan__head {
    margin-bottom: 2em;
    text-align: center;
}
@media (min-width: 768px) {
    .Loan__head {
    margin-bottom: 3em
}
}
.Loan__heading {
    position: relative;
    padding-bottom: 0.9em;
    margin-bottom: 0.9em;
    text-align: center;
    font-size: 5.86667vw;
    line-height: 1.77273;
}
@media (min-width: 768px) {
    .Loan__heading {
    padding-bottom: 1.07em;
    margin-bottom: 1.25em;
}
}
.Loan__heading::before,
.Loan__heading::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    width: 0.45em;
    height: 2px;
    content: "";
}
@media (min-width: 768px) {
    .Loan__heading::before,
        .Loan__heading::after {
        width: 0.35em;
    height: 3px
}
}
.Loan__heading::before {
    background-color: #b10510;
    transform: translateX(-90%);
}
.Loan__heading::after {
    background-color: #004066;
}
@media (min-width: 768px) {
    .Loan__heading {
    font-size: 2.8rem;
    
    line-height: 1.57143;
}
}
.Loan__body {
    font-size: 4.3vw;
    line-height: 2;
}
@media (min-width: 768px) {
    .Loan__body {
    font-size: 1.6rem;
    line-height: 2.28571
}
}
.Loan__body em {
    color: #b10510;
    color: var(--color-red);
}
@media (max-width: 767px) {
    .Loan__body {
    text-align: left
}
}
.Loan__merits {
    margin-top: 1.5em;
}
@media (min-width: 768px) {
    .Loan__merits {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-top: 3em
}
}
.Loan__meritItem {
    position: relative;
    background-color: #f3f3f3;
    background-color: var(--color-light-grey);
}
@media (min-width: 768px) {
    .Loan__meritItem {
    width: 48.5%
}
}
@media (max-width: 767px) {
    .Loan__meritItem:not(:first-child) {
        margin-top: 6vw
}
}
.Loan__meritIndex {
    font-size: 3.2vw;
    
    position: absolute;
    top: -0.5em;
    left: -0.3em;
    z-index: 1;
    padding: 0.8em 1.4em;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background-color: #a15d67;
}
@media (min-width: 768px) {
    .Loan__meritIndex {
    font-size: 1.3rem
}
}
@media (min-width: 768px) {
    .Loan__meritIndex {
    top: -0.7em;
    left: -0.5em;
    padding: 2em 2.4em
}
}
.Loan__meritIndex span:last-child {
    font-size: 6.4vw;
    
    display: block;
    margin-top: 0.25ex;
}
@media (min-width: 768px) {
    .Loan__meritIndex span:last-child {
        font-size: 2.4rem;
}
}
.Loan__meritText {
    padding: 5vw 3vw 5vw 24vw;
}
@media (min-width: 768px) {
    .Loan__meritText {
    padding: 1.4em 3em 2em 9em
}
}
.Loan__meritHeadline {
    font-size: 4.8vw;
    line-height: 1.5;
    
    margin-bottom: 1.2em;
}
@media (min-width: 768px) {
    .Loan__meritHeadline {
    font-size: 2rem;
    
    line-height: 1.7
}
}
.Loan__meritHeadline em {
    color: #b10510;
    color: var(--color-red);
}
.Loan__meritBodycopy {
    font-size: 4.3vw;
    line-height: 2.07692;
}
@media (min-width: 768px) {
    .Loan__meritBodycopy {
    font-size: 1.6rem;
    
    line-height: 1.71429;
}
}
.Loan__subHead {
    position: relative;
    padding-left: 2.25em;
    font-size: 4.3vw;
    line-height: 1.6875;
    margin: 1.5em 0;
}
.Loan__subHead::before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 1.5em;
    height: 1px;
    content: "";
    background-color: #4c4a4b;
}
@media (min-width: 768px) {
    .Loan__subHead {
    padding-left: 2.5em;
}

.Loan__subHead::before {
    width: 1.75em;
}
}
@media (min-width: 768px) {
    .Loan__subHead {
    font-size: 2.2rem;
    
    line-height: 1.18182;
}
}
.Loan__imageScrollContainer {
    margin: 0 -4vw;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
    .Loan__imageScrollContainer {
    margin: auto;
    overflow-x: hidden
}
}
.Loan__imageScrollContainer .Loan__imageScroll {
    width: 200%;
    height: auto;
    padding: 0 4vw;
}
@media (min-width: 768px) {
    .Loan__imageScrollContainer .Loan__imageScroll {
    display: block;
    width: 100%;
    height: auto;
    
    padding: 0
}
}
.Loan__merit {
    max-width: 1280px;
    max-width: var(--max-width);
    padding: 0 4vw;
    margin: 0 auto;
    text-align: center;
}
@media (min-width: 768px) {
    .Loan__merit {
    padding: 0 40px
}
}
.Loan__meritHeading {
    font-size: 4.3vw;
    line-height: 1.6875;
    
    padding-top: 6vw;
    border-top: solid 1px #e4e4e4;
    border-top: solid 1px var(--color-border);
}
@media (min-width: 768px) {
    .Loan__meritHeading {
    font-size: 2.2rem;
    
    line-height: 1.18182
}
}
@media (min-width: 768px) {
    .Loan__meritHeading {
    padding-top: 60px
}
}
.Loan__imageContainer {
    max-width: 1080px;
    padding: 0 4vw 12vw;
    margin: auto;
}
@media (min-width: 768px) {
    .Loan__imageContainer {
    padding: 0 40px 80px
}
}
.Loan__image {
    display: block;
    width: 100%;
    height: auto;
    
    margin: 6vw auto 0;
}
@media (min-width: 768px) {
    .Loan__image {
    width: 71.2%;
    margin-top: 40px
}
}
.Case {
    background-color: #f3f3f3;
    background-color: var(--color-light-grey);
}
.Case__inner {
    max-width: 1080px;
    padding: 10vw 4vw;
    margin: 0 auto;
    background-color: #ffffff;
}
@media (min-width: 768px) {
    .Case__inner {
    padding: 70px 40px 50px
}
}
.Case__head {
    margin-bottom: 2em;
    text-align: center;
}
@media (min-width: 768px) {
    .Case__head {
    margin-bottom: 3em
}
}
.Case__heading {
    position: relative;
    padding-bottom: 0.9em;
    margin-bottom: 0.9em;
    text-align: center;
    font-size: 5.86667vw;
    line-height: 1.77273;
}
@media (min-width: 768px) {
    .Case__heading {
    padding-bottom: 1.07em;
    margin-bottom: 1.25em;
}
}
.Case__heading::before,
.Case__heading::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    width: 0.45em;
    height: 2px;
    content: "";
}
@media (min-width: 768px) {
    .Case__heading::before,
        .Case__heading::after {
        width: 0.35em;
    height: 3px
}
}
.Case__heading::before {
    background-color: #b10510;
    transform: translateX(-90%);
}
.Case__heading::after {
    background-color: #004066;
}
@media (min-width: 768px) {
    .Case__heading {
    font-size: 2.8rem;
    
    line-height: 1.57143;
}
}
.Case__body {
    font-size: 4.3w;
    line-height: 2;
}
@media (min-width: 768px) {
    .Case__body {
    font-size: 1.6rem;
    
    line-height: 2.28571
}
}
.Case__body em {
    color: #b10510;
    color: var(--color-red);
}
.Case__GalleryList {
    width: 100%;
    margin-top: 3em;
    font-size: 3.482vw;
}
@media (min-width: 768px) {
    .Case__GalleryList {
    grid-area: CmGallery__list;
    justify-content: space-between;
    margin-top: 0;
    font-size: 1.6rem
}
}
.Case__GalleryCell {
    width: 100%;
    margin-top: 1.5em;
}
@media (min-width: 768px) {
    .Case__GalleryCell {
    width: 49%;
    
    margin-top: 0
}
}
.Case__GalleryButton {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.Case__GalleryThumbnail {
    width: 100%;
    transition: transform 400ms;
    transform-origin: center;
}
/* stylelint-disable-next-line selector-max-specificity */
body:not(.-ios) .Case__GalleryButton:hover .Case__GalleryThumbnail {
    transform: scale3d(1.1, 1.1, 1);
}
.Case__GalleryPlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 17%;
    transform: translate(-50%, -50%);
}
.Case__GalleryCaption {
    font-size: 4.3vw;
    width: 100%;
    margin-bottom: 0.5em;
}
@media (min-width: 768px) {
    .Case__GalleryCaption {
    font-size: 1.6rem
}
}
@media (min-width: 768px) {
    .Case__GalleryCaption {
    margin-bottom: 1em
}
}
.ModalYouTube {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000000;
    z-index: var(--z-lv-10);
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: opacity 400ms;
}
.ModalYouTube.-visually-hidden {
    pointer-events: none;
    opacity: 0;
}
.ModalYouTube[hidden] {
    display: none;
}
.ModalYouTube__background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background: rgba(0,0,0,0.8);
}
.ModalYouTube__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    height: auto;
    transform: translate(-50%, -50%);
}
.ModalYouTube__inner::before {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    content: "";
}
.ModalYouTube__cross {
    position: absolute;
    top: -1.5em;
    right: 0.5em;
    display: block;
    width: 1em;
    height: 1em;
    font-size: 6vw;
    color: #fff;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
@media (min-width: 768px) {
    .ModalYouTube__cross {
    right: 0;
    font-size: 20px
}
}
.ModalYouTube__cross::before,
.ModalYouTube__cross::after {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    content: "";
    background: currentColor;
    transform-origin: center;
}
.ModalYouTube__cross::before {
    transform: translateY(-50%) rotate(45deg);
}
.ModalYouTube__cross::after {
    transform: translateY(-50%) rotate(-45deg);
}
.ModalYouTube__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.Service__inner {
    max-width: 1080px;
    padding: 10vw 4vw 12vw;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .Service__inner {
    padding: 70px 40px 100px
}
}
.Service__head {
    margin-bottom: 2em;
    text-align: center;
}
@media (min-width: 768px) {
    .Service__head {
    margin-bottom: 3em
}
}
.Service__heading {
    position: relative;
    padding-bottom: 0.9em;
    margin-bottom: 0.9em;
    text-align: center;
    font-size: 5.86667vw;
    line-height: 1.77273;
}
@media (min-width: 768px) {
    .Service__heading {
    padding-bottom: 1.07em;
    margin-bottom: 1.25em;
}
}
.Service__heading::before,
.Service__heading::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    width: 0.45em;
    height: 2px;
    content: "";
}
@media (min-width: 768px) {
    .Service__heading::before,
        .Service__heading::after {
        width: 0.35em;
    height: 3px
}
}
.Service__heading::before {
    background-color: #b10510;
    transform: translateX(-90%);
}
.Service__heading::after {
    background-color: #004066;
}
@media (min-width: 768px) {
    .Service__heading {
    font-size: 2.8rem;
    
    line-height: 1.57143;
}
}
@media (min-width: 768px) {
    .Service__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: -10px 0
}
}
.Service__item a {
    text-decoration: none;
    transition: 0.2s;
}
.Service__item a:hover {
    opacity: 0.8;
}
@media (max-width: 767px) {
    .Service__item:not(:first-child) {
        margin-top: 4vw
}
}
@media (min-width: 768px) {
    .Service__item {
    display: flex;
    width: 49%;
    margin: 10px 0
}
}
.Service__element {
    position: relative;
    display: block;
    padding: 8vw;
    border: solid 1px #e4e4e4;
    border: solid 1px var(--color-border);
}
.Service__element::after {
    position: absolute;
    right: 0;
    bottom: 0;
    content: "";
    border-bottom: 2.5em solid #004066;
    border-bottom: 2.5em solid var(--color-blue);
    border-left: 2.5em solid transparent;
}
@media (min-width: 768px) {
    .Service__element {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.8em
}

.Service__element::after {
    border-bottom: 1.5em solid #004066;
    border-bottom: 1.5em solid var(--color-blue);
    border-left: 1.5em solid transparent;
}
}
@media (min-width: 768px) {
    .Service__imageContainer {
    width: 30%
}
}
.Service__image {
    display: block;
    width: auto;
    max-width: 50%;
    height: auto;
    margin: auto;
}
@media (min-width: 768px) {
    .Service__image {
    max-width: 100%
}
}
@media (min-width: 768px) {
    .Service__text {
    width: 58%
}
}
.Service__title {
    font-size: 4.26667vw;
    line-height: 1.6875;
    
    margin-top: 0.4em;
    margin-bottom: 0.8em;
    color: #003761;
}
@media (min-width: 768px) {
    .Service__title {
    font-size: 2rem;
    
    line-height: 1.6
}
}
@media (min-width: 768px) {
    .Service__title {
    margin-top: 0
}
}
.Service__subTitle {
    font-size: 4.3vw;
    line-height: 1.53846;
    
    padding: 0.8em 1.2em;
    background-color: #f3f3f3;
}
@media (min-width: 768px) {
    .Service__subTitle {
    font-size: 1.6rem;
    
    line-height: 1.5;
}
}
.Service__bottomLink {
    /* NOTE: blue background button */
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: #004066;
    border: 1px solid #004066;
    transition-duration: 400ms;
    transition-property: color, background-color;
    position: relative;
    font-size: 4.3vw;
    
    display: block;
    width: 100%;
    padding: 1.3em 2em;
    margin: 8vw auto 0;
}
@media (min-width: 768px) {
    .Service__bottomLink:hover {
        color: #004066;
    background-color: #fff;
}
}
.Service__bottomLink svg {
    position: absolute;
    top: 50%;
    right: 1em;
    z-index: 1;
    width: 0.4em;
    transform: rotate(0deg) translateY(-50%);
    transform-origin: top left;
}
@media (min-width: 768px) {
    .Service__bottomLink {
    font-size: 1.6rem
}
}
@media (min-width: 768px) {
    .Service__bottomLink {
    width: 50%;
    max-width: 360px;
    padding: 1.71em 2em;
    margin: 60px auto 0;
    line-height: 1.71
}
}


