@charset "UTF-8";


/*========================================

  Elements

========================================*/


body {
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
    position: relative;
    min-width: 1200px;
    margin: 0;
    padding: 0;
    color: #333;
    background: #fff;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
}




html,
body {
    height: 100%;
}

body.overflowhidden {
    overflow: hidden;
    height: 100%;
}

@media screen and (max-width: 767px) {
    body {
        width: 100vw;
        min-width: auto;
    }
}

p,
h1,
h2,
h3,
h4,
h5,
dt,
dd,
th,
td,
ul,
li {
    margin: 0;
    padding: 0;
}

p {
    line-height: 1.7em;
}

/* Link ---------------*/
a {
    overflow: hidden;
    text-decoration: none;
    color: #222;
}

a:visited {
    text-decoration: none;
    color: #222;
}

a:hover {
    text-decoration: none;
    color: #808080;
}

a:focus,
textarea:focus,
input:focus {
    border: none;
    outline: none;
}

a:active {
    border: none;
    outline: none;
}





/*========================================

  main

========================================*/

main {
    text-align: center;
}



.ancher {
    display: block;
}

@media screen and (max-width: 767px) {
    .ancher {
        display: inline;
    }
}


.anckerlink {
    position: relative;
    z-index: -1;
    display: block;
    margin-top: -80px;
    padding-top: 80px;
}

@media screen and (max-width: 767px) {
    .anckerlink {
        display: block;
        margin-top: -14vw;
        padding-top: 14vw;
    }
}

img {
    max-width: 100%;
    height: auto;
    transition: .3s;
    vertical-align: bottom;
}

a:hover img {
    opacity: .7;
    filter: alpha(opacity=70);
    -moz-opacity: .7;
}

.spblock {
    display: none !important;
}

.pcblock {
    display: block !important;
}

@media screen and (max-width: 767px) {
    .spblock {
        display: block !important;
    }

    .pcblock {
        display: none !important;
    }
}


.blocklink {
    cursor: pointer;
    transition: .3s;
}

.blocklink:hover {
    opacity: .7;
    filter: alpha(opacity=70);
    -moz-opacity: .7;
}





/*========================================

  header

========================================*/

header {
    position: relative;
    width: 100%;
    padding: 20px 0 40px 0;
}


header ul,
header li {
    margin: 0;
    padding: 0;
}

header img {
    max-width: 100%;
    vertical-align: bottom;
}

header .inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 94%;
    margin: 0 auto;
}

header .logo span {
    display: inline-block;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2em;
    letter-spacing: 2px;
    margin-left: 20px;
}

@media screen and (max-width: 767px) {
    header {
        width: 90%;
        margin: 0 auto;
        padding: 3vw 0 5vw 0;
    }

    header .inner {
        width: 100%;
        margin: 0 auto;
    }

    header .logo img {
        width: 22vw;
    }

    header .logo span {
        font-size: 5vw;
        letter-spacing: 1px;
        margin-left: 2vw;
    }
}



nav ul {
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    font-size: 20px;
    list-style: none;
    margin-left: 2em;
}

nav ul li a {
    font-weight: 700;
    letter-spacing: 1px;
}

nav ul li a:hover {
    opacity: .7;
    transition: .3s;
}


@media screen and (min-width: 768px) {
    nav ul li a::before {
        content: "\f013";
        font-family: FontAwesome;
        margin-right: 0.3em;
    }

    nav ul li:nth-child(1) a::before {
        color: #ff7d60;
    }

    nav ul li:nth-child(2) a::before {
        color: #ffb332;
    }

    nav ul li:nth-child(3) a::before {
        color: #7cbe32;
    }

    nav ul li:nth-child(4) a::before {
        color: #66b8e9;
    }
}



