@charset "utf-8";
/* CSS Document */

body {
    font-family: "Noto Sans", "Noto Sans CJK JP", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 15px;
    color: #09328c;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.5px;
}
@media (max-width: 765px) {
    body {
        font-size: 13px;
        letter-spacing: normal;
    }
}
/* header */
header {
    width: 100%;
    position: relative;
}
header .logo {
    position: absolute;
    top:10px;
    left: 20px;
    width: 120px;
    z-index: 3;
}
header .logo img{
    width: 100%;
}
header .header-c-btn {
    position: absolute;
    display: block;
    top: 6px;
    right: 74px;
    width: 120px;
    z-index: 1;
    border-radius: 30px;
    background-color: #fe656a;
    padding: 7px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    text-align: center;
}
header .menubtn{
    position: fixed;
    width: 50px;
    height:50px;
    background:#fff;
    top:0;
    right: 0;
    z-index: 2;
}
header .menubtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 13px;
    height: 2px;
    background-color: #09328c;
}
header .menubtn span:nth-of-type(1) {
    top:22px; 
    width: 24px;
}
header .menubtn span:nth-of-type(2) {
    top:29px;
    width:24px;
}
header .menubtn.active span:nth-of-type(1) {
    top: 20px;
    left: 16px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
}
header .menubtn.active span:nth-of-type(2) {
    top: 32px;
    left: 16px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
}
header .nav {
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #09328c;
  transition: all 0.5s;
  z-index: 1;
  overflow-y: auto;
}
header .nav.open  {
  right: 0;
}
header .nav nav ul {
    display:flex;
    flex-flow: column;
    max-width: 750px;
    margin: 280px auto 360px;
    height: 450px;
    flex-wrap: wrap;
}
header .nav nav ul li {
    width: 50%;
    margin-bottom: 50px;
}
header .nav nav ul li:nth-child(1),header .nav nav ul li:nth-child(2),header .nav nav ul li:nth-child(3) {
    width: 60%;
}
header .nav nav ul li:nth-child(4),header .nav nav ul li:nth-child(5) {
    width: 40%;
}
header .nav nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
}
header .nav nav ul li a span {
    display: block;
    font-size: 20px;
}
@media (max-width: 765px) {
    header .logo {
        width: 100px;
        top: 14px;
    }
    header .nav nav ul {
        margin: 80px auto;
        padding: 0 65px;
        height: auto;
    }
    header .nav nav ul li {
        width: 100%;
        margin-bottom: 25px;
    }
    header .nav nav ul li:nth-child(1),header .nav nav ul li:nth-child(2),header .nav nav ul li:nth-child(3),header .nav nav ul li:nth-child(4),header .nav nav ul li:nth-child(5) {
        width: 100%;
    }
    header .nav nav ul li a {
        font-size: 18px;
    }
    header .nav nav ul li a span {
        font-size: 14px;
    }
}
/* main-v */
#main-v {
    width: 100%;
}
#main-v img {
    width: 100%;
}
#main-v-contact {
    width: 100%;
    height: 60px;
    background-image: url("../images/contact-pg-mv.jpg");
    background-size: cover;
    background-position: center;
}

/* 共通 */
.inner {
    max-width: 1000px;
    margin: 0 auto;
    width: 96%;
}
h2 {
    font-size: 48px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    color: #09328c;
    margin-bottom: 60px;
}
h2.news-h2 {
    color: #ff577b;
}
h2 .sub-title {
    color: #00a9d9;
    font-family: "Noto Sans", "Noto Sans CJK JP", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 15px;
    font-weight: bold;
    padding-left: 60px;
    position: relative;
}
h2.news-h2 .sub-title {
    color: #fff;
}
h2 .sub-title:before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 1px;
    background-color: #00a9d9;
    position: absolute;
    left: 0;
    top:15px;
    margin-bottom: 45px;
}
h2.news-h2 .sub-title:before {
    background-color: #fff;
}
.ta-r {
    text-align: right;
}
.dl .btn-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
}
.dl .btn-list>a {
    display: block;
    background-color: #09328c;
    padding: 35px 5px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    position: relative;
    font-size: 16px;
    box-sizing: border-box;
    width: 31%;
    text-decoration: none;
}
.dl .btn-list>a:after {
    position: absolute;
    top:50%;
    right: 10px;
    margin-top: -18px;
    content: '';
    display: inline-block;
    background-image: url("../images/dl-icon.png");
    background-size: 100% auto;
    width: 36px;
    height: 36px;
    background-repeat: no-repeat;
}
.sp {
  display: none !important;
}
@media (max-width: 765px) {
    h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    h2 .sub-title {
        font-size: 15px;
    }
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }
    .dl .btn-list {
        display: block;
    }
    .dl .btn-list>a {
        width: 100%;
        padding: 18px;
        font-size: 18px;
        margin-bottom: 30px;
    }
}

