@charset "UTF-8";
/* ==========================================================
Name:
    module.css

Description:
    サイトで共通使用する汎用モジュール及びページ固有のスタイルを記述する
    汎用モジュールは、アルファベット降順(A->Z)に記述する
    ページ固有のスタイルは、ディレクトリ名のアルファベット降順(A->Z)、
    ファイル名のアルファベット降順(A->Z)にそれぞれ記述する

Contents:
    module
    page
    utility
    ========================================================== */
/* ==========================================================
*
*   module
*
========================================================== */
/* ---------------------------------------------
*   Animation
--------------------------------------------- */
/*  color-white
--------------------------------------------- */
@-webkit-keyframes color-white {
    0% {
        color: inherit;
    }
    100% {
        color: #fff;
    }
}

@keyframes color-white {
    0% {
        color: inherit;
    }
    100% {
        color: #fff;
    }
}

/*  wipe-background
--------------------------------------------- */
@-webkit-keyframes wipe-background {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes wipe-background {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/*  opacity-in
--------------------------------------------- */
@-webkit-keyframes opacity-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes opacity-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/*  rise-up
--------------------------------------------- */
@-webkit-keyframes rise-up {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes rise-up {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* ---------------------------------------------
*   mod-btn-wipe
--------------------------------------------- */
.mod-btn-wipe {
    position: relative;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    border: 2px solid #001c58;
    color: #001c58;
    cursor: pointer;
    -webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);

    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.mod-btn-wipe:before {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    width: 0;
    height: 100%;
    background-color: #001c58;
    content: "";
    -webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

.mod-btn-wipe svg {
    -webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);

    fill: #001c58;
}

.mod-btn-wipe:hover {
    color: #fff;
}

.mod-btn-wipe:hover:before {
    right: auto;
    left: 0%;
    width: 100%;
}

.mod-btn-wipe:hover svg {
    fill: #fff;
}

@media screen and (max-width: 750px) {
    .mod-btn-wipe {
        border-width: 1px;
        font-size: 0.85714rem;
    }
    .mod-btn-wipe:before {
        display: none;
    }
    .mod-btn-wipe:hover {
        color: #001c58;
    }
    .mod-btn-wipe:hover svg {
        fill: #001c58;
    }
}

.mod-btn-wipe--heading-side {
    width: 136px;
    height: 36px;
}

.mod-btn-wipe--small {
    width: 140px;
    height: 40px;
    background-color: #fff;
}

@media screen and (max-width: 750px) {
    .mod-btn-wipe--small {
        margin: 0 auto;
        width: 46.875vw;
        height: 9.5vw;
    }
}

.mod-btn-wipe--medium {
    width: 280px;
    height: 60px;
    background-color: #fff;
}

@media screen and (max-width: 750px) {
    .mod-btn-wipe--medium {
        width: 90%;
        /*height: 9.375vw;*/
	height: 12vw;
        font-size: 1rem;
    }
}

.mod-btn-wipe--navigation {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 60px;
    background-color: #fff;
}

@media screen and (max-width: 750px) {
    .mod-btn-wipe--navigation {
        height: 8.75vw;
    }
}

.mod-btn-wipe--pager {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 45px;
    background-color: #fff;
}

@media screen and (max-width: 750px) {
    .mod-btn-wipe--pager {
        height: 7.1875vw;
    }
}

.mod-btn-wipe--business {
    width: 256px;
    height: 46px;
    background-color: #fff;
}

.mod-btn-wipe--business svg {
    z-index: 1;
    margin: 1.0em;
    width: 18px;
    height: auto;
    vertical-align: middle;
}

@media screen and (max-width: 738px) {
    .mod-btn-wipe--business {
        width: 100%;
        /*height: 10vw;*/
    }
    .mod-btn-wipe--business svg {
        width: 12px;
    }
}

.mod-btn-wipe--product {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    width: 370px;
    height: 70px;
    font-size: 1.28571rem;
}

.mod-btn-wipe--product svg {
    z-index: 1;
    margin-left: 1.0em;
    width: 30px;
}

@media screen and (max-width: 750px) {
    .mod-btn-wipe--product {
        width: 56.25vw;
        height: 10.9375vw;
        font-size: 0.85714rem;
    }
    .mod-btn-wipe--product svg {
        width: 4.6875vw;
    }
}

.mod-btn-wipe--external-products {
    margin-right: auto;
    margin-left: auto;
    width: 300px;
    height: 53px;
}

.mod-btn-wipe--external-products svg {
    z-index: 1;
    margin-left: 1.0em;
    width: 24px;
    vertical-align: middle;
}

@media screen and (max-width: 750px) {
    .mod-btn-wipe--external-products {
        width: 100%;
        height: 10.9375vw;
    }
    .mod-btn-wipe--external-products svg {
        width: 3.90625vw;
    }
}

.mod-btn-wipe--contact {
    margin-right: 15px;
    margin-left: 15px;
    width: 300px;
    height: 60px;
    background-color: #fff;
    font-weight: bold;
    font-size: 1.14286rem;
}

@media screen and (max-width: 750px) {
    .mod-btn-wipe--contact {
        margin: 1.5625vw 0;
        width: 100%;
        height: 10.15625vw;
    }
}

.mod-btn-wipe--current {
    background-color: #001c58;
    color: #fff;
}

.mod-btn-wipe__text {
    position: static;
    z-index: 1;
    font-weight: normal;
}

/* ---------------------------------------------
*   mod-column-three
--------------------------------------------- */
@media screen and (max-width: 750px) {
    .mod-column-three--sp-1column .mod-column-three__list {
        display: block;
    }
    .mod-column-three--sp-1column .mod-column-three__list-item {
	width: 90%;
	margin: 0 auto 30px;
    }
}

.mod-column-three__list {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    padding-right: 20px;
    padding-left: 20px;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.mod-column-three__list:after {
    width: 308px;
    content: "";
}

.mod-column-three__list--centered {
    -ms-flex-pack: center;

    -webkit-box-pack: center;
    justify-content: center;
}

.mod-column-three__list--centered:after {
    display: none;
}

@media screen and (max-width: 750px) {
    .mod-column-three__list {
        padding-right: 0;
        padding-left: 0;
    }
    .mod-column-three__list:after {
        width: 48.21429%;
        content: "";
    }
    .mod-column-three__list--centered {
        -ms-flex-pack: center;

        -webkit-box-pack: center;
        justify-content: center;
    }
    .mod-column-three__list--centered:after {
        display: none;
    }
}

.mod-column-three__list-item {
    margin-top: 38px;
    width: 308px;
}

@media screen and (max-width: 750px) {
    .mod-column-three__list-item {
        margin-top: 6.25vw;
        width: 48.21429%;
    }
    .mod-column-three__list-item img {
        width: 100%;
    }
}

.mod-column-three__thumbs-caption {
    color: #001c58;
}

/* ---------------------------------------------
*   mod-container
--------------------------------------------- */
.mod-container {
    margin-right: auto;
    margin-left: auto;
    padding-right: 10px;
    padding-left: 10px;
    max-width: 1000px;
}

@media screen and (max-width: 750px) {
    .mod-container {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding-right: 6.25%;
        padding-left: 6.25%;
        max-width: 100%;
    }
}

/* ---------------------------------------------
*   mod-figure
--------------------------------------------- */
.mod-figure {
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    padding-right: 20px;
    padding-left: 20px;

    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 750px) {
    .mod-figure {
        display: block;
        padding-right: 0;
        padding-left: 0;
    }
}

.mod-figure--reverse {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
}

.mod-figure__image {
    width: 500px;
}

@media screen and (max-width: 750px) {
    .mod-figure__image {
        margin-top: 4.6875vw;
        width: auto;
    }
    .mod-figure__image img {
        width: 100%;
    }
}

.mod-figure__contents {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 420px;
}

@media screen and (max-width: 750px) {
    .mod-figure__contents {
        padding-top: 0;
        padding-bottom: 0;
        width: auto;
    }
}

.mod-figure__head .mod-heading-caption__title {
    line-height: 1.2;
}

.mod-figure__title-center {
    text-align: center;
    margin: 10px auto 25px;
    width: 290px;
}

.mod-figure__head .mod-heading-line {
    padding-bottom: 10px;
}

@media screen and (max-width: 750px) {
    .mod-figure__title-center {
        /*margin-top: 2.34375vw;
        margin-bottom: 4.6875vw;*/
        margin-top: 7vw;
        margin-bottom: 5vw;
    }
    .mod-figure__title-center img {
        width: 68.75vw;
    }
}

@media screen and (max-width: 750px) {
    .mod-figure__body {
        padding-right: 4.375vw;
        padding-left: 4.375vw;
    }
}

.mod-figure__foot {
    margin-top: 30px;
}

@media screen and (max-width: 750px) {
    .mod-figure__foot {
        margin-top: 3.75vw;
        padding-right: 4.375vw;
        padding-left: 4.375vw;
    }
}

.mod-figure__text {
    margin-top: 15px;
}

@media screen and (max-width: 750px) {
    .mod-figure__text {
        /*margin-top: 1.875vw;*/
	margin-top: 5vw;
        font-size: 1rem;
    }
}

.mod-figure-katana__image {/* Added Nov 01, 2023 */
    margin: 50px 0;
}


/* ---------------------------------------------
*   mod-heading-caption
--------------------------------------------- */
.mod-heading-caption__title, .mod-heading-caption__text {
    display: block;
}

.mod-heading-caption__title {
    color: #001c58;
    font-size: 1.71429rem;
    font-weight: 600;
    line-height: 1.3;
}

.mod-heading-caption__text {
    color: #00a0e9;
    font-size: 0.85714rem;
}

@media screen and (max-width: 750px) {
    .mod-heading-caption {
        text-align: center;
    }
    .mod-heading-caption__title {
        font-size: 1.28571rem;
    }
    .mod-heading-caption__text {
        font-size: 0.78571rem;
    }
}

/* ---------------------------------------------
*   mod-heading-line
--------------------------------------------- */
.mod-heading-line {
    position: relative;
    padding-bottom: 20px;
    color: #001c58;
    font-size: 1.71429rem;
    line-height: 1.5;
}

.mod-heading-line:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #00a0e9;
    content: "";
}

@media screen and (max-width: 750px) {
    .mod-heading-line {
        display: block;
        padding-bottom: 3.125vw;
        text-align: center;
        font-size: 1.14286rem;
    }
    .mod-heading-line:after {
        position: absolute;
        left: 50%;
        width: 6.25vw;
        content: "";
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.mod-heading-line--centered {
    padding-bottom: 25px;
    text-align: center;
}

.mod-heading-line--centered:after {
    left: 50%;
    width: 40px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
    .mod-heading-line--centered {
        padding-bottom: 3.90625vw;
        text-align: center;
    }
    .mod-heading-line--centered:after {
        width: 6.25vw;
    }
}

.mod-heading-line--header {
    padding-bottom: 20px;
    text-align: center;
}

.mod-heading-line--header:after {
    left: 50%;
    width: 30px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
    .mod-heading-line--header {
        padding-bottom: 3.90625vw;
        text-align: center;
    }
    .mod-heading-line--header:after {
        width: 4.6875vw;
    }
}

.mod-heading-line--light-blue {
    color: #003e7f;
}

.mod-heading-line--bold {
    font-weight: bold;
}

.mod-heading-line__text {
    display: block;
}

/* ---------------------------------------------
*   mod-keyvisual
--------------------------------------------- */
.mod-keyvisual--index {
    position: relative;
    z-index: 0;
    overflow: hidden;
    width: 100%;
    height: calc(100vh - 99px);
}

@media screen and (max-width: 750px) {
    .mod-keyvisual--index {
        height: calc(100vh - 37px);
    }
}

.mod-keyvisual--gradate {
    position: relative;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    width: 100%;
    height: 350px;
    background-color: transparent;
    font-size: 2.85714rem;
    -webkit-animation-name: color-white;
    animation-name: color-white;
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-timing-function: cubic-bezier(0.83, 0.01, 0.76, 0.23);
    animation-timing-function: cubic-bezier(0.83, 0.01, 0.76, 0.23);
    -webkit-animation-delay: 300ms;
    animation-delay: 300ms;

    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
	text-shadow: 0px 0px 2px #666;
}

.mod-keyvisual--gradate:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: #f2f2f2;
    content: "";
}

.mod-keyvisual--gradate:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 0;
    height: 100%;
    background-image: linear-gradient(-45deg, #08294d 0%, #092e57 18%, #0b3666 31%, #0c3d73 46%, #0d4581 63%, #0e4a8a 82%, #0f4b8c 100%);
    content: "";
    -webkit-animation-name: wipe-background;
    animation-name: wipe-background;
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-timing-function: cubic-bezier(0.83, 0.01, 0.76, 0.23);
    animation-timing-function: cubic-bezier(0.83, 0.01, 0.76, 0.23);
    -webkit-animation-delay: 300ms;
    animation-delay: 300ms;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@media screen and (max-width: 750px) {
    .mod-keyvisual--gradate {
        height: 35.9375vw;
        font-size: 1.85714rem;
    }
}

.mod-keyvisual--bg-images {
    position: relative;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    width: 100%;
    height: 350px;
    background-color: transparent;
    color: #fff;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .mod-keyvisual--bg-images {
        height: 35.9375vw;
        font-size: 1.85714rem;
    }
}

.mod-keyvisual--bg-images:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: #f2f2f2;
    content: "";
}

.mod-keyvisual--bg-images:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    opacity: 0;
    -webkit-animation-name: opacity-in;
    animation-name: opacity-in;
    -webkit-animation-duration: 2000ms;
    animation-duration: 2000ms;
    -webkit-animation-timing-function: cubic-bezier(0.15, 0.48, 0.33, 1);
    animation-timing-function: cubic-bezier(0.15, 0.48, 0.33, 1);
    -webkit-animation-delay: 1000ms;
    animation-delay: 1000ms;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.mod-keyvisual--bg-images .mod-keyvisual__main-catch {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-animation-name: rise-up;
    animation-name: rise-up;
    -webkit-animation-duration: 2000ms;
    -webkit-animation-duration: 1.0s;
    animation-duration: 2000ms;
    animation-duration: 1.0s;
    -webkit-animation-timing-function: cubic-bezier(0.15, 0.48, 0.33, 1);
    animation-timing-function: cubic-bezier(0.15, 0.48, 0.33, 1);
    -webkit-animation-delay: 1000ms;
    -webkit-animation-delay: 1.7s;
    animation-delay: 1000ms;
    animation-delay: 1.7s;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    text-shadow: 0px 0px 2px #666;
}

@media screen and (max-width: 750px) {
    .mod-keyvisual--bg-images .mod-keyvisual__main-catch img {
        display: block;
        margin-right: auto;
        margin-left: auto;
        width: 35vw;
    }
}

.mod-keyvisual--bg-images .mod-keyvisual__sub-catch {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-animation-name: rise-up;
    animation-name: rise-up;
    -webkit-animation-duration: 2000ms;
    -webkit-animation-duration: 1.0s;
    animation-duration: 2000ms;
    animation-duration: 1.0s;
    -webkit-animation-timing-function: cubic-bezier(0.15, 0.48, 0.33, 1);
    animation-timing-function: cubic-bezier(0.15, 0.48, 0.33, 1);
    -webkit-animation-delay: 1000ms;
    -webkit-animation-delay: 1.7s;
    animation-delay: 1000ms;
    animation-delay: 1.7s;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.mod-keyvisual--company-message:after {
    background-image: url(../img/company/keyvisual.jpg);
}

.mod-keyvisual--company-profile:after {
    background-image: url(../img/company/profile/keyvisual.jpg);
}

.mod-keyvisual--business:after {
    background-image: url(../img/business/keyvisual.jpg);
}

.mod-keyvisual--zenxero .mod-keyvisual__main-catch {
    line-height: 1.0;
        width: 241px;
}

.mod-keyvisual--zenxero:after {
    background-image: url(../img/products/zenxero/keyvisual.jpg);
}

.mod-keyvisual--uniglobe .mod-keyvisual__main-catch {
    line-height: 1.0;
    width: 334px;
}

.mod-keyvisual--uniglobe:after {
    background-image: url(../img/products/uniglobe/keyvisual.jpg);
}

@media screen and (max-width: 750px) {
    .mod-keyvisual--uniglobe .mod-keyvisual__main-catch img {
        width: 50vw;
    }
}

.mod-keyvisual--honeycomblayer .mod-keyvisual__main-catch {
    line-height: 1.0;
    width:351px;
}

.mod-keyvisual--honeycomblayer:after {
    background-image: url(../img/products/honeycomblayer/keyvisual.jpg);
}

@media screen and (max-width: 750px) {
    .mod-keyvisual--honeycomblayer .mod-keyvisual__main-catch img {
        width: 50vw;
    }
}

.mod-keyvisual--katana .mod-keyvisual__main-catch {
    line-height: 1.0;
/*    width:300px;*/
    width:170px;/* Added Nov 01, 2023 */
}

.mod-keyvisual--katana:after {
    background-image: url(../img/products/katana/keyvisual.jpg);
}

.mod-keyvisual--superpm .mod-keyvisual__main-catch {
    line-height: 1.0;
    width:301px;
}

.mod-keyvisual--superpm:after {
    background-image: url(../img/products/superpm/keyvisual.jpg);
}

.mod-keyvisual--others:after {
    background-image: url(../img/products/others/keyvisual.jpg);
}

.mod-keyvisual__slide {
    position: fixed;
    top: 99px;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: calc(100vh - 100px);
    border-top: 1px solid #c9c9c9;
    background-color: #d2d2d2;
}

@media screen and (max-width: 750px) {
    .mod-keyvisual__slide {
        top: 37px;
        height: calc(100vh - 37px);
    }
}

.mod-keyvisual__catch {
    position: absolute;
    top: 47%;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 10px;
    max-width: 1080px;
    width: 100%;
    color: #fff;
    line-height: 1.5;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 750px) {
    .mod-keyvisual__catch {
        top: 50%;
        left: 0;
        max-width: 100%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
	text-align:center;
    }
}

.mod-keyvisual__catch-en {
    font-weight: bold;
    font-size: 3rem;
    text-shadow: 0px 0px 2px #666;
    line-height: 1.3;
}

@media screen and (max-width: 750px) {
	.mod-keyvisual__catch-en {
		font-weight: bold;
		font-size: 2rem;
		line-height:1.2;
	}
}

.mod-keyvisual__catch-ja {
    margin-top: 20px;
    font-weight: bold;
    text-shadow: 0px 0px 2px #666;
    letter-spacing: 0.1em;
}

.mod-keyvisual__main-catch {
    display: block;
    font-size: 2.85714rem;
}

@media screen and (max-width: 750px) {
    .mod-keyvisual__main-catch {
        font-size: 1.85714rem;
    }
}

.mod-keyvisual__sub-catch {
    display: block;
    font-size: 1.14286rem;
}

@media screen and (max-width: 750px) {
    .mod-keyvisual__sub-catch {
        font-size: 1rem;
    }
}

.mod-keyvisual__anchor {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.mod-keyvisual__anchor-link {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 10px;
    width: 100px;
    height: 54px;
    background: #001c58 url(../img/common/img_bullet_white_down.png) 50% 33px no-repeat;
    color: #fff;
    text-align: center;
    font-size: 0.78571rem;
    line-height: 1.0;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.mod-keyvisual__anchor-link:hover {
    opacity: 0.8;
}

.ios .mod-keyvisual__anchor-link:hover,
.android .mod-keyvisual__anchor-link:hover {
    opacity: 1;
}

@media screen and (max-width: 750px) {
    .mod-keyvisual__anchor-link {
        padding-top: 8px;
        width: 80px;
        height: 40px;
        background-position: 50% 25px;
        font-size: 10px;
    }
}

/* ---------------------------------------------
*   mod-leadtext
--------------------------------------------- */
.mod-leadtext {
    margin: 0 auto;
    width: 660px;
}

.mod-leadtext__head {
    margin-bottom: 30px;
}

.mod-leadtext__text + .mod-leadtext__text {
    margin-top: 2.0em;
}

@media screen and (max-width: 750px) {
    .mod-leadtext {
        padding-right: 4.6875vw;
        padding-left: 4.6875vw;
        width: auto;
    }
    .mod-leadtext__head {
        margin-bottom: 4.6875vw;
    }
}

/* ---------------------------------------------
*   mod-navigation
--------------------------------------------- */
.mod-navigation {
    padding-top: 20px;
    padding-bottom: 40px;
    background-color: #f0f0f0;
}

@media screen and (max-width: 750px) {
    .mod-navigation {
        padding-top: 3.125vw;
        padding-bottom: 6.25vw;
    }
}

.mod-navigation__list {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    margin-right: auto;
    margin-left: auto;
    padding-right: 10px;
    padding-left: 10px;
    max-width: 1000px;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 750px) {
    .mod-navigation__list {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding-right: 6.25%;
        padding-left: 6.25%;
        max-width: 100%;
    }
}

.mod-navigation__list--column-2 {
    -ms-flex-pack: center;

    -webkit-box-pack: center;
    justify-content: center;
}

.mod-navigation__list--column-2 .mod-navigation__list-item {
    margin-right: 10px;
    margin-left: 10px;
}

@media screen and (max-width: 750px) {
    .mod-navigation__list--column-2 {
        -ms-flex-pack: justify;

        -webkit-box-pack: justify;
        justify-content: space-between;
    }
    .mod-navigation__list--column-2 .mod-navigation__list-item {
        margin-right: 0;
        margin-left: 0;
        width: 48.21429%;
    }
}

.mod-navigation__list--column-3 {
    -ms-flex-pack: justify;

    -webkit-box-pack: justify;
    justify-content: space-between;
}

.mod-navigation__list--column-3:after {
    display: block;
    width: 320px;
    height: 0;
    content: "";
}

@media screen and (max-width: 750px) {
    .mod-navigation__list--column-3 .mod-navigation__list-item {
        margin-right: 0;
        margin-left: 0;
        width: 48.21429%;
    }
}

.mod-navigation__list-item {
    margin-top: 20px;
    width: 320px;
}

@media screen and (max-width: 750px) {
    .mod-navigation__list-item {
        margin-top: 3.125vw;
    }
}

/* ---------------------------------------------
*   mod-news
--------------------------------------------- */
.mod-news {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.mod-news:after {
    display: block;
    width: 320px;
    height: 0;
    content: "";
}

@media screen and (max-width: 750px) {
    .mod-news {
        display: block;
    }
    .mod-news:after {
        width: auto;
    }
}

.mod-news__item {
    margin-top: 20px;
    /*min-height: 230px;*/
    width: 320px;
    height: 250px;
}

@media screen and (max-width: 750px) {
    .mod-news__item {
        display: block;
        margin-top: 3.125vw;
        /*min-height: 28.90625vw;*/
        width: auto;
        height: 100%;
    }
}

.mod-news__link {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 30px 40px;
    height: 100%;
    border: 1px solid #d2d2d2;
    -webkit-transition: -webkit-box-shadow .3s;
    transition: -webkit-box-shadow .3s;
    transition: box-shadow .3s;
    transition: box-shadow .3s, -webkit-box-shadow .3s;
}

.mod-news__link:hover {
    -webkit-box-shadow: 0 0 8px 2px #c9c9c9;
    box-shadow: 0 0 8px 2px #c9c9c9;
}

@media screen and (max-width: 750px) {
    .mod-news__link {
        padding: 4.6875vw 6.25vw;
        height: 100%;
        -webkit-transition: -webkit-box-shadow .0s;
        transition: -webkit-box-shadow .0s;
        transition: box-shadow .0s;
        transition: box-shadow .0s, -webkit-box-shadow .0s;
    }
    .mod-news__link:hover {
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

.mod-news__cassette-head {
    color: #00a0e9;
    font-size: 1.28571rem;
    line-height: 1.3;
}

.mod-news__cassette-date {
    margin-top: 5px;
}

.mod-news__cassette-body {
    margin-top: 10px;
    font-size: 1.14286rem;
    line-height: 1.8;
}

.mod-news__cassette-body--bold {

}

@media screen and (max-width: 750px) {
    .mod-news__cassette-head {
        display: inline-block;
        margin-right: 0.75em;
        font-size: 1rem;
    }
    .mod-news__cassette-date {
        display: inline-block;
        margin-top: 0;
        font-size: 0.85714rem;
        line-height: 1.3;
    }
    .mod-news__cassette-body {
        display: block;
        margin-top: 1.5625vw;
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* ---------------------------------------------
*   mod-note-right
--------------------------------------------- */
.mod-note-right {
    text-align: right;
    font-weight: bold;
    font-size: 1.14286rem;
}

@media screen and (max-width: 750px) {
    .mod-note-right {
        padding-right: 4.6875vw;
        padding-left: 4.6875vw;
    }
}

/* ---------------------------------------------
*   mod-pager
--------------------------------------------- */
.mod-pager {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;

    -webkit-box-pack: center;
    justify-content: center;
}

.mod-pager__link {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    margin-right: 4px;
    margin-left: 4px;
    width: 38px;
    height: 48px;
    border: 1px solid #001c58;
    color: #001c58;
    font-size: 1.14286rem;
    -webkit-transition: all .3s;
    transition: all .3s;

    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.mod-pager__link--current, .mod-pager__link:hover {
    background-color: #001c58;
    color: #fff;
}

@media screen and (max-width: 750px) {
    .mod-pager__link {
        margin-right: 4px;
        margin-left: 4px;
        width: 7.5vw;
        height: 9.375vw;
        font-size: 1rem;
        -webkit-transition: all .3s;
        transition: all .3s;
    }
    .mod-pager__link--current, .mod-pager__link:hover {
        background-color: #001c58;
        color: #fff;
    }
}

/* ---------------------------------------------
*   mod-separator
--------------------------------------------- */
.mod-separator {
    margin: 0;
    padding: 0;
    height: 7px;
    border: 0;
    border-top: 1px solid #001c58;
    border-bottom: 2px solid #001c58;
    width: 1000px;
    margin: 0 auto;
}

@media screen and (max-width: 750px) {
    .mod-separator {
        /*margin-right: -3.125vw;*/
        /*margin-left: -3.125vw;*/
        height: 5px;
	width:100%;
    }
}

/* ---------------------------------------------
*   js-parallax-transform
--------------------------------------------- */
.js-parallax-transform {
    opacity: 0;
    -webkit-transition: opacity .4s, -webkit-transform .3s;
    transition: opacity .4s, -webkit-transform .3s;
    transition: opacity .4s, transform .3s;
    transition: opacity .4s, transform .3s, -webkit-transform .3s;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
}

.js-parallax-transform:nth-of-type(2) {
    -webkit-transition: opacity .4s .2s, -webkit-transform .3s .2s;
    transition: opacity .4s .2s, -webkit-transform .3s .2s;
    transition: opacity .4s .2s, transform .3s .2s;
    transition: opacity .4s .2s, transform .3s .2s, -webkit-transform .3s .2s;
}

.js-parallax-transform--show {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

/* ---------------------------------------------
*   js-parallax-fadein
--------------------------------------------- */
.js-parallax-fadein {
    opacity: 0;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.js-parallax-fadein:not(hr):nth-child(1) {
    -webkit-transition-delay: 100ms;
    transition-delay: 100ms;
}

.js-parallax-fadein:not(hr):nth-child(2) {
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
}

.js-parallax-fadein:not(hr):nth-child(3) {
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
}

.js-parallax-fadein:not(hr):nth-child(4) {
    -webkit-transition-delay: 400ms;
    transition-delay: 400ms;
}

.js-parallax-fadein:not(hr):nth-child(5) {
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
}

.js-parallax-fadein:not(hr):nth-child(6) {
    -webkit-transition-delay: 600ms;
    transition-delay: 600ms;
}

.js-parallax-fadein:not(hr):nth-child(7) {
    -webkit-transition-delay: 700ms;
    transition-delay: 700ms;
}

.js-parallax-fadein:not(hr):nth-child(8) {
    -webkit-transition-delay: 800ms;
    transition-delay: 800ms;
}

.js-parallax-fadein:not(hr):nth-child(9) {
    -webkit-transition-delay: 900ms;
    transition-delay: 900ms;
}

.js-parallax-fadein:not(hr):nth-child(10) {
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.js-parallax-fadein:not(hr):nth-child(11) {
    -webkit-transition-delay: 1100ms;
    transition-delay: 1100ms;
}

.js-parallax-fadein:not(hr):nth-child(12) {
    -webkit-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.js-parallax-fadein:not(hr):nth-child(13) {
    -webkit-transition-delay: 1300ms;
    transition-delay: 1300ms;
}

.js-parallax-fadein:not(hr):nth-child(14) {
    -webkit-transition-delay: 1400ms;
    transition-delay: 1400ms;
}

.js-parallax-fadein:not(hr):nth-child(15) {
    -webkit-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.js-parallax-fadein:not(hr):nth-child(16) {
    -webkit-transition-delay: 1600ms;
    transition-delay: 1600ms;
}

.js-parallax-fadein:not(hr):nth-child(17) {
    -webkit-transition-delay: 1700ms;
    transition-delay: 1700ms;
}

.js-parallax-fadein:not(hr):nth-child(18) {
    -webkit-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

.js-parallax-fadein:not(hr):nth-child(19) {
    -webkit-transition-delay: 1900ms;
    transition-delay: 1900ms;
}

.js-parallax-fadein:not(hr):nth-child(20) {
    -webkit-transition-delay: 2000ms;
    transition-delay: 2000ms;
}

.js-parallax-fadein--show {
    opacity: 1;
}

/* ==========================================================
*
*   page
*
========================================================== */
/* ---------------------------------------------
*   Index Page
--------------------------------------------- */
/*  index-contents
--------------------------------------------- */
.index-contents {
    position: relative;
    z-index: 1;
    background-color: #fff;
}

/*  index-menu
--------------------------------------------- */
.index-menu {
    padding-top: 65px;
}

@media screen and (max-width: 750px) {
    .index-menu {
        padding-top: 4.6875vw;
    }
}

.index-menu__list {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.index-menu__list:before {
    display: block;
    -ms-flex-order: 3;
    width: 240px;
    height: 0;
    content: "";

    -webkit-box-ordinal-group: 4;
    order: 3;
}

.index-menu__list:after {
    display: block;
    -ms-flex-order: 2;
    width: 240px;
    height: 0;
    content: "";

    -webkit-box-ordinal-group: 3;
    order: 2;
}

@media screen and (max-width: 750px) {
    .index-menu__list:before {
        width: 42.1875vw;
    }
    .index-menu__list:after {
        width: 42.1875vw;
    }
}

.index-menu__list-item {
    margin-top: 15px;
}

@media screen and (max-width: 750px) {
    .index-menu__list-item {
        margin-top: 3.125vw;
    }
    .index-menu__list-item--order-sp-1 {
        -ms-flex-order: 0;

        -webkit-box-ordinal-group: 1;
        order: 0;
    }
    .index-menu__list-item--order-sp-2 {
        -ms-flex-order: 0;

        -webkit-box-ordinal-group: 1;
        order: 0;
    }
    .index-menu__list-item--order-sp-3 {
        -ms-flex-order: 0;

        -webkit-box-ordinal-group: 1;
        order: 0;
    }
    .index-menu__list-item--order-sp-4 {
        -ms-flex-order: 0;

        -webkit-box-ordinal-group: 1;
        order: 0;
    }
    .index-menu__list-item--order-sp-5 {
        -ms-flex-order: 1;

        -webkit-box-ordinal-group: 2;
        order: 1;
    }
    .index-menu__list-item--order-sp-6 {
        -ms-flex-order: 0;

        -webkit-box-ordinal-group: 1;
        order: 0;
    }
}

.index-menu__link {
    display: block;
}

.index-menu__image {
    position: relative;
    display: block;
    overflow: hidden;
}

.index-menu__image-thumb {
    position: relative;
    display: block;
    height: 240px;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
}

.index-menu__image-thumb:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: "";
    -webkit-transition: background-color .5s;
    transition: background-color .5s;
}

.index-menu__image-thumb:hover {
    -webkit-transform: translateZ(0) scale(1.05, 1.05);
    transform: translateZ(0) scale(1.05, 1.05);
}

.index-menu__image-thumb:hover:before {
    background-color: rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 750px) {
    .index-menu__image-thumb:before {
        display: none;
    }
    .index-menu__image-thumb:hover {
        -webkit-transform: translateZ(0) scale(1, 1);
        transform: translateZ(0) scale(1, 1);
    }
}

.index-menu__image-thumb img {
    height: 100%;
}

@media screen and (max-width: 750px) {
    .index-menu__image-thumb {
        height: 42.1875vw;
    }
    .index-menu__list-item--order-sp-3 .index-menu__image-thumb {
        width: 100%;
        height: auto;
    }
    .index-menu__list-item--order-sp-3 .index-menu__image-thumb img {
        height: auto;
    }
    .index-menu__list-item--order-sp-5 .index-menu__image-thumb {
        width: 100%;
        height: auto;
    }
    .index-menu__list-item--order-sp-5 .index-menu__image-thumb img {
        height: auto;
    }
}

.index-menu__image-caption {
    position: absolute;
    top: 50%;
    left: 30px;
    width: calc(100% - 60px);
    color: #fff;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
}

@media screen and (max-width: 750px) {
    .index-menu__image-caption {
        left: 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 4.6875vw;
        width: 100%;
    }
}

.index-menu__image-caption-en {
    font-size: 1.4rem;
    text-shadow: 0px 0px 2px #666;
    line-height: 1.3;
}

.index-menu__image-caption-ja {
    font-size: 0.71429rem;
}

@media screen and (max-width: 750px) {
    .index-menu__image-caption-en {
        font-size: 1rem;
    }
}

/*  index-news
--------------------------------------------- */
.index-news {
    padding: 80px 0 95px;
}

@media screen and (max-width: 750px) {
    .index-news {
        padding: 8.59375vw 0 10.9375vw;
    }
}

.index-news__head {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: end;

    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    align-items: flex-end;
}

@media screen and (max-width: 750px) {
    .index-news__head {
        display: block;
    }
}

.index-news__body {
    padding-top: 25px;
}

@media screen and (max-width: 750px) {
    .index-news__body {
        padding: 3.125vw 0 6.25vw;
    }
}

@media screen and (max-width: 750px) {
    .index-news .mod-btn-wipe {
        /*margin-right: 4.6875vw;*/
        /*margin-left: 4.6875vw;*/
        /*padding-top: 1.875vw;*/
        /*padding-bottom: 1.875vw;*/
        padding-top: 3.2vw;
        padding-bottom: 3vw;
        font-size: 0.85714rem;
    }
}

/* ---------------------------------------------
*   Company Category
--------------------------------------------- */
/*  company-profile
--------------------------------------------- */
.company-profile {
    margin-right: auto;
    margin-left: auto;
    padding-right: 10px;
    padding-left: 10px;
    max-width: 800px;
}

@media screen and (max-width: 750px) {
    .company-profile {
        margin-right: 0;
        margin-left: 0;
        padding: 0;
        padding-left: 0;
        width: auto;
    }
}

.company-profile__table {
    width: 100%;
    font-size: 1.14286rem;
}

.company-profile__table--column-1-sp {
    margin-top: -1px;
}

@media screen and (max-width: 750px) {
    .company-profile__table--column-1-sp {
        display: block;
    }
    .company-profile__table--column-1-sp tbody, .company-profile__table--column-1-sp tr, .company-profile__table--column-1-sp th, .company-profile__table--column-1-sp td {
        display: block;
        width: auto;
    }
    .company-profile__table--column-1-sp th {
        padding-left: 0;
        text-align: center;
    }
    .company-profile__table--column-1-sp td {
        margin-top: -1px;
        margin-bottom: -1px;
    }
}

@media screen and (max-width: 750px) {
    .company-profile__table {
        font-size: 1rem;
    }
}

.company-profile__table-head, .company-profile__table-body {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 10px;
    padding-bottom: 10px;
    border: 1px solid #c9c9c9;
}

@media screen and (max-width: 750px) {
    .company-profile__table-head, .company-profile__table-body {
        padding-top: 1.25vw;
        padding-bottom: 1.25vw;
    }
}

.company-profile__table-head {
    padding-right: 10px;
    padding-left: 30px;
    width: 190px;
    color: #001c58;
    text-align: left;
    font-weight: bold;
}

@media screen and (max-width: 750px) {
    .company-profile__table-head {
        padding-right: 0;
        padding-left: 3.90625vw;
        /*width: 28.125vw;*/
	width: 38vw;
        text-align: left;
    }
}

.company-profile__table-body {
    padding-right: 20px;
    padding-left: 20px;
}

@media screen and (max-width: 750px) {
    .company-profile__table-body {
        padding-right: 3.90625vw;
        padding-left: 3.90625vw;
    }
}

.company-profile__table-link {
    margin-left: 1.0em;
    color: #00a0e9;
    font-size: 1rem;
}

.company-profile__table-link:hover {
    text-decoration: underline;
}

.company-profile__table-link[target="_blank"]:after {
    display: inline-block;
    margin-left: .5em;
    width: 22px;
    height: 13px;
    background: url(../img/common/icon_external_blue2.png) 50% 50% no-repeat;
    content: "";
    vertical-align: middle;
}

@media screen and (max-width: 750px) {
    .company-profile__table-link {
        display: none;
    }
}

/* ---------------------------------------------
*   Business Category
--------------------------------------------- */
/*  business-index
--------------------------------------------- */
/* .business-index {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -ms-flex-pack: justify;
    -ms-flex-align: center;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
}*/

@media screen and (max-width: 750px) {
    .business-index {
        display: block;
        padding-right: 4.375vw;
        padding-left: 4.375vw;
    }
}

/*.business-index__image {
    width: 413px;
    text-align: center;
}*/

@media screen and (max-width: 750px) {
    .business-index__image {
        width: auto;
    }
}

.business-index__contents {
    width: 525px;
}

@media screen and (max-width: 750px) {
    .business-index__contents {
        margin-top: 6.25vw;
        width: auto;
    }
}

.business-index__head {
    margin-bottom: 30px;
}

@media screen and (max-width: 750px) {
    .business-index__head {
        margin-bottom: 4.6875vw;
    }
}

/*  business-learn-more
--------------------------------------------- */
/*.business-learn-more {
    margin-top: 55px;
    text-align: center;
    font-size: 1.14286rem;
} */

@media screen and (max-width: 750px) {
    .business-learn-more {
        margin-top: 7.03125vw;
        font-size: 1.28571rem;
    }
}

.business-learn-more .mod-btn-wipe {
    margin-right: auto;
    margin-left: auto;
}

/*  business-detail
--------------------------------------------- */
.business-detail {
    margin-top: 60px;
}

@media screen and (max-width: 750px) {
    .business-detail {
        margin-top: 2.5rem;
    }
}

.business-detail__upper {
    margin-bottom: 40px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .business-detail__upper {
        margin-bottom: 3.125vw;
    }
}

.business-detail__container {
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    padding-right: 20px;
    padding-left: 20px;

    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 750px) {
    .business-detail__container {
        display: block;
        padding-right: 0;
        padding-left: 0;
    }
}

/*  business-detail-figure
--------------------------------------------- */
.business-detail-figure {
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -ms-flex-pack: justify;
    width: 470px;

    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 750px) {
    .business-detail-figure {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: start;
        margin-top: 4.6875vw;
        width: auto;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-pack: start;
        justify-content: flex-start;
    }
}

.business-detail-figure__image {
    margin-top: 24px;
    height: 290px;
}

@media screen and (max-width: 750px) {
    .business-detail-figure__image {
        margin-top: 0;
        height: auto;
    }
    .business-detail-figure__image img {
        width: 100%;
    }
}

.business-detail-figure__caption {
    font-size: 0.85714rem;
}

@media screen and (max-width: 750px) {
    .business-detail-figure__caption {
        margin-top: 1.5625vw;
        padding-right: 4.6875vw;
        padding-left: 4.6875vw;
    }
}

/* ---------------------------------------------
*   Products Category
--------------------------------------------- */
/*  products-index
--------------------------------------------- */
.products-index {
    position: relative;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
    -webkit-box-align: stretch;
    align-items: stretch;
}

.products-index:after {
    display: block;
    clear: both;
    content: "";
}

.products-index:nth-child(even) {
    -ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
}

@media screen and (max-width: 750px) {
    .products-index {
        -ms-flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }
    .products-index:nth-child(even) {
        -ms-flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }
}

.products-index__image {
    position: relative;
    width: 680px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
    -webkit-box-align: stretch;
    align-items: stretch;
}

.products-index__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.products-index__image .youtube {
    position: relative;
    padding-top: 56.25%;
    height: 0;
    overflow: hidden;
    width: 100%;
}

.products-index__image .youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 750px) {
    .products-index__image {
        width: 90%;
        height: 43.75vw;
        margin: 0 auto;
        z-index: 2;
    }
    .products-index__image img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.products-index__contents {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    padding: 40px;
    width: 380px;
    background-color: #f2f2f2;
    -ms-flex-item-align: stretch;
    align-self: stretch;
}

@media screen and (max-width: 750px) {
    .products-index__contents {
        width: 100%;
        padding: 12.5vw 4.6875vw 7.03125vw;
        background-color: #f2f2f2;
        margin-top: -45px;
        position: relative;
        z-index: 1;
    }
}

@media screen and (max-width: 428px) {
    .products-index__contents {
        margin-top: -40px;
    }
}

.products-index__head {
    margin-bottom: 15px;
}

.products-index__head .mod-heading-line {
    padding-bottom: 10px;
}

.products-index__url {
    margin-top: 16px;
}

.products-index__url a {
    color: #00a0e9;
    text-decoration: underline;
    /* font-size: 0.85714rem; */
}

.products-index__url a:hover {
    text-decoration: none;
}

/*  products-detail
--------------------------------------------- */
.products-detail {
    margin-top: 55px;
}

@media screen and (max-width: 750px) {
    .products-detail {
        margin-top: 9.375vw;
    }
}

/*  products-honeycomb-movie
--------------------------------------------- */
.products-honeycomb-movie {
    position: relative;
    margin-right: auto;
    margin-left: auto;
    padding-right: 10px;
    padding-left: 10px;
    max-width: 800px;
    height: 450px;
}

.products-honeycomb-movie iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 750px) {
    .products-honeycomb-movie {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding-right: 0%;
        padding-left: 0%;
        max-width: 100%;
        height: 49.0625vw;
    }
}

/* ---------------------------------------------
*   NEWS
--------------------------------------------- */
/*  news
--------------------------------------------- */
.news__head {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    margin-bottom: 50px;

    -webkit-box-pack: end;
    justify-content: flex-end;
}

@media screen and (max-width: 750px) {
    .news__head {
        -ms-flex-pack: justify;
        margin-bottom: 6.25vw;

        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}

.news__foot {
    margin-top: 70px;
}

@media screen and (max-width: 750px) {
    .news__foot {
        margin-top: 7.8125vw;
    }
}

/*  news-select
--------------------------------------------- */
.news-select {
    margin-left: 18px;
    color: #003e7f;
}

@media screen and (max-width: 750px) {
    .news-select {
        margin-left: 0;
        width: 48.21429%;
    }
}

.news-select__head {
    margin-bottom: 3px;
    font-size: 1.14286rem;
}

@media screen and (max-width: 750px) {
    .news-select__head {
        font-size: 1rem;
    }
}

.news-select__body {
    position: relative;
}

.news-select__body:after {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 11px;
    height: 6px;
    background: url(../img/common/icon_arrow_blue_down.png) 50% 50% no-repeat;
    content: "";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
}

@media screen and (max-width: 750px) {
    .news-select__body {
        border: 1px solid #003e7f;
    }
    .news-select__body:after {
        right: 3.125vw;
        width: 1.875vw;
        height: 0.9375vw;
        background-size: 100% auto;
    }
}

.news-select__list {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    -ms-flex-align: center;
    margin: 0;
    padding: 0;
    padding: 0 20px;
    min-width: 218px;
    height: 42px;
    outline: none;
    border: 0;
    border: 1px solid #003e7f;
    border-radius: 0;
    background-color: transparent;
    color: inherit;
    font-size: inherit;
    font-family: inherit;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .news-select__list {
        padding: 0 3.125vw;
        min-width: 100%;
        height: 6.5625vw;
        border: 0;
    }
}

.news-select select::-ms-expand {
    display: none;
}

.news-select select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #828c9a;
}

/* ---------------------------------------------
*   news-detail
--------------------------------------------- */
.news-detail {
    margin-right: auto;
    margin-left: auto;
    padding-right: 0.83333%;
    padding-left: 0.83333%;
    /*max-width: 66.66667%;*/
    max-width: 800px;
}

@media screen and (max-width: 750px) {
    .news-detail {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding-right: 0%;
        padding-left: 0%;
        max-width: 100%;
    }
}

.news-detail__sub {
    margin-bottom: 30px;
}

@media screen and (max-width: 750px) {
    .news-detail__sub {
        margin-bottom: 4.6875vw;
    }
}

.news-detail__category {
    color: #00a0e9;
    vertical-align: baseline;
    font-size: 1.28571rem;
}

.news-detail__date {
    margin-left: .5em;
    vertical-align: baseline;
}

.news-detail__body {
    padding-bottom: 80px;
}

@media screen and (max-width: 750px) {
    .news-detail__body {
        padding-bottom: 6.25vw;
    }
}

/*  news-buttons
--------------------------------------------- */
.news-buttons {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    margin-right: auto;
    margin-left: auto;
    padding-top: 80px;
    padding-right: 10px;
    padding-left: 10px;
    max-width: 1000px;

    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 750px) {
    .news-buttons {
        -ms-flex-pack: justify;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding-top: 6.25vw;
        padding-right: 4.6875%;
        padding-left: 4.6875%;
        max-width: 109.375%;

        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}

.news-buttons__list {
    margin-right: 20px;
    margin-left: 20px;
    width: 150px;
}

@media screen and (max-width: 750px) {
    .news-buttons__list {
        margin-right: 0;
        margin-left: 0;
        width: 28%;
    }
}

/* ---------------------------------------------
*   wysiwyg (Wordpress案件以外は削除すること)
--------------------------------------------- */
.wysiwyg {
    overflow: hidden;
}

.wysiwyg > :first-child {
    margin-top: 50px;
}

@media screen and (max-width: 750px) {
    .wysiwyg > :first-child {
        margin-top: 6.25vw;
    }
}

.wysiwyg:after {
    display: block;
    clear: both;
    content: "";
}

/* wysiwyg default
--------------------------------------------- */
.wysiwyg sup {
    vertical-align: super;
    font-size: smaller;
}

.wysiwyg sub {
    vertical-align: sub;
    font-size: smaller;
}

.wysiwyg h1 {
    font-size: 2em;
}

.wysiwyg h2 {
    font-size: 1.5em;
}

.wysiwyg h3 {
    font-size: 1.17em;
}

.wysiwyg h4 {
    font-size: 100%;
}

.wysiwyg h5 {
    font-size: 0.83em;
}

.wysiwyg h6 {
    font-size: 0.67em;
}

.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6 {
    margin-top: 50px;
    margin-right: 65px;
    margin-bottom: 0;
    margin-left: 65px;
    font-weight: bold;
}

.wysiwyg i,
.wysiwyg strong {
    font-weight: bold;
}

.wysiwyg p {
    margin-top: 50px;
    margin-right: 65px;
    margin-bottom: 0;
    margin-left: 65px;
}

.wysiwyg em {
    font-style: italic;
}

.wysiwyg a {
    color: #001c58;
    text-decoration: underline;
}

.wysiwyg a:hover {
    text-decoration: none;
}

.wysiwyg ul {
    margin-top: 50;
    margin-right: 65px;
    margin-bottom: 0;
    /*margin-left: 65px;
    padding-left: 40px;
    list-style-type: disc;*/
    list-style-type: none;
}

.wysiwyg ol {
    margin-top: 50px;
    margin-right: 65px;
    margin-bottom: 0;
    margin-left: 65px;
    padding-left: 40px;
    list-style-type: decimal;
}

.wysiwyg li {
    display: list-item;
    text-align: -webkit-match-parent;
}

.wysiwyg img {
    margin-top: 50px;
}
.wysiwyg span img{
    margin-top: 10px;
}

.wysiwyg blockquote {
    margin: 1.12em 0;
}

@media screen and (max-width: 750px) {
    .wysiwyg h1,
    .wysiwyg h2,
    .wysiwyg h3,
    .wysiwyg h4,
    .wysiwyg h5,
    .wysiwyg h6 {
        margin-top: 3.125vw;
        margin-right: 4.6875vw;
        margin-left: 4.6875vw;
    }
    .wysiwyg p {
        margin-top: 3.125vw;
        margin-right: 4.6875vw;
        margin-left: 4.6875vw;
    }
    .wysiwyg ul {
        margin-top: 3.125vw;
        margin-right: 4.6875vw;
        margin-left: 4.6875vw;
        padding-left: 3.125vw;
    }
    .wysiwyg ol {
        margin-top: 3.125vw;
        margin-right: 4.6875vw;
        margin-left: 4.6875vw;
        padding-left: 3.125vw;
    }
    .wysiwyg img {
        margin-top: 3.125vw;
    }
}

/* ---------------------------------------------
*   CONTACT Category
--------------------------------------------- */
/*  contact
--------------------------------------------- */
.contact__caption {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-bottom: 60px;
    margin-left: auto;
    padding-right: 16px;
    padding-bottom: 50px;
    padding-left: 16px;
    max-width: 832px;
    border-bottom: 1px solid #d2d2d2;
}

@media screen and (max-width: 750px) {
    .contact__caption {
        margin-right: -3.125vw;
        margin-bottom: 9.375vw;
        margin-left: -3.125vw;
        padding-right: 3.125vw;
        padding-bottom: 4.6875vw;
        padding-left: 3.125vw;
        border-bottom: 1px solid #d2d2d2;
    }
}

.contact__caption-item {
    position: relative;
    margin-bottom: 5px;
    padding-left: 18px;
}

.contact__caption-item:before {
    position: absolute;
    top: 0;
    left: 0;
    color: #001c58;
    content: "■";
}

@media screen and (max-width: 750px) {
    .contact__caption-item {
        margin-bottom: 0.78125vw;
        padding-left: 1.5em;
    }
}

.contact .must {
    display: inline;
    float: right;
    margin: 0px 5px;
    padding: 0;
    border: solid 0 transparent;
    border-radius: 0;
    background-color: transparent;
    background-image: none;
    background-size: 100% 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #00a0e9;
    text-shadow: none;
    font-size: 0.85714rem;
    line-height: 2.6;
    font-weight: normal;
}

@media screen and (max-width: 750px) {
    .contact .must {
        float: none;
        margin: 0px 1.0em;
        line-height: 1.0;
    }
}

/*  contact-progress
--------------------------------------------- */
.contact-progress {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: auto;
    margin-bottom: 60px;
    margin-left: auto;
    padding-right: 37px;
    width: 561px;
}

@media screen and (max-width: 750px) {
    .contact-progress {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin-bottom: 6.25vw;
        padding-right: 5vw;
        width: 100%;
    }
}

.contact-progress__step {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 37px;
    width: 187px;
    height: 54px;
    border-top: 1px solid #001c58;
    border-bottom: 1px solid #001c58;
    color: #001c58;
    text-align: center;
    line-height: 54px;
}

.contact-progress__step:first-child {
    z-index: 2;
    padding-left: 0;
    border-left: 1px solid #001c58;
}

.contact-progress__step:nth-child(2) {
    z-index: 1;
}

.contact-progress__step:nth-child(3) {
    z-index: 0;
}

.contact-progress__step:before, .contact-progress__step:after {
    position: absolute;
    top: -1px;
    right: 0;
    z-index: -1;
    border: 27px solid transparent;
    border-left-width: 37px;
    border-left-style: solid;
    content: "";
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.contact-progress__step:before {
    margin-right: 1px;
    border-left-color: #001c58;
}

.contact-progress__step:after {
    margin-right: 3px;
    border-left-color: #fff;
}

.contact-progress__step--current {
    background-color: #001c58;
    color: #fff;
}

.contact-progress__step--current:after {
    border-left-color: #001c58;
}

@media screen and (max-width: 750px) {
    .contact-progress__step {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        -ms-flex-align: center;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        align-items: center;
        padding-left: 5vw;
        width: 27.5vw;
        height: 10vw;
        font-size: 0.85714rem;
        line-height: 1.1;
    }
    .contact-progress__step:before, .contact-progress__step:after {
        border-width: 5vw;
        border-left-width: 5vw;
    }
}

/*  contact-table
--------------------------------------------- */
.contact-table {
    width: 100%;
}

@media screen and (max-width: 750px) {
    .contact-table {
        display: block;
        border-bottom: 1px solid #d2d2d2;
    }
    .contact-table thead, .contact-table tbody, .contact-table tr, .contact-table th, .contact-table td {
        display: block;
    }
}

.contact-table th, .contact-table td {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 12px 30px;
    border: 1px solid #d2d2d2;
    vertical-align: middle;
}

@media screen and (max-width: 750px) {
    .contact-table th, .contact-table td {
        padding: 1.875vw;
        border-bottom: 0;
        text-align: center;
    }
}

.contact-table th {
    width: 300px;
    color: #001c58;
    font-weight: bold;
    font-size: 1.07143rem;
}

@media screen and (max-width: 750px) {
    .contact-table th {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        -ms-flex-align: center;
        width: 100%;

        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        align-items: center;
    }
}

@media screen and (max-width: 750px) {
    .contact-table td {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: center;
        -ms-flex-align: center;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        align-items: center;
    }
}

.contact-table input[type="text"], .contact-table input[type="email"], .contact-table input[type="tel"],
.contact-table textarea {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    padding-right: 12px;
    padding-left: 12px;
    width: 320px;
    height: 30px;
    outline: none;
    border: 0;
    background-color: #f2f2f2;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    line-height: 30px;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

@media screen and (max-width: 750px) {
    .contact-table input[type="text"], .contact-table input[type="email"], .contact-table input[type="tel"],
    .contact-table textarea {
        padding-right: 1.875vw;
        padding-left: 1.875vw;
        width: 50vw;
        height: 7.8125vw;
        border-radius: 0;
        line-height: 7.8125vw;
    }
}

.contact-table textarea {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100% !important;
    height: 100px !important;
}

@media screen and (max-width: 750px) {
    .contact-table textarea {
        padding: 1.875vw 3.125vw;
        height: 23.4375vw;
    }
}

.contact-table textarea::-webkit-input-placeholder {
    color: #e60012;
}

.contact-table textarea:-ms-input-placeholder {
    color: #e60012;
}

.contact-table textarea::-ms-input-placeholder {
    color: #e60012;
}

.contact-table textarea::placeholder {
    color: #e60012;
}

.contact-table textarea:-ms-textarea-placeholder {
    color: #e60012;
}

.contact-table textarea::-ms-textarea-placeholder {
    color: #e60012;
}

form#mailformpro label {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    width: 320px;
    border: 1px solid #d2d2d2;
    border-radius: 0;
}

form#mailformpro label:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 30px;
    border-left: 1px solid #d2d2d2;
    background: #f2f2f2 url(../img/common/icon_arrow_blue_down.png) 50% 50% no-repeat;
    content: "";
    pointer-events: none;
}

@media screen and (max-width: 750px) {
    form#mailformpro label {
        width: 50vw;
    }
    form#mailformpro label:after {
        width: 9.375vw;
        height: 7.8125vw;
        background-size: 20% auto;
        content: "";
    }
}

.contact-table select {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    -ms-flex-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    padding: 0 12px;
    width: 100%;
    height: 30px;
    outline: none;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    line-height: 30px;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .contact-table select {
        padding: 0 1.875vw;
        min-width: 100%;
        width: auto;
        height: 7.8125vw;
        line-height: 7.8125vw;
    }
}

.contact-table select::-ms-expand {
    display: none;
}

.contact-table select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #828c9a;
}

/*  contact-buttons
--------------------------------------------- */
.contact-buttons {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    margin-top: 80px;

    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 750px) {
    .contact-buttons {
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 7.8125vw;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
    }
}

/*  contact-complete
--------------------------------------------- */
.contact-complete {
    margin-right: auto;
    margin-left: auto;
    width: 660px;
}

@media screen and (max-width: 750px) {
    .contact-complete {
        padding: 1.5625vw 4.6875vw 0;
        width: auto;
    }
}

.contact-complete__text {
    margin-bottom: 30px;
}

@media screen and (max-width: 750px) {
    .contact-complete__text {
        margin-bottom: 4.6875vw;
    }
}

/*  mailformpro
--------------------------------------------- */
.mfp_element_text, .mfp_element_number, .mfp_element_select-one, .mfp_element_email, .mfp_element_tel, .mfp_element_textarea, .mfp_element_date, .mfp_element_password {
    margin: 0;
    padding-right: 12px;
    padding-left: 12px;
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media screen and (max-width: 750px) {
    .mfp_element_text, .mfp_element_number, .mfp_element_select-one, .mfp_element_email, .mfp_element_tel, .mfp_element_textarea, .mfp_element_date, .mfp_element_password {
        padding-right: 1.875vw;
        padding-left: 1.875vw;
    }
}

.mfp_element_submit, .mfp_element_reset, .mfp_element_button, button.mfp_next, button.mfp_prev {
    position: relative;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    margin-right: 15px;
    margin-left: 15px;
    padding: 0;
    width: 300px;
    height: 60px;
    outline: none;
    border: 2px solid #001c58;
    border-radius: 0;
    background: none;
    font-family: "Roboto Condensed", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "meiryo", sans-serif;
    color: #001c58;
    text-shadow: none;
    font-weight: bold;
    font-size: 1.14286rem;
    font-size: 1.14286rem;
    cursor: pointer;
    -webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);

    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.mfp_element_submit:before, .mfp_element_reset:before, .mfp_element_button:before, button.mfp_next:before, button.mfp_prev:before {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: 0;
    height: 100%;
    background-color: #001c58;
    content: "";
    -webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

.mfp_element_submit:hover, .mfp_element_reset:hover, .mfp_element_button:hover, button.mfp_next:hover, button.mfp_prev:hover {
    color: #fff;
}

.mfp_element_submit:hover:before, .mfp_element_reset:hover:before, .mfp_element_button:hover:before, button.mfp_next:hover:before, button.mfp_prev:hover:before {
    right: auto;
    left: 0%;
    width: 100%;
}

@media screen and (max-width: 750px) {
    .mfp_element_submit, .mfp_element_reset, .mfp_element_button, button.mfp_next, button.mfp_prev {
        margin: 1.5625vw 0;
        width: 100%;
        height: 10.9375vw;
        border-width: 1px;
    }
    .mfp_element_submit:before, .mfp_element_reset:before, .mfp_element_button:before, button.mfp_next:before, button.mfp_prev:before {
        display: none;
    }
    .mfp_element_submit:hover, .mfp_element_reset:hover, .mfp_element_button:hover, button.mfp_next:hover, button.mfp_prev:hover {
        color: #001c58;
    }
}

.mfp_element_submit:hover, .mfp_element_reset:hover, .mfp_element_button:hover, button.mfp_next:hover, button.mfp_prev:hover {
    background: none;
    background: none;
    background: none;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.mfp_element_all {
    max-width: 100%;
}

#mfp_phase_confirm {
    display: none;
}

form#mailformpro {
    padding: 0px;
}

div.mfp_buttons {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    clear: both;
    margin-top: 80px;
    padding: 0;
    text-align: center;

    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 750px) {
    div.mfp_buttons {
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 7.8125vw;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
    }
}

div#mfp_phase_confirm h4 {
    display: none;
}

@media screen and (max-width: 750px) {
    table#mfp_confirm_table {
        display: block;
        border-bottom: solid 1px #d2d2d2;
    }
    table#mfp_confirm_table thead, table#mfp_confirm_table tbody, table#mfp_confirm_table tr, table#mfp_confirm_table th, table#mfp_confirm_table td {
        display: block;
    }
}

table#mfp_confirm_table tr.mfp_colored {
    background-color: transparent;
}

table#mfp_confirm_table tr.mfp_achroma {
    background-color: transparent;
}

table#mfp_confirm_table tr th, table#mfp_confirm_table tr td {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 12px 30px;
    border: solid 1px #d2d2d2;
    vertical-align: middle;
    text-align: left;
    font-size: inherit;
}

@media screen and (max-width: 750px) {
    table#mfp_confirm_table tr th, table#mfp_confirm_table tr td {
        padding: 1.875vw;
        border-bottom: 0;
        text-align: center;
    }
}

table#mfp_confirm_table tr th {
    width: 300px;
    color: #001c58;
    font-weight: bold;
    font-size: 1.07143rem;
}

@media screen and (max-width: 750px) {
    table#mfp_confirm_table tr th {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        width: 100%;

        -webkit-box-pack: center;
        justify-content: center;
    }
}

table#mfp_confirm_table tr td {
    line-height: inherit;
}

@media screen and (max-width: 750px) {
    table#mfp_confirm_table tr td {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: center;
        -ms-flex-align: center;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        align-items: center;
    }
}

/* ==========================================================
*
*   utility
*
========================================================== */
/* ---------------------------------------------
*   margin-top
--------------------------------------------- */
.mgt-pc--0 {
    margin-top: 0 !important;
}

.mgt-pc--5 {
    margin-top: 5px !important;
}

.mgt-pc--10 {
    margin-top: 10px !important;
}

.mgt-pc--15 {
    margin-top: 15px !important;
}

.mgt-pc--20 {
    margin-top: 20px !important;
}

.mgt-pc--25 {
    margin-top: 25px !important;
}

.mgt-pc--30 {
    margin-top: 30px !important;
}

.mgt-pc--35 {
    margin-top: 35px !important;
}

.mgt-pc--40 {
    margin-top: 40px !important;
}

.mgt-pc--45 {
    margin-top: 45px !important;
}

.mgt-pc--50 {
    margin-top: 50px !important;
}

.mgt-pc--55 {
    margin-top: 55px !important;
}

.mgt-pc--60 {
    margin-top: 60px !important;
}

.mgt-pc--65 {
    margin-top: 65px !important;
}

.mgt-pc--70 {
    margin-top: 70px !important;
}

.mgt-pc--75 {
    margin-top: 75px !important;
}

.mgt-pc--80 {
    margin-top: 80px !important;
}

.mgt-pc--85 {
    margin-top: 85px !important;
}

.mgt-pc--90 {
    margin-top: 90px !important;
}

.mgt-pc--95 {
    margin-top: 95px !important;
}

.mgt-pc--100 {
    margin-top: 100px !important;
}

.mgt-pc--105 {
    margin-top: 105px !important;
}

.mgt-pc--110 {
    margin-top: 110px !important;
}

.mgt-pc--115 {
    margin-top: 115px !important;
}

.mgt-pc--120 {
    margin-top: 120px !important;
}

.mgt-pc--125 {
    margin-top: 125px !important;
}

.mgt-pc--130 {
    margin-top: 130px !important;
}

.mgt-pc--135 {
    margin-top: 135px !important;
}

.mgt-pc--140 {
    margin-top: 140px !important;
}

.mgt-pc--145 {
    margin-top: 145px !important;
}

.mgt-pc--150 {
    margin-top: 150px !important;
}

.mgt-pc--155 {
    margin-top: 155px !important;
}

.mgt-pc--160 {
    margin-top: 160px !important;
}

.mgt-pc--165 {
    margin-top: 165px !important;
}

.mgt-pc--170 {
    margin-top: 170px !important;
}

.mgt-pc--175 {
    margin-top: 175px !important;
}

.mgt-pc--180 {
    margin-top: 180px !important;
}

.mgt-pc--185 {
    margin-top: 185px !important;
}

.mgt-pc--190 {
    margin-top: 190px !important;
}

.mgt-pc--195 {
    margin-top: 195px !important;
}

.mgt-pc--200 {
    margin-top: 200px !important;
}

.mgt-pc--205 {
    margin-top: 205px !important;
}

.mgt-pc--210 {
    margin-top: 210px !important;
}

.mgt-pc--215 {
    margin-top: 215px !important;
}

.mgt-pc--220 {
    margin-top: 220px !important;
}

.mgt-pc--225 {
    margin-top: 225px !important;
}

.mgt-pc--230 {
    margin-top: 230px !important;
}

.mgt-pc--235 {
    margin-top: 235px !important;
}

.mgt-pc--240 {
    margin-top: 240px !important;
}

.mgt-pc--245 {
    margin-top: 245px !important;
}

.mgt-pc--250 {
    margin-top: 250px !important;
}

@media screen and (max-width: 750px) {
    .mgt-sp--0 {
        margin-top: 0 !important;
    }
    .mgt-sp--5 {
        margin-top: 0.78125vw !important;
    }
    .mgt-sp--10 {
        margin-top: 1.5625vw !important;
    }
    .mgt-sp--15 {
        margin-top: 2.34375vw !important;
    }
    .mgt-sp--20 {
        margin-top: 3.125vw !important;
    }
    .mgt-sp--25 {
        margin-top: 3.90625vw !important;
    }
    .mgt-sp--30 {
        margin-top: 4.6875vw !important;
    }
    .mgt-sp--35 {
        margin-top: 5.46875vw !important;
    }
    .mgt-sp--40 {
        margin-top: 6.25vw !important;
    }
    .mgt-sp--45 {
        margin-top: 7.03125vw !important;
    }
    .mgt-sp--50 {
        margin-top: 7.8125vw !important;
    }
    .mgt-sp--55 {
        margin-top: 8.59375vw !important;
    }
    .mgt-sp--60 {
        margin-top: 9.375vw !important;
    }
    .mgt-sp--65 {
        margin-top: 10.15625vw !important;
    }
    .mgt-sp--70 {
        margin-top: 10.9375vw !important;
    }
    .mgt-sp--75 {
        margin-top: 11.71875vw !important;
    }
    .mgt-sp--80 {
        margin-top: 12.5vw !important;
    }
    .mgt-sp--85 {
        margin-top: 13.28125vw !important;
    }
    .mgt-sp--90 {
        margin-top: 14.0625vw !important;
    }
    .mgt-sp--95 {
        margin-top: 14.84375vw !important;
    }
    .mgt-sp--100 {
        margin-top: 15.625vw !important;
    }
    .mgt-sp--105 {
        margin-top: 16.40625vw !important;
    }
    .mgt-sp--110 {
        margin-top: 17.1875vw !important;
    }
    .mgt-sp--115 {
        margin-top: 17.96875vw !important;
    }
    .mgt-sp--120 {
        margin-top: 18.75vw !important;
    }
    .mgt-sp--125 {
        margin-top: 19.53125vw !important;
    }
    .mgt-sp--130 {
        margin-top: 20.3125vw !important;
    }
    .mgt-sp--135 {
        margin-top: 21.09375vw !important;
    }
    .mgt-sp--140 {
        margin-top: 21.875vw !important;
    }
    .mgt-sp--145 {
        margin-top: 22.65625vw !important;
    }
    .mgt-sp--150 {
        margin-top: 23.4375vw !important;
    }
    .mgt-sp--155 {
        margin-top: 24.21875vw !important;
    }
    .mgt-sp--160 {
        margin-top: 25vw !important;
    }
    .mgt-sp--165 {
        margin-top: 25.78125vw !important;
    }
    .mgt-sp--170 {
        margin-top: 26.5625vw !important;
    }
    .mgt-sp--175 {
        margin-top: 27.34375vw !important;
    }
    .mgt-sp--180 {
        margin-top: 28.125vw !important;
    }
    .mgt-sp--185 {
        margin-top: 28.90625vw !important;
    }
    .mgt-sp--190 {
        margin-top: 29.6875vw !important;
    }
    .mgt-sp--195 {
        margin-top: 30.46875vw !important;
    }
    .mgt-sp--200 {
        margin-top: 31.25vw !important;
    }
    .mgt-sp--205 {
        margin-top: 32.03125vw !important;
    }
    .mgt-sp--210 {
        margin-top: 32.8125vw !important;
    }
    .mgt-sp--215 {
        margin-top: 33.59375vw !important;
    }
    .mgt-sp--220 {
        margin-top: 34.375vw !important;
    }
    .mgt-sp--225 {
        margin-top: 35.15625vw !important;
    }
    .mgt-sp--230 {
        margin-top: 35.9375vw !important;
    }
    .mgt-sp--235 {
        margin-top: 36.71875vw !important;
    }
    .mgt-sp--240 {
        margin-top: 37.5vw !important;
    }
    .mgt-sp--245 {
        margin-top: 38.28125vw !important;
    }
    .mgt-sp--250 {
        margin-top: 39.0625vw !important;
    }
}

/* ---------------------------------------------
*   margin-bottom
--------------------------------------------- */
.mgb-pc--0 {
    margin-bottom: 0 !important;
}

.mgb-pc--5 {
    margin-bottom: 5px !important;
}

.mgb-pc--10 {
    margin-bottom: 10px !important;
}

.mgb-pc--15 {
    margin-bottom: 15px !important;
}

.mgb-pc--20 {
    margin-bottom: 20px !important;
}

.mgb-pc--25 {
    margin-bottom: 25px !important;
}

.mgb-pc--30 {
    margin-bottom: 30px !important;
}

.mgb-pc--35 {
    margin-bottom: 35px !important;
}

.mgb-pc--40 {
    margin-bottom: 40px !important;
}

.mgb-pc--45 {
    margin-bottom: 45px !important;
}

.mgb-pc--50 {
    margin-bottom: 50px !important;
}

.mgb-pc--55 {
    margin-bottom: 55px !important;
}

.mgb-pc--60 {
    margin-bottom: 60px !important;
}

.mgb-pc--65 {
    margin-bottom: 65px !important;
}

.mgb-pc--70 {
    margin-bottom: 70px !important;
}

.mgb-pc--75 {
    margin-bottom: 75px !important;
}

.mgb-pc--80 {
    margin-bottom: 80px !important;
}

.mgb-pc--85 {
    margin-bottom: 85px !important;
}

.mgb-pc--90 {
    margin-bottom: 90px !important;
}

.mgb-pc--95 {
    margin-bottom: 95px !important;
}

.mgb-pc--100 {
    margin-bottom: 100px !important;
}

.mgb-pc--105 {
    margin-bottom: 105px !important;
}

.mgb-pc--110 {
    margin-bottom: 110px !important;
}

.mgb-pc--115 {
    margin-bottom: 115px !important;
}

.mgb-pc--120 {
    margin-bottom: 120px !important;
}

.mgb-pc--125 {
    margin-bottom: 125px !important;
}

.mgb-pc--130 {
    margin-bottom: 130px !important;
}

.mgb-pc--135 {
    margin-bottom: 135px !important;
}

.mgb-pc--140 {
    margin-bottom: 140px !important;
}

.mgb-pc--145 {
    margin-bottom: 145px !important;
}

.mgb-pc--150 {
    margin-bottom: 150px !important;
}

.mgb-pc--155 {
    margin-bottom: 155px !important;
}

.mgb-pc--160 {
    margin-bottom: 160px !important;
}

.mgb-pc--165 {
    margin-bottom: 165px !important;
}

.mgb-pc--170 {
    margin-bottom: 170px !important;
}

.mgb-pc--175 {
    margin-bottom: 175px !important;
}

.mgb-pc--180 {
    margin-bottom: 180px !important;
}

.mgb-pc--185 {
    margin-bottom: 185px !important;
}

.mgb-pc--190 {
    margin-bottom: 190px !important;
}

.mgb-pc--195 {
    margin-bottom: 195px !important;
}

.mgb-pc--200 {
    margin-bottom: 200px !important;
}

.mgb-pc--205 {
    margin-bottom: 205px !important;
}

.mgb-pc--210 {
    margin-bottom: 210px !important;
}

.mgb-pc--215 {
    margin-bottom: 215px !important;
}

.mgb-pc--220 {
    margin-bottom: 220px !important;
}

.mgb-pc--225 {
    margin-bottom: 225px !important;
}

.mgb-pc--230 {
    margin-bottom: 230px !important;
}

.mgb-pc--235 {
    margin-bottom: 235px !important;
}

.mgb-pc--240 {
    margin-bottom: 240px !important;
}

.mgb-pc--245 {
    margin-bottom: 245px !important;
}

.mgb-pc--250 {
    margin-bottom: 250px !important;
}

@media screen and (max-width: 750px) {
    .mgb-sp--0 {
        margin-bottom: 0 !important;
    }
    .mgb-sp--5 {
        margin-bottom: 0.78125vw !important;
    }
    .mgb-sp--10 {
        margin-bottom: 1.5625vw !important;
    }
    .mgb-sp--15 {
        margin-bottom: 2.34375vw !important;
    }
    .mgb-sp--20 {
        margin-bottom: 3.125vw !important;
    }
    .mgb-sp--25 {
        margin-bottom: 3.90625vw !important;
    }
    .mgb-sp--30 {
        margin-bottom: 4.6875vw !important;
    }
    .mgb-sp--35 {
        margin-bottom: 5.46875vw !important;
    }
    .mgb-sp--40 {
        margin-bottom: 6.25vw !important;
    }
    .mgb-sp--45 {
        margin-bottom: 7.03125vw !important;
    }
    .mgb-sp--50 {
        margin-bottom: 7.8125vw !important;
    }
    .mgb-sp--55 {
        margin-bottom: 8.59375vw !important;
    }
    .mgb-sp--60 {
        margin-bottom: 9.375vw !important;
    }
    .mgb-sp--65 {
        margin-bottom: 10.15625vw !important;
    }
    .mgb-sp--70 {
        margin-bottom: 10.9375vw !important;
    }
    .mgb-sp--75 {
        margin-bottom: 11.71875vw !important;
    }
    .mgb-sp--80 {
        margin-bottom: 12.5vw !important;
    }
    .mgb-sp--85 {
        margin-bottom: 13.28125vw !important;
    }
    .mgb-sp--90 {
        margin-bottom: 14.0625vw !important;
    }
    .mgb-sp--95 {
        margin-bottom: 14.84375vw !important;
    }
    .mgb-sp--100 {
        margin-bottom: 15.625vw !important;
    }
    .mgb-sp--105 {
        margin-bottom: 16.40625vw !important;
    }
    .mgb-sp--110 {
        margin-bottom: 17.1875vw !important;
    }
    .mgb-sp--115 {
        margin-bottom: 17.96875vw !important;
    }
    .mgb-sp--120 {
        margin-bottom: 18.75vw !important;
    }
    .mgb-sp--125 {
        margin-bottom: 19.53125vw !important;
    }
    .mgb-sp--130 {
        margin-bottom: 20.3125vw !important;
    }
    .mgb-sp--135 {
        margin-bottom: 21.09375vw !important;
    }
    .mgb-sp--140 {
        margin-bottom: 21.875vw !important;
    }
    .mgb-sp--145 {
        margin-bottom: 22.65625vw !important;
    }
    .mgb-sp--150 {
        margin-bottom: 23.4375vw !important;
    }
    .mgb-sp--155 {
        margin-bottom: 24.21875vw !important;
    }
    .mgb-sp--160 {
        margin-bottom: 25vw !important;
    }
    .mgb-sp--165 {
        margin-bottom: 25.78125vw !important;
    }
    .mgb-sp--170 {
        margin-bottom: 26.5625vw !important;
    }
    .mgb-sp--175 {
        margin-bottom: 27.34375vw !important;
    }
    .mgb-sp--180 {
        margin-bottom: 28.125vw !important;
    }
    .mgb-sp--185 {
        margin-bottom: 28.90625vw !important;
    }
    .mgb-sp--190 {
        margin-bottom: 29.6875vw !important;
    }
    .mgb-sp--195 {
        margin-bottom: 30.46875vw !important;
    }
    .mgb-sp--200 {
        margin-bottom: 31.25vw !important;
    }
    .mgb-sp--205 {
        margin-bottom: 32.03125vw !important;
    }
    .mgb-sp--210 {
        margin-bottom: 32.8125vw !important;
    }
    .mgb-sp--215 {
        margin-bottom: 33.59375vw !important;
    }
    .mgb-sp--220 {
        margin-bottom: 34.375vw !important;
    }
    .mgb-sp--225 {
        margin-bottom: 35.15625vw !important;
    }
    .mgb-sp--230 {
        margin-bottom: 35.9375vw !important;
    }
    .mgb-sp--235 {
        margin-bottom: 36.71875vw !important;
    }
    .mgb-sp--240 {
        margin-bottom: 37.5vw !important;
    }
    .mgb-sp--245 {
        margin-bottom: 38.28125vw !important;
    }
    .mgb-sp--250 {
        margin-bottom: 39.0625vw !important;
    }
}

@media screen and (min-width: 751px) {
    .pc-hide {
        display: none !important;
    }
}

@media screen and (max-width: 750px) {
    .sp-hide {
        display: none !important;
    }
}

/*  2018.9.28 gallary
--------------------------------------------- */

.gallery-index{
	clear: both;
	overflow:hidden;
}

.gallery-text-l {
	width:470px;
	float: left;
}

@media screen and (max-width: 750px) {
	.gallery-text-l {
		width:100%;
	}
}

.gallery-logo {
	width:279px;
}

@media screen and (max-width: 750px) {
	.gallery-logo {
		width:100%;
	}
}

.gallery-article {
	line-height: 2;
}

.gallery-text-r {
	width:490px;
	float: right;
}

@media screen and (max-width: 750px) {
	.gallery-text-r {
		width:100%;
	}
}

.gallery-imgbox{
	clear: both;
	overflow:hidden;
}

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

.col_4 li{
	width: calc(25% - 15px);
	margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
	.col_4 li{
		width: calc(50% - 10px);
		margin-bottom: 20px;
	}
}

.imgWrap {
	overflow: hidden;	/*拡大時にはみ出た部分を隠す*/
	width: 235px;	/*画像の幅*/
}
.imgWrap img {
	display: block;
	transition-duration: 0.4s;	/*変化に掛かる時間*/
}
.imgWrap img:hover {
	transform: scale(1.1);	/*画像の拡大率*/
	transition-duration: 0.4s;	/*変化に掛かる時間*/
}


/*  2018.9.28 gallary
--------------------------------------------- */

.gallery-column-three__list {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.gallery-column-three__list-item {
    width: 320px;
    margin:0 0 20px 0;
}

@media screen and (max-width: 750px) {
    .gallery-column-three__list-item {
        width: 100%;
        margin-bottom: 20px;
    }
}

.example {
  position: relative;
  }

.example p {
    position: absolute;
    top: 0;/*画像の左上に配置*/
    left: 0;
    margin: 0; /*余計な隙間を除く*/
    color: white;/*文字を白に*/
    background: #00a0e9;/*背景色*/
    line-height: 1;/*行高は1に*/
    padding: 7px 10px 5px;/*文字周りの余白*/
  }

.imgWrap_gallery {
	overflow: hidden;	/*拡大時にはみ出た部分を隠す*/
	width: 320px;	/*画像の幅*/
    height: 187px;
}

@media screen and (max-width: 750px) {
    .imgWrap_gallery {
            overflow: hidden;	/*拡大時にはみ出た部分を隠す*/
            width: 100%;	/*画像の幅*/
            height: 100%;
    }
}

.imgWrap_gallery img {
	display: block;
	transition-duration: 0.5s;	/*変化に掛かる時間*/
}
.imgWrap_gallery img:hover {
	transform: scale(1.1);	/*画像の拡大率*/
	transition-duration: 0.5s;	/*変化に掛かる時間*/
}

.gallery-buttons {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    margin-right: auto;
    margin-left: auto;
    padding-top: 40px;
    padding-right: 10px;
    padding-left: 10px;
    max-width: 1000px;

    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 750px) {
    .gallery-buttons {
        -ms-flex-pack: justify;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding-top: 6.25vw;
        padding-right: 4.6875%;
        padding-left: 4.6875%;
        max-width: 109.375%;

        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}

.gallery-buttons__list {
    margin-right: 20px;
    margin-left: 20px;
    width: 150px;
}

@media screen and (max-width: 750px) {
    .gallery-buttons__list {
        margin-right: 0;
        margin-left: 0;
        width: 28%;
    }
}

/*.try-tube {
    width: 96%;
    height:100%;
	margin: 0 2%;
}*/

@media screen and (max-width: 750px) {
    .try-tube {
        width: 100%;
        height:100%;
		margin: 0;
    }
}


/*  2019.6.20 business
--------------------------------------------- */

.business-index__body01 {
    width:1000px;
}

@media screen and (max-width: 750px) {
    .business-index__body01 {
        width:100%;
    }
}

.business-index__body02 {
    width:1000px;
    display: inline-flex;
    margin-top: 30px;
}

@media screen and (max-width: 750px) {
    .business-index__body02 {
        width:100%;
        margin-top: 30px;
        display: block;
    }
}

.business-index__image {
    width: 35%;
    margin-left: 50px;
    padding-top: 15px;
}

@media screen and (max-width: 750px) {
    .business-index__image {
        width: 100%;
        padding: 0;
        margin:0;
    }
}

.try-tube {
    width: 60%;
    height: 100%;
}

@media screen and (max-width: 750px) {
    .try-tube {
    width: 100%!important;
    height: 100%!important;
    margin-bottom: 30px;
    }
}

@media screen and (max-width: 750px) {
    .business-index__image {
        width: 100%!important;
    }
}

.business-learn-more {
    margin-top: 70px;
    text-align: center;
    font-size: 1.14286rem;
}

@media screen and (max-width: 750px) {
    .business-learn-more {
        margin-top: 40px;
        text-align: center;
        font-size: 1.14286rem;
    }
}


/*202002 暫定いずれstyle.cssに移す*/

.news-archive__more-wrap {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
}
.news-detail .nr-section-03-table {
    margin: 0 !important;
}

@media screen and (max-width: 750px) {
    .news-detail .nr-container {
    margin: 0 !important;
    padding: 20px !important;
    line-height: 1.6 !important;
	}
    .news-detail .nr-section-01-image img {
    min-width: 200px !important;
	}
    .news-detail .nr-section-03-table {
    overflow: scroll;
	}
}

.news-detail .nr-list-01 li::before {
    content: "●";
}
.news-detail .nr-list-01 li {
	font-weight:bold;
    margin-bottom: .5em;
    padding-left: 1em;
    text-indent: -1em;
    list-style-position: outside;
}
.news-detail .nr-section-table-01 table th {
    width: 8em;
    background: #DBE7ED;
    font-weight: normal;
}

h2 .nr-notetext-02 {
    font-size: 68.8% !important;
    font-weight: normal !important;
    vertical-align: super !important;
}

@media screen and (max-width: 750px) {
.is-pc{
        display: none;
    }
}