@media screen and (min-width: 768px) {
    nav li.spnav {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    nav {
        position: fixed;
        z-index: 10;
        top: 0;
        right: -101vw;
        bottom: 0;
        overflow-y: auto;
        width: 100vw;
        padding-top: 20vw;
        padding-bottom: 0;
        transition: .5s;
        border: none;
        background: rgba(255, 255, 255, .95);
    }

    nav.is-fixed {
        position: fixed;
        z-index: 2;
        left: auto;
        width: 70%;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #dcdddd;
    }

    nav ul li {
        font-size: 5vw;
        display: block;
        height: auto;
        margin: 0;
        padding: 0;
        border: none;
        border-top: 1px solid #dcdddd;
    }

    nav li a {
        line-height: 1em;
        display: block;
        height: auto;
        padding: 6vw;
    }
}



/* #panel-btn */
.panel-wrap {
    position: fixed;
    z-index: 990;
    top: 11vw;
    right: 20px;
    display: inline-block;
    padding: 0;
    transition: .5s;
    color: #fff;
}

.panel-wrap.active {
    background: none;
}

@media screen and (min-width: 768px) {
    .panel-wrap {
        display: none;
    }
}

#panel-btn {
    position: relative;
    width: 25px;
    height: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    cursor: pointer;
}

#panel-btn li {
    margin: 0;
    padding: 0;
}

#panel-btn-icon {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 25px;
    height: 3px;
    margin: 0;
    transition: .4s;
    background: #000;
}

#panel-btn-icon:before,
#panel-btn-icon:after {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 25px;
    height: 3px;
    content: "";
    transition: .3s;
    background: #000;
}

#panel-btn-icon:before {
    margin-top: -10px;
}

#panel-btn-icon:after {
    margin-top: 6px;
}

#panel-btn.closepanel #panel-btn-icon {
    background: transparent;
}

#panel-btn.closepanel #panel-btn-icon:before,
#panel-btn.closepanel #panel-btn-icon:after {
    margin-top: 0;
}

#panel-btn.closepanel #panel-btn-icon:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background: #666;
}

#panel-btn.closepanel #panel-btn-icon:after {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: #666;
}




/*========================================

  index

========================================*/

#WrapPage {
    min-width: 1260px;
    opacity: 0;
    background: #fff;
    transition: .5s;
}

@media screen and (max-width: 767px) {
    #WrapPage {
        min-width: auto;
        width: 100vw;
        overflow-x: hidden;
    }
}


#hero {
    position: relative;
    width: 94%;
    margin: 0 auto;
    text-align: left;
}


#hero .imgbox {
    display: flex;
}

#hero .imgbox .imgmain {
    width: 76.6%;
    position: relative;
}

#hero .imgbox .imgmain .m01 {
    width: 100%;
}

#hero .imgbox .imgsub {
    width: 23.4%;
}

#hero .imgbox .imgsub img {
    width: 100%;
}

#hero .imgbox .m01 {
    border-radius: 25px 0 0 25px;
}

#hero .imgbox .sb01 {
    border-radius: 0 25px 0 0;
}

#hero .imgbox .sb03 {
    border-radius: 0 0 25px 0;
}

#hero .en,
#hero h1 {
    display: block;
    position: absolute;
}

#hero .en {
    top: 30px;
    left: 10px;
}

#hero h1 {
    bottom: 5vw;
    left: 5vw;
    width: 620px;
}

#hero h1 img {
    margin-top: 10px;
}



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

    #hero {
        width: 94%;
    }


    #hero .imgbox {
        display: block;
    }

    #hero .imgbox .imgmain {
        width: 100%;
        position: relative;
    }

    #hero .imgbox .imgsub {
        width: 100%;
        display: flex;
    }

    #hero .imgbox .imgsub span {
        display: block;
        width: 33.3333%;
    }

    #hero .imgbox .m01 {
        border-radius: 15px 15px 0 0;
    }

    #hero .imgbox .sb01 {
        border-radius: 0 0 0 15px;
    }

    #hero .imgbox .sb03 {
        border-radius: 0 0 15px 0;
    }

    #hero .en,
    #hero h1 {
        display: block;
        position: absolute;
    }

    #hero .en {
        top: 2vw;
        left: 2vw;
    }

    #hero .en img {
        width: 55vw;
    }

    #hero h1 {
        bottom: 7vw;
        left: 7vw;
        width: 100%;
    }

    #hero h1 img {
        height: 10vw;
        margin-top: 1.5vw;
    }

}



/* 共通 ---------------*/
.com_h2_box {
    padding-top: 110px;
}

.com_h2_box h2 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 3px;
}

.com_h2_box span {
    display: block;
    margin-top: 15px;
}

.com_h2_box span img {
    height: 30px;
}

.sec_innr {
    width: 94%;
    margin: 0 auto;
    background-image: url(../img/bg_stripe.png);
    background-repeat: repeat;
    border-radius: 25px;
    padding-bottom: 90px;
}