/* news */
#news {
    background-color: #a2ddf2;
    padding: 150px 0;
}
#news .inner_w {
    max-width: 1000px;
    margin: 0 auto;
    width: 96%;
    background: #fff;
    border-radius: 15px;
    padding: 40px 60px;
    box-sizing: border-box;
}
#news .inner_w p {
    color: #353535;
    padding: 0 0 0.5em;
}
@media (max-width: 765px) {
    #news {
        padding: 65px 0;   
    }
    #news .inner_w {
        padding: 25px 14px;
    }
}

#news .news-inner-flex {
    display: flex;
    margin-top: 20px;
    justify-content: space-between;
}
#news .news-inner-flex>div {
    width: 48%;
    text-align: center;
    font-size: 18px;
    color: #353535;
}
#news .news-inner-flex>div a {
    display: block;
    width: 100%;
    margin-top: 15px;
}
/* our-service */
#service {
    background-color: #e8f1f8;
    padding: 150px 0;
}
#service .inner_w {
    max-width: 1000px;
    margin: 0 auto;
    width: 96%;
    background: #fff;
    border-radius: 15px;
    padding: 80px 80px 35px;
    box-sizing: border-box;
}
#service h3 {
    font-size: 24px;
    font-weight: bold;
    color: #09328c;
    position: relative;
    margin-bottom: 45px;
}
#service h3:before {
    position: absolute;
    top:15px;
    left: -90px;
    content: '';
    display: inline-block;
    background-image: url("../images/h3-icon.jpg");
    background-size: 100% auto;
    width: 58px;
    height: 15px;
    background-repeat: no-repeat;
}
#service .inner_w p {
    margin-bottom: 45px;
}
#service .inner_w .kikan {
    width: 88%;
    background-color: #e8f1f8;
    padding: 40px;
    margin-bottom: 45px;
    display: inline-block;
}
#service .inner_w .kikan .end {
    display: inline-block;
    color: #EE2428;
    font-weight: normal;
}
#service .inner_w .dl .title {
    margin-bottom: 15px;
    font-weight: bold;
}
#service .inner_w .dl .btn-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
}
#service .inner_w .dl .btn-list>a {
    display: block;
    background-color: #09328c;
    padding: 35px 5px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    position: relative;
    font-size: 16px;
    box-sizing: border-box;
    width: 31%;
    text-decoration: none;
}
#service .inner_w .dl .btn-list>a:after {
    position: absolute;
    top:50%;
    right: 10px;
    margin-top: -18px;
    content: '';
    display: inline-block;
    background-image: url("../images/dl-icon.png");
    background-size: cover;
    width: 36px;
    height: 36px;
    background-repeat: no-repeat;
}
#service .inner_w .img-conts {
    display: flex;
    align-items: flex-start;
}
#service .inner_w .img-conts>div:first-child {
    width: 58.7%;
    margin-right: 4.8%;
}
#service .inner_w .img-conts>div:last-child {
    width: 36.5%;
}
#service .inner_w .img-conts>div:last-child .img {
    color: #353535;
    font-size: 11px;
}
#service .inner_w .img-conts>div:last-child .img img {
    width: 100%; 
}
#service .inner_w .img-conts>div:last-child .img:first-child {
    margin-bottom: 60px;
}
#service .btn {
    width: 300px;
    display: block;
    border-radius: 40px;
    background-color: #fe656a;
    padding: 15px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    text-align: center;
    margin: 40px auto ;
}

#service h4 {
    width: 100%;
    margin: 0 auto 0;
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
}

#service dl.gaiyou {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 800px;
    margin: 20px auto 40px;
    padding: 0;
}

#service dl.gaiyou dt {
    width: 20%;
    margin: 0 auto 10px;
    padding: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.8;
    text-align: left;
}

#service dl.gaiyou dd {
    width: 80%;
    margin: 0 auto 10px;
    padding: 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    text-align: left;
}

#service dl.gaiyou dd ul {
    width: 100%;
    margin: 0 auto 0;
    padding: 0;
}

#service dl.gaiyou dd ul li {
    width: 100%;
    margin: 0 auto 0;
    padding-left: 1.2rem;
    text-indent: -1.2rem;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    text-align: left;
}


