@charset "utf-8";
/*----------------------------------------
	all
----------------------------------------*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: 62.5%;
    color: #3E3E3E;
    -webkit-text-size-adjust: 100%;
    line-height: 1;
    font-weight: 500;
    scroll-behavior: smooth;
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 1.8rem;
    font-weight: 300;
}

p {
    line-height: 1.75;
}

a {
    text-decoration: none;
    color: #3E3E3E;
}

img {
    vertical-align: bottom;
}

#container {
    overflow: hidden;
}

/*----------------------------------------
	common
----------------------------------------*/

.c-inner {
    width: 1100px;
    margin: 0 auto;
}

.c-inner02 {
    width: 1300px;
    margin: 0 auto;
}

.c-pageTitle {
    background-color: #F0F0F0;
    padding: 47px 0 44px;
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
}

.c-pageTitle__jp {
    font-size: 2.2rem;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
}

.c-pageTitle__en {
    font-size: 5.5rem;
    color: #205E79;
    line-height: 1.455;
    margin: 0 0 10px;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    z-index: 1;
}

.c-pageTitle span {
    font-size: 2.8rem;
    margin: 0 0 3px;
    line-height: 1.429;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 500;
    font-style: normal;
}

.c-intro {
    margin: 0 0 90px;
    text-align: center;
}

.c-intro h2 {
    font-size: 4rem;
    margin: 0 0 40px;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.45;
    color: #205E79;
}

.c-text {
    font-size: 1.8rem;
    line-height: 1.5;
}

.respon {
    width: 100%;
}

@media screen and (max-width: 1400px) {
    .c-inner02 {
        width: 100%;
        padding: 0 5%;
    }
}

@media screen and (max-width: 1200px) {
    .c-inner {
        width: 100%;
        padding: 0 5%;
    }

    .c-inner02 {
        width: 100%;
        padding: 0 4%;
    }
}

