@charset "UTF-8";

.index_section {
    position:relative;
    z-index:3;
}

#index_line {
    height:32px;
    background-color:#0425a9;
    z-index:3;
}

#index_image_wrap {
    background-color:rgb(157, 196, 247);
    background-image:url( images/blue2.jpg );
    background-size:cover;
    background-position:center center;
    background-attachment:fixed;
    position:relative;
    z-index:1;
    overflow:hidden;
}

#index_image_wrap::before {
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100%;
    height:calc( 100svh - 32px );
    background-color:rgb(157, 196, 247);
    background-image:url( images/blue2.jpg );
    background-size:cover;
    background-position:center center;
    background-repeat: no-repeat;
    content:"";
}

#index_image {
    display:flex;
    align-items:center;
    width:100%;
    max-width:1200px;
    height:calc( 100svh - 32px );
    min-height:500px;
    margin:auto;
}

#index_image > div:first-of-type {
    padding-right:10px;
    width:35%;
    text-align:left;
    z-index:2;
    padding-left:20px;
}

#index_image > div:first-of-type > p:first-of-type {
    font-size:32px;
    line-height:1.3em;
    color:#fff;
	font-family:'M PLUS 1p';
	font-weight:800;    
    white-space:nowrap;
}

#index_image > div:first-of-type > p:nth-of-type(2) {
    font-size:78px;
    line-height:1.5em;
    color:#fff;
	font-family:'M PLUS 1p';
	font-weight:900;    
    white-space:nowrap;
}

#index_image > div:first-of-type ul {
    list-style-type:none;
    margin-top:50px;
}

#index_image > div:first-of-type ul li {
    padding-top:8px;
    font-size:30px;
    line-height:1.4em;
    color:#fff;
	font-family:'M PLUS 1p';
	font-weight:800;
    white-space:nowrap;
}

#index_image > div:last-of-type {
    position:relative;
    width:65%;
    height:100%;
    z-index:1;
}

#index_image > div:last-of-type img {
    width:100%;
    max-width:800px;
    position:absolute;
    bottom:-10%;
    right:-80px;
}

#index_message_wrap {
    background-image:url( images/back.jpg );
    background-position:center center;
    background-size:cover;
    background-attachment:fixed;
    min-height:100svh;
    padding:80px 16px;
    position:relative;
    clip-path:polygon(00% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index:1;
}

#index_message_wrap::before {
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100%;
    height:100%;
    background-image:url( images/back.jpg );
    background-size:cover;
    background-position:center center;
    content:"";
}

#index_message {
    width:100%;
    max-width:1024px;
    padding-right:200px;
    margin:auto;
}

.index_h2 {
    text-align:center;
}

#index_message h2 {
    font-size:30px;
    line-height:1.6em;
	font-family:'M PLUS 1p';
	font-weight:700;
	letter-spacing:1px;
    color:#fff;
    display:inline-block;
    padding-bottom:4px;
    border-bottom:2px solid #fff;
    text-shadow:0 0 8px rgba( 0, 0, 0, 0.5 );
}

#index_message h2+p {
    padding-top:8px;
    font-size:22px;
    line-height:1.6em;
	letter-spacing:1px;
    color:#fff;
    line-height:1.6em;
	font-family:'M PLUS 1p';
	font-weight:600;
    text-align:center;
    margin-bottom:30px;
    text-shadow:0 0 8px rgba( 0, 0, 0, 0.5 );
}

#index_message > div {
    font-size:17px;
    line-height:1.8em;
    padding-top:30px;
    color:#fff;
    text-shadow:0 0 8px rgba( 0, 0, 0, 0.5 );
}

#index_message > div > p {
    padding-bottom:20px;
    line-height:1.8em;
    font-weight:bold;
}

#index_policy {
    padding:80px 16px 100px 16px;
    max-width:1024px;
    margin:auto;
}

#index_policy h2, #index_profile h2, #index_report h2, #index_form h2 {
    text-align:center;
    font-size:30px;
    line-height:1.6em;
	font-family:'M PLUS 1p';
	font-weight:700;
	letter-spacing:1px;
    display:inline;
    margin:auto;
    padding-bottom:4px;
    border-bottom:2px solid #000;
}