@media (max-width: 765px) {
    #service {
        padding: 65px 0;   
    }
    #service .inner_w {
        padding: 25px 14px;
    }
    #service h3 {
        font-size: 20px;
        margin-bottom: 30px;
    }
    #service h3:before {
        width: 17.5px;
        height: 6.5px;
        left: -20px;
        top: 19px;
    }
    #service .inner_w .kikan {
        padding: 15px 10px;
        margin-bottom: 30px;
    }
    #service .inner_w p {
        margin-bottom: 30px;
    }
    #service .inner_w .dl .title {
        font-size: 16px;
    }
    #service .inner_w .dl .btn-list {
        display: block;
    }
    #service .inner_w .dl .btn-list>a {
        width: 100%;
        padding: 18px;
        font-size: 18px;
        margin-bottom: 30px;
    }
    #service .inner_w .img-conts>div:first-child {
        width: 100%;
        margin-right: 0;
}
    #service .inner_w .img-conts>div:first-child .img {
        color: #353535;
        font-size: 11px;
        margin-bottom: 30px;
    }
    #service .inner_w .img-conts>div:first-child .img img {
        width: 100%; 
    }
    #service h4 {
        width: 100%;
        margin: 0 auto 0;
        padding: 0;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.5;
        text-align: left;
    }
    
    #service dl.gaiyou {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
        max-width: 800px;
        margin: 10px auto 20px;
        padding: 0;
    }
    
    #service dl.gaiyou dt {
        width: 100%;
        margin: 0 auto 0;
        padding: 0;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.8;
        text-align: left;
    }
    
    #service dl.gaiyou dd {
        width: 100%;
        margin: 0 auto 10px;
        padding: 0;
        font-size: 13px;
        font-weight: 300;
        line-height: 1.8;
        text-align: left;
    }
    
    #service dl.gaiyou dd ul {
        width: 100%;
        margin: 0 auto 0;
        padding: 0;
    }
    
    #service dl.gaiyou dd ul li {
        width: 90%;
        margin: 0 auto 0;
        padding-left: 1.1rem;
        text-indent: -1.1rem;
        font-size: 13px;
        font-weight: 300;
        line-height: 1.8;
        text-align: left;
    }
}

/* movie */
#movie {
    padding: 150px 0 150px;
}
#movie .movie-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#movie .movie-list>div {
    display: block;
    width: 31%;
}
#movie .movie-list>div img {
    width: 100%;
}
@media (max-width: 765px) {
    #movie {
        padding: 65px 0;
    }
    #movie .movie-list {
        display: block;
    }
    #movie .movie-list>div {
        width: 100%;
        margin-bottom: 20px;
    }
}
/* requirements */
#requirements {
    background-color: #e8f1f8;
    padding: 150px 0 150px;
}
@media (max-width: 765px) {
    #requirements {
        padding: 65px 0;
    }
}
#requirements .btn {
    width: 300px;
    display: block;
    border-radius: 40px;
    background-color: #fe656a;
    padding: 15px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    text-align: center;
    margin: 40px auto 0;
}
/* faq */
#faq {
    background-color: #e8f1f8;
    padding: 180px 0;
}
#faq h3 {
    font-size: 20px;
    padding-left: 30px;
    position: relative;
    margin-bottom: 30px;
    font-weight: bold;
}
#faq h3:after {
    position: absolute;
    top:1px;
    left: 0;
    content: '■';
    display: inline-block;
}
#faq dl {
    margin-bottom: 35px;
    line-height: 1.6;
}
#faq dl dt {
    background-color: #09328c;
    padding: 2px;
    display: flex;
    align-items: center;
    color: #fff;
}
#faq dl dt>div:first-child {
    flex: 1;
    padding: 20px 30px;
    border-right: 1px solid #536fae;
}
#faq dl dt>div.btn {
    width: 60px;
    height: auto;
    display: flex;
    align-items: center;
    position: relative;
}
#faq dl dt>div.btn .icon-wrap {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translatey(-50%);
  width: 60px;
  height: 60px;
}
#faq dl dt>div.btn .icon-wrap .icon {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}
#faq dl dt>div.btn .icon-wrap .icon:before,
#faq dl dt>div.btn .icon-wrap .icon:after {
  position: absolute;
  content: "";
  display: block;
  transition: all 0.4s;
  background: #fff;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 2px;
  transform: translate(-50%, -50%);
}
#faq dl dt>div.btn .icon-wrap .icon:before {
  transform: translate(-50%, -50%) rotate(90deg);
}
#faq dl dt>div.btn .icon-wrap .icon.open:before {
  transform: translate(-50%, -50%) rotate(0deg);
}
#faq dl dd {
    background-color: #fff;
    padding: 22px 30px;
    color: #353535;
    display: none;
}
#faq dl dd a {
    color: #09328c;
}
#faq dl dd .blue {
    color: #09328c;
    display: inline-block;
    margin-right: 5px;
}
@media (max-width: 765px) {
    #faq {
        padding: 65px 0;
    }
    #faq h3 {
        font-size: 16px;
    }
    #faq dl {
        margin-bottom: 30px;
    }
    #faq dl dt>div:first-child {
        padding: 16px 25px;
    }
    #faq dl dt>div.btn .icon-wrap {
        width: 40px;
        height: 40px;
        right: 7px;
    }
}
/* contact */
#contact {
    padding: 0 0 180px;
}
#contact.contact-pg {
    padding: 180px 0;
}
#contact .title-v {
    width: 100%;
    margin-bottom: 180px;
}
#contact .title-v img {
    width: 100%;
}
#contact .title {
    margin-bottom: 25px;
    font-size: 20px;
}
#contact .mail {
    margin-bottom: 25px;
}
#contact a {
    color: #09328c;
}
#contact .mail a {
    display: inline-block;
    margin-left: 20px;
    color: #09328c;
}
#contact .sub {
    color: #353535;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #09328c;
}
@media (max-width: 765px) {
    #contact {
        padding: 0 0 60px;
    }
    #contact.contact-pg {
        padding: 65px 0;
    }
    #contact .title-v {
        margin-bottom: 65px;
    }
    #contact .title {
        margin-bottom: 15px;
        font-size: 16px;
    }
    #contact .mail {
        margin-bottom: 15px;
    }
}