@media screen and (max-width: 820px) {
    .c-inner {
        width: 100%;
        padding: 0 3.5%;
    }

    .c-inner02 {
        width: 100%;
        padding: 0 3.5%;
    }

    .c-pageTitle {
        padding: 30px 0 25px;
    }

    .c-pageTitle__jp {
        font-size: 1.6rem;
    }

    .c-pageTitle__en {
        font-size: 3.5rem;
        margin: 0 0 4px;
    }

    .c-pageTitle span {
        font-size: 2rem;
    }

    .c-intro {
        margin: 0 0 50px;
    }

    .c-intro h2 {
        font-size: 2.5rem;
        margin: 0 0 30px;
    }

    .c-text {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 590px) {
    .c-pageTitle {
        padding: 22px 0 25px;
    }

    .c-pageTitle__en {
        font-size: 2.5rem;
    }

    .c-pageTitle__jp {
        font-size: 1.5rem;
    }

    .c-pageTitle span {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .c-intro {
        margin: 0 0 42px;
    }

    .c-intro h2 {
        font-size: 1.8rem;
        margin: 0 0 20px;
    }

    .c-text {
        font-size: 1.3rem;
    }
}

/*----------------------------------------
	header
----------------------------------------*/

.l-header {
    position: absolute;
    margin: 47px 0 0 58px;
}

.l-header a {
    display: block;
}

@media screen and (max-width: 820px) {
    .l-header {
        margin: 40px 0 0 28px;
    }

    .l-header a {
        width: 220px;
    }

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

@media screen and (max-width: 590px) {
    .l-header {
        margin: 18px 0 0 18px;
    }

    .l-header a {
        width: 140px;
    }
}

/*----------------------------------------
	animation
----------------------------------------*/

.appear {
    transform-origin: center top;
    animation: show 1s both;
}

span.appear {
    display: inline-block;
}

.d1 {
    animation-delay: 0.5s;
}

.d2 {
    animation-delay: 1s;
}

.d3 {
    animation-delay: 1.5s;
}

.d4 {
    animation-delay: 2s;
}

.d5 {
    animation-delay: 2.5s;
}

.d6 {
    animation-delay: 3s;
}

.d8 {
    animation-delay: 3.5s;
}

.d10 {
    animation-delay: 10s;
}

.d12 {
    animation-delay: 12s;
}

@keyframes show {
    0% {
        transform: translate(0, 2em);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
    transition: 0.8s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
}

.scroll_up.on {
    transform: translateY(0);
    opacity: 1.0;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}

.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}

.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

.timing02 {
    transition-delay: .2s;
}

.timing03 {
    transition-delay: .4s;
}

.timing04 {
    transition-delay: .6s;
}

.timing05 {
    transition-delay: .8s;
}


/*----------------------------------------
	mv
----------------------------------------*/

.p-mv {
    background-image: url(../images/mv.jpg);
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-position: center;
}

.p-mvCatch {
    width: 18%;
    margin: -52px 0 66px;
}

.p-mvCatch img {
    width: 100%;
}

.p-mv h2 {
    font-size: 2.083vw;
    color: #fff;
    letter-spacing: 0.1em;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
}

@media screen and (max-width: 820px) {
    .p-mv h2 {
        font-size: 4.2vw;
    }

    .p-mvCatch {
        width: 46%;
    }
}

@media screen and (max-width: 590px) {
    .p-mvCatch {
        width: 57%;
        margin: -35px 0 25px;
    }

    .p-mv h2 {
        font-size: 4.5vw;
    }
}

/*----------------------------------------
	about
----------------------------------------*/

.p-about {
    padding: 0 0 130px;
    position: relative;
}

.p-about:before {
    content: "";
    background-image: url(../images/about_deco.svg);
    width: 610px;
    height: 250px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
}

.p-about .c-pageTitle {
    margin: 0 0 125px;
}

.p-aboutWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p-aboutImg {
    width: 38.5%;
}

.p-aboutImg img {
    width: 100%;
}

.p-aboutText {
    width: 53%;
}

.p-aboutText h2 {
    font-size: 3.6rem;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    color: #205E79;
    letter-spacing: 0.03em;
    margin: 0 0 78px;
    line-height: 1.667;
}

.p-aboutText .c-text:not(:last-child) {
    margin-bottom: 30px;
}

.p-aboutText__en {
    font-size: 5.5rem;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    color: #205E79;
    margin: 86px 0 0;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 820px) {
    .p-about {
        padding: 0 0 100px;
    }

    .p-about:before {
        background-size: 100%;
        width: 610px;
        height: 250px;
    }

    .p-about .c-pageTitle {
        margin: 0 0 50px;
    }

    .p-aboutText h2 {
        font-size: 2.5rem;
        margin: 0 0 35px;
    }

    .p-aboutText .c-text:not(:last-child) {
        margin-bottom: 18px;
    }

    .p-aboutText__en {
        font-size: 4vw;
        margin: 40px 0 0;
    }

    .p-about:before {
        width: 400px;
        height: 164px;
        background-size: 100%;
    }
}

@media screen and (max-width: 590px) {
    .p-about {
        padding: 0 0 50px;
    }

    .p-aboutWrap {
        flex-direction: column;
    }

    .p-aboutImg {
        width: 70%;
        margin: 0 0 30px;
    }

    .p-aboutText {
        width: 100%;
    }

    .p-aboutText h2 {
        font-size: 1.8rem;
        text-align: center;
        margin: 0 0 15px;
    }

    .p-aboutText .c-text:not(:last-child) {
        margin-bottom: 12px;
    }

    .p-about:before {
        width: 280px;
        height: 114px;
    }

    .p-aboutText__en {
        font-size: 7.8vw;
        margin: 15px 0 0;
    }

    .p-about .c-pageTitle {
        margin: 0 0 35px;
    }
}

/*----------------------------------------
	feature
----------------------------------------*/

.p-feature {
    margin: 0 0 146px;
}

.p-featureBg {
    width: 100%;
    height: 500px;
    background-image: url(../images/feature_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 84px;
}

.p-featureBg h2 {
    font-size: 2.8rem;
    letter-spacing: 0.08em;
    line-height: 1.214;
    text-align: center;
    color: #fff;
    font-weight: 500;
}

.p-feature h3 {
    font-size: 4rem;
    color: #205E79;
    text-align: center;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 56px;
}

.p-featureLists {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.p-featureInner {
    width: 1540px;
    margin: 0 auto;
}

.p-featureList {
    width: 22.1%;
    text-align: center;
}

.p-featureList img {
    width: 100%;
}

.p-featureList__number {
    font-size: 3rem;
    margin: 0 0 20px;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    color: #205E79;
}

.p-featureList figcaption {
    text-align: center;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 2.8rem;
    line-height: 1.429;
}

.p-featureList:nth-of-type(1) figcaption,
.p-featureList:nth-of-type(4) figcaption {
    margin: 47px 0 0;
}

.p-featureList:nth-of-type(2) figcaption,
.p-featureList:nth-of-type(3) figcaption,
.p-featureList:nth-of-type(4) figcaption {
    margin: 23px 0 0;
}

@media screen and (max-width: 1600px) {
    .p-featureInner {
        width: 100%;
        padding: 0 3.5%;
    }
}

@media screen and (max-width: 820px) {
    .p-feature {
        margin: 0 0 68px;
    }

    .p-featureList {
        width: 47%;
    }

    .p-featureList figcaption {
        font-size: 1.8rem;
    }

    .p-featureList:nth-of-type(1) figcaption,
    .p-featureList:nth-of-type(4) figcaption {
        margin: 30px 0 0;
    }

    .p-featureList:nth-of-type(2) figcaption,
    .p-featureList:nth-of-type(3) figcaption,
    .p-featureList:nth-of-type(4) figcaption {
        margin: 15px 0 0;
    }

    .p-featureList:nth-child(n+3) {
        margin: 30px 0 0;
    }

    .p-featureList__number {
        font-size: 2.2rem;
    }

    .p-featureInner {
        width: 78%;
    }

    .p-feature h3 {
        font-size: 3rem;
        margin: 0 0 28px;
    }

    .p-featureList__number {
        margin: 0 0 14px;
    }

    .p-featureBg h2 {
        font-size: 2.2rem;
    }

    .p-featureBg {
        height: 290px;
        margin: 0 0 40px;
    }
}

@media screen and (max-width: 590px) {
    .p-featureInner {
        width: 100%;
    }

    .p-featureList__number {
        font-size: 1.6rem;
    }

    .p-feature h3 {
        font-size: 1.8rem;
    }

    .p-featureList figcaption {
        font-size: 1.5rem;
    }

    .p-featureList:nth-of-type(1) figcaption,
    .p-featureList:nth-of-type(4) figcaption {
        margin: 25px 0 0;
    }

    .p-featureBg {
        height: 195px;
    }

    .p-featureBg h2 {
        font-size: 1.4rem;
        line-height: 1.6;
    }
}

/*----------------------------------------
	problem
----------------------------------------*/

.p-problem {
    margin: 0 0 108px;
    position: relative;
}

.p-problem:before {
    content: "";
    background-image: url(../images/problem_deco.png);
    width: 280px;
    height: 854px;
    position: absolute;
    top: -337px;
    left: -77px;
}

.p-problem .c-pageTitle {
    margin: 0 0 75px;
}

.p-problemBox {
    display: flex;
    align-items: center;
}

.p-problemBox:nth-of-type(even) {
    display: flex;
    flex-direction: row-reverse;
}

.p-problemBox__img {
    width: 50%;
}

.p-problemBox__text {
    width: 50%;
    text-align: center;
}

.p-problemBox__text h3 {
    font-size: 4rem;
    color: #205E79;
    margin: 0 0 5px;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.45;
}

.p-problemBox__text p {
    font-size: 2.4rem;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 500;
    font-style: normal;
}

@media screen and (max-width: 820px) {
    .p-problem {
        margin: 0 0 40px;
    }

    .p-problem .c-pageTitle {
        margin: 0 0 35px;
    }

    .p-problemBox__text h3 {
        font-size: 2.5rem;
    }

    .p-problemBox__text p {
        font-size: 1.8rem;
    }

    .p-problem:before {
        background-size: 100%;
        width: 104px;
        height: 316px;
        top: -12%;
        left: 3%;
    }
}

@media screen and (max-width: 590px) {
    .p-problemBox {
        flex-direction: column;
    }

    .p-problemBox:nth-of-type(even) {
        flex-direction: column;
    }

    .p-problemBox:not(:last-child) {
        margin: 0 0 35px;
    }

    .p-problemBox__img {
        width: 100%;
        margin: 0 0 15px;
    }

    .p-problemBox__text {
        width: 100%;
    }

    .p-problemBox__text h3 {
        font-size: 1.8rem;
        margin: 0;
    }

    .p-problemBox__text p {
        font-size: 1.4rem;
    }

    .p-problem:before {
        width: 69px;
        height: 212px;
        top: -5%;
    }
}

/*----------------------------------------
	location
----------------------------------------*/

.p-location {
    position: relative;
}

.p-location:before {
    content: "";
    background-image: url(../images/location_deco.svg);
    width: 541px;
    height: 515px;
    position: absolute;
    top: 178px;
    right: -63px;
}

.p-location .c-pageTitle {
    margin: 0 0 60px;
}

.p-location .c-intro {
    margin: 0 0 80px;
}

.p-locationWrap {
    display: flex;
    justify-content: space-between;
    margin: 0 0 -62px;
    position: relative;
    z-index: 1;
}

.p-locationImg {
    width: 30.8%;
}

.p-locationBg {
    width: 100%;
    height: 490px;
    background-image: url(../images/location_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}

@media screen and (max-width: 820px) {
    .p-location .c-pageTitle {
        margin: 0 0 35px;
    }

    .p-locationBg {
        height: 280px;
    }

    .p-location:before {
        width: 200px;
        height: 190px;
        top: 13%;
        right: -2%;
        background-size: 100%;
    }

    .p-location .c-intro {
        margin: 0 0 50px;
    }
}

@media screen and (max-width: 590px) {
    .p-locationBg {
        height: 200px;
    }

    .p-location .c-intro {
        margin: 0 0 40px;
    }

    .p-location:before {
        width: 134px;
        height: 127px;
        top: -3%;
        right: -4%;
    }
}

/*----------------------------------------
	solution
----------------------------------------*/

.p-solution {
    margin: 0 0 100px;
    position: relative;
}

.p-solution .c-pageTitle {
    margin: 0 0 80px;
}

@media screen and (max-width: 820px) {
    .p-solution {
        margin: 0 0 40px;
    }

    .p-solution .c-pageTitle {
        margin: 0 0 35px;
    }
}

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

/*----------------------------------------
	record
----------------------------------------*/

.p-record {
    margin: 0 0 100px;
    position: relative;
}

.p-record:before {
    content: "";
    background-image: url(../images/record_deco.png);
    width: 350px;
    height: 787px;
    position: absolute;
    top: -262px;
    left: -50px;
    transform: rotate(12deg);
}

.p-record .c-pageTitle {
    margin: 0 0 69px;
}

.p-record ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.p-record ul li {
    width: 29.4%;
    text-align: center;
}

.p-record ul li:nth-child(n+4) {
    margin: 54px 0 0;
}

.p-record ul li img {
    width: 100%;
}

.p-record ul li figcaption {
    font-size: 2.8rem;
    margin: 15px 0 0;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 500;
    font-style: normal;
}

@media screen and (max-width: 820px) {
    .p-record {
        margin: 0 0 50px;
    }

    .p-record .c-pageTitle {
        margin: 0 0 35px;
    }

    .p-record ul li figcaption {
        font-size: 1.7rem;
        margin: 8px 0 0;
    }

    .p-record:before {
        width: 129px;
        height: 291px;
        top: -3%;
        left: -4%;
        background-size: 100%;
    }
}

@media screen and (max-width: 590px) {
    .p-record ul li figcaption {
        font-size: 1.4rem;
    }

    .p-record ul li {
        width: 47%;
    }

    .p-record ul li:nth-child(n+3) {
        margin: 30px 0 0;
    }

    .p-record:before {
        width: 86px;
        height: 195px;
        left: -6%;
    }
}

/*----------------------------------------
	products
----------------------------------------*/

.p-products {
    position: relative;
    padding: 0 0 122px;
}

.p-products:before {
    content: "";
    position: absolute;
    background-image: url(../images/products_deco.png);
    width: 315px;
    height: 511px;
    bottom: -64px;
    right: -95px;
}

.p-products .c-pageTitle {
    margin: 0 0 55px;
}

.p-productsMain__img {
    width: 52.5%;
    margin: 0 auto 62px;
}

.p-productsMain__img img {
    width: 100%;
}

.p-productsWrap {
    display: flex;
    justify-content: space-between;
}

.p-productsImg {
    width: 47.3%;
    position: relative;
}

.p-productsImg:before {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    top: -35px;
    left: -28px;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 1;
}

.p-productsImg:first-child:before {
    background-image: url(../images/products_title01.png);
}

.p-productsImg:last-child:before {
    background-image: url(../images/products_title02.png);
}

@media screen and (max-width: 820px) {
    .p-products {
        padding: 0 0 85px;
    }

    .p-products .c-pageTitle {
        margin: 0 0 30px;
    }

    .p-productsImg:before {
        width: 70px;
        height: 70px;
    }

    .p-productsMain__img {
        width: 50%;
    }

    .p-products:before {
        width: 116px;
        height: 188px;
        bottom: -12%;
        right: -2%;
        background-size: 100%;
    }
}

@media screen and (max-width: 590px) {
    .p-products {
        padding: 0 0 72px;
    }

    .p-productsMain__img {
        width: 80%;
        margin: 0 auto 40px;
    }

    .p-productsWrap {
        flex-direction: column;
    }

    .p-productsImg {
        width: 90%;
        margin: 0 auto;
    }

    .p-productsImg:not(:last-child) {
        margin: 0 auto 30px;
    }

    .p-productsImg:before {
        top: -18px;
        left: -22px;
    }

    .p-products:before {
        width: 78px;
        height: 127px;
        bottom: -6%;
    }
}

/*----------------------------------------
	contact
----------------------------------------*/

.p-contact .c-pageTitle {
    margin: 0 0 83px;
}

.p-contact h3 {
    text-align: center;
    font-size: 2.6rem;
    margin: 0 0 20px;
    color: #205E79;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
}

.p-contactBanar {
    margin: 0 0 64px;
}

.p-contactWrap {
    display: flex;
    justify-content: space-between;
    margin: 0 0 130px;
}

.p-contactBox {
    width: 49%;
    height: 135px;
    border-radius: 5px;
    border: 1px solid #205E79;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.p-contactBox h4 {
    font-size: 2rem;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 500;
    font-style: normal;
    margin: 0 0 15px;
    color: #205E79;
}

.p-contactBox a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #205E79;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
}

.p-contactBox a span {
    font-size: 2rem;
    margin: 0 14px 0 0;
    padding: 6px 12px 5px;
    border-radius: 5px;
    background-color: #205E79;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    color: #fff;
}

.p-contactBox:first-child a {
    font-size: 4rem;
}

.p-contactBox:last-child a {
    font-size: 2.6rem;
}

@media screen and (max-width: 820px) {
    .p-contactWrap {
        flex-direction: column;
    }

    .p-contactBox {
        width: 100%;
    }

    .p-contactBox:not(:last-child) {
        margin: 0 0 20px;
    }

    .p-contactBox h4 {
        font-size: 1.8rem;
    }

    .p-contactBox a span {
        font-size: 1.6rem;
    }

    .p-contactBox:first-child a {
        font-size: 2.7rem;
    }

    .p-contactBox:last-child a {
        font-size: 2rem;
    }

    .p-contactBox a span {
        padding: 4px 8px 5px;
    }

    .p-contactBox a span {
        margin: 0 8px 0 0;
    }

    .p-contact h3 {
        font-size: 1.8rem;
        margin: 0 0 15px;
    }

    .p-contactBanar {
        margin: 0 0 40px;
    }

    .p-contact .c-pageTitle {
        margin: 0 0 35px;
    }

    .p-contactWrap {
        margin: 0 0 60px;
    }
}

@media screen and (max-width: 768px) {
    .p-contactBanar .sp_none {
        display: none;
    }
}

@media screen and (max-width: 590px) {
    .p-contactBox {
        height: 95px;
    }

    .p-contactBox h4 {
        font-size: 1.5rem;
    }

    .p-contactBox a span {
        font-size: 1.4rem;
        border-radius: 3px;
    }

    .p-contactBox:first-child a {
        font-size: 2.5rem;
    }

    .p-contactBox:last-child a {
        font-size: 1.6rem;
    }

    .p-contactWrap {
        margin: 0 0 40px;
    }
}

/*----------------------------------------
	footer
----------------------------------------*/

.l-footer {
    background-color: #205E79;
    padding: 32px 0 20px;
    position: relative;
}

.l-footer:before {
    content: "";
    position: absolute;
    width: 559px;
    height: 230px;
    background-image: url(../images/footer_deco.svg);
    left: 0;
    bottom: 0;
}

.l-footerPage {
    display: block;
    font-size: 2rem;
    line-height: 1.45;
    color: #fff;
    margin: 0 0 37px;
    text-align: center;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
}

.l-footerPage:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 12px 13px 12px;
    border-color: transparent transparent #FFFFFF transparent;
    margin: 0 auto 2px;
}

.l-footer ul {
    display: flex;
    justify-content: space-between;
    margin: 0 0 46px;
}

.l-footer ul li a {
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 2rem;
    color: #fff;
    position: relative;
}

.l-footer ul li a:after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 20px;
    background-color: #fff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: -12px;
}

.l-footer ul li:last-child a:after {
    display: none;
}

.l-footerLogo {
    text-align: center;
    margin: 0 0 40px;
}

.l-footerLogo a {
    display: block;
}

.l-footerCopy {
    text-align: center;
    color: #fff;
    font-weight: 500;
}

@media screen and (max-width: 1300px) {
    .l-footer ul li a {
        font-size: 1.3vw;
    }

    .l-footer ul li a:after {
        height: 13px;
    }

    .l-footerLogo a {
        width: 32%;
        margin-left: auto;
        margin-right: auto;
    }

    .l-footerLogo a img {
        width: 100%;
    }
}

@media screen and (max-width: 820px) {
    .l-footerPage {
        font-size: 1.8rem;
        margin: 0 0 15px;
    }

    .l-footerPage:before {
        border-width: 0 9px 9px 9px;
    }

    .l-footerCopy {
        font-size: 1rem;
    }

    .l-footerLogo a {
        width: 45%;
        margin-left: auto;
        margin-right: auto;
    }

    .l-footer:before {
        width: 422px;
        height: 173px;
        background-size: 100%;
    }
}

@media screen and (max-width: 590px) {
    .l-footerPage {
        margin: 0 0 15px;
    }

    .l-footer ul {
        flex-direction: column;
        margin: 0 0 25px;
    }

    .l-footer ul li a {
        font-size: 1.4rem;
    }

    .l-footer ul li a:after {
        display: none;
    }

    .l-footer ul li {
        padding: 12px 0;
        border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
    }

    .l-footerPage {
        font-size: 1.5rem;
        margin: 0 0 25px;
    }

    .l-footer:before {
        width: 308px;
        height: 127px;
    }
}