.copy {
    font-size: 24px;
    font-weight: 700;
    margin-top: 40px;
}

@media screen and (max-width: 767px) {
    .com_h2_box {
        padding-top: 15vw;
    }

    .com_h2_box h2 {
        font-size: 8vw;
    }

    .com_h2_box span {
        margin-top: 3vw;
    }

    .com_h2_box span img {
        width: auto;
        height: 6vw;
    }

    .sec_innr {
        width: 90%;
        border-radius: 15px;
        padding-bottom: 10vw;
    }

    .copy {
        font-size: 4.5vw;
        margin-top: 2em;
    }
}



/* sec001 ---------------*/
#sec001 p {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 2.2em;
    margin-top: 45px;
    margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
    #sec001 p {
        font-size: 4.2vw;
        line-height: 2.2em;
        margin-top: 10vw;
        margin-bottom: 10vw;
    }
}



/* sec002 ---------------*/
#sec002 .box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 1200px;
    margin: 0 auto;
    margin-top: 60px;
}

#sec002 .box .item {
    width: 580px;
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 50px 35px;
}

#sec002 .box .item:nth-child(n+3) {
    margin-top: 45px;
}

#sec002 .box .item .photo img {
    width: 190px;
    border-radius: 95px;
    box-sizing: border-box;
}

#sec002 .box .c1 .photo img {
    border: 5px solid #ffb332;
}

#sec002 .box .c2 .photo img {
    border: 5px solid #66b7e8;
}

#sec002 .box .c3 .photo img {
    border: 5px solid #ff7d60;
}

#sec002 .box .c4 .photo img {
    border: 5px solid #7cbd32;
}


#sec002 .box .item .txt {
    width: 300px;
    text-align: left;
}

#sec002 .box .item .txt h3 {
    position: relative;
    font-size: 25px;
    letter-spacing: 1px;
    padding-left: 1.7em;
}

#sec002 .box .item .txt h3::before {
    position: absolute;
    content: "";
    top: -3px;
    left: 0;
    display: block;
    width: 33px;
    height: 41px;
    background-size: contain;
    background-repeat: no-repeat;
}

#sec002 .box .c1 .txt h3::before {
    background-image: url(../../img/icon_01.svg);
}

#sec002 .box .c2 .txt h3::before {
    background-image: url(../../img/icon_02.svg);
}

#sec002 .box .c3 .txt h3::before {
    background-image: url(../../img/icon_03.svg);
}

#sec002 .box .c4 .txt h3::before {
    background-image: url(../../img/icon_04.svg);
}

#sec002 .box .item .txt h3 small {
    font-size: 18px;
    letter-spacing: normal;
}

#sec002 .box .item .txt p {
    font-size: 15px;
    line-height: 1.7em;
    text-align: justify;
    text-justify: inter-ideograph;
    margin-top: 1em;
}

#sec002 .box .item .txt p a {
    display: inline-block;
    margin-top: 0.8em;
    padding: .2em 1em;
    border-radius: 5px;
}

#sec002 .box .item.c1 .txt p a {
    border: 1px solid #ffb332;
    color: #ffb332;
}

#sec002 .box .item.c2 .txt p a {
    border: 1px solid #66b8e9;
    color: #66b8e9;
}

#sec002 .box .item.c3 .txt p a {
    border: 1px solid #ff7d60;
    color: #ff7d60;
}

#sec002 .box .item.c4 .txt p a {
    border: 1px solid #7cbd32;
    color: #7cbd32;
}


#sec002 .box .item .txt p a:hover {
    opacity: .7;
}



@media screen and (max-width: 767px) {
    #sec002 .box {
        flex-direction: column;
        width: 90%;
        margin-top: 0;
    }

    #sec002 .box .item {
        width: 100%;
        flex-direction: column;
        padding: 8vw 5vw;
        margin-top: 8vw;
    }

    #sec002 .box .item:nth-child(n+3) {
        margin-top: 8vw;
    }

    #sec002 .box .item .photo img {
        width: 45vw;
        border-radius: 30vw;
    }

    #sec002 .box .item .txt {
        width: 100%;
        text-align: center;
    }

    #sec002 .box .item .txt h3 {
        display: inline-block;
        margin: 0 auto;
        font-size: 5.5vw;
        margin-top: 1em;
        padding-left: 1.6em;
    }

    #sec002 .box .item .txt h3::before {
        position: absolute;
        content: "";
        top: -1vw;
        left: 0;
        display: block;
        width: 7vw;
        height: 8.7vw;
        background-size: contain;
        background-repeat: no-repeat;
    }

    #sec002 .box .item .txt h3 small {
        font-size: 4vw;
    }

    #sec002 .box .item .txt p {
        font-size: 4vw;
        line-height: 1.6em;
    }
}



