/*----------------------------------------
	all
----------------------------------------*/

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

html {
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, 'ＭＳ ゴシック', sans-serif;
    font-size: 62.5%;
    color: #000000;
    -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.5rem;
    font-weight: 300;
    background-color: #7FC8BC;
}

p {
    line-height: 1.75;
}

a {
    text-decoration: none;
    color: #4D4D4D;
}

img {
    vertical-align: bottom;
}

#container {
    overflow: hidden;
}

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

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

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

.c-inner03 {
    width: 1400px;
    margin: 0 auto;
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.respon {
    width: 100%;
}

.op {
    transition: 0.3s;
}

.op:hover {
    opacity: 0.5;
}

.c-text {
    font-size: 1.8rem;
    line-height: 1.75;
    color: #fff;
}

.c-title {
    text-align: center;
    position: relative;
    margin: 0 0 55px;
}

.c-title:before {
    content: "";
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../images/title_icon.svg);
    width: 290px;
    height: 165px;
    background-repeat: no-repeat;
}

.c-titleJp {
    margin: 0 0 12px;
}

.c-titleEn {
    font-size: 9rem;
    letter-spacing: 0.06em;
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
}

.pc_none {
    display: none;
}

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

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

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

    .c-inner02 {
        padding: 0 50px;
    }
}

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

    .c-inner02 {
        padding: 0 6%;
    }

    .p-menu .c-inner {
        width: 100%;
        padding: 0 3%;
    }
}

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

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

    .pc_none {
        display: block;
    }

    .c-titleEn {
        font-size: 6rem;
    }

    .c-title:before {
        background-size: 100%;
        width: 240px;
        height: 136px;
    }

    .c-titleJp {
        transform: scale(0.8);
    }

    .c-title {
        margin: 0 0 30px;
    }
}

@media screen and (max-width: 599px) {
    .c-title {
        margin: 0 0 25px;
    }

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

    .p-menu .c-inner {
        width: 100%;
        padding: 0 2.5%;
    }

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

    .sp_none {
        display: none;
    }

    .c-titleEn {
        font-size: 4rem;
    }

    .c-title:before {
        width: 162px;
        height: 115px;
        top: -24px;
    }

    .c-titleJp {
        transform: scale(0.5);
        margin: 0 0 4px;
    }
}

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

.l-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100px;
    position: relative;
    padding: 0 100px 0 0;
    z-index: 1;

}