/* pagetop */
.pagetop {
    background-color: #e6e6e6;
    padding: 16px 25px;
    text-align: right;
}
.pagetop a {
    color: #00a9d9;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
}
.pagetop a  img {
    width: 10px;
    vertical-align: middle;
}
/* footer */
footer {
    background-color: #f2f2f2;
    color: #808080;
    font-weight: normal;
}
footer .footer-conts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
}
footer .footer-conts ul {
    padding: 0;
    display: flex;
    margin: 0;
}
footer .footer-conts ul li {
    margin-right: 15px;
}
footer .footer-conts ul li:last-child {
    margin-right: 0;
}
footer .footer-conts ul li a {
    text-decoration: none;
    color: #808080;
    font-size: 12px;
}
footer .footer-conts .copyright {
    font-size: 11px;
    font-weight: normal;
}
@media (max-width: 765px) {
    footer .inner {
        width: 100%;
    }
    footer .footer-conts {
        display: block;
        padding: 28px 0 0;
    }
    footer .footer-conts ul {
        display: block;
        margin: 0 auto 28px;
        width: 96%;
    }
    footer .footer-conts .copyright {
        text-align: center;
        padding: 15px 0;
        border-top: 1px solid #dddddd;
    }
    .pagetop {
        padding: 20px;
    }
}

/* blog */
#blog {
    background-color: #e8f1f8;
    padding: 80px 0;
}
#blog .inner_w {
    max-width: 1000px;
    margin: 0 auto 30px;
    width: 96%;
    background: #fff;
    border-radius: 15px;
    padding: 80px 80px 35px;
    box-sizing: border-box;
}
#blog h3 {
    font-size: 24px;
    font-weight: bold;
    color: #09328c;
    position: relative;
    margin-bottom: 45px;
}
#blog h3:before {
    position: absolute;
    top:15px;
    left: -90px;
    content: '';
    display: inline-block;
    background-image: url("../images/h3-icon.jpg");
    background-size: 100% auto;
    width: 58px;
    height: 15px;
    background-repeat: no-repeat;
}
#blog .inner_w p {
    margin-bottom: 45px;
}
#blog .inner_w h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}
#blog .inner_w div.img {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 45px;
    padding: 0;
}
#blog .inner_w div.img img {
    width: 100%;
}
#blog .inner_w .img-conts {
    display: flex;
    align-items: flex-start;
}
#blog .inner_w .img-conts>div:first-child {
    width: 58.7%;
    margin-right: 4.8%;
}
#blog .inner_w .img-conts>div:last-child {
    width: 36.5%;
}
#blog .inner_w .img-conts>div:last-child .img {
    color: #353535;
    font-size: 11px;
}
#blog .inner_w .img-conts>div:last-child .img img {
    width: 100%; 
}
#blog .inner_w .img-conts>div:last-child .img:first-child {
    margin-bottom: 60px;
}