#index_policy h2+p, #index_profile h2+p, #index_report h2+p, #index_form h2+p {
    padding-top:8px;
    font-size:22px;
    line-height:1.6em;
	letter-spacing:1px;
    line-height:1.6em;
	font-family:'M PLUS 1p';
	font-weight:600;
    text-align:center;
    margin-bottom:30px;
}

#index_policy > ol {
    counter-reset: num 0;
}

#index_policy > ol > li {
    counter-increment: num 1;
    list-style-type:none;
}

#index_policy > ol > li:before {
    content: counter(num, decimal-leading-zero);
    color:#0425a9;
	font-family:'Outfit';
	font-weight:600;
    font-size:100px;
    line-height:1.1em;
    letter-spacing:2px;
}

#index_policy > ol > li > div:first-of-type {
    display:flex;
    align-items:flex-start;
}

#index_policy > ol > li > div:first-of-type > div:first-of-type {
    width:230px;
    color:#0425a9;
	font-family:'M PLUS 1p';
	font-weight:700;
    font-size:26px;
    line-height:1.2em;
}

#index_policy > ol > li > div:first-of-type > div:last-of-type {
    width:calc( 100% - 230px );
    padding-left:32px;
    font-size:14px;
    line-height:1.6em;
}

#index_policy > ol > li > div:last-of-type {
    padding-top:20px;
}

#index_policy > ol > li > div:last-of-type > ul {
    display:flex;
    flex-wrap:wrap;
}

#index_policy > ol > li > div:last-of-type > ul > li {
    width:calc( 100% / 3 );
    list-style-type:none;
}
#index_policy > ol > li > div:last-of-type > ul > li:nth-of-type( n+4 ) {
    padding-top:30px;
}
#index_policy > ol > li > div:last-of-type > ul > li img {
    width:100%;
    object-fit:cover;
    aspect-ratio: 3 / 2;
}
#index_policy > ol > li > div:last-of-type > ul > li h4 {
    font-size:18px;
    font-weight:bold;
    line-height:1.2em;
    padding-right:12px;
}
#index_policy > ol > li > div:last-of-type > ul > li p {
    padding-top:8px;
    font-size:12px;
    line-height:1.5em;
}

#index_policy > ol > li:nth-of-type( n+2 ) {
    padding-top:50px;
}

#index_policy_wrap {
    position: relative;
    overflow: hidden;
    background-color:#fff;
}

#index_policy_wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 4vw solid #eaeaf9;
  border-left: 100vw solid transparent;
}

#index_profile_wrap { 
    padding-top:20px;
    padding-bottom: calc(2vw + 10px);  
    position: relative;
    overflow: hidden;
    background-color:#eaeaf9;
}

#index_profile_wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 5vw solid #fff;  /* 三角を白にする */ 
  border-left: 100vw solid transparent;
}

#index_profile {
    padding:40px 16px 60px 16px;
    max-width:1024px;
    margin:auto;
}

#index_profile > div:nth-of-type(2) {
    display:flex;
    align-items:flex-end;
}

#index_profile > div:nth-of-type(2) > div:last-of-type {
    width:65%;
    padding-left:40px;
    padding-right:8px;
}

#index_profile dl {
    display:flex;
    flex-wrap:wrap;
}
#index_profile dl > dt:first-of-type {
    width:100%;
    font-size:24px;
    line-height:1.6em;
    font-weight:bold;
    padding-bottom:20px;
}

#index_profile dl > dt:first-of-type > span {
    font-size:16px;
}

#index_profile dl > dt {
    width:30%;
    padding-right:12px;
    font-size:16px;
    font-weight:bold;
    line-height:1.6em;
    padding:12px 12px 12px 0;
}

#index_profile dl > dt:nth-of-type( n+3 ), #index_profile dl > dd:nth-of-type( n+2 ) {
    border-top:1px solid #d3c9fd;
}

#index_profile dl > dd {
    width:70%;
    font-size:16px;
    line-height:1.6em;
    padding:12px 0 12px 0;
}