/* sec003 ---------------*/
#sec003 .box {
    margin-top: 50px;
}

#sec003 .box .sp-image {
    border-radius: 25px !important;
}

@media screen and (max-width: 767px) {
    #sec003 .box {
        margin-top: 8vw;
    }

    #sec003 .box .sp-image {
        border-radius: 15px;
    }
}



/* sec004 ---------------*/
#sec004 {
    margin-top: 70px;
    padding-bottom: 100px;
}

#sec004 .map {
    margin-top: 80px;
}

#sec004 .map img {
    border-radius: 25px;
}

@media screen and (max-width: 767px) {
    #sec004 {
        margin-top: 0;
        padding-bottom: 15vw;
    }

    #sec004 .map {
        margin-top: 8vw;
    }

    #sec004 .map img {
        width: 90%;
        margin: 0 auto;
        border-radius: 15px;
    }
}



/* sec005 ---------------*/
#sec005 {
    margin-top: 70px;
    padding-bottom: 150px;
}

#sec005 .box {
    margin-top: 50px;
}

#sec005 .box ul {
    display: flex;
    justify-content: space-between;
    width: 1200px;
    margin: 0 auto;
}

#sec005 .box ul li {
    list-style: none;
}

#sec005 .box ul li a img {
    width: 370px;
    border-radius: 15px;
    border: 2px solid #cbcbcb;
    box-sizing: border-box;
}

@media screen and (max-width: 767px) {
    #sec005 {
        margin-top: 5vw;
        padding-bottom: 15vw;
    }

    #sec005 .box {
        margin-top: 0;
    }

    #sec005 .box ul {
        flex-direction: column;
        width: 80%;
    }

    #sec005 .box ul li {
        margin-top: 5vw;
    }

    #sec005 .box ul li a img {
        width: 100%;
    }
}



/* sec006 ---------------*/
#sec006 {
    margin-top: 70px;
}

#sec006 .accordion {
    width: 1200px;
    margin: 0 auto;
    text-align: left;
    padding-top: 50px;
}

#sec006 .accordion .accordion-menu {
    margin: 0;
    padding: 0;
    background-color: #fff;
    box-sizing: border-box;
    border-radius: 15px;
    padding: 30px 30px;
    margin-bottom: 25px;
}

#sec006 .accordion .accordion-menu dt {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    padding-left: 60px;
}

#sec006 .accordion .accordion-menu dt::before {
    position: absolute;
    top: -10px;
    left: 0;
    display: inline-block;
    content: "Q";
    color: #ff7d60;
    font-size: 30px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

#sec006 .accordion .accordion-menu dd {
    position: relative;
    font-size: 16px;
    padding-left: 60px;
    margin-top: 1.5em;
    line-height: 1.8em;
}

#sec006 .accordion .accordion-menu dd::before {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    content: "A";
    color: #66b8e9;
    font-size: 30px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    #sec006 {
        margin-top: 5vw;
    }

    #sec006 .accordion {
        width: 90%;
        padding-top: 8vw;
    }

    #sec006 .accordion .accordion-menu {
        border-radius: 10px;
        padding: 8vw 5vw;
        margin-bottom: 8vw;
    }

    #sec006 .accordion .accordion-menu dt {
        font-size: 4vw;
        padding-left: 10vw;
    }

    #sec006 .accordion .accordion-menu dt::before {
        position: absolute;
        top: -10px;
        left: 0;
        display: inline-block;
        content: "Q";
        color: #ff7d60;
        font-size: 6.5vw;
        font-family: "Roboto", sans-serif;
        font-weight: 700;
    }

    #sec006 .accordion .accordion-menu dd {
        font-size: 4vw;
        padding-left: 10vw;
        margin-top: 1.5em;
        padding-right: 0;
    }

    #sec006 .accordion .accordion-menu dd::before {
        position: absolute;
        top: 0;
        left: 0;
        display: inline-block;
        content: "A";
        color: #66b8e9;
        font-size: 6.5vw;
        font-family: "Roboto", sans-serif;
        font-weight: 700;
    }
}