@media (max-width: 765px) {
    #blog {
        padding: 40px 0;   
    }
    #blog .inner_w {
        margin: 0 auto 30px;
        padding: 25px 14px;
    }
    #blog h3 {
        font-size: 20px;
        margin-bottom: 30px;
    }
    #blog h3:before {
        width: 17.5px;
        height: 6.5px;
        left: -20px;
        top: 19px;
    }
    #blog .inner_w p {
        margin-bottom: 30px;
    }
    #blog .inner_w h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    #blog .inner_w .img-conts>div:first-child {
        width: 100%;
        margin-right: 0;
}
    #blog .inner_w .img-conts>div:first-child .img {
        color: #353535;
        font-size: 11px;
        margin-bottom: 30px;
    }
    #blog .inner_w .img-conts>div:first-child .img img {
        width: 100%; 
    }
}

/* main-blog */
#main-blog {
    width: 100%;
    height: 56px;
    background-color: #09328c;
}

@media (max-width: 765px) {
    #main-blog {
        width: 100%;
        height: 52px;
    }
}

/* margin */
.mt10 {margin-top: 10px !important;}
.mb10 {margin-bottom: 10px!important;}
.mt20 {margin-top: 20px!important;}
.mb20 {margin-bottom: 20px!important;}
.mt30 {margin-top: 30px!important;}
.mb30 {margin-bottom: 30px!important;}
.mt40 {margin-top: 40px!important;}
.mb40 {margin-bottom: 40px!important;}
.mt50 {margin-top: 50px!important;}
.mb50 {margin-bottom: 50px!important;}
.mt60 {margin-top: 60px!important;}
.mb60 {margin-bottom: 60px!important;}
.mt80 {margin-top: 80px!important;}
.mb80 {margin-bottom: 80px!important;}
.mt100 {margin-top: 100px!important;}
.mb100 {margin-bottom: 100px!important;}

@media screen and (max-width:765px){
  .mt10 {margin-top: 10px!important;}
  .mb10 {margin-bottom: 10px!important;}
  .mt20 {margin-top: 15px!important;}
  .mb20 {margin-bottom: 15px!important;}
  .mt30 {margin-top: 20px!important;}
  .mb30 {margin-bottom: 20px!important;}
  .mt40 {margin-top: 20px!important;}
  .mb40 {margin-bottom: 20px!important;}
  .mt50 {margin-top: 25px!important;}
  .mb50 {margin-bottom: 25px!important;}
  .mt60 {margin-top: 30px!important;}
  .mb60 {margin-bottom: 30px!important;}
  .mt80 {margin-top: 40px!important;}
  .mb80 {margin-bottom: 40px!important;}
  .mt100 {margin-top: 50px!important;}
  .mb100 {margin-bottom: 50px!important;}
}

#gallery {
    padding: 150px 0 150px;
}

#gallery h3 {
    width: 100%;
    margin: 60px auto 30px;
    padding: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
}

#gallery p {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 2;
    text-align: left;
}

#gallery p span {
    font-size: 13px;
    font-weight: 500;
}

#gallery .galleryArea {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

#gallery .galleryArea .galleryBox {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 960px;
    margin: 0 0 60px;
    padding: 0;
}

#gallery .galleryArea .galleryBox:last-child {
    margin-bottom: 0;
}

#gallery .galleryArea .galleryBox .galleryBoxPic {
    width: 32%;
    max-width: 400px;
    margin: 0;
    padding: 0;
}

#gallery .galleryArea .galleryBox .galleryBoxPic a:hover {
    opacity: 0.7;
}

#gallery .galleryArea .galleryBox .galleryBoxPic img {
    width: 100%;
}

#gallery .galleryArea .galleryBox .galleryBoxTxt {
    width: 100%;
    margin: 16px 0 0;
    padding: 0;
}

#gallery .galleryArea .galleryBox .galleryBoxTxt p {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
}

@media (max-width: 765px) {
    #gallery {
        padding: 65px 0;
    }

    #gallery h3 {
        margin: 40px auto 20px;
        padding: 0;
        font-size: 20px;
        font-weight: 700;
        line-height: 1.2;
        text-align: left;
    }

    #gallery .galleryArea .galleryBox {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-around;
        width: 100%;
        margin: 0 0 30px;
        padding: 0;
    }

    #gallery .galleryArea .galleryBox .galleryBoxPic {
        width: 48%;
        margin: 0 0 10px;
        padding: 0;
    }

    #gallery .galleryArea .galleryBox .galleryBoxPic:last-child {
        margin-bottom: 0;
    }

    #gallery .galleryArea .galleryBox .galleryBoxTxt {
        width: 100%;
        margin: 5px 0 0;
        padding: 0;
    }

    #gallery .galleryArea .galleryBox .galleryBoxTxt p {
        font-size: 16px;
    }
}