.l-header__inner {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.l-header nav {
    height: 100px;
    display: flex;
    align-items: center;
}

.l-header nav ul {
    display: flex;
    align-items: center;
}

.l-header nav ul li a {
    display: block;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    font-weight: bold;
    color: #fff;
    transition: .3s;
}

.l-header nav ul li:not(:last-child) {
    margin: 0 40px 0 0;
}

.l-headerLogo {
    width: 293px;
    height: 148px;
    background-color: #7FC8BC;
    border-radius: 0 0 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (min-width: 769px) {
    .l-header nav ul li a:hover {
        transform: scale(1.1);
    }
}

@media screen and (max-width: 768px) {
    .l-headerLogo img {
        width: 65%;
    }

    .l-headerLogo {
        width: 230px;
        height: 112px;
    }

    .l-header {
        padding: 0 20px 0 0;
    }

    .l-header nav {
        height: auto;
        display: none;
    }

    .l-header {
        height: auto;
    }
}

@media screen and (max-width: 599px) {
    .l-headerLogo img {
        width: 79%;
    }

    .l-headerLogo {
        width: 140px;
        height: 77px;
    }
}

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

.p-mv {
    position: relative;
    margin: 0 0 273px;
    padding: 0 100px;
}

.p-mvImg {
    width: 100%;
    height: 0;
    padding-top: 48.2%;
    background-image: url(../images/mv.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 30px;
}

.p-mvImg__wrap {
    position: relative;
}

.p-mvCatch {
    width: 100%;
    position: absolute;
    left: 50%;
    bottom: -13.2%;
    transform: translateX(-50%);
}

.p-mvCatch01 {
    width: 31.5%;
    margin: 0 auto;
}

.p-mvCatch02 {
    width: 36.5%;
    margin: -7px auto 0;
}

.p-mvCatch01 img,
.p-mvCatch02 img {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .p-mv {
        height: 85vh;
        margin: 0 0 200px;
        padding: 30px 30px 0;
    }

    .p-mvImg {
        background-image: url(../images/mv_tb.png);
        height: 89vh;
    }

    .p-mvCatch {
        bottom: -7%;
    }

    .p-mvCatch01 {
        width: 52%;
    }

    .p-mvCatch02 {
        width: 65%;
    }
}

@media screen and (max-width: 590px) {
    .p-mv {
        margin: 0 0 140px;
        padding: 20px 20px 0;
    }

    .p-mvImg {
        border-radius: 20px;
        background-image: url(../images/mv_sp.png);
    }
    
    .p-mvCatch {
                bottom: -2%;
    }

    .p-mvCatch01 {
        width: 62%;
    }

    .p-mvCatch02 {
        width: 75%;
    }
}


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

.p-about {
    margin: 0 0 400px;
    position: relative;
}

.p-about:before {
    content: "";
    background-image: url(../images/about_sand01.png);
    width: 368px;
    height: 512px;
    position: absolute;
    top: 84px;
    left: 0;
    background-repeat: no-repeat;
}

.p-about:after {
    content: "";
    background-image: url(../images/about_sand02.png);
    width: 365px;
    height: 531px;
    position: absolute;
    top: 72px;
    right: 0;
    background-repeat: no-repeat;
}

.p-aboutSubtitle {
    text-align: center;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: #fff;
    font-size: 5.3rem;
    letter-spacing: 0.08em;
    margin: 0 0 75px;
    text-shadow: 2px 2px 1px #7FC8BC, -2px 2px 1px #7FC8BC, 2px -2px 1px #7FC8BC, -2px -2px 1px #7FC8BC, 2px 0px 1px #7FC8BC, 0px 2px 1px #7FC8BC, -2px 0px 1px #7FC8BC, 0px -2px 1px #7FC8BC;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

.p-about h2 span {
    font-size: 3.6rem;
    line-height: 1.472;
    display: block;
    margin: 0 0 10px;
}

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

.p-about__text {
    width: 46.3%;
}

.p-about__text:after {
    content: "";
    background-image: url(../images/about_icon.svg);
    width: 554px;
    height: 291px;
    position: absolute;
    bottom: 40px;
    right: -16px;
    background-repeat: no-repeat;
}

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

.p-about__img {
    position: relative;
    width: 45.1%;
}

.p-about__img:before {
    content: "";
    position: absolute;
    bottom: -135px;
    right: -168px;
    background-image: url(../images/about_kirinuki.png);
    width: 391px;
    height: 272px;
    z-index: 1;
    background-repeat: no-repeat;
}

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

@media screen and (max-width: 1600px) {
    .p-about:before {
        width: 268px;
        height: 374px;
        background-size: 100%;
    }

    .p-about:after {
        width: 266px;
        height: 388px;
        background-size: 100%;
    }
}

@media screen and (max-width: 1400px) {
    .p-about:before {
        width: 198px;
        height: 277px;
    }

    .p-about:after {
        width: 196px;
        height: 287px;
    }

    .p-about__text:after {
        width: 398px;
        height: 209px;
        background-size: 100%;
    }

    .p-about__img:before {
        width: 220px;
        height: 153px;
        background-size: 100%;
        bottom: -60px;
        right: -110px;
    }
}

@media screen and (max-width: 1100px) {
    .p-aboutBox {
        align-items: flex-start;
    }
}

@media screen and (max-width: 768px) {
    .p-about h2 span {
        font-size: 2.6rem;
    }

    .p-aboutSubtitle {
        font-size: 4.3rem;
    }

    .p-about:before {
        top: 30px;
    }

    .p-about:after {
        top: 30px
    }

    .p-about:before {
        width: 160px;
    }

    .p-about:after {
        width: 154px;
        top: 22px;
    }

    .p-about__img:before {
        width: 176px;
        height: 123px;
        bottom: -50px;
        right: -8%;
    }

    .p-about__text:after {
        width: 330px;
        height: 174px;
        bottom: 48%;
        right: -22px;
    }

    .p-about {
        margin: 0 0 200px;
    }
}

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

    .p-about__img {
        width: 85%;
        margin: 0 auto 30px;
    }

    .p-about__text {
        width: 85%;
        margin: 0 auto;
    }

    .p-about h2 span {
        font-size: 1.8rem;
    }

    .p-aboutSubtitle {
        font-size: 2.6rem;
    }

    .p-about__img:before {
        width: 167px;
        height: 133px;
        bottom: -38px;
        right: -8%;
    }

    .p-about:before {
        width: 100px;
        top: 30px;
    }

    .p-about:after {
        width: 98px;
        top: 24px;
    }

    .p-about .c-title {
        position: relative;
        z-index: 1;
        text-shadow: 2px 2px 1px #7FC8BC, -2px 2px 1px #7FC8BC, 2px -2px 1px #7FC8BC, -2px -2px 1px #7FC8BC, 2px 0px 1px #7FC8BC, 0px 2px 1px #7FC8BC, -2px 0px 1px #7FC8BC, 0px -2px 1px #7FC8BC;
    }

    .p-aboutSubtitle {
        margin: 0 0 30px;
    }

    .p-about__text:after {
        width: 266px;
        bottom: -9%;
    }

    .p-about {
        margin: 0 0 160px;
    }
}

/*----------------------------------------
	menu
----------------------------------------*/

.p-menu {
    background-color: #69A09A;
    position: relative;
    padding: 0 0 327px;
}

.p-menu:before {
    content: "";
    display: block;
    background-image: url(../images/menu_deco.svg);
    width: 100%;
    height: 177px;
    position: absolute;
    top: -177px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom;
}

.p-menuBox__wrap:not(:last-child) {
    margin: 0 0 100px;
}

.p-menuBox {
    background-image: url(../images/menu_bg.jpg);
    background-size: cover;
    border-radius: 30px;
    padding: 100px 0 90px;
}

.p-menuBox ul {
    display: flex;
    align-items: end;
    flex-wrap: wrap;

}

.p-menuBox.p-menuBox01 ul,
.p-menuBox.p-menuBox02 ul {
    justify-content: space-between;
}

.p-menuBox.p-menuBox01 ul li,
.p-menuBox.p-menuBox03 ul li {
    width: 28.3%;
    text-align: center;
}

.p-menuBox.p-menuBox01 ul li:nth-child(n+4) {
    margin: 30px 0 0;
}

.p-menuBox.p-menuBox02 ul li {
    width: 21.7%;
    text-align: center;
}

.p-menuBox.p-menuBox03 ul {
    justify-content: center;
}

.p-menuBox.p-menuBox03 ul li:not(:nth-child(2n+2)) {
    margin-right: 90px;
}

.p-menuBox.p-menuBox04 ul {
    justify-content: space-between;
}

.p-menuBox.p-menuBox04 ul li {
    width: 45.8%;
    text-align: center;
}

.p-menuBox.p-menuBox04 ul li:nth-child(n+3) {
    margin: 40px 0 0;
}

.p-menuBox.p-menuBox04 ul li:last-child {
    margin: auto;
}

.p-menuBox.p-menuBox05 ul li {
    width: 65.8%;
    margin: 0 auto;
    text-align: center;
}

.p-menuBox.p-menuBox05 ul li figcaption {
    width: 550px;
    margin: 30px auto 0;
}

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

.p-menuBox.p-menuBox05 .p-menuPrice {
    font-size: 8.1rem;
}

.p-menuBox.p-menuBox05 .p-menuPrice span {
    font-size: 4.4rem;
}

.p-menuBox h4 {
    font-size: 3.2rem;
    letter-spacing: 0.08em;
    width: 100%;
    height: 52px;
    background-color: #2C2C2C;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: #fff;
    margin: 0 0 15px;
}

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

.p-menuBox ul li figcaption {
    font-weight: bold;
    letter-spacing: 0.08em;
    margin: 10px 0 0;
}

.p-menuPrice {
    font-size: 5.4rem;
    letter-spacing: 0.05em;
    margin: 13px 0 0;
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-style: normal;
    color: #FFF503;
}

.p-menuPrice span {
    font-size: 2.8rem;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.p-menuBox__wrap h3 {
    margin: 0 0 -57px;
    text-align: center;
}

.p-menuBox__attention {
    margin: 0 0 30px;
    color: #fff;
    text-align: center;
    font-size: 1.8rem;
}

@media screen and (max-width: 1500px) {
    .p-menuBox h4 {
        font-size: 1.8vw;
    }
}

@media screen and (max-width: 1200px) {
    .p-menuBox h4 {
        font-size: 2rem;
    }

    .p-menu {
        padding: 0 0 250px
    }
}

@media screen and (max-width: 1000px) {
    .p-menu {
        padding: 0 0 180px
    }
}

@media screen and (max-width: 768px) {
    .p-menuBox h4 {
        font-size: 2.2rem;
    }

    .p-menuBox.p-menuBox01 ul li,
    .p-menuBox.p-menuBox03 ul li {
        width: 47%;
    }

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

    .p-menuBox {
        padding: 80px 0 90px;
    }

    .p-menuBox ul li figure img {

        margin: 0 0 10px;
    }

    .p-menuBox__wrap:nth-of-type(1) .p-menuBox ul li figure img {
        width: 65%;
    }

    .p-menuBox__wrap:nth-of-type(1) .p-menuBox ul li:nth-of-type(5) figure img {
        width: 73%;
    }

    .p-menuBox__wrap:nth-of-type(2) .p-menuBox ul li figure img {
        width: 63%;
    }

    .p-menuBox__wrap:nth-of-type(2) .p-menuBox ul li:nth-of-type(1) figure img {
        width: 58%;
    }

    .p-menuBox__wrap:nth-of-type(2) .p-menuBox ul li:nth-of-type(4) figure img {
        width: 77%;
    }

    .p-menuBox__wrap:nth-of-type(2) .p-menuBox ul li:nth-child(n+3) figure img {
        margin: 50px 0 0;
    }

    .p-menuBox__wrap:nth-of-type(3) .p-menuBox ul li figure img {
        width: 76%;
    }

    .p-menuBox__wrap:nth-of-type(3) .p-menuBox ul li:nth-of-type(2) figure img {
        width: 80%;
    }

    .p-menuBox__wrap:nth-of-type(4) .p-menuBox ul li figure img {
        width: 55%;
    }

    .p-menuBox__wrap:nth-of-type(4) .p-menuBox ul li figure img {
        width: 88%;
    }

    .p-menuBox__wrap:nth-of-type(5) .p-menuBox ul li figure img {
        width: 85%;
    }

    .p-menuBox.p-menuBox03 ul {
        justify-content: space-between;
    }

    .p-menuBox.p-menuBox03 ul li:not(:nth-child(2n+2)) {
        margin: 0;
    }

    .p-menuBox.p-menuBox05 ul li {
        width: 100%;
    }

    .p-menuBox.p-menuBox05 ul li figcaption {
        width: 100%;
    }

    .p-menuBox.p-menuBox05 ul li img {
        width: 72%;
    }

    .p-menuBox.p-menuBox01 ul li:nth-child(n+3) {
        margin: 50px 0 0;
    }

    .p-menuBox__wrap h3 {
        width: 72%;
        margin: 0 auto -40px;
    }

    .p-menuBox__wrap h3 img {
        width: 100%;
    }

    .p-menuBox h4 span {
        font-size: 1.2rem;
    }

    .p-menuBox ul li figure img {
        margin: 0;
    }

    .p-menuBox.p-menuBox05 .p-menuPrice {
        font-size: 4.1rem;
    }

    .p-menuBox.p-menuBox05 .p-menuPrice span {
        font-size: 3rem;
    }

    .p-menuPrice {
        font-size: 2.7rem;
    }

    .p-menuPrice span {
        font-size: 1.8rem;
    }

    .p-menuBox {
        border-radius: 20px;
        padding: 80px 0 45px;
    }

    .p-menuBox__wrap:not(:last-child) {
        margin: 0 0 50px;
    }

    .p-menu {
        padding: 0 0 140px;
    }
}

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

    .p-menuBox h4 {
        font-size: 4.1vw;
    }

    .p-menuBox ul li figcaption .c-text {
        font-size: 2.4vw;
    }

    .p-menuBox h4 {
        height: auto;
        padding: 8px 0;
    }

    .p-menuBox__wrap h3 {
        margin: 0 auto -24px;
    }

    .p-menuBox.p-menuBox01 ul li:nth-child(n+3) {
        margin: 15px 0 0;
    }

    .p-menuBox__wrap:nth-of-type(2) .p-menuBox ul li:nth-child(n+3) figure img {
        margin: 15px 0 0;
    }

    .p-menuBox.p-menuBox04 ul li:nth-child(n+3) {
        margin: 15px 0 0;
    }

    .p-menuBox.p-menuBox05 ul li figcaption {
        margin: 15px auto 0;
    }

    .p-menuBox h4 {
        margin: 0 0 8px;
    }

    .p-menuPrice {
        margin: 8px 0 0;
        font-size: 2.4rem;
    }

    .p-menuPrice span {
        font-size: 1.5rem;
    }

    .p-menuBox.p-menuBox05 .p-menuPrice {
        font-size: 3rem;
    }

    .p-menuBox.p-menuBox05 .p-menuPrice span {
        font-size: 2rem;
    }

    .p-menuBox {
        padding: 50px 0 30px;
    }

    .p-menuBox__wrap h3 {
        width: 80%;
    }

    .p-menuBox ul li figcaption {
        margin: 10px 0 0;
    }
    
    .p-menuBox h4 span {
        font-size: 1.7vw;
    }
}


/*----------------------------------------
	contact
----------------------------------------*/
.p-contact {
    position: relative;
    margin: 0 0 130px;
}

.p-contact:before {
    content: "";
    display: block;
    width: 100%;
    height: 177px;
    background-repeat: no-repeat;
    background-image: url(../images/contact_deco.svg);
    position: absolute;
    top: -177px;
    background-size: 100%;
    background-position: bottom;
}

.p-contactSubtitle {
    color: #fff;
    font-size: 4rem;
    letter-spacing: 0.08em;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    line-height: 1.475;
    text-align: center;
    margin: 0 0 70px;
}

.p-contactBox {
    width: 1000px;
    margin: auto;
    background-color: #69A09A;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 55px 0;
}

.p-contactName {
    font-size: 3rem;
    letter-spacing: 0.08em;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: #fff;
    margin: 0 0 40px;
}

.p-contactName span {
    font-size: 2.3rem;
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 6px;
    margin: 0 15px 0 0;
    padding: 8px 14px;
}

.p-contactText {
    margin: 0 76px 0 0;
}

.p-contactInstagram {
    width: 350px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #7FC8BC;
    transition: .3s;
}

.p-contactInstagram:before {
    content: "";
    display: inline-block;
    margin: 0 8px 0 0;
    background-image: url(../images/contact_instagram_icon.svg);
    width: 32px;
    height: 32px;
}

.p-contactText {
    margin: 0 50px 0 0;
}

@media screen and (min-width: 769px) {
    .p-contactInstagram:hover {
        transform: scale(1.1);
    }
}

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

@media screen and (max-width: 820px) {
    .p-contactImg {
        width: 29%;
    }

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

    .p-contactBox {
        padding: 40px 30px;
    }
}

@media screen and (max-width: 768px) {
    .p-contact {
        margin: 0 0 80px;
        border-radius: 10px;
    }

    .p-contactSubtitle {
        font-size: 2.8rem;
    }

    .p-contactInstagram {
        width: 240px;
        height: 60px;
    }

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

    .p-contactName span {
        font-size: 1.8rem;
    }

    .p-contactName {
        font-size: 2.5rem;
    }

    .p-contactName span {
        margin: 0 15px 0 0;
        padding: 6px 7px;
    }

    .p-contactSubtitle {
        margin: 0 0 30px;
    }
}

@media screen and (max-width: 590px) {
    .p-contactSubtitle {
        font-size: 1.7rem;
    }

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

    .p-contactText {
        margin: 0 0 30px;
    }

    .p-contactBox {
        padding: 35px 16px;
    }

    .p-contactName {
        margin: 0 0 22px;
    }

    .p-contactInstagram {
        width: 240px;
        height: 50px;
    }

    .p-contactInstagram:before {
        width: 20px;
        height: 20px;
        background-size: 100%;
        margin: 0 4px 0 0;
    }

    .p-contactName {
        font-size: 2rem;
    }

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

    .p-contactImg {
        width: 40%;
    }
}


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

.l-footerCopyright {
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding: 12px 0;
    background-color: #69A09A;
    color: #fff;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .l-footerCopyright {
        font-size: 1rem;
    }
}