#index_profile dl+div {
    font-size:16px;
    line-height:1.7em;
    margin-top:20px;
}

#index_profile dl+div > p {
    padding:8px 0;
}

#index_profile dl+div > p:nth-of-type( n+2 ) {
    border-top:1px solid #d3c9fd;
}

#index_profile > div:nth-of-type(2) > div:first-of-type {
    width:35%;
}

#index_report_wrap { 
    position: relative;
    overflow: hidden;
    background-color:#fff;
}

#index_report {
    padding:40px 16px 60px 16px;
    max-width:1024px;
    margin:auto;
    background-color:#fff;
}
#index_report > ul {
    display:flex;
    flex-wrap:wrap;
}
#index_report > ul > li {
    width:calc( 100% / 3 );
    list-style-type:none;
}

#index_report > ul > li:nth-of-type( 3n+1 ) {
    padding-right:12px;
}

#index_report > ul > li:nth-of-type( 3n+2 ) {
    padding-left:6px;
    padding-right:6px;
}

#index_report > ul > li:nth-of-type( 3n+3 ) {
    padding-left:12px;
}

#index_report > ul > li:nth-of-type( n+4 ) {
    padding-top:30px;
}

#index_report > ul > li img {
    width:100%;
    aspect-ratio: 5 / 3;
    object-fit:cover;
}

#index_report > ul > li h3 {
    font-size:16px;
    line-height:1.4em;
    font-weight:bold;
    margin-top:6px;
}

#index_report > ul > li p.index_report_title {
    margin-top:6px;
}

#index_report > ul > li div.index_report_date {
    font-size:12px;
    text-align:right;
    margin-top:12px;
    position:relative;
}

#index_report div.index_report_date > div.index_report_tag {
    position:absolute;
    left:-20px;
    bottom:0;
    text-align:left;
}

div.index_report_date > div.index_report_tag > a {
    padding:3px 8px;
    display:inline-block;
    font-size:12px;
    line-height:1.2em;
}

div.index_report_date > div.index_report_tag > a:nth-of-type(n+2) {
    margin-left:4px;
}

div.index_report_date > div.index_report_tag > a:link, div.index_report_date > div.index_report_tag > a:visited {
    color:#fff;
}

div.index_report_date > div.index_report_tag > a:active, div.index_report_date > div.index_report_tag > a:hover {
    color:#ed4f44;
}

#index_report > div:first-of-type {
    margin-top:30px;
}

#index_report_more a {
    margin-top:40px;
}

#index_form_wrap { 
    padding-top: calc(4vw + 10px);  
    padding-bottom:30px;
    position: relative;
    overflow: hidden;
    background-color:#f4f4f4;
}

#index_form_wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index:50;
  border-top: 3vw solid #fff;  /* 三角を白にする */ 
  border-left: 100vw solid transparent;
}

#index_form { 
    padding:30px 16px;
    max-width:800px;
    margin:auto;
}

#index_form > div, #index_send_form .checkbox_area span {
    font-size:15px;
    line-height:1.7em;
}

#index_send_form {
    font-size:15px;
    line-height:1.6em;
    margin-top:32px;
}

#index_send_form dl {
    display:flex;
    flex-wrap:wrap;
}

#index_send_form dt {
    font-weight:bold;
    width:220px;
    padding-bottom:22px;
    padding-top:10px;
    position:relative;
}

#index_send_form dd {
    width:calc( 100% - 220px );
    padding-bottom:22px;
    padding-left:16px;
}

#index_send_select span {
    font-size:15px;
    line-height:25px;
}

.index_hissu:after {
    content: '必須';
    padding:0 12px;
    background-color:#f00;
    color:#fff;
    border-radius:4px;
    position:absolute;
    right:4px;
    top:8px;
    line-height:24px;
}

#index_send_form dd p {
    font-size:12px;
    line-height:1.5em;
    padding-top:4px;
}

#index_send_form > div {
    text-align:center;
    margin-top:20px;
}

#index_send_form > div:first-of-type a:link, #index_send_form > div:first-of-type a:visited {
    color:#0425a9;
}

