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

* {
	-webkit-box-sizing: border-box;
		box-sizing: border-box;
}
body {
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 16px;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1.6;
	color: #222;
	font-size: 16px;
	font-family: "Noto Sans JP", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	width: 100%;
	height: auto;
	background: #ffffff;
	font-weight: 400;
}
@media screen and (max-width: 768px) {
    html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
        font-size: 14px;
    }

    body {
        font-size: 14px;
    }
}

:root{
	--link-color: #1f1f7b;
}

ol, ul {
	list-style: none;
}
.article_module .wysiwyg ol,
.article_module .wysiwyg ul {
	list-style: disc;
	padding-inline-start: 25px;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

p {
	padding: 0px;
	text-align: left;
	border: none;
	line-height: 1.6em;
}

img {
	position: relative;
}

a {
	display: inline;
	text-decoration: none;
	color: var(--link-color);
}

a:hover {
	text-decoration: none;
}

a:hover img {
}

sup, sub {
	height: 0;
	line-height: 1;
	vertical-align: baseline;
	position: relative;
}

sup {
	bottom: 1ex;
}

sub {
	top: .5ex;
}

em {
	font-style: italic;
}


/* common */
.l-header {
    width: 100%;
    background-color: #fff;
}

.l-header .l-header__inner {
    max-width: 1200px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.l-header .l-header__logo {
    line-height: 0;
}

.l-header .l-header__menu {
    display: none;
}

@media screen and (max-width: 768px) {

    .l-header {
        position: fixed;
        top: 0;
        z-index: 10;
    }

    .l-header .l-header__inner {
        height: 60px;
        padding: 20px;
    }

    .l-header .l-header__logo {
        max-width: 100px;
    }

    .l-header .l-header__logo img {
        width: 100%;
    }

    .l-header .l-header__menu {
        display: block;
    }

    .l-header .l-header__menu .l-header__btn {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #0044B9 0%, #00348D 50%, #006AAC 100%);
    }
    
    .l-header .l-header__menu .l-header__btn span {
        width: 24px;
        height: 3px;
        background-color: #fff;
        border-radius: 5px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        transition: 0.4s;
    }
    
    .l-header .l-header__menu .l-header__btn span:nth-last-child(1) {
        top: -14px;
    }
    
    .l-header .l-header__menu .l-header__btn span:nth-last-child(3) {
        top: 14px;
    }
    
    .l-header .l-header__menu .l-header__btn.is-active span:nth-last-child(1) {
        top: 0;
        transform: rotate(45deg);
    }
    
    .l-header .l-header__menu .l-header__btn.is-active span:nth-last-child(2) {
        opacity: 0;
    }
    
    .l-header .l-header__menu .l-header__btn.is-active span:nth-last-child(3) {
        top: 0;
        transform: rotate(-45deg);
    }

}

.l-footer {
    width: 100%;
    background-color: #fff;
}

.l-footer .l-footer__inner {
    max-width: 1200px;
    margin: auto ;
    padding: 60px 0;
}

.l-footer .l-footer__inner .l-footer__tx {
    margin-top: 30px;
    display: flex;
    gap: 24px;
}

.l-footer .l-footer__inner .l-footer__tx p {
    font-size: 12px;
    line-height: 1.8;
}

.l-footer .l-footer__inner .l-footer__tx p span {
    color: #244384;
    font-weight: 700;
    display: block;
}

.l-footer .l-footer__inner .l-footer__copy {
    margin-top: 20px;
}

.l-footer .l-footer__inner .l-footer__copy p {
    font-size: 10px;
}

@media screen and (max-width: 768px) {
    
    .l-footer .l-footer__inner {
        padding: 40px 20px;
    }
    
    .l-footer .l-footer__inner .l-footer__tx {
        margin-top: 20px;
        flex-direction: column;
    }
    
    .l-footer .l-footer__inner .l-footer__copy {
        margin-top: 24px;
    }
}


.l-contents {
    position: relative;
}

.l-contents__bg {
    position: relative;
}

.l-contents__bg::after {
    content: '';
    position: fixed;
    top: 0;
    z-index: -2;
    width: 100%;
    height: 100vh;
    background-image: url(/fund/feature/wcm/image/kv.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.l-contents__bg .l-contents__inner {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(27, 77, 185, 0.2);
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .l-contents__bg::after {
        background-image: url(/fund/feature/wcm/image/kv_sp.png);

    }

}


/* component */

.pc_block {}

.sp_block {
    display: none;
}
@media screen and (max-width: 768px) {
    .pc_block {
        display: none;
    }
    .sp_block {
        display: block;
    }
}

.c-caption {
    font-size: 12px;
}

@media screen and (max-width: 768px) {
    .c-caption {
        font-size: 10px;
    }
}


.c-list li {
    position: relative;
    padding-left: 1.2em;
}

.c-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    border-radius: 10px;
    background-color: #003288;
    letter-spacing: 0.03em;
}

.c-list li + li {
    margin-top: 10px;
}

.c-remarks {
    position: relative;
}

.c-remarks li {
    color: #757575;
    font-size: 12px;
    text-indent: -1.2em;
    padding-left: 1.2em;
}

.c-remarks li::before {
    content: '※';
    margin-right: 0.2em;
}

.c-remarks li + li {
    margin-top: 5px;
}

.c-remarks--order {
	counter-reset: orderlist;
}
.c-remarks--order li {
    text-indent: -2em;
    padding-left: 1.6em;
}
.c-remarks--order li::before {
	counter-increment: orderlist;
	content: "※" counter(orderlist);
    min-width: 0.75em;
    margin-right: 0.6em;
}

.c-remarks--attention li {
    text-indent: -3em;
    padding-left: 3em;

}

.c-remarks--attention li::before {
    content: '（注）';
    margin-right: 0.2em;
}

@media screen and (max-width: 768px) {
    .c-list li {
        font-size: 14px;
    }

    .c-remarks li {
        font-size: 10px;
    }

}

.c-diamond {
    font-weight: 800;
    position: relative;
}

.c-diamond li {
    font-weight: 800;
    font-size: 18px;
    padding-left: 2em;
    position: relative;
}

.c-diamond li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background-color: #003288;
    transform: rotate(45deg);
}

.c-diamond li + li {
    margin-top: 24px;
}

@media screen and (max-width: 768px) {

    .c-diamond li {
        font-size: 16px;
        padding-left: 1.4em;
    }

    .c-diamond li::before {
        width: 12px;
        height: 12px;
        top: 6px;
    }

}



.c-column2 {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 50px;
}

.c-column2 .c-column2__item {
    width: calc(50% - 40px);
}

.c-column2 .c-column2__item img {
    width: 100%;
}

@media screen and (max-width: 768px) {

    .c-column2 {
        gap: 30px;
        flex-direction: column;
    }
    
    .c-column2 .c-column2__item {
        width: 100%;
    }

    .c-pinch {
        width: 60%;
        margin: 15px auto 0;
    }

    .c-pinch img {
        width: 100%;
    }

    .c-flick {
        width: 50%;
        margin: 15px 0 0;
    }

    .c-flick img {
        width: 100%;
    }

}

.c-btn {
    max-width: 400px;
    margin: auto;
    transition: 0.5s;
}

.c-btn:hover {
    opacity: 0.7;
    transition: 0.5s;
}

.c-btn__inner {
	display: flex;
	width: 100%;
	height: 100%;
	min-height: 60px;
    background-color: #244384;
    color: #fff;
	border-radius: 8px;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	text-decoration: none;
    cursor: pointer;
    line-height: 1.4;
}

.c-btn__inner > span {
	padding: 12px 56px 12px 42px;
	text-align: center;
	font-weight: 500;
	font-size: 20px;
	color: inherit;
}

.c-btn__inner::after {
	content: '';
	display: block;
	width: 16px;
    height: 16px;
    background-image: url(/fund/feature/wcm/image/icn_arrow.svg);
    background-size: cover;
	position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
	right: 12px;
}

.c-btn.c-btn__green .c-btn__inner {
    border: 1px solid #00907A;
    background-color: #00907A;
}

.c-btn.c-btn__yellow .c-btn__inner {
    border: 1px solid #B99352;
    background-color: #B99352;
}

@media screen and (max-width: 768px) {
    .c-btn__inner > span {
        font-size: 16px;
        padding: 12px 30px 12px 20px;
    }
}


.c-accordion {
    max-width: 1200px;
    margin: 93px auto 0;
}

.c-accordion .c-accordion__ttl {
    text-align: center;
    position: relative;
    width: 100%;
    height: 80px;
    background: linear-gradient(90deg, #0044B9 0%, #00348D 50%, #006AAC 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.5s;
}

.c-accordion .c-accordion__ttl:hover {
    opacity: 0.7;
    transition: 0.5s;
}

.c-accordion .c-accordion__ttl h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
}

.c-accordion .c-accordion__ttl .c-accordion__btn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 80px;
    height: 80px;
    background-color: #C19445;
}

.c-accordion .c-accordion__ttl .c-accordion__btn::before,
.c-accordion .c-accordion__ttl .c-accordion__btn::after {
    content: '';
    width: 3px;
    height: 24px;
    background-color: #fff;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(0deg);
    transition: 0.5s;
}

.c-accordion .c-accordion__ttl .c-accordion__btn::after {
    transform: rotate(90deg);
}

.c-accordion .c-accordion__contents {
    background-color: #fff;
    padding: 50px 40px;
    box-shadow: 0px 4px 16px rgba(0, 23, 121, 0.16);
}

.c-accordion .c-accordion__contents .c-accordion__col2 {
    display: flex;
    gap: 40px;
}

.c-accordion .c-accordion__contents .c-accordion__col2 .c-accordion__item {
    width: 50%;
}

.c-accordion .c-accordion__contents .c-accordion__col2 + .c-accordion__col2 {
    margin-top: 64px;
}

.c-accordion .c-accordion__contents img {
    width: 100%;
}

.c-accordion .c-accordion__ttl.is-active .c-accordion__btn::before {
    transform: rotate(-45deg);
    transition: 0.5s;
}

.c-accordion .c-accordion__ttl.is-active .c-accordion__btn::after {
    transform: rotate(45deg);
    transition: 0.5s;
}

@media screen and (max-width: 768px) {
    .c-accordion .c-accordion__ttl {
        text-align: left;
        height: auto;
        display: block;
        padding: 12px 20px;
    }
    
    .c-accordion .c-accordion__ttl h2 {
        font-size: 16px;
    }
    
    .c-accordion .c-accordion__ttl .c-accordion__btn {
        width: 50px;
        height: 100%;
    }
    
    .c-accordion .c-accordion__ttl .c-accordion__btn::before,
    .c-accordion .c-accordion__ttl .c-accordion__btn::after {
        height: 18px;
    }
    
    .c-accordion .c-accordion__contents {
        padding: 30px 20px;
        box-shadow: none;
    }

    .c-accordion .c-accordion__contents .c-accordion__col2 {
        flex-direction: column;
    }

    .c-accordion .c-accordion__contents .c-accordion__col2 .c-accordion__item {
        width: 100%;
    }
    
}


/*  */

.u-mt-none {
	margin-top: 0 !important;
}

.u-mt-xxs {
	margin-top: 5px !important;
}

.u-mt-xs {
	margin-top: 10px !important;
}

.u-mt-s {
	margin-top: 20px !important;
}

.u-mt-m {
	margin-top: 30px !important;
}

.u-mt-l {
	margin-top: 50px !important;
}

.u-mt-xl {
	margin-top: 60px !important;
}

.u-mt-xxl {
	margin-top: 80px !important;
}

@media (min-width: 768px) {
	.u-mt-xxs {
		margin-top: 10px !important;
	}
	.u-mt-xs {
		margin-top: 20px !important;
	}
	.u-mt-s {
		margin-top: 30px !important;
	}
	.u-mt-m {
		margin-top: 40px !important;
	}
	.u-mt-l {
		margin-top: 60px !important;
	}
	.u-mt-xl {
		margin-top: 80px !important;
	}
	.u-mt-xxl {
		margin-top: 120px !important;
	}
}

.u-text-fz18 {
    font-size: 14px !important;
}

@media (min-width: 768px) {

    .u-text-fz18 {
        font-size: 18px !important;
    }
    
}

.u-text-bold {
    font-weight: 700 !important;
}

.u-text-right {
    text-align: right !important;
}

.u-text-blue {
    color: #003288 !important;
}

.u-text-green {
    color: #027B74 !important;
}

.u-text-gray {
    color: #585858 !important;
}




/* contents */
.p-mainvisual {
    height: 760px;
    background-image: url(/fund/feature/wcm/image/kv.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.p-mainvisual .p-mainvisual__inner {
    max-width: 1200px;
    height: 100%;
    margin: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.p-mainvisual .p-mainvisual__inner h1 {
    font-size: 64px;
    font-weight: 900;
    text-shadow: 0px 8px 10px rgba(0, 0, 0, 0.27);
}

.p-mainvisual .p-mainvisual__inner h1 span {
    display: block;
    font-size: 20px;
    text-shadow: none;
}

.p-mainvisual .p-mainvisual__inner .p-mainvisual__lead {
    margin: 36px 0;
}

.p-mainvisual .p-mainvisual__inner .name {
    font-weight: 700;
    font-size: 35px;
    vertical-align: baseline;
    margin-bottom: 48px;
}

.p-mainvisual .p-mainvisual__inner .name span {
    font-size: 20px;
    font-weight: 400;
}

.p-mainvisual .p-mainvisual__inner .lead {
    font-size: 30px;
    color: #fff;
    font-weight: 400;
    background: linear-gradient(transparent 80%, #C19445 10%);
    display: inline;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.78);
}

.p-mainvisual .p-mainvisual__inner .p-mainvisual__badge {
    font-weight: 900;
    position: absolute;
    top: 5%;
    right: 0;
    width: 172px;
    height: 172px;
    border-radius: 200px;
    background-color: #C19445;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.26);
    line-height: 1.2;
}

.p-mainvisual .p-mainvisual__inner .p-mainvisual__badge p {
    font-size: 34px;
    line-height: 1.3;
    text-align: center;
}

.p-mainvisual .p-mainvisual__inner .p-mainvisual__badge p span {
    display: block;
    font-size: 15px;
}

@keyframes arrow {
    0% {
      transform: translateY(0%);
    }
  
    50% {
      transform: translateY(20%);
    }
  
    100% {
      transform: translateY(0%);
    }
  }
.p-mainvisual .p-mainvisual__scroll {
    position: absolute;
    bottom: 4%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.p-mainvisual .p-mainvisual__scroll .p-mainvisual__scroll__arrow {
    animation-name: arrow;
    animation-duration: 2s;
    animation-iteration-count:infinite;
}

@media screen and (max-width: 768px) {
    .p-mainvisual {
        margin-top: 50px;
        height: 80vh;
        background-image: none;
    }
    
    .p-mainvisual .p-mainvisual__inner {
        padding: 0 20px;
    }
    
    .p-mainvisual .p-mainvisual__inner h1 {
        font-size: 44px;
        line-height: 1.3;
    }
    
    .p-mainvisual .p-mainvisual__inner h1 span {
        font-size: 16px;
        margin-top: 12px;
    }
    
    .p-mainvisual .p-mainvisual__inner .p-mainvisual__lead {
        margin: 26px 0;
    }
    
    .p-mainvisual .p-mainvisual__inner .name {
        font-size: 18px;
        margin-bottom: 26px;
    }
    
    .p-mainvisual .p-mainvisual__inner .name span {
        font-size: 10px;
    }
    
    .p-mainvisual .p-mainvisual__inner .lead {
        font-size: 18px;
        background: linear-gradient(transparent 80%, #C19445 10%);
    }
    
    .p-mainvisual .p-mainvisual__inner .p-mainvisual__badge {
        right: 5%;
        width: 96px;
        height: 96px;
    }
    
    .p-mainvisual .p-mainvisual__inner .p-mainvisual__badge p {
        font-size: 22px;
        line-height: 1.3;
        text-align: center;
    }
    
    .p-mainvisual .p-mainvisual__inner .p-mainvisual__badge p span {
        display: block;
        font-size: 10px;
    }
}


.p-menu {
    height: 60px;
    position: relative;
}

.p-menu__inner {
    background-color: #003288;
    width: 100%;
}

.p-menu__inner.is-fixed {
    position: fixed;
    top: 0;
    z-index: 100;
}

.p-menu ul {
    /*max-width: 1440px;*/
		max-width: 1440px;
    margin: auto;
    display: flex;
}
.p-menu ul li {
		/*flex: 0 0 20%;*/
    flex: 0 0 33%;
    height: 60px;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
}
.p-menu ul li:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.p-menu ul li a {
    color: #fff;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.p-menu ul li a {}

.p-menu ul li a::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(140deg, #003288 0%, #045EAA 50%, #006286 100%);
    z-index: -1;
    opacity: 0;
    transition: 0.5s;
}

.p-menu ul li a:hover::before {
    opacity: 1;
    transition: 0.5s;
}

@media screen and (max-width: 768px) {

    .p-menu {
        height: auto;
    }
    
    .p-menu__inner {
        background-color: #003288;
        width: 100%;
        padding: 30px 0;
    }
    
    .p-menu ul {
        flex-direction: column;
    }
    .p-menu ul li {
        flex: auto;
        height: 60px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    }
    .p-menu ul li:first-child {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.4);
    }
    
    .p-menu ul li a {
        font-size: 20px;

        color: #fff;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        line-height: 1;
        position: relative;
        z-index: 1;
    }
}


.p-about {
    position: relative;
}

.p-about__bg {
    position: absolute;
    top: 0;
    width: 100%;
}

.p-about__bg::before {
    content: '';
    width: 100%;
    height: 2137px;
    position: absolute;
    top: 0;
    background-image: url(/fund/feature/wcm/image/bg_sand_fadeout.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    z-index: -1;
}

.p-about .p-about__inner {
    max-width: 1200px;
    padding-top: 93px;
    margin: 0 auto;
}

.p-about .p-about__contents {
    background-color: #fff;
    padding: 50px 40px;
    box-shadow: 0px 4px 16px rgba(0, 23, 121, 0.16);
}

@media screen and (max-width: 768px) {
    .p-about {
        padding: 40px auto 0;
    }

    .p-about__bg::before {
        top: 0;
        bottom: 0;
        height: 350vh;
        background-image: url(/fund/feature/wcm/image/bg_sand_sp.png);
    }

    .p-about .p-about__contents {
        padding: 30px 20px;
        box-shadow: none;
    }
}


.p-result {
    max-width: 1360px;
    margin: 120px auto 0;
    background: linear-gradient(transparent 0%, #fff 5%, #fff 100%);
    padding-bottom: 80px;
    border-radius: 0 0 48px 48px;
}

.p-result .p-result__inner {
    max-width: 1200px;
    margin: auto;
}

.p-result .p-result__ttl {
    text-align: center;
    margin-bottom: 80px;
}

.p-result .p-result__ttl .p-result__sttl {
    position: relative;
    margin-bottom: 48px;
}

.p-result .p-result__ttl .p-result__sttl p {
    background-color: #fff;
    color: #003288;
    font-weight: 700;
    font-size: 26px;
    border: 2px solid #003288;
    padding: 10px 35px 10px 30px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.p-result .p-result__ttl .p-result__sttl p span {
    display: inline-block;
    height: 37px;
    vertical-align: middle;
}

.p-result .p-result__ttl .p-result__sttl::after {
    content: '';
    height: 4px;
    width: 100%;
    background-color: #003288;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.p-result .p-result__ttl h2 {
    color: #222222;
    font-size: 56px;
    font-weight: 900;

}

.p-result .p-result__ttl h2 span {
    font-size: 64px;
    background-color: #003288;
    color: #fff;
    padding: 0 10px;
}

.p-result .p-result__ttl .p-result__lead {
    max-width: 1000px;
    margin: 32px auto 0;
    font-size: 18px;
    font-weight: 600;
}

.p-result .p-result__ttl .p-result__lead p span {
    color: #003288;
    font-size: 24px;
    font-weight: 800;
}

.p-result .p-result__checkttl {
    text-align: center;
    position: relative;
    width: 100%;
    height: 80px;
    background: linear-gradient(90deg, #0044B9 0%, #00348D 50%, #006AAC 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.p-result .p-result__checkttl h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
}

@media screen and (max-width: 768px) {

    .p-result {
        margin: 60px 0 0;
        padding: 0 20px 32px;
        border-radius: 0 0 24px 24px;
    }

    .p-result .p-result__inner {
        
    }

    .p-result .p-result__ttl {
        margin-bottom: 40px;
    }
    
    .p-result .p-result__ttl .p-result__sttl {
        margin-bottom: 24px;
    }
    
    .p-result .p-result__ttl .p-result__sttl img {
        width: 100%;
    }
    
    .p-result .p-result__ttl .p-result__sttl p {
        font-size: 14px;
        padding: 10px 22px;
        vertical-align: middle;
    }
    
    .p-result .p-result__ttl .p-result__sttl p span {
        width: 20px;
        height: 20px;
    }
    
    .p-result .p-result__ttl h2 {
        font-size: 26px;
    
    }
    
    .p-result .p-result__ttl h2 span {
        font-size: 30px;
    }
    
    .p-result .p-result__ttl .p-result__lead {
        font-size: 16px;
    }
    
    .p-result .p-result__ttl .p-result__lead p span {
        color: #003288;
        font-size: 16px;
        font-weight: 800;
    }
    
    .p-result .p-result__checkttl {
        height: auto;
        padding: 16px 30px;
    }
    
    .p-result .p-result__checkttl h3 {
        font-size: 21px;
    }
    
    .p-result .p-result__checkttl p {
        width: 30px;
    }
    
    .p-result .p-result__checkttl p img {
        width: 100%;
    }

}



.p-result .p-graph {
    padding-bottom: 100px;
}

.p-result .p-graph .p-graph__ttl {
    text-align: center;
    margin-bottom: 24px;
}

.p-result .p-graph .p-graph__ttl h2 {
    font-size: 32px;
    font-weight: 700;
    color: #003288;
}

.p-result .p-graph .p-graph__img img {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .p-result .p-graph {
        padding-bottom: 70px;
    }

    .p-result .p-graph .p-graph__ttl {
        margin-bottom: 24px;
    }
    
    .p-result .p-graph .p-graph__ttl h2 {
        font-size: 22px;
    }
}

.p-result .p-different__col2 {
    margin-top: 50px;
    display: flex;
    gap: 80px;
    margin-left: -80px;
}

.p-result .p-different__col2 .p-different__img {
    flex: 0 0 640px;
}

.p-result .p-different__col2 img {
    width: 100%;
}

.p-result .p-different__col2 .p-different__country {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.p-result .p-different__col2 .p-different__country h4 {
    font-size: 32px;
    font-weight: 800;
}

.p-result .p-different__col2 .p-different__country p {
    max-width: 76px;
}

.p-result .p-different__col2 table thead tr th {
    background-color: #003288;
    border: 1px solid #003288;
    color: #fff;
    padding: 10px;
    width: 100%;
    font-weight: 600;
}

.p-result .p-different__col2 table tbody {
    border-top: 1px solid #707070;
    border-right: 1px solid #707070;
}

.p-result .p-different__col2 table tbody tr th,
.p-result .p-different__col2 table tbody tr td {
    padding: 20px;
    border-bottom: 1px solid #707070;
    border-left: 1px solid #707070;
    vertical-align: middle;
}

.p-result .p-different__col2 table tbody tr th {
    width: 24%;
    font-size: 18px;
    font-weight: 600;
    color: #003288;
    background-color: #EBEBEB;
}

.p-result .p-different__graph {
    margin-top: 80px;
}

.p-result .p-different__graph h4 {
    width: 100%;
    text-align: center;
    background-color: #C19445;
    color: #fff;
    padding: 5px 0;
    font-size: 20px;
    font-weight: 600;
}

.p-result .p-different__graph .p-different__graph__img {
    border: 1px solid #C19445;
    border-radius: 0 0 10px 10px;
    overflow: hidden; 
}

.p-result .p-different__graph .p-different__graph__img img {
    width: 100%;
}

.p-result .p-result__table table {
    width: 100%;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}

.p-result .p-result__table table th,
.p-result .p-result__table table td {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    vertical-align: middle;
}

.p-result .p-result__table table thead th {
    background-color: #4CAAAC;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 5px 0;
}

.p-result .p-result__table table tbody th ,
.p-result .p-result__table table tbody td {
    padding: 10px;
}

.p-result .p-result__table table tbody th {
    font-weight: 700;
    text-align: center;
}

.p-result .p-result__table table tbody tr:nth-child(even) {
    background-color: #E1F0EE;
}

.p-result .p-result__table table tbody tr td:nth-child(3),
.p-result .p-result__table table tbody tr td:last-child {
    text-align: center;
}


.p-result .p-point .p-point__contents {
    background-color: #F4F4F4;
    padding: 48px;
    font-weight: 600;
}

.p-result .p-point .p-point__contents span {
    color: #003288;
    font-size: 24px;
    font-weight: 800;
}

@media screen and (max-width: 768px) {

    .p-result .p-different__col2 {
        margin: 0;
        display: block;
    }
    
    .p-result .p-different__col2 .p-different__img {
        flex: auto;
        margin: 0 -20px 40px -20px;
    }

    .p-result .p-different__col2 .p-different__country h4 {
        font-size: 24px;
    }

    .p-result .p-different__col2 .p-different__country p {
        max-width: 48px;
    }

    .p-result .p-different__col2 p {
        font-size: 14px;
    }

    .p-result .p-different__col2 table thead tr th {
        padding: 5px;
    }

    .p-result .p-different__col2 table tbody {
        border-top: 1px solid #707070;
        border-right: 1px solid #707070;
    }

    .p-result .p-different__col2 table tbody tr {
        display: flex;
        flex-direction: column;
    }

    .p-result .p-result__table table th,
    .p-result .p-result__table table td {
        font-size: 12px;
    }

    .p-result .p-different__col2 table tbody tr th {
        width: 100%;
        font-size: 16px;
        padding: 5px;
    }

    .p-result .p-different__col2 table tbody tr td {
        font-size: 14px;
    }

    .p-result .p-different__graph {
        margin-top: 40px;
    }

    .p-result .p-different__graph h4 {
        font-size: 16px;
    }

    .p-result .p-different__graph .p-different__graph__img {
        border-radius: 0 0 4px 4px;
    }

    .p-result .p-result__table .p-result__table__item {
        overflow-x: scroll;
        margin: 0 -20px 0 0;
        padding-right: 20px;
    }

    .p-result .p-result__table table {
        width: 850px;
    }

    .p-result .p-point {
        margin-top: 80px !important;
    }

    .p-result .p-point .p-point__contents {
        padding: 20px;
    }

    .p-result .p-point .p-point__contents p {
        font-size: 16px;
    }

    .p-result .p-point .p-point__contents span {
        color: #003288;
        font-size: 16px;
        font-weight: 800;
    }

}


.p-philosophy {
    padding-bottom: 150px;
    position: relative;
}

.p-philosophy__bg {
    position: absolute;
    top: -25%;
    width: 100%;
}

.p-philosophy__bg::after {
    content: '';
    width: 100%;
    height: 3000px;
    position: absolute;
    background-image: url(/fund/feature/wcm/image/bg_sand_philosophy.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}

.p-philosophy .p-philosophy__inner {
    max-width: 1080px;
    margin: auto;
    padding: 120px 0 100px;
}

.p-philosophy .p-philosophy__inner .p-philosophy__ttl {
    color: #244384;
    text-align: center;
    font-weight: 700;
}

.p-philosophy .p-philosophy__inner .p-philosophy__ttl h2 {
    font-size: 52px;
}

.p-philosophy .p-philosophy__inner img {
    width: 100%;
}

.p-philosophy .p-philosophy__inner .p-philosophy__img {
    margin: 60px 0;
}

@media screen and (max-width: 768px) {
    .p-philosophy {
        padding-bottom: 100px;
    }
    
    .p-philosophy .p-philosophy__inner {
        max-width: 1080px;
        margin: auto;
        padding: 20px 20px 40px;
    }
    
    .p-philosophy .p-philosophy__inner .p-philosophy__ttl h2 {
        font-size: 32px;
    }
    
    .p-philosophy .p-philosophy__inner img {
        width: 100%;
    }
    
    .p-philosophy .p-philosophy__inner .p-philosophy__img {
        margin: 30px 0;
    }

    .p-philosophy__bg {
        position: absolute;
        top: -5%;
        width: 100%;
    }
    
    .p-philosophy__bg::after {
        content: '';
        width: 100%;
        height: 250vh;
        position: absolute;
        background-image: url(/fund/feature/wcm/image/bg_sand_sp.png);
        background-size: cover;
        background-position: top center;
        z-index: -1;
    }
}


.p-philosophy .p-philosophy__contents {
    border-radius: 48px;
    background-color: #fff;
    max-width: 1360px;
    margin: auto;
    padding: 80px;
}

.p-philosophy .p-philosophy__contents > div + div {
    margin-top: 120px;
}

.p-philosophy .p-philosophy__sttl {
    position: relative;
    margin-bottom: 64px;
    text-align: center;
}

.p-philosophy .p-philosophy__sttl h3 {
    background-color: #fff;
    color: #003288;
    font-weight: 700;
    font-size: 26px;
    border: 2px solid #003288;
    padding: 10px 35px 10px 30px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.p-philosophy .p-philosophy__sttl h3 span {
    height: 37px;
    display: inline-block;
    vertical-align: middle;
}

.p-philosophy .p-philosophy__sttl::after {
    content: '';
    height: 4px;
    width: 100%;
    background-color: #003288;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

@media screen and (max-width: 768px) {

    .p-philosophy .p-philosophy__contents {
        border-radius: 24px;
        padding: 45px 20px;
    }

    .p-philosophy .p-philosophy__contents > div + div {
        margin-top: 80px;
    }

    .p-philosophy .p-philosophy__sttl {
        margin-bottom: 24px;
    }

    .p-philosophy .p-philosophy__sttl h3 {
        font-size: 14px;
        padding: 10px 22px;
        vertical-align: middle;
    }

    .p-philosophy .p-philosophy__sttl h3 span {
        display: inline-block;
        vertical-align: middle;
        max-width: 21px;
        height: 21px;
    }

    .p-philosophy .p-philosophy__sttl img {
        width: 100%;
    }
}


.p-philosophy .p-movie .p-movie__col {
    display: flex;
    gap: 40px;

}

.p-philosophy .p-movie .p-movie__col .p-movie__item {
	float: none;
	width: 33.333333%;
    position: relative;
}

.p-philosophy .p-movie .p-movie__col .p-movie__item a {
	display: block;
	line-height: 1;
}

.p-philosophy .p-movie .p-movie__col .p-movie__item > a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	overflow: hidden;
}
.p-philosophy .p-movie .p-movie__col .p-movie__item > img{
	max-width: 100%;
	height: auto;
}
.p-philosophy .p-movie .p-movie__col .p-movie__item a img{
	width: 100%;
	height: auto;
}

.p-philosophy .p-movie .p-movie__col img ,
.p-philosophy .p-movie .p-movie__col a {
    width: 100%;
}

.p-philosophy .p-movie .video {
    border-radius: 16px;
    line-height: 0;
    overflow: hidden;}

.p-philosophy .p-movie .p-movie__prayer iframe {
    max-width: 100%;
}

.p-philosophy .p-movie .p-movie__youtube .video {
	position: relative;
	padding-bottom: 59.25%;
	height: 0;
    overflow: hidden;
}
.p-philosophy .p-movie .p-movie__youtube iframe {
	position: absolute;
	top: 0;
	left: 0;
    width: 100% !important;
    height: 100%;
}

.p-philosophy .p-movie .p-movie__col .p-movie__caption {
    margin-top: 12px;
    position: relative;
    padding-left: 2.5em;
    font-weight: 600;
    font-size: 18px;
}
.p-philosophy .p-movie .p-movie__col .p-movie__caption::before {
    content: '';
    position: absolute;
    left: 0;
    width: 32px;
    height: 32px;
    background-image: url(/fund/feature/wcm/image/icn_movie_bl.svg);
    background-size: cover;
}  


@media screen and (max-width: 768px) {
    .p-philosophy .p-movie .p-movie__col {
        flex-direction: column;
        gap: 20px;
    
    }
    
    .p-philosophy .p-movie .p-movie__col .p-movie__item {
        width: 100%;
    }

    .p-philosophy .p-movie .p-movie__youtube .video {
        border-radius: 14px;
    }

    .p-philosophy .p-movie .p-movie__col .p-movie__caption {
        font-size: 16px;
    }
}



.p-philosophy .p-money__link {
    padding: 70px 0;
    text-align: center;
    background-image: url(/fund/feature/wcm/image/bg_sand_fadeout.png);
    background-size: cover;
    background-position: top;
}

.p-philosophy .lead {
    font-size: 26px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
}

@media screen and (max-width: 768px) {

    .p-philosophy .p-money__link {
        padding: 40px 20px;
    }
    
    .p-philosophy .lead {
        font-size: 20px;
        margin-bottom: 24px;
    }

}

.p-philosophy .p-company .p-philosophy__sttl {
    margin-bottom: 48px;
}

.p-philosophy .p-company .p-company__col2 {
    display: flex;
    gap: 40px;
    margin-top: 80px;
}

.p-philosophy .p-company .p-company__item {
    width: 50%;
}

.p-philosophy .p-company .p-company__item .p-company__ttl {
    color: #fff;
    text-align: center;
    position: relative;
    border-radius: 15px 15px 0 0;
    padding: 80px 0 25px;
    font-weight: 700;
}

.p-philosophy .p-company .p-company__item .p-company__ttl h4 {
    font-size: 24px;
}

.p-philosophy .p-company .p-company__item .p-company__ttl .icn {
    position: absolute;
    width: 120px;
    height: 120px;
    top: -60px;
    left: 0;
    right: 0;
    margin: auto;
}

.p-philosophy .p-company .p-company__item .p-company__ttl .icn img {
    width: 100%;
}

.p-philosophy .p-company .p-company__item .p-company__link {
    padding: 32px 20px;
}

.p-philosophy .p-company .p-company__item .p-company__link p {
    text-align: center;
}

.p-philosophy .p-company .p-company__item .p-company__link .c-btn {
    margin-top: 15px;
}

.p-philosophy .p-company .p-company__item.bg-green .p-company__ttl {
    background-color: #17A38E;
}

.p-philosophy .p-company .p-company__item.bg-green .p-company__link {
    background-color: #D8F2EE;
}
.p-philosophy .p-company .p-company__item.bg-yellow .p-company__ttl {
    background-color: #B99352;
}

.p-philosophy .p-company .p-company__item.bg-yellow .p-company__link {
    background-color: #FDF0D6;
}

.p-philosophy .c-accordion .c-accordion__contents {
    background-color: #F5F5F5;
    box-shadow: none;
}

.p-philosophy .c-accordion .c-accordion__contents table tr span {
    font-size: 15px;
    line-height: 1;
}

.p-philosophy .c-accordion .c-accordion__contents table tr + tr td,
.p-philosophy .c-accordion .c-accordion__contents table tr + tr th {
    padding-top: 10px;
}

@media screen and (max-width: 768px) {

    .p-philosophy .p-company .p-philosophy__sttl {
        margin-bottom: 24px;
    }

    .p-philosophy .p-company .p-company__col2 {
        display: block;
    }

    .p-philosophy .p-company .p-company__item {
        width: 100%;
    }

    .p-philosophy .p-company .p-company__item + .p-company__item {
        margin-top: 80px;
    }

    .p-philosophy .p-company .p-company__item .p-company__ttl {
        border-radius: 13px 13px 0 0;
        padding: 60px 0 20px;
    }

    .p-philosophy .p-company .p-company__item .p-company__ttl h4 {
        font-size: 24px;
        line-height: 1.4;
    }

    .p-philosophy .p-company .p-company__item .p-company__ttl .icn {
        width: 90px;
        height: 90px;
        top: -45px;
    }

    .p-philosophy .c-accordion {
        margin: 32px -20px 0;
    }

    .p-philosophy .p-company .p-company__item .p-company__link {
        padding: 20px;
    }

    .p-philosophy .c-accordion .c-accordion__contents table tr {
        display: flex;
        width: 100%;
        flex-direction: column;
    }

    .p-philosophy .c-accordion .c-accordion__contents table tr span {
        font-size: 12px;
    }

    .p-philosophy .c-accordion .c-accordion__contents table tr + tr td {
        padding-top: 0;
    }
}


.p-disclaimer {
    background-color: #F5F5F5;
}

.p-disclaimer .p-disclaimer__inner {
    max-width: 1200px;
    margin: auto;
    padding: 56px 0;
}

.p-disclaimer .p-disclaimer__accordion + .p-disclaimer__accordion {
    margin-top: 32px;
}

.p-disclaimer .p-disclaimer__ttl {
    border: 2px solid #003288;
    background: #fff;
    padding: 12px 50px 12px 20px;
}

.p-disclaimer .p-disclaimer__ttl h2 {
    color: #244384;
}

.p-disclaimer .p-disclaimer__ttl .p-disclaimer__btn {
    position: absolute;
    top: -2px;
    right: -2px;
    background: linear-gradient(135deg, #0044B9 0%, #00348D 50%, #006AAC 100%);
}

.p-disclaimer .p-disclaimer__contents {
    background-color: #FAFAFA;
    padding: 46px;
    box-shadow: none;
}

.p-disclaimer .p-disclaimer__contents p {
    line-height: 1.82;
}

.p-disclaimer .p-disclaimer__contents p + p {
    margin-top: 0.8em;
}


.p-disclaimer .p-disclaimer__contents table {
    width: 100%;
    border-top: 2px solid #F5F5F5;
    border-left: 2px solid #F5F5F5;
}

.p-disclaimer .p-disclaimer__contents table th,
.p-disclaimer .p-disclaimer__contents table td {
    border-bottom: 2px solid #F5F5F5;
    border-right: 2px solid #F5F5F5;
    vertical-align: middle;
}

.p-disclaimer .p-disclaimer__contents table tbody {
    display: flex;
}

.p-disclaimer .p-disclaimer__contents table tbody tr {
    display: flex;
    flex-direction: column;
    flex: 0 0 25%;
}

.p-disclaimer .p-disclaimer__contents table tbody th {
    background-color: #4CAAAC;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 5px 0;
}

.p-disclaimer .p-disclaimer__contents table tbody td {
    padding: 10px;
    background-color: #fff;
}

.p-disclaimer .p-disclaimer__contents .p-disclaimer__col2 .c-list {
    display: flex;
    flex-wrap: wrap;
}

.p-disclaimer .p-disclaimer__contents .p-disclaimer__col2 .c-list li {
    width: 50%;
}

.p-disclaimer .p-disclaimer__contents .p-disclaimer__col2 .c-list li + li {
    margin: 0;
}

.p-disclaimer .p-disclaimer__contents .p-disclaimer__col2 .c-list li:nth-child(n + 3) {
    margin-top: 10px;
}

.p-disclaimer .p-disclaimer__bnr {
    max-width: 158px;
}

.p-disclaimer .p-disclaimer__bnr a {
    transition: 0.5s;
}

.p-disclaimer .p-disclaimer__bnr a:hover {
    opacity: 0.7;
    transition: 0.5s;
}

@media screen and (max-width: 768px) {
    .p-disclaimer .c-accordion {
        margin-top: 0;
    }
    
    .p-disclaimer .p-disclaimer__inner {
        padding: 32px 20px;
    }
    
    .p-disclaimer .p-disclaimer__accordion + .p-disclaimer__accordion {
        margin-top: 40px;
    }
    
    .p-disclaimer .p-disclaimer__contents {
        padding: 20px;
    }

    .p-disclaimer .p-disclaimer__contents table tbody {
        display: flex;
        flex-direction: column;
    }
    
    .p-disclaimer .p-disclaimer__contents table tbody tr {
        
    }
    .p-disclaimer .p-disclaimer__ttl .p-disclaimer__btn {
        top: 0;
        right: 0;
    }
    .p-disclaimer .p-disclaimer__contents .p-disclaimer__col2 .c-list {
        flex-direction: column;
    }
    
    .p-disclaimer .p-disclaimer__contents .p-disclaimer__col2 .c-list li {
        width: 100%;
    }

    .p-disclaimer .p-disclaimer__contents .p-disclaimer__col2 .c-list li + li {
        margin-top: 10px;
    }

}



.p-disclaimer .p-disclaimer__sttl {
    position: relative;
    margin-bottom: 64px;
    text-align: center;
}

.p-disclaimer .p-disclaimer__sttl h3 {
    background-color: #fff;
    color: #003288;
    font-weight: 700;
    font-size: 26px;
    border: 2px solid #003288;
    padding: 10px 35px 10px 30px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.p-disclaimer .p-disclaimer__sttl h3 span {
    height: 37px;
    display: inline-block;
    vertical-align: middle;
}

.p-disclaimer .p-disclaimer__sttl::after {
    content: '';
    height: 4px;
    width: 100%;
    background-color: #003288;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

@media screen and (max-width: 768px) {

    .p-disclaimer .p-disclaimer__sttl {
        margin-bottom: 24px;
    }

    .p-disclaimer .p-disclaimer__sttl h3 {
        font-size: 14px;
        padding: 10px 22px;
        vertical-align: middle;
    }

    .p-disclaimer .p-disclaimer__sttl h3 span {
        display: inline-block;
        vertical-align: middle;
        max-width: 21px;
        height: 21px;
    }

    .p-disclaimer .p-disclaimer__sttl img {
        width: 100%;
    }
}

.ft-section{        
    max-width: 3000px;
    margin: auto;
    background-color: #ffffff;
		padding-bottom:60px;
		
}

.ft-att{
    max-width: 1200px;
		margin:auto;
}


@media screen and (max-width: 768px) {
.ft-att{
    padding-left: 20px;
    padding-right: 20px;
}
}
