@charset "UTF-8";
/* CSS Document */

/*-----------------------------------------------------
gloval
-------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,700,900&display=swap&subset=japanese');

/* selected text */
::selection {
	background: #EBEAE8; /* Safari */
}
::-moz-selection {
	background: #EBEAE8; /* Firefox */
}

*::after,
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* text link */
a:link {
	color: #0050a2;
	text-decoration: none;
}
a:visited {
	color: #0050a2;
	text-decoration: none;
}
a:hover {
	color: #999999;
	text-decoration: none;
}
a:active {
	color: #999999;
	text-decoration: none;
}

/* clearfix */
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

/* alphaover */
.alphaOver a:hover img{
	opacity:0.5;
	filter:alpha(opacity=50);
	-ms-filter:"alpha( opacity=50 )";
}

/*　inview */
.inview-point {
	position: relative;
	transition: 1.4s;
}

.list-mv-u{
	opacity: 0;
	transform: translate(0,-60px);
	-webkit-transform: translate(0,-60px);
}
.list-mv-sl{
	opacity: 0;
	transform: translate(-80px,0);
	-webkit-transform: translate(-80px,0);
}
.list-mv-sr{
	opacity: 0;
    overflow: hidden;
	transform: translate(80px,0);
	-webkit-transform: translate(80px,0);
}
.mv{
	opacity: 1.0;
	transform: translate(0,0);
	-webkit-transform: translate(0,0);
}



/*
html, body
====================================================== */
html {
	font-size: 62.5%;
}
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 1.6rem;
	-webkit-text-size-adjust: 100%;
	letter-spacing:0.04em;
	color:#333;
	background-color: #FFF;
}

/*
header
====================================================== */
header {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 80px;
    background-color: #FFF;
}
@media (max-width: 767px) {
    header {
        height: 60px;
    }
}
/* logo
----------------------------------*/
header div.header-logo{
    position: relative;
}
header h1{
    position: absolute;
    top: 20px;
    left: 40px;
}
header h1 img{
    width: 110px;
}

@media (max-width : 1024px){
}
@media (max-width: 767px) {
    header h1{
        top: 14px;
        left: 16px;
        width: 100px;
        padding: 0 0 0 0;
    }
    header h1 img{
        width: 100%;
    }
}


/* trigger
----------------------------------*/
.menu-trigger {
    display: inline-block;
    width: 30px;/* アイコンボタンの横幅 */
    height: 22px;/* アイコンボタンの縦幅 */
    cursor: pointer;/* マウスカーソルをリンクポインタに指定 */
    /* アイコンボタンの位置 */
    position: fixed;
    top: 20px;
    right: 16px;
    z-index: 1000;
}
.menu-trigger span {
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;/* アイコン横線の太さ */
    background-color: #0050a2;/* アイコンカラー */
    transition: all .5s;/* アイコンアニメーションの速さ */
}
.menu-trigger.active span {
    background-color: #fff;/* メニュー展開後のアイコンカラー */
    height: 2px;
}
.menu-trigger span:nth-of-type(1) {
    top: 0;
}
.menu-trigger.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
    top: 10px;
}
.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
    width: 60%;
    bottom: 0;
}
.menu-trigger.active span:nth-of-type(3) {
    width: 100%;
    transform: translateY(-10px) rotate(45deg);
}

@media (min-width: 1025px) {
    .menu-trigger {
        display: none;
    }
}