#index_send_form > div:first-of-type a:active, #index_send_form > div:first-of-type a:hover {
    color:#ed4f44;
}

@media screen and (max-width:1200px) {
    #index_image {
        overflow:hidden;
    }
}

@media screen and (max-width:1024px) {
    #index_image > div:first-of-type {
        width:23%;
        margin-top:-60px;
    }

    #index_image > div:first-of-type > p:first-of-type {
        font-size:26px;
        line-height:1.3em;
    }
    #index_image > div:first-of-type > p:nth-of-type(2) {
        font-size:50px;
        line-height:1.5em;
    }
    #index_image > div:first-of-type ul li {
        font-size:25px;
        line-height:1.4em;
    }
    #index_image > div:last-of-type {
        width:77%;
    }
    #index_message h2 {
        text-shadow:0 0 3px #000, 0 0 3px #000;
    }
    #index_message h2+p {
        text-shadow:0 0 3px #000, 0 0 3px #000;
    }
    #index_message > div {
        text-shadow:0 0 3px #000, 0 0 3px #000;
    }
#index_policy > ol > li > div:first-of-type > div:first-of-type {
    width:230px;
    color:#0425a9;
	font-family:'M PLUS 1p';
	font-weight:700;
    font-size:26px;
    line-height:1.2em;
}

#index_policy > ol > li > div:first-of-type > div:last-of-type {
    width:calc( 100% - 230px );
    padding-left:32px;
    font-size:14px;
    line-height:1.6em;
}

}

@media screen and (max-width:800px) {
    #index_image {
        display:block;
        height:auto;
    }
    #index_image > div:first-of-type {
        margin-top:148px;
        width:100%;
        text-align:center;
        padding-right:20px;
    }
    #index_image > div:first-of-type ul {
        margin-top:10px;
    }
    #index_image > div:first-of-type ul li {
        font-size:22px;
    }
    #index_image > div:last-of-type {
        width:100%;
    }
    #index_image > div:last-of-type img{
        margin-top:12px;
        position:relative;
    }
    #index_message {
        padding-right:0;
    }
    #index_policy > ol > li > div:first-of-type {
        display:block;
    }
    #index_policy > ol > li > div:first-of-type > div:first-of-type {
        width:100%;
    }
    #index_policy > ol > li > div:first-of-type > div:last-of-type {
        width:100%;
        padding:16px 0 0 0;
    }
    #index_policy > ol > li > div:last-of-type > ul > li {
        width:calc( 100% / 2 );
    }
    #index_policy > ol > li > div:last-of-type > ul > li:nth-of-type( 2n+3 ) {
        padding-top:30px;
    }
    #index_profile > div:nth-of-type(2) {
        display:block;
    }
    #index_profile > div:nth-of-type(2) > div:first-of-type {
        width:100%;
        padding:0 0 0 0;
        text-align:center;
    }
    #index_profile > div:nth-of-type(2) > div:first-of-type img {
        width:170px;
    }
    #index_profile > div:nth-of-type(2) > div:last-of-type {
        width:100%;
        padding:0 0 0 0;
    }
    #index_report > ul > li {
        width:calc( 100% / 2 );
    }
    #index_report > ul > li:nth-of-type( 3n+1 ) {
        padding-right:0;
    }

    #index_report > ul > li:nth-of-type( 3n+2 ) {
        padding-left:0;
        padding-right:0;
    }

    #index_report > ul > li:nth-of-type( 3n+3 ) {
        padding-left:0;
    }

    #index_report > ul > li:nth-of-type( n+3 ) {
        padding-top:30px;
    }
    #index_report > ul > li:nth-of-type( 2n+1 ) {
        padding-right:8px;
    }
    #index_report > ul > li:nth-of-type( 2n+2 ) {
        padding-left:8px;
    }
    #index_send_form dt{
        width:100%;
        padding-bottom:8px;
    }
    #index_send_form dd {
        width:100%;
        padding-left:0;
    }
    .index_hissu:after {
        right:auto;
        left:8em;
    }
}