/* sec007 ---------------*/
#sec003 .ybox {
    display: flex;
    justify-content: space-between;
    width: 1200px;
    margin: 0 auto;
    margin-top: 70px;
}

#sec003 .ybox .item {
    width: 49%;
}


#sec003 .ybox .item .movie iframe {
    border: 1px solid #333;
}

#sec003 .ybox .item p {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: .5em;
}

#sec007 dl {
    margin: 0;
    padding: 0;
}

#sec007 dl dt {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

#sec007 dl dt span {
    display: inline-block;
    background: linear-gradient(transparent 70%, #ffb332 70%);
    padding-left: .2em;
    padding-right: .2em;
}

#sec007 dl dd {
    font-size: 20px;
    line-height: 1.8em;
    margin-top: 1em;
    margin-bottom: 110px;
}

@media screen and (max-width: 767px) {
    #sec003 .ybox {
        flex-direction: column;
        width: 80%;
        margin: 0 auto;
        margin-top: 10vw;
    }

    #sec003 .ybox .item {
        padding-bottom: 8vw;
        width: 100%;
    }

    #sec003 .ybox .item .movie {
        position: relative;
        width: 100%;
        padding-top: 56.25%;
    }

    #sec003 .ybox .item .movie iframe {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }

    #sec003 .ybox .item p {
        font-size: 5vw;
        margin-top: .5em;
    }

    #sec007 dl {
        margin: 0;
        padding: 0;
    }

    #sec007 dl dt {
        font-size: 6vw;
    }

    #sec007 dl dt span {
        display: inline;
    }

    #sec007 dl dd {
        font-size: 4vw;
        margin-top: 1.5em;
        margin-bottom: 15vw;
    }
}



/*========================================

  footer

========================================*/

footer {
    text-align: center;
    background-color: #0088d0;
    padding: 90px 0;
}

footer address {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    letter-spacing: 1px;
    line-height: 1.8em;
}

footer address strong {
    display: block;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: .5em;
}

footer address span {
    display: block;
    font-weight: 700;
}

footer address span.tel {
    font-weight: 400;
}

footer a,
footer a:visited,
footer a:hover {
    color: #fff;
}

footer a.link,
footer a.link:visited {
    text-decoration: underline;
    color: #fff;
}

footer a.link:hover {
    opacity: .7;
}

@media screen and (max-width: 767px) {
    footer {
        padding: 10vw 0;
    }

    footer address {
        font-size: 3.8vw;
    }

    footer address strong {
        font-size: 5.5vw;
    }

    footer address span {
        display: block;
        margin-bottom: .5em;
    }

    footer address span.tel {}

}


#cboxOverlay {
    background-color: #fff;
}

#cboxContent,
#cboxLoadedContent {
    background: none;
}

#cboxContent {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    margin-top: 0;
}

.voi-con {}

.voi-con .innr {
    display: flex;
    justify-content: space-between;
    padding: 50px;
}

.voi-con .boxL,
.voi-con .boxR {
    width: 47%;
}

.voi-con .boxL h2 {
    background-position: right bottom;
    background-repeat: no-repeat;
    padding-bottom: 10px;
    padding-left: 5px;
    font-size: 26px;
    letter-spacing: 2px;
}

#voice01.voi-con .boxL h2 {
    background-image: url(../img/line-01.svg);
}

#voice02.voi-con .boxL h2 {
    background-image: url(../img/line-02.svg);
}

#voice03.voi-con .boxL h2 {
    background-image: url(../img/line-03.svg);
}

#voice04.voi-con .boxL h2 {
    background-image: url(../img/line-04.svg);
}

.voi-con .boxL {
    width: 532px;
    background-position: 0 bottom;
    background-repeat: no-repeat;
}

#voice01.voi-con .boxL {
    background-image: url(../img/voice-01.jpg?v2);
}

#voice02.voi-con .boxL {
    background-image: url(../img/voice-02.jpg?v3);
}

#voice03.voi-con .boxL {
    background-image: url(../img/voice-03.jpg?v2);
}