/* nav 
----------------------------------*/
nav {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 80, 162, 0.98);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999!important;
  transform: translate(100%);
  transition: all .4s;
    
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
        align-items: center; /* 縦方向中央揃え */
        -webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
        justify-content: center; /* 横方向中央揃え */
}
nav.open {
  transform: translateZ(0);
}
nav li {
    text-align: center;
    width: 100%;
}
nav li a{
    display: block;
    width: 80%;
    font-size: 1.6rem;
    letter-spacing: 0.2em;
    margin: 0 auto 6px auto;
    padding: 24px 0;
    background-color: rgba(0,0,0,0.3);
}
nav li a:link{color: #FFF;}
nav li a:visited{color: #FFF;}

nav ul {
    list-style: none;
    width: 100%;
}
.nav-contact {
    margin: 16px 0;
}
.nav-contact a{
    color: #FFF;
    background-color: rgba(0,0,0,0);
    border: #81bbef solid 1px;
}
@media (min-width: 1025px) {
    nav {
        position: absolute;
        right: 0;
        width: auto;
        height: 80px;
        padding-top: 0;
        background-color: rgb(0, 0, 0, 0);/* メニュー展開時の背景色 */
        transform: translate(0);/* メニュー展開前の位置 */
    }
    nav ul{
        display: flex;
        align-items: center;
        height: 80px;
    }
    nav li {
        padding: 0 25px;
        width: auto;
    }
    
    nav li a{
        display: block;
        width: 100%;
        margin: 0 auto 0 auto;
        font-size: 1.4rem;
        letter-spacing: 0.1em;
        font-weight: 500;
        border-bottom: none;
        padding: 0 0;
        background-color: rgba(0,0,0,0);
    }
    nav li a:link{color: #0050a2;}
    nav li a:visited{color: #0050a2;}
    nav li a:hover{opacity: 0.7;}
    .nav-contact {
        margin: 0 0 0 25px;
        padding: 0;
        border-bottom: none;
    }
    .nav-contact a{
        width: auto;
        color: #FFF!important;
        background-color: #0050a2;
        padding: 15px 20px;
        border: none;
        display: flex;
        align-items: center;
    }
    .nav-contact a:hover{
        opacity: 0.7;
    }
}

/*
footer-btn
====================================================== */
section.footer-btn{
    background: -moz-linear-gradient(top left, #2596e1, #0050a2); 
    background: -webkit-linear-gradient(top left, #2596e1, #0050a2); 
    background: linear-gradient(to bottom right, #2596e1, #0050a2);
    padding: 40px 0;
}
section.footer-btn ul{
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
section.footer-btn li{
    width: 48%;
}
section.footer-btn a{
    display: block;
    border: #e6f0fe solid 1px;
    color: #FFF;
    padding: 20px 30px;
    background-image: url("../img/ic-arrow1.png");
    background-repeat: no-repeat;
    background-position: top 50% right 20px;
}
section.footer-btn a:hover{
    opacity: 0.7;
}
section.footer-btn h4{
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 6px;
}
section.footer-btn h3{
    font-size: 2.0rem;
    font-weight: 400;
}
@media (max-width: 1025px) {
    section.footer-btn ul{
        width: 96%;
    }
}
@media (max-width: 767px) {
    section.footer-btn{
        padding: 20px 0 0 0;
    }
    section.footer-btn ul{
        width: 90%;
        flex-direction: column;
    }
    section.footer-btn li{
        width: 100%;
        margin-bottom: 20px;
    }
}

/*
footer
====================================================== */
footer{
    padding: 60px 0 60px 0;
}
footer ul{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}
footer li{
    margin: 0 20px;
}
footer h1{
    width: 110px;
}
footer a{
    display: block;
    font-size: 1.2rem;
}
footer a:hover{
    opacity: 0.7;
    color: #0050a2;
}
.f-nav-ic1{
    background-image: url("../img/ic-footer-mail.png");
    background-repeat: no-repeat;
    background-position: 0 50%;
    padding: 0 0 0 30px;
    line-height: 20px;
}
.f-nav-ic2{
    background-image: url("../img/ic-footer-arrow.png");
    background-repeat: no-repeat;
    background-position: 0 50%;
    padding: 0 0 0 30px;
    line-height: 20px;
}
footer small{
    display: block;
    text-align: center;
    font-size: 1.0rem;
    letter-spacing: 0.2em;
}

@media (max-width: 767px) {
    footer{
        padding: 30px 0 30px 0;
    }
    footer ul{
        display: block;
        margin-bottom: 20px;
        padding: 0 0 0 10%;
    }
    footer li{
        margin: 0 0 12px 0;
    }
    footer h1{
        width: 100px;
        margin-bottom: 10px;
    }
    .f-nav-ic1,.f-nav-ic2{
        margin-left: 10px;
    }
    footer small{
        text-align: left;
        padding: 0 0 0 11%;
        font-size: 0.9rem;
        letter-spacing: 0;
    }
}

/*
PAGE TOP
====================================================== */
#pageTop {
	z-index:99;
	position: fixed;
	bottom: 60px;
	right: 0;
}
#pageTop img{
	width: 100%;
}
@media (max-width: 767px) {
    #pageTop {
        bottom: 10px;
        right: 0;
        text-align: right;
    }
}

/* page-title
====================================================== */
section.page-title{
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 0 60px 0;
    color: #0050a2;
    letter-spacing: 0.5em;
}
section.page-title h2{
    font-size: 3.2rem;
    font-weight: 500;
    margin-bottom: 0.4em;
}
section.page-title h3{
    font-size: 1.4rem;
    font-weight: 500;
}
section.page-title img{
    position: absolute;
    z-index: 10;
    top: 140px;
    right: 0;
}
@media (max-width: 1025px) {
    section.page-title{
        padding: 100px 20px 40px 20px;
    }
    section.page-title img{
        top: 100px;
        right: 20px;
    }
}
@media (max-width: 767px) {
    section.page-title{
        padding: 100px 20px 30px 20px;
    }
    section.page-title h2{
        font-size: 2.4rem;
    }
    section.page-title h3{
        font-size: 1.2rem;
    }
    section.page-title img{
        width: 16%;
    }
}

.category-title{
    position: relative;
    z-index: 100;
    text-align: center;
    color: #0050a2;
    font-size: 2.8rem;
    letter-spacing: 0.4em;
    margin-bottom: 1.2em;
}
.category-title::after{
    content: "";
    position: absolute;
    z-index: -1;
    top: 24px;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #feffb4;
    width: 80%;
    height: 14px;
}
.category-title span{
    display: block;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    margin: 1.2em
}
.category-title-sub{
    color: #0050a2;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.6em;
    letter-spacing: 0.1em;
    margin-bottom: 1.6em;
}
@media (max-width: 767px) {
    .category-title{
        font-size: 2.2rem;
    }
    .category-title::after{
        width: 100%;
    }
}
/*
main
====================================================== */
main{
    padding: 0 0 0 0;
    margin-bottom: 80px;
}
@media (max-width: 767px) {
    main{
        padding: 0 0 0 0;
        margin-bottom: 40px;
    }
}

.layout-block{
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding-bottom: 100px;
}
.layout-block-w{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 100px;
}
@media (max-width: 1025px) {
    .layout-block{
        padding: 0 40px 80px 40px;
    }
    .layout-block-w{
        padding: 0 40px 80px 40px;
    }
}
@media (max-width: 767px) {
    .layout-block{
        margin: 0 auto;
        padding-bottom: 40px;
    }
    .layout-block-w{
        margin: 0 auto;
        padding-bottom: 40px;
    }
}


.back-img1{
    background-image: url("../img/back-img1.png");
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 22% auto;
}
.back-img2{
    background-image: url("../img/back-img2.png");
    background-repeat: no-repeat;
    background-position: 100% 0;
    background-size: 22% auto;
}
@media (max-width: 767px) {
    .back-img1{
        background-size: 50% auto;
    }
    .back-img2{
        background-size: 50% auto;
    }
}

/*
breadcrumb list
====================================================== */
section.path{
    background-image: url("../img/back-line.png");
    background-position: 50% 50%;
    border-top: #f2f2f2 solid 1px;
    border-bottom: #f2f2f2 solid 1px;
    margin-bottom: 80px;
}
section.path ul{
    display: flex;
    justify-content: flex-end;
    font-size: 1.2rem;
    font-weight: 400;
    padding: 1.6em 30px;
}
@media (max-width: 767px) {
    section.path{
        display: none;
    }
}

/* txt set
====================================================== */ 
.txt-set-14{
    font-size: 1.4rem;
    line-height: 2.0em;
    text-align: justify;
}
.txt-set-14-c{
    font-size: 1.4rem;
    line-height: 1.6em;
    text-align: center;
}
@media (max-width: 767px) {
    .txt-set-14{
        font-size: 1.6rem;
        line-height: 1.8em;
    }
    .txt-set-14-c{
        font-size: 1.6rem;
        line-height: 1.6em;
        text-align: justify;
    }
    .txt-set-14-c br{
        display: none;
    }
}

a.btn-set1{
    display: block;
    width: 60%;
    background-color: #FFF;
    border: #0050a2 solid 1px;
    font-size: 1.6rem;
    letter-spacing: 0.2em;
    padding: 1em 1.2em;
    background-image: url("../img/ic-arrow2.png");
    background-repeat: no-repeat;
    background-position: top 50% right 20px;
}
a.btn-set1:hover{
    opacity: 0.7;
    color: #0050a2;
}
@media (max-width: 767px) {
    a.btn-set1{
        width: 100%;
    }
}


/*-----------------------------------------------------
each page
-------------------------------------------------------*/
/* TOP
====================================================== */
section.main-img{
    position: relative;
    background-image: url("../../img/index-mainimg.jpg");
    background-color: #fcfcfc;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: auto 100%;
    height: 100vh;
}
section.main-img p{
    position: absolute;
    right: 0;
    bottom: 6%;
}
@media (max-width: 767px) {
    section.main-img p{
        text-align: right;
        bottom: 4%;
    }
    section.main-img p img{
        width: 80%;
    }
}

section.index-block1{
    background-image: url("../../img/index-back1.png");
    background-repeat: no-repeat;
    background-position: 0 0;
    padding: 80px 0 140px 0;
}
section.index-block1 div{
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
section.index-block1 dl{
    max-width: 640px;
}
section.index-block1 dt{
}
section.index-block1 h2{
    color: #0050a2;
    font-size: 2.8rem;
    letter-spacing: 0.4em;
    margin-bottom: 0.2em;
}
section.index-block1 h3{
    color: #0050a2;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.6em;
    letter-spacing: 0.1em;
    margin-bottom: 1.6em;
}
section.index-block1 dd a{
    margin-top: 40px;
}
@media (max-width: 1025px) {
    section.index-block1{
        padding: 40px 40px 80px 40px;
    }
    section.index-block1 dl{
        margin-left: 40px;
    }
}
@media (max-width: 767px) {
    section.index-block1{
        background-size: 80% auto;
        padding: 30px 40px 80px 40px;
    }
    section.index-block1 div{
        flex-direction: column-reverse;
    }
    section.index-block1 dl{
        margin-left: 0;
        margin-bottom: 40px;
    }
    section.index-block1 dd a{
        margin-top: 20px;
    }
}

section.index-block2{
    background-image: url("../../img/index-back2.png");
    background-repeat: no-repeat;
    background-position: 100% 100%;
    padding: 0 0 160px 0;
}
section.index-block2 div{
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}
section.index-block2 h2{
    text-align: center;
    color: #0050a2;
    font-size: 2.8rem;
    letter-spacing: 0.4em;
    margin-bottom: 0.2em;
}
section.index-block2 h3{
    text-align: center;
    color: #0050a2;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.6em;
    letter-spacing: 0.1em;
    margin-bottom: 2.6em;
}
section.index-block2 h4{
    font-size: 2.2rem;
    margin-bottom: 60px;
}
section.index-block2 h4::after{
    top: 18px
}
section.index-block2 ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
section.index-block2 li{
    width: 42%;
    margin-bottom: 60px;
}
section.index-block2 dl{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
section.index-block2 dt{
    width: 40%;
    text-align: center;
}
section.index-block2 dd{
    width: 55%;
    color: #0050a2;
}
section.index-block2 p{
    font-size: 4.4rem;
    font-weight: 400;
    margin-bottom: 0.3em;
}
section.index-block2 h5{
    font-size: 1.8rem;
    line-height: 1.4em;
    letter-spacing: 0.2em;
}
section.index-block2 a{
    margin: 0 auto;
    width: 40%;
}
@media (max-width: 1025px) {
    section.index-block2{
        padding: 0 40px 80px 40px;
    }
    section.index-block2 dt{
        width: 42%;
    }
}
@media (max-width: 767px) {
    section.index-block2{
        padding: 0 40px 60px 40px;
        background-size: 80% auto;
    }
    section.index-block2 h3{
        margin-bottom: 2.0em;
    }
    section.index-block2 h4{
        font-size: 1.8rem;
        margin-bottom: 40px;
        line-height: 1.2em;
    }
    section.index-block2 ul{
        flex-direction: column;
    }
    section.index-block2 li{
        width: 100%;
        margin-bottom: 40px;
    }
    section.index-block2 dt{
        width: 30%;
    }
    section.index-block2 dt img{
        width: 80%;
    }
    section.index-block2 dd{
        width: 64%;
    }
    section.index-block2 p{
        font-size: 3.4rem;
        margin-bottom: 0.2em;
    }
    section.index-block2 h5{
        font-size: 1.6rem;
    }
    section.index-block2 a{
        width: 100%;
    }
}

/* MESSAGE
====================================================== */
section.message-main-img{
    background-image: url("../../img/message-main-img.jpg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    height: 320px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 80px;
}
section.message-main-img div{
    width: 40%;
    color: #FFF;
}
section.message-main-img h3{
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    margin-bottom: 0.6em;
}
section.message-main-img h2{
    font-size: 3.0rem;
    font-weight: 400;
    line-height: 1.6em;
    letter-spacing: 0.2em;
}
@media (max-width: 1025px) {
    section.message-main-img div{
        width: 50%;
    }
}
@media (max-width: 767px) {
    section.message-main-img{
        height: 280px;
        justify-content: center;
        margin-bottom: 40px;
    }
    section.message-main-img div{
        width: 90%;
    }
    section.message-main-img h3{
        font-size: 1.2rem;
    }
    section.message-main-img h2{
        font-size: 2.8rem;
    }
}

section.message-lead{
    width: 100%;
    max-width: 980px;
    margin: 0 auto 120px auto;
}
section.message-lead p{
    border-left: #2596e1 solid 10px;
    padding: 0.2em 0 0.2em 4em;
}
@media (max-width: 1025px) {
    section.message-lead{
        padding: 0 40px 0 20px;
    }
    section.message-lead p{
        padding: 0.2em 0 0.2em 2em;
    }
}
@media (max-width: 767px) {
    section.message-lead{
        padding: 0 40px 0 20px;
        margin: 0 auto 60px auto;
    }
    section.message-lead p{
        border-left: #2596e1 solid 6px;
        padding: 0.2em 0 0.2em 1.6em;
    }
}

div.message-block1-a{
    display: flex;
    align-items: flex-start;
    margin-bottom: 80px;
}
div.message-block1-a p{
    margin: 0 80px 0 0;
}
div.message-block1-b{
    border: #f2f2f2 solid 18px;
    padding: 30px 50px 10px 50px;
    background-color: #FFF;
}
div.message-block1-b dt{
    color: #0050a2;
    font-size: 2.0rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.6em;
}
div.message-block1-b dt span{
    display: inline-block;
    font-size: 3.0rem;
    letter-spacing: 0;
    font-weight: 500;
    padding: 10px;
    background-image: url("../img/ic-title1.png");
    background-repeat: no-repeat;
}
div.message-block1-b dd{
    margin: 0 0 30px 20px;
    padding: 0 0 0 24px;
    border-left: #efefef solid 4px;
    font-size: 1.4rem;
    line-height: 2.0em;
    text-align: justify;
}
@media (max-width: 1025px) {
    div.message-block1-a{
        flex-direction: column;
    }
    div.message-block1-a p{
        text-align: left;
        margin: 0 0 40px 0;
    }
    div.message-block1-a img{
        display: block;
        margin: auto;
    }
}
@media (max-width: 767px) {
    div.message-block1-a img{
        width: 100%;
    }
    div.message-block1-b{
        border: #f2f2f2 solid 10px;
        padding: 20px 20px 10px 20px;
    }
    div.message-block1-b dd{
        margin: 0 0 30px 6px;
        padding: 0 0 0 16px;
        font-size: 1.6rem;
        line-height: 1.6em;
    }
}

div.message-block2-a{
    margin-top: 40px;
    margin-bottom: 80px;
}
div.message-block2-a ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
div.message-block2-a li{
    width: 48%;
    background-color: #FFF;
    border: #f2f2f2 solid 18px;
    padding: 30px 34px 26px 34px;
    margin-bottom: 24px;
    text-align: center;
}
div.message-block2-a h2{
    color: #0050a2;
    font-size: 2.2rem;
    margin: 0 0 1em 0;
    padding: 0 0 0.6em 0;
    border-bottom: #efefef solid 1px;
}
div.message-block2-a h3{
    font-size: 1.6rem;
    margin-bottom: 0.4em;
}
div.message-block2-a p{
    font-size: 1.4rem;
    line-height: 1.6em;
}
@media (max-width: 1025px) {
}
@media (max-width: 767px) {
    div.message-block2-a ul{
        flex-direction: column;
    }
    div.message-block2-a li{
        width: 100%;
        border: #f2f2f2 solid 10px;
        padding: 20px 24px 16px 24px;
        margin-bottom: 20px;
    }
    div.message-block2-a p{
        font-size: 1.6rem;
        text-align: justify;
    }
    div.message-block2-a p br{
        display: none;
    }
}

div.message-block3-a{
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    margin-bottom: 80px;
}
div.message-block3-a p{
    margin: 0 0 0 80px;
}
@media (max-width: 1025px) {
    div.message-block3-a{
        flex-direction: column;
    }
    div.message-block3-a p{
        text-align: left;
        margin: 0 0 40px 0;
    }
    div.message-block3-a img{
        display: block;
        margin: auto;
    }
}
@media (max-width: 767px) {
    div.message-block3-a img{
        width: 100%;
    }
}

div.message-block4-a{
    margin-top: 40px;
}
div.message-block4-a ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
div.message-block4-a li{
    width: 32%;
    background-color: #FFF;
    border: #f2f2f2 solid 18px;
    padding: 30px 30px 26px 30px;
    margin-bottom: 24px;
    text-align: center;
}
div.message-block4-a h2{
    color: #0050a2;
    font-size: 1.8rem;
    margin: 0 0 0.6em 0;
}
div.message-block4-a h3{
    color: #0050a2;
    font-size: 1.6rem;
    margin-bottom: 1.2em;
    padding: 0 0 1em 0;
    border-bottom: #efefef solid 1px;
}
div.message-block4-a p{
    font-size: 1.4rem;
    line-height: 1.6em;
}
@media (max-width: 1025px) {
    div.message-block4-a li{
        text-align: justify;
    }
}
@media (max-width: 767px) {
    div.message-block4-a ul{
        flex-direction: column;
    }
    div.message-block4-a li{
        width: 100%;
        border: #f2f2f2 solid 10px;
        padding: 20px 24px 16px 24px;
        margin-bottom: 20px;
        text-align: center;
    }
    div.message-block4-a p{
        font-size: 1.6rem;
        text-align: justify;
    }
    div.message-block4-a p br{
        display: none;
    }
}

section.btn-greeting{
    background-color: #ffffe6;
    text-align: center;
    padding: 40px 0;
}
@media (max-width: 767px) {
    section.btn-greeting img{
        width: 90%;
    }
}

/* GREETING
====================================================== */
section.greeting-main-img{
    background-image: url("../../img/greeting-main-img.jpg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 130px;
}
section.greeting-main-img div{
    background-color: #FFF;
    margin-bottom: -50px;
}
section.greeting-main-img h2{
    color: #0050a2;
    font-size: 2.2rem;
    line-height: 1.5em;
    letter-spacing: 0.2em;
    text-align: center;
    padding: 1.2em 2em;
}
@media (max-width: 767px) {
    section.greeting-main-img{
        background-image: url("../../img/greeting-main-img-sp.jpg");
        height: 280px;
        margin-bottom: 90px;
    }
    section.greeting-main-img div{
        width: 96%;
    }
    section.greeting-main-img h2{
        font-size: 1.6rem;
        text-align: justify;
        padding: 0.8em 1.4em;
    }
    section.greeting-main-img h2 br{
        display: none;
    }
}

div.greeting-block1-a{
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}
div.greeting-block1-a h1{
    width: 25%;
}
div.greeting-block1-a p{
    width: 68%;
}

div.greeting-block1-b{
    display: flex;
    align-items: flex-start;
}
div.greeting-block1-b p{
    margin: 0 80px 0 0;
}
@media (max-width: 1025px) {
    div.greeting-block1-b p{
        margin: 0 40px 0 0;
    }
}
@media (max-width: 767px) {
    div.greeting-block1-a{
        flex-direction: column;
        margin-bottom: 40px;
    }
    div.greeting-block1-a h1{
        width: 40%;
        margin: 0 auto 20px auto;
    }
    div.greeting-block1-a p{
        width: 100%;
    }
    div.greeting-block1-b{
        flex-direction: column-reverse;
    }
    div.greeting-block1-b p{
        margin: 0 0 0 0;
    }
    div.greeting-block1-b img{
        width: 70%;
        margin-bottom: 20px;
    }
}

/* SERVICES
====================================================== */
main.main-p{
    margin-bottom: 0;
}
section.services-main-img{
    width: 100%;
    max-width: 980px;
    margin: 0 auto 100px auto;
}
section.services-main-img h2{
    color: #0050a2;
    font-size: 3.0rem;
    font-weight: 500;
    margin-bottom: 0.6em;
}
@media (max-width: 1025px) {
    section.services-main-img{
        padding: 0 20px;
    }
}
@media (max-width: 767px) {
    section.services-main-img{
        margin: 0 auto 40px auto;
    }
    section.services-main-img h2{
        font-size: 2.4rem;
    }
    section.services-main-img p br{
        display: none;
    }
}
article.services-back{
    background-image: url("../../img/services-back.png");
    background-repeat: repeat-y;
    background-size: 100% auto;
}
section.services-block1{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 160px;
}
.sb-layout1{
    padding: 0 10% 0 0;
}
.sb-layout2{
    padding: 0 0 0 10%;
    flex-direction: row-reverse;
}
section.services-block1 div{
    width: 48%;
    height: 340px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}
.sb-img-financial{background-image: url("../../img/services-img-financial.jpg");}
.sb-img-risk{background-image: url("../../img/services-img-risk.jpg");}
.sb-img-design{background-image: url("../../img/services-img-design.jpg");}
.sb-img-placement{background-image: url("../../img/services-img-placement.jpg");}

section.services-block1 dl{
    width: 46%;
}
section.services-block1 dt{
    color: #0050a2;
    margin-bottom: 20px;
}
section.services-block1 h4{
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-size: 78px auto;
    font-size: 8.0rem;
    font-weight: 300;
    padding: 0 0 0 100px;
    margin-bottom: 0.2em;
}
.ic-financial{background-image: url("../../img/ic-financial.png");}
.ic-risk{background-image: url("../../img/ic-risk.png");}
.ic-design{background-image: url("../../img/ic-design.png");}
.ic-placement{background-image: url("../../img/ic-placement.png");}

section.services-block1 h2{
    font-size: 3.2rem;
    margin-bottom: 0.4em;
}
section.services-block1 h3{
    font-size: 1.2rem;
    letter-spacing: 0.2em;
}
section.services-block1 p{
    margin-bottom: 20px;
}
@media (max-width: 1025px) {
    section.services-block1{
        padding-bottom: 80px;
    }
    .sb-layout1{
        padding: 0 40px 0 0;
    }
    .sb-layout2{
        padding: 0 0 0 40px;
    }
    section.services-block1 dd a{
        width: 100%;
    }
}
@media (max-width: 767px) {
    section.services-block1{
        flex-direction: column;
        padding-bottom: 80px;
    }
    .sb-layout1{
        padding: 0 0 0 0;
    }
    .sb-layout2{
        padding: 0 0 0 0;
        flex-direction: row-reverse;
    }
    section.services-block1 div{
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
    }
    section.services-block1 dl{
        width: 100%;
        padding: 0 40px;
    }
}


/* COMPANY
====================================================== */
section.company-set{
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}
section.company-set dl{
    margin-bottom: 3em;
    display: flex;
    align-items: flex-start;
}
section.company-set dt{
    width: 25%;
    color: #0050a2;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.8em;
    letter-spacing: 0.2em;
    text-align: center;
    padding: 0 0 0.6em 0;
    border-bottom: #e6e6e6 solid 4px;
}
section.company-set dd{
    width: 75%;
    font-size: 1.4rem;
    line-height: 1.8em;
    text-align: justify;
    padding: 0 0 1em 40px;
    border-bottom: #e6e6e6 solid 1px;
}
@media (max-width: 1025px) {
    section.company-set{
        padding: 0 20px;
    }
}
@media (max-width: 767px) {
    section.company-set dl{
        margin-bottom: 2em;
        flex-direction: column;
    }
    section.company-set dt{
        width: 100%;
        font-size: 1.8rem;
        text-align: left;
        padding: 0 0 0.2em 10px;
        margin-bottom: 1em;
    }
    section.company-set dd{
        width: 100%;
        font-size: 1.4rem;
        line-height: 1.8em;
        text-align: justify;
        padding: 0 0 1.4em 10px;
        border-bottom: #e6e6e6 solid 1px;
    }
}

/* PARTNER
====================================================== */
section.partner-main-img{
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}
div.pmi1{
    width: 50%;
    background-image: url("../../img/partner-back1.png");
    background-repeat: repeat-x;
    background-position: 50% 50%;
    text-align: right;
    padding: 0 4% 0 0;
}
div.pmi2{
    width: 50%;
    padding: 0 0 0 4%;
}
div.pmi2 h3{
    margin-bottom: 10px;
}
div.pmi2 h2{
    color: #0050a2;
    font-size: 3.0rem;
    font-weight: 400;
    line-height: 1.5em;
}
@media (max-width: 1025px) {
div.pmi1{
    width: 40%;
    text-align: center;
    padding: 0 0 0 0;
}
div.pmi1 img{
    width: 80%;
}
div.pmi2{
    width: 60%;
    padding: 0 0 0 4%;
}
div.pmi2 h2{
    font-size: 2.2rem;
}
}
@media (max-width: 767px) {
    section.partner-main-img{
        flex-direction: column;
        margin-bottom: 40px;
    }
    div.pmi1{
        width: 100%;
        margin-bottom: 20px;
        background-size: auto 60%;
    }
    div.pmi1 img{
        width: 60%;
    }
    div.pmi2{
        width: 100%;
        padding: 0 0 0 0;
        text-align: center;
    }
    div.pmi2 h3{
        margin-bottom: 6px;
    }
    div.pmi2 h3 img{
        width: 50%;
    }
    div.pmi2 h2{
        font-size: 2.0rem;
    }
}

/* CONTACT
====================================================== */
section.maill-form{
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
section.maill-form dl{
    margin: 0 0 34px 0;
}
section.maill-form dt{
    font-size: 1.5rem;
    margin-bottom: 0.6em;
    font-weight: bold;
}
section.maill-form dt span{
    display: inline-block;
    font-size: 1.2rem;
    color: #FFF;
    background-color: #ed1c24;
    padding: 0.4em 1.4em;
    margin: 0 10px 0 0;
}
section.maill-form dd{
    font-size: 1.5rem;
}
section.maill-form dd input,section.maill-form dd textarea,section.maill-form dd select{
    font-size: 1.6rem;
    padding: 0.6em;
    border: #cccccc solid 1px;
    background-color: #fafafa;
}
section.maill-form dd textarea{
    width: 100%;
}
.cm-if{width: 49%; margin-right: 2%;}
.cm-ib{width: 49%;}
.cm-iall{width: 100%;}

section.maill-form input.form-btn{
    border: #222 solid 1px;
    color: #fff;
    width: 44%;
    height: 60px;
    margin: 0 2%;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    background-color: #222;
}
@media (max-width: 767px) {
section.maill-form{
    padding: 0 20px;
}
}

section.thanks-block{
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
}
section.thanks-block h2{
    color: #0050a2;
    font-size: 2.8rem;
    margin-bottom: 0.6em;
}
section.thanks-block div{
    border: #EEE solid 10px;
    padding: 60px 20px;
}
section.thanks-block h3{
    font-size: 2.4rem;
    line-height: 1.4em;
    margin-bottom: 1.6em;
}
section.thanks-block p{
    line-height: 1.6em;
}
@media (max-width: 767px) {
    section.thanks-block{
        margin: 40px auto;
        padding: 0 20px;
    }
    section.thanks-block div{
        padding: 40px 10px;
    }
    section.thanks-block h3{
        font-size: 2.4rem;
    }
    section.thanks-block p{
        text-align: left;
    }
    section.thanks-block p br{
        display: none;
    }
}


/* PRIVACY POLICY
====================================================== */
section.privacy-set{
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}
section.privacy-set dl{
    margin-bottom: 3em;
}
section.privacy-set dt{
    color: #0050a2;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    padding: 0 0 0.6em 0;
    margin: 0 0 1em 0;
    border-bottom: #efefef solid 1px;
}
section.privacy-set dd{
    font-size: 1.3rem;
    line-height: 1.8em;
    text-align: justify;
}
@media (max-width: 1025px) {
    section.privacy-set{
        padding: 0 20px;
    }
}
@media (max-width: 767px) {
    section.privacy-set dl{
        margin-bottom: 2.4em;
    }
    section.privacy-set dt{
        font-size: 1.8rem;
    }
    section.privacy-set dd{
        font-size: 1.4rem;
    }
}