#voice04.voi-con .boxL {
    background-image: url(../img/voice-04.jpg?v2);
}

.voi-con .boxL h3 {
    font-size: 32px;
    margin-top: .7em;
}

.voi-con .boxL .name {
    margin-top: 180px;
    margin-left: 40px;
}

#voice01.voi-con .boxL .name {
    margin-top: 250px;
    margin-left: 80px;
}

#voice04.voi-con .boxL .name {
    margin-top: 270px;
}

.voi-con .boxL .name strong {
    display: block;
    font-size: 26px;
    letter-spacing: 2px;
}

.voi-con .boxL .name span {
    display: block;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
}

.voi-con .boxL .name small {
    display: block;
    font-size: 15px;
    margin-top: 1em;
    line-height: 1.6em;
}


.voi-con .boxR dl {
    margin: 0;
}

.voi-con .boxR dl dt {
    font-size: 22px;
    font-weight: bold;
}

.voi-con .boxR dl dd {
    font-size: 15px;
    margin-top: 0.3em;
    padding-bottom: 1em;
    line-height: 1.7em;
    text-align: justify;
    text-justify: inter-ideograph;
}

#voice01.voi-con .boxL h2,
#voice01.voi-con .boxR dl dt {
    color: #ffb332;
}

#voice02.voi-con .boxL h2,
#voice02.voi-con .boxR dl dt {
    color: #66b8e9;
}

#voice03.voi-con .boxL h2,
#voice03.voi-con .boxR dl dt {
    color: #ff7d60;
}

#voice04.voi-con .boxL h2,
#voice04.voi-con .boxR dl dt {
    color: #7cbe32;
}


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

    .voi-con {}

    .voi-con .innr {
        display: block;
        padding: 5vw;
    }

    .voi-con .boxL,
    .voi-con .boxR {
        width: 100%;
    }

    .voi-con .boxL {
        min-height: 110vw;
    }

    .voi-con .boxL h2 {
        font-size: 5vw;
        background-size: ;
    }

    .voi-con .boxL {
        width: 100%;
        background-position: 0 bottom;
        background-repeat: no-repeat;
        background-size: 100% auto;
    }

    .voi-con .boxL h3 {
        font-size: 5.2vw;
    }

    .voi-con .boxL .name {
        margin-top: 35vw;
        margin-left: 5vw;
    }

    #voice01.voi-con .boxL .name {
        margin-top: 35vw;
        margin-left: 5vw;
    }

    #voice03.voi-con .boxL .name {
        margin-left: 0;
    }

    #voice04.voi-con .boxL .name {
        margin-top: 36vw;
    }


    .voi-con .boxL .name strong {
        font-size: 5vw;
    }

    .voi-con .boxL .name span {
        font-size: 3vw;
    }

    .voi-con .boxL .name small {
        font-size: 2.8vw;
        text-shadow: 1px 1px 1px #fff;
    }

    .voi-con .boxR {
        margin-top: 5vw;
    }

    .voi-con .boxR dl dt {
        font-size: 4.4vw;
    }

    .voi-con .boxR dl dd {
        font-size: 3.6vw;
    }

}


.wel-con {}


.wel-con .innr {
    display: flex;
    justify-content: space-between;
    padding: 50px;
}

.wel-con .innr h3 {
    font-size: 24px;
}

.wel-con .innr h4 {
    font-size: 20px;
    margin-top: 2em;
}

.wel-con .innr p {
    margin-top: 1em;
    line-height: 2em;
    text-align: justify;
    text-justify: inter-ideograph;
}


.wel-con .innr p a {
    color: #66b8e9;
    text-decoration: underline;
}


.wel-con .innr .txt {
    width: 57%;
}

.wel-con .innr .img {
    width: 38%;
}

.wel-con .innr img {
    border-radius: 5px;
}


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

    .wel-con {
        margin: 3vw;
        border-radius: 4vw;
    }

    .wel-con .innr {
        flex-direction: column-reverse;
        padding: 5vw;
    }

    .wel-con .innr h3 {
        font-size: 5vw;
    }

    .wel-con .innr p {
        font-size: 3.6vw;
        margin-top: 0.5em;
    }


    .wel-con .innr .txt {
        width: 100%;
        margin-top: 5vw;
    }

    .wel-con .innr .img {
        width: 100%;
    }
}