@charset "UTF-8";

/*---------------------------------------------------------
Reset
---------------------------------------------------------*/

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background-color: #F5F7FF;
    font-feature-settings: "palt";
}

html,
body,
div,
article,
section,
main,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
input,
textarea,
address,
nav,
table,
th,
td,
a,
p,
img,
figure,
span,
em,
small {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

small {
    font-size: 12px !important;
}

main {
    display: block;
}

ul,
li {
    list-style-type: none;
}

table {
    border-collapse: collapse;
}

img {
    border: none;
}

a {
    text-decoration: none;
}

a,
button {
    outline: none;
}

a:focus,
button:focus {
    outline: none;
}

.white {
    color: #fff !important;
}

.red {
    color: #A30009 !important;
}

.mt8 {
    margin-top: 8px;
}

.mt16 {
    margin-top: 16px !important;
}

.mt24 {
    margin-top: 24px;
}

.mt40 {
    margin-top: 40px;
}

.mt80 {
    margin-top: 80px;
}

.mb40 {
    margin-bottom: 40px;
}

.bold {
    font-weight: bold !important;
}

.res-pc {
    display: block !important;
}

.res-sp {
    display: none !important;
}

.bgwhite {
    background: #fff !important;
}

.bordernone {
    border: none !important;
}

.mtnon {
    margin-top: 0;
}

@media only screen and (max-width: 959px) {
    .res-pc {
        display: none !important;
    }

    .res-sp {
        display: block !important;
    }

    .mt80 {
        margin-top: 40px;
    }
}

.center {
    text-align: center !important;
}

.left {
    text-align: left !important;
}

.attention {
    width: 16px;
    vertical-align: middle;
    margin-right: 4px;
}

.blankicon {
    margin-left: 4px;
}

.blankicon img {
    width: 16px !important;
    padding-bottom: 3px;
}


/*---------------------------------------------------------
font
---------------------------------------------------------*/


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

html {
    font-size: 62.5%;
}

@media only screen and (min-width: 320px) and (max-width: 414px) {
    html {
        font-size: 2.41546vw;
    }
}

@media screen and (min-width: 768px) and (max-width: 1240px) {
    html {
        font-size: 0.80645vw;
    }
}

body {
    margin: inherit;
    font-size: 1.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    color: #000000;
    line-height: 2;
    letter-spacing: 0.04em;
    min-width: 320px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    word-break: break-word;
    font-weight: 500;
    position: relative;
}

@media only screen and (max-width: 959px) {
    body {
        margin: inherit;
        font-size: 1.2rem;
        font-family: 'Noto Sans JP', sans-serif;
        color: #000000;
        line-height: 1.8;
        letter-spacing: 0.04em;
    }
}

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

a {
    color: #0084a8;
    text-decoration: none;
    -webkit-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

a:hover {}

@media only screen and (max-width: 959px) {
    h2.title {
        font-size: 32px;
        line-height: 32px;
    }

    h2.title span {
        font-size: 20px;
        line-height: 32px;
    }

    h2.entitle {
        font-size: 40px;
        letter-spacing: 0.04em;
        line-height: 48px;
    }
}


/*---------------------------------------------------------
loading
---------------------------------------------------------*/


/*========= ローディング画面のためのCSS ===============*/

#splash {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #0C1D32;
    z-index: 9999999;
    text-align: center;
    color: #fff;
}

#splash-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Roboto;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 24px;
    text-align: center;
    color: #7E97B7;
}

#splash-logo img {
    width: 120px;
    margin-bottom: 24px;
}

.blinking {
    -webkit-animation: blink 1.4s ease-in-out infinite alternate;
    -moz-animation: blink 1.4s ease-in-out infinite alternate;
    animation: blink 1.4s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/*========= 画面遷移のためのCSS ===============*/


/*画面遷移アニメーション*/

.splashbg {
    display: none;
}


/*bodyにappearクラスがついたら出現*/

body.appear .splashbg {
    display: block;
    content: "";
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    transform: scaleX(0);
    background-color: #0C1D32;
    /*伸びる背景色の設定*/
    animation-name: PageAnime;
    animation-duration: 1.2s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    will-change: transform, animation;
}

@keyframes PageAnime {
    0% {
        transform-origin: left;
        transform: scaleX(0);
    }

    50% {
        transform-origin: left;
        transform: scaleX(1);
    }

    50.001% {
        transform-origin: right;
    }

    100% {
        transform-origin: right;
        transform: scaleX(0);
    }
}


/*画面遷移の後現れるコンテンツ設定*/

#container {
    opacity: 0;
    /*はじめは透過0に*/
}


/*bodyにappearクラスがついたら出現*/

body.appear #container {
    animation-name: PageAnimeAppear;
    animation-duration: 1s;
    animation-delay: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes PageAnimeAppear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/*---------------------------------------------------------
横からの動き
---------------------------------------------------------*/


/*========= レイアウトのためのCSS ===============*/

.bgextend {
    padding: 20px;
    margin: 0 20px 20px 0;
    box-sizing: border-box;
}


/*========= 背景色の動きのCSS ===============*/


/*背景色が伸びて出現 共通*/

.bgextend {
    animation-name: bgextendAnimeBase;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    position: relative;
    overflow: hidden;
    /*　はみ出た色要素を隠す　*/
    opacity: 0;
}

@keyframes bgextendAnimeBase {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/*中の要素*/

.bgappear {
    animation-name: bgextendAnimeSecond;
    animation-duration: 1s;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes bgextendAnimeSecond {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/*--------- 左から --------*/

.bgLRextend::before {
    animation-name: bgLRextendAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #666;
    /*伸びる背景色の設定*/
}

@keyframes bgLRextendAnime {
    0% {
        transform-origin: left;
        transform: scaleX(0);
    }

    50% {
        transform-origin: left;
        transform: scaleX(1);
    }

    50.001% {
        transform-origin: right;
    }

    100% {
        transform-origin: right;
        transform: scaleX(0);
    }
}


/*--------- 右から --------*/

.bgRLextend::before {
    animation-name: bgRLextendAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #666;
    /*伸びる背景色の設定*/
}

@keyframes bgRLextendAnime {
    0% {
        transform-origin: right;
        transform: scaleX(0);
    }

    50% {
        transform-origin: right;
        transform: scaleX(1);
    }

    50.001% {
        transform-origin: left;
    }

    100% {
        transform-origin: left;
        transform: scaleX(0);
    }
}


/*--------- 下から --------*/

.bgDUextend::before {
    animation-name: bgDUextendAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #666;
    /*伸びる背景色の設定*/
}

@keyframes bgDUextendAnime {
    0% {
        transform-origin: bottom;
        transform: scaleY(0);
    }

    50% {
        transform-origin: bottom;
        transform: scaleY(1);
    }

    50.001% {
        transform-origin: top;
    }

    100% {
        transform-origin: top;
        transform: scaleY(0);
    }
}


/*--------- 上から --------*/

.bgUDextend::before {
    animation-name: bgUDextendAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #666;
    /*伸びる背景色の設定*/
}

@keyframes bgUDextendAnime {
    0% {
        transform-origin: top;
        transform: scaleY(0);
    }

    50% {
        transform-origin: top;
        transform: scaleY(1);
    }

    50.001% {
        transform-origin: bottom;
    }

    100% {
        transform-origin: bottom;
        transform: scaleY(0);
    }
}


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

header {
    position: fixed;
    z-index: 2;
    width: 100%;
}

.nav {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.nav .navL img {
    margin-left: 40px;
    margin-top: 20px;
}

.nav .navL .cplogo img {
    width: 72px;
}

.nav .navL .bloglogo {
    display: none;
}

.nav .navL .bloglogo img {
    width: 144px;
}

.nav .navR {
    min-width: 520px;
    border-radius: 0px;
    background: #0c1d32;
    display: block;
}

.nav .navR a {
    margin-left: 32px;
    padding: 8px 0;
    color: #fff;
}

.nav .navR a:hover {
    color: #4ED0F2;
}

.nav .navR .navR_top {
    text-align: right;
    background: #1E2C4D;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 0;
}

.nav .navR .navR_top a {
    margin-left: 14px;
}

.nav .navR .navR_btm {
    padding: 0;
    padding-right: 32px;
}

.nav .navR .navR_top a.contact {
    background: #1E6CC3;
    width: 34%;
    padding: 8px 16px;
    margin-left: 0;
    text-align: center;
}

.nav .navR .navR_top a.contact_onliine {
    background: #0094BA;
}

.nav .navR .navR_top a.contact_madoguchi {
    background: #4BAFCE;
}

.contact_onliine a {
    background: #0094BA !important;
}

.nav .navR a.contact:hover {
    background: #0D3C71;
    color: #fff;
}

.navR_btm a {
    padding: 16px 0;
    display: inline-block;
}


/*---------------------------------------------------------
メガメニュー
---------------------------------------------------------*/

.megamenu {
    display: none;
    position: absolute;
    background: #0D0100;
    padding: 8px 32px;
    z-index: 3;
    min-width: 100%;
    top: 100%;
    /* 基準要素の下ぴったりに表示 */
}

.megamenu ul {
    display: flex;
}


.megamenu ul li a {
    color: #fff;
    text-decoration: none;
}

.navR_btm {
    position: relative;
}

.has-megamenu {
    cursor: default;
}

.navR_btm a.has-megamenu:hover+.megamenu,
.megamenu:hover {
    display: block;
}

.menu-arrow::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #ddd;
    border-right: 2px solid #ddd;
    transform: rotate(45deg);
    margin-left: 8px;
    position: relative;
    left: -4px;
}

.menu-arrow:hover::after {
    border-color: #4ED0F2;
}

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

.flextwo {
    flex-wrap: wrap;
}

.flextwo li {
    width: 48%;
}

.flextwo li a {
    padding-bottom: 2px !important;
}

.imgboxmg a {
    margin-left: 0 !important;
}

.mlsm {
    margin-left: 0 !important;
}

.mlnon {
    margin-left: 0 !important;
}

.megamenu-image-item {
    position: relative;
    width: 49%;
    /* 必要に応じてサイズ指定 */
    overflow: hidden;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    /* はみ出す部分をカットする */
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

/* ズームしても外にはみ出さない */
.image-wrapper:hover img {
    transform: scale(1.08);
    /* 拡大しても枠の中で収まる */
}

/* テキスト＋矢印を中央に */
.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 16px;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 52%;
}

/* CSS矢印（＞） */
.overlay-text::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin-top: 2px;
}


/*---------------------------------------------------------
headerSP
---------------------------------------------------------*/


/* Navbar & Navmenu color */

:root {
    --background-navbar: rgba(12, 29, 50, 1);
}

.headersp {
    position: fixed;
    width: 100%;
    height: 64px;
    z-index: 8;
}


/* Nav items */

.menu {
    list-style: none;
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    margin-top: 0;
    padding: 64px 0 240px 0;
    clear: both;
    background: var(--background-navbar);
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transform: scale(1, 0);
    transform-origin: top;
    z-index: 9;
    display: flex;
    text-align: center;
    flex-wrap: wrap;
    justify-content: space-around;
}


/* Hamburger menu button */

.menu-btn:checked~.menu {
    transform: scale(1, 1);
    transform-origin: top;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}


/* Hamburger menbu text */

.menu a {
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 16px;
    text-transform: capitalize;
    color: #ddd;
    opacity: 0;
    transition: 0.5s;
}

.menu li {
    padding: 16px;
    opacity: 0;
    transition: 0.5s;
    border-bottom: 1px solid #283F5C;
    width: 100%;
}

.menu li.bordernon {
    border: none;
}

.menu-btn:checked~.menu a,
.menu-btn:checked~.menu li {
    opacity: 1;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
    text-align: left;
}

.menu .button_solid019 a {
    max-width: 100%;
    font-size: 13px;
    padding: 10px 0;
}

.menu .button_solid019 a:after {
    right: 10px;
}

.menu-btn {
    display: none;
}

.menu-icon {
    display: inline-block;
    position: absolute;
    cursor: pointer;
    padding: 28px 20px;
    background-color: #0C1D32;
    right: 0;
    top: 0;
    z-index: 10;
    border-radius: 0 0 0 8px;
}

.navicon {
    background: #ddd;
    display: block;
    height: 2px;
    width: 24px;
    position: relative;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: #ddd;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
    top: 9px;
}

.navicon:after {
    bottom: 9px;
}


/* Hamburger Menu Animation Start */

.menu-btn:checked~.menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.menu-btn:checked~.menu-icon .navicon:after {
    transform: rotate(45deg);
}

.menu-btn:checked~.menu-icon:not(.steps) .navicon:before {
    top: 0;
}

.menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
    bottom: 0;
}

.menu-btn:checked~.menu-icon .navicon {
    background: rgba(0, 0, 0, 0);
    transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}


/* Hamburger Menu Animation End */


/* Navbar Container */

.navtext-container {
    width: 100%;
    height: 52px;
    position: absolute;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Navbar Text */

.navtext {
    position: absolute;
    left: 24px;
    top: 14px;
}

.navtext img {
    width: 40px;
}

.bnone {
    border: none !important;
}


.accordionspmenu .accordionspmenu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordionspmenu .accordionspmenu-icon {
    font-size: 20px;
    color: #ddd;
    padding-right: 8px;
    user-select: none;
}

.accordionspmenu .accordionspmenu-content {
    display: none;
    flex-direction: column;
    padding-left: 16px;
}

.accordionspmenu .accordionspmenu-content li {
    border: none;
    text-align: left;
    padding: 0;
}

.accordionspmenu-content a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ddd;
    padding: 12px 0 8px;
    text-decoration: none;
    font-size: 14px;
    position: relative;
}

/* CSS製の矢印 */
.accordionspmenu-content a::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #ddd;
    border-right: 2px solid #ddd;
    transform: rotate(45deg);
    /* 右向き */
    margin-left: 8px;
    position: relative;
    left: -16px;
}

/* CSS製の矢印（右向き） */
.menu>li>a::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #ddd;
    border-right: 2px solid #ddd;
    transform: rotate(45deg);
    margin-left: 8px;
    position: relative;
    left: -16px;
    /* ← 矢印を少し左に寄せる */
}

.menu>li>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #ddd;
    font-size: 16px;
    position: relative;
}



/*---------------------------------------------------------
Top下部固定バナー
---------------------------------------------------------*/

.banners-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1;
}

.topbtmbanner {
    position: relative;
    width: 250px;
    height: 207px;
    overflow: hidden;
}

.topbtmbanner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease-in-out;
}

.close-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(12, 29, 50, 0.8);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 18px;
    cursor: pointer;
    font-size: 26px;
    z-index: 1;
}

/* ホバー時に画像だけ透過 */
.topbtmbanner img:hover {
    opacity: 0.8;
}

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

    .banners-container {
        position: fixed;
        bottom: 48px;
        right: 8px;
        display: flex;
        gap: 10px;
        z-index: 1;
    }

    .topbtmbanner {
        width: 156px;
        height: 140px;
    }

    .topbtmbanner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .close-btn {
        width: 32px;
        height: 32px;
        font-size: 24px;
    }
}


/*---------------------------------------------------------
Slider
---------------------------------------------------------*/

.swiper--wrapper {
    /* wrapperのサイズを調整 */
    width: 100%;
    height: 300px;
}

.swiper-slide {
    /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
    color: #ffffff;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.swiper-slide01 {
    /*1、4、7、3n+1枚目の背景色 */
    background-image: url(../img/mv01@2x.jpg);
}

.swiper-slide02 {
    background-image: url(../img/mv02@2x.jpg);
}

.swiper-slide03 {
    background-image: url(../img/mv03@2x.jpg);
}

.swiper-slide {
    height: 100vh !important;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    color: #fff !important;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    color: #fff !important;
}

.mv-textarea {
    position: absolute;
    left: 10%;
    top: 32%;
}

.mv-textarea p.maintitlejp {
    font-weight: bold;
    font-size: 32px;
    letter-spacing: 0.04em;
    line-height: 56px;
    text-align: left;
    color: #fff;
}

.mv-textarea p.maintitleen {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 24px;
    text-align: left;
    color: #fff;
    margin-top: 24px;
}

.scrolldown1 {
    /*描画位置※位置は適宜調整してください*/
    position: absolute;
    left: 50%;
    bottom: 10px;
    /*全体の高さ*/
    height: 50px;
    z-index: 5;
    width: 100%;
}


/*Scrollテキストの描写*/

.scrolldown1 span {
    /*描画位置*/
    position: absolute;
    left: -15px;
    top: -15px;
    /*テキストの形状*/
    color: #eee;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}


/* 線の描写 */

.scrolldown1::after {
    content: "";
    /*描画位置*/
    position: absolute;
    top: 0;
    /*線の形状*/
    width: 1px;
    height: 30px;
    background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
    animation: pathmove 1.4s ease-in-out infinite;
    opacity: 0;
}


/*高さ・位置・透過が変化して線が上から下に動く*/

@keyframes pathmove {
    0% {
        height: 0;
        top: 0;
        opacity: 0;
    }

    30% {
        height: 30px;
        opacity: 1;
    }

    100% {
        height: 0;
        top: 50px;
        opacity: 0;
    }
}

@media only screen and (max-width: 959px) {
    .swiper-slide {
        height: 80vh !important;
    }

    .mv-textarea {
        left: 4%;
        top: 44%;
    }

    .mv-textarea p.maintitlejp {
        font-size: 19px;
        line-height: 32px;
    }

    .mv-textarea p.maintitleen {
        font-size: 12px;
        line-height: 16px;
        margin-top: 8px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px !important;
    }

    .swiper-button-next,
    .swiper-button-prev {
        top: 96% !important;
    }
}


/*---------------------------------------------------------
service
---------------------------------------------------------*/

.service {
    width: 100%;
    padding: 120px 0 0;
    background-image: url(../img/serviceb);
    background-size: 990px;
    background-repeat: no-repeat;
    background-position: center right;
}

.service .inner1360 {
    display: flex;
    align-items: center;
}

.service .serviceL {
    width: 50%;
}

.service .serviceL .service_01 {
    width: 80%;
    display: inline-block;
}

.service .serviceL .service_02 {
    width: 64%;
    display: inline-block;
    margin-top: -160px;
    margin-left: 36%;
}

.service .serviceR {
    width: 50%;
    padding: 0 12% 0 4%;
}

.service .serviceR p.tx {
    margin-top: 40px;
}

.service .serviceR p.img {
    margin-top: 40px;
}

.service .serviceR .button_solid019 {
    margin-top: 40px;
}

@media only screen and (max-width: 959px) {
    .service {
        width: 100%;
        padding: 80px 0 0;
        background-size: 640px;
        background-repeat: no-repeat;
        background-position: center right;
    }

    .service .inner1360 {
        display: block;
    }

    .service .serviceL {
        width: 100%;
    }

    .service .serviceL .service_01 {
        width: 80%;
        display: inline-block;
    }

    .service .serviceL .service_02 {
        width: 64%;
        display: inline-block;
        margin-top: -160px;
        margin-left: 36%;
    }

    .service .serviceR {
        width: 100%;
        padding: 40px 24px 0;
    }

    .service .serviceR p.tx {
        margin-top: 24px;
    }

    .service .serviceR p.img {
        margin-top: 24px;
    }

    .service .serviceR .button_solid019 {
        margin-top: 24px;
    }
}


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

.solution .inner1120 {
    display: flex;
    align-items: flex-end;
    padding: 0 0 40px 0;
}

.solution .inner1120 h2.title {
    padding-right: 80px;
}

.solution .inner1360 {
    display: flex;
    justify-content: space-between;
}

.solutionbox {
    width: 49.9%;
    align-self: stretch;
}

.solutionbox .solutionbg {
    background-color: #0A3464;
    padding: 40px 80px 0 80px;
    min-height: 380px;
}

.solutionbox .solutionbg h3.title {
    text-align: center;
}

.solutionbox .solutionbg p.tx {
    margin-top: 24px;
    color: #fff;
}

@media only screen and (max-width: 959px) {
    .solution .inner1120 {
        display: block;
        padding: 0;
    }

    .solution .inner1120 h2.title {
        padding-right: 0;
    }

    .solution .inner1360 {
        display: block;
        margin-top: 24px;
    }

    .solutionbox {
        width: 100%;
        margin-top: 4px;
    }

    .solutionbox .solutionbg {
        padding: 24px 40px;
        min-height: inherit;
    }

    .solutionbox .solutionbg p.tx {
        margin-top: 8px;
    }
}


/*---------------------------------------------------------
company
---------------------------------------------------------*/

.company {
    margin-top: 160px;
}

.companybg {
    background-image: url(../img/companybg@2x.jpg);
    padding-top: 45%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.companybox {
    background-color: #0A3464;
    padding: 80px;
    max-width: 640px;
    margin-left: 8%;
    margin-top: -200px;
}

.companybox h2.title {
    color: #fff;
}

.companybox h2.title span {
    color: #fff;
}

.companybox p.tx {
    color: #fff;
    margin: 24px 0;
}

@media only screen and (max-width: 959px) {
    .company {
        margin-top: 80px;
    }

    .companybg {
        padding-top: 80%;
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
    }

    .companybox {
        padding: 24px;
        max-width: inherit;
        margin-left: 0;
        margin-top: -80px;
        width: 92%;
    }

    .companybox p.tx {
        color: #fff;
        margin: 16px 0;
    }
}


/*---------------------------------------------------------
access
---------------------------------------------------------*/

.topaccess {
    padding: 0 0 120px;
}

.topaccess .inner1120 {
    display: flex;
}

.accessinfo {
    padding-right: 40px;
}

.accessinfo h3.title {
    color: #0d0100;
    margin: 24px 0;
}

.accessinfo .map {
    margin-top: 24px;
    text-align: right;
}

.accessinfo .textlink {
    margin-top: 8px;
    font-family: "Noto Sans JP";
    font-weight: 500;
    text-decoration: underline;
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 28px;
    text-align: right;
}

.textlink a {
    text-decoration: underline;
    color: #0d0100;
}

.slider-thumbnail .swiper-slide {
    opacity: .5;
    transition: opacity .5s;
    width: calc(100% / 6);
}

.slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
}


/* レイアウトのためのスタイル */

.swiperaccess {
    max-width: 640px;
    width: 100%;
    height: 560px;
}

.swiperaccessthumbnail {
    width: 100%;
    /*height: 134px;*/
    margin-top: 8px;
}


/*
.swiperaccessthumbnail .swiper-slide {
    width: 200px;
}
*/

.swiper-slide img {
    height: auto;
    width: 100%;
}

.swiperaccess .swiper-slide {
    height: 560px !important;
}

.slider-thumbnail .swiper-slide {
    height: 100px !important;
}

.slider-thumbnail .swiper-slide img {
    height: 100px !important;
}

.swiper-slide-thumbnail {
    padding-right: 1px;
}

.topaccess .center {
    text-align: center;
    margin-top: 80px;
}

.topaccess .center a {
    margin: 0 auto;
}

@media only screen and (max-width: 959px) {
    .topaccess {
        padding: 0 0 80px;
    }

    .topaccess .inner1120 {
        display: block;
    }

    .accessinfo {
        padding-right: 0;
    }

    .accessinfo h3.title {
        margin: 16px 0;
    }

    .accessimg {
        margin-top: 24px;
    }

    .swiperaccess {
        max-width: inherit;
        width: 100%;
        height: inherit;
    }

    .swiperaccess .swiper-slide {
        height: auto !important;
    }

    .swiperaccessthumbnail {
        width: 100%;
        margin-top: 4px;
    }

    .slider-thumbnail .swiper-slide {
        height: 48px !important;
    }

    .slider-thumbnail .swiper-slide img {
        height: 48px !important;
    }

    .topaccess .center {
        text-align: center;
        margin-top: 64px;
    }
}


/*---------------------------------------------------------
onlinesodan
---------------------------------------------------------*/

.onlinesodan {
    background-image: url(../img/onlinebg@2x.jpg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 80px 80px;
    display: flex;
    width: 92%;
    margin: 0 auto 80px;
    color: #fff;
}

.onlinesodan .leftbox {
    width: 60%;
}

.onlinesodan .leftbox h2 {
    color: #fff;
}

.onlinesodan .leftbox .button_solid019 {
    margin-top: 16px;
}

.onlinesodan .rightbox {
    background-image: url(../img/onlinebg_kobetsu@2x.jpg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    width: 38%;
    border-radius: 16px;
    padding: 0 40px;
    position: relative;
}

.onlinesodan .rightbox .free_icon {
    position: absolute;
    left: 28px;
    top: 40px;
    width: 64px;
}

.onlinesodan .rightbox h3 {
    text-align: center;
    padding-top: 64px;
    line-height: 1.2;
}

.onlinesodan .rightbox h3 span {
    font-size: 38px;
}

.onlinesodan .rightbox p {
    margin-top: 16px;
}

.onlinesodan .rightbox .button_solid019 {
    margin-top: 16px;
}

.onlinesodan .rightbox .button_solid019 a {
    margin: 0 auto;
    background: transparent;
    border: 1px solid #fff;
}

.onlinesodan .rightbox .button_solid019 a:hover {
    background: #0D3C71;
    border: none;
}

@media only screen and (max-width: 959px) {
    .onlinesodan {
        background-image: url(../img/onlinebg_sp@2x.jpg);
        padding: 64px 24px;
        display: block;
        width: 100%;
        margin: 0 auto;
    }

    .onlinesodan .leftbox {
        width: 100%;
    }

    .onlinesodan .leftbox .button_solid019 {
        margin-top: 16px;
    }

    .onlinesodan .leftbox .button_solid019 a {
        margin: 0 auto;
    }

    .onlinesodan .rightbox {
        width: 100%;
        padding: 0 40px;
        margin-top: 40px;
        padding-bottom: 40px;
    }

    .onlinesodan .rightbox .free_icon {
        left: 20px;
        top: 32px;
        width: 56px;
    }

    .onlinesodan .rightbox h3 {
        text-align: center;
        padding-top: 40px;
        line-height: 1.2;
    }

    .onlinesodan .rightbox h3 span {
        font-size: 28px;
    }

    .onlinesodan .rightbox p {
        margin-top: 12px;
    }

    .onlinesodan .rightbox .button_solid019 {
        margin-top: 12px;
    }
}


/*---------------------------------------------------------
cta
---------------------------------------------------------*/

.cta {
    background-image: url(../img/contactbg@2x.jpg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 120px 0;
    text-align: center;
}

.cta h2.title {
    color: #fff;
    text-align: center;
}

.cta h2.title span {
    color: #fff;
}

.cta p.tx {
    color: #fff;
    margin: 24px 0;
    text-align: center;
}

.cta .button_solid019 a {
    text-align: center;
    margin: 0 auto;
}

@media only screen and (max-width: 959px) {
    .cta {
        padding: 80px 0;
    }
}


/*---------------------------------------------------------
blog
---------------------------------------------------------*/

.sliderArea {
    max-width: 100%;
    margin: -400px auto 0;
    padding: 0 25px;
}

.sliderArea {
    min-width: 720px;
}

.slick-slide {
    margin: 0 40px;
}

.slick-slide img {
    width: 100%;
    height: auto;
}

.slick-prev,
.slick-next {
    z-index: 1;
}

.slick-prev:before,
.slick-next:before {
    color: #000;
}

.slick-slide {
    transition: all ease-in-out .3s;
}

.slick-active {
    opacity: 1;
}

.slick-current {
    opacity: 1;
}

.thumb {
    margin: 20px 0 0;
}

.thumb .slick-slide {
    cursor: pointer;
}

.thumb .slick-slide:hover {
    opacity: .7;
}


/*====================================================================
.full-screen
====================================================================*/

.full-screen .slick-list {
    overflow: visible;
}

.full-screen.slider {
    min-width: 720px;
    max-width: 720px;
    margin: 0 auto;
}

.full-screen .blogimg {
    width: 100%;
    height: 305px;
}

.full-screen .blogarticle .textarea {
    margin-top: 305px;
}

.full-screen .blogarticle {
    position: relative;
    margin-bottom: 0;
    background: #fff;
    max-height: 500px !important;
}

.full-screen .blogarticle .textarea .blogtitle {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.slick-prev {
    left: 10px !important;
}

.slick-next {
    right: 25px !important;
}

.slick-prev:before {
    content: url(../img/img_arrow_L.svg) !important;
    width: 32px;
}

.slick-next:before {
    content: url(../img/img_arrow_R.svg) !important;
    width: 32px;
}

.blogmv {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background-image: url(../img/blog_bg@2x.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 580px;
}

.blogmv p._a {
    font-size: 12px;
    font-weight: bold;
    margin: 30px 0 0;
}

.blogmv p._a .link {
    display: inline-block;
    color: #607D8B;
    padding-left: 1.3em;
    text-indent: -1.3em;
}

.blogmv p._a .link:before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-top: 2px solid #607D8B;
    border-right: 2px solid #607D8B;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-right: 10px;
}

.h2area {
    width: 1120px;
    margin: 0 auto;
    padding: 160px 0 40px;
}

.blogarea {
    display: flex;
    width: 1120px;
    margin: 0 auto;
    padding: 80px 0 120px;
    justify-content: space-between;
}

.articlearea {
    /*
	display: flex;
	width: 840px;
	justify-content: space-between;
	flex-wrap: wrap;
	*/
}

.blogarticle {
    width: 400px;
    position: relative;
    margin-bottom: 40px;
    background: #fff;
    border-radius: 16px;
}

.blogarticle a.all {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.blogarticle a:hover {
    opacity: 0.6;
}

.blogimg {
    width: 100%;
    height: 200px;
}

.blogimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.blogarticle .textarea {
    padding: 20px;
    border-radius: 0 0 16px 16px;
    position: relative;
    margin-top: 200px;
    min-height: 200px;
    position: relative;
    z-index: 1;
}

.toptext {
    display: inline;
}

.day {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 28px;
    text-align: left;
    color: #5d5d5d;
    margin-right: 8px;
    position: relative;
    z-index: 1;
}

a.day:hober {
    opacity: 1;
}

.tag {
    display: inline-block;
    background: #F0F0F0;
    padding: 4px 12px;
    border-radius: 40px;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 12px;
    text-align: center;
    color: #0d0100;
    margin-right: 8px;
    position: relative;
    z-index: 1;
}

.blogtitle {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.04em;
    line-height: 32px;
    text-align: left;
    color: #0d0100;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin: 12px 0;
}

.blogkeywords span {
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 20px;
    text-align: left;
    color: #5d5d5d;
    margin-right: 16px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.blogsidenav {
    width: 240px;
}

.blogsidenav p.sidenavtitle {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 32px;
    text-align: left;
    color: #fff;
    background: #0A3464;
    padding: 16px 0 16px 12px;
}

.blogsidenav p.sidenavtitle2 {
    margin-top: 40px;
}

.blogsidenav #menu01 {
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

.blogsidenav #menu01 li {
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

.blogsidenav #menu01 li:last-child {
    border-bottom: 0px;
}

.blogsidenav #menu01 li a {
    position: relative;
    display: block;
    margin: 0;
    padding: 12px 0 12px 12px;
    color: #0D0100;
    text-decoration: none;
    border-bottom: 1px solid #E0DFDF;
    transition: all 0.5s 0s ease;
}

.blogsidenav #menu01 li a:before {
    display: block;
    content: "";
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 50%;
    right: 8px;
    width: 8px;
    height: 8px;
    margin-top: -5px;
    background: #0D0100;
}

.blogsidenav #menu01 li a:after {
    display: block;
    content: "";
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 50%;
    right: 11px;
    width: 8px;
    height: 8px;
    margin-top: -5px;
    background: #F5F7FF;
}

.blogsidenav #menu01 li a:hover {}

.blogsidenav #menu01 li a:hover::before {
    transition: all 0.2s 0s ease;
    right: 5px;
}

.blogsidenav #menu01 li a:hover::after {
    transition: all 0.2s 0s ease;
    right: 8px;
}

@media only screen and (max-width: 959px) {
    .sliderArea {
        max-width: 100%;
        margin: -320px auto 0;
        padding: 0 25px;
    }

    .sliderArea {
        min-width: 100%;
    }

    .slick-slide {
        margin: 0 8px;
    }

    .full-screen.slider {
        min-width: 100%;
        min-width: 100%;
        margin: 0 auto;
    }

    .full-screen .blogimg {
        width: 100%;
        height: 160px;
    }

    .full-screen .blogarticle .textarea {
        margin-top: 160px;
    }

    .full-screen .blogarticle {
        position: relative;
        margin-bottom: 0;
        background: #fff;
        max-height: 500px !important;
    }

    .full-screen .blogarticle .textarea .blogtitle {
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .slick-prev:before {
        display: none;
    }

    .slick-next:before {
        display: none;
    }

    .blogmv {
        min-height: 400px;
    }

    .blogarea {
        display: block;
        width: 88%;
        margin: 0 auto;
        padding: 40px 0 64px;
    }

    /*
	.articlearea {
		display: flex;
		width: 100%;
	}
	*/
    .blogarticle {
        width: 100%;
        position: relative;
        margin-bottom: 40px;
        background: #fff;
        border-radius: 16px;
    }

    .blogarticle a.all {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .blogarticle a:hover {
        opacity: 0.6;
    }

    .blogimg {
        width: 100%;
        height: 160px;
    }

    .blogimg img {
        width: 100%;
        height: 100%;
    }

    .blogarticle .textarea {
        padding: 20px;
        border-radius: 0 0 16px 16px;
        position: relative;
        margin-top: 160px;
        min-height: 200px;
        position: relative;
        z-index: 1;
    }

    .day {
        font-size: 12px;
        line-height: 20px;
        margin-right: 4px;
    }

    .tag {
        padding: 2px 8px;
        font-size: 11px;
        line-height: 11px;
        margin-right: 4px;
    }

    .blogtitle {
        font-size: 16px;
        line-height: 24px;
        -webkit-line-clamp: 2;
        margin: 8px 0;
    }

    .blogkeywords span {
        font-size: 10px;
        line-height: 10px;
        margin-right: 8px;
    }

    .blogsidenav {
        width: 100%;
    }

    .blogsidenav p.sidenavtitle {
        font-size: 14px;
        line-height: 24px;
        padding: 12px 0 12px 8px;
    }

    .blogsidenav p.sidenavtitle2 {
        margin-top: 32px;
    }

    .blogsidenav #menu01 li {
        list-style: none;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .blogsidenav #menu01 li:last-child {
        border-bottom: 0px;
    }

    .blogsidenav #menu01 li a {
        position: relative;
        display: block;
        margin: 0;
        padding: 12px 0 12px 12px;
        color: #0D0100;
        text-decoration: none;
        border-bottom: 1px solid #E0DFDF;
    }

    .blogsidenav #menu01 li a:before {
        display: block;
        content: "";
        position: absolute;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 50%;
        right: 8px;
        width: 8px;
        height: 8px;
        margin-top: -5px;
        background: #0D0100;
    }

    .blogsidenav #menu01 li a:after {
        display: block;
        content: "";
        position: absolute;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 50%;
        right: 11px;
        width: 8px;
        height: 8px;
        margin-top: -5px;
        background: #F5F7FF;
    }

    .blogsidenav {
        width: 100%;
    }

    .blogsidenav p.sidenavtitle {
        font-size: 14px;
        line-height: 24px;
        padding: 12px 0 12px 8px;
    }

    .blogsidenav p.sidenavtitle2 {
        margin-top: 32px;
    }

    .blogsidenav #menu01 li {
        list-style: none;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .blogsidenav #menu01 li:last-child {
        border-bottom: 0px;
    }

    .blogsidenav #menu01 li a {
        position: relative;
        display: block;
        margin: 0;
        padding: 12px 0 12px 12px;
        color: #0D0100;
        text-decoration: none;
        border-bottom: 1px solid #E0DFDF;
    }

    .blogsidenav #menu01 li a:before {
        display: block;
        content: "";
        position: absolute;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 50%;
        right: 8px;
        width: 8px;
        height: 8px;
        margin-top: -5px;
        background: #0D0100;
    }

    .blogsidenav #menu01 li a:after {
        display: block;
        content: "";
        position: absolute;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 50%;
        right: 11px;
        width: 8px;
        height: 8px;
        margin-top: -5px;
        background: #F5F7FF;
    }
}


/*---------------------------------------------------------
もっと観る
---------------------------------------------------------*/

.container {
    width: 100%;
    margin: 0 auto;
}

ul.list {
    display: flex;
    width: 840px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.list li {
    display: flex;
}

.list li.is-hidden {
    visibility: hidden;
    opacity: 0;
    height: 0;
    margin: 0;
    padding: 0;
}

.more {
    text-align: center;
    margin: 8px auto 80px;
}

.more button {
    background-color: #1E6CC3;
    border: none;
    cursor: pointer;
    outline: none;
    color: #fff;
    padding: 0;
    width: 240px;
    border-radius: 40px;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 32px;
    text-align: center;
    padding: 8px 0;
}

.more button:hover {
    background: #0D3C71;
    color: #fff;
    transition: 1s;
}

@media only screen and (max-width: 959px) {
    ul.list {
        display: block;
        width: 88%;
        margin: 0 auto;
    }

    .list li {
        display: flex;
    }

    .more {
        text-align: center;
        margin: 8px auto 64px;
    }

    .more button {
        background-color: #1E6CC3;
        border: none;
        cursor: pointer;
        outline: none;
        color: #fff;
        padding: 0;
        width: 240px;
        border-radius: 40px;
        font-weight: bold;
        font-size: 16px;
        letter-spacing: 0.04em;
        line-height: 32px;
        text-align: center;
        padding: 8px 0;
    }

    .more button:hover {
        background: #0D3C71;
        color: #fff;
        transition: 1s;
    }
}


/*---------------------------------------------------------
blog詳細
---------------------------------------------------------*/

.articlearea_detail {
    width: 845px;
}

.blogmv_detail {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background-image: url(../img/blog_bg@2x.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 160px 0 80px;
}

.blogmv_detail_in {
    width: 1100px;
    margin: 0 auto;
}

.blogmv_detail_in h1 {
    font-weight: bold;
    font-size: 40px;
    letter-spacing: 0.04em;
    line-height: 64px;
    text-align: left;
    color: #fff;
    -webkit-line-clamp: inherit;
}

.blogmv_detail_in a.day {
    color: #fff;
}

.blogmv_detail_in .blogkeywords span {
    color: #E0DFDF;
}

.blogarea h3,
h4 {
    margin-top: 40px;
}

.blogarea .blogmargin {
    margin-top: 40px;
}

.spritbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.spritbox .txbox {
    width: 48%;
}

.spritbox .imgbox {
    width: 48%;
}

.spritbox_three {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.spritbox_three .imgbox {
    width: 31%;
}

.video {
    width: 100%;
    position: relative;
    padding-top: 56.25%;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.writerbox {
    background: #FFFFFF;
    padding: 40px;
    border-top: 4px solid #0A3464;
    margin-top: 40px;
}

.writerbox_in {
    display: flex;
    align-items: center;
}

.writerbox_in .imgbox {
    width: 200px;
}

.writerbox_in .txbox {
    padding-left: 40px;
}

.writerbox_in .txbox span.writer {
    background-image: url(../img/writerbg.svg);
    background-repeat: no-repeat;
    padding: 12px 32px 12px 12px;
    background-size: cover;
    background-position: right;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 14px;
    text-align: center;
    color: #fff;
}

.writerbox_in .txbox p.name {
    font-weight: bold;
    font-size: 28px;
    letter-spacing: 0.04em;
    line-height: 32px;
    text-align: left;
    color: #0d0100;
    padding: 4px 0 8px;
}

.writerbox_in .txbox p.name small {
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
}

.writerbox_in .txbox p.katagaki {
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 20px;
    text-align: left;
    color: #0a3464;
}

p.setsumei {
    margin-top: 16px;
}

.newarticle {
    padding: 120px 0;
    background-color: #EDF0F8;
}

.newarticle .saishinkiji {
    font-weight: bold;
    font-size: 40px;
    letter-spacing: 0.04em;
    line-height: 64px;
    text-align: center;
    color: #0d0100;
}

.newarticle ul {
    display: flex;
    max-width: 1280px;
    width: 92%;
    margin: 40px auto 0;
    justify-content: space-between;
}

.newarticle ul li {
    display: flex;
    width: 31%;
}

@media only screen and (max-width: 959px) {
    .articlearea_detail {
        width: 100%;
    }

    .blogmv_detail {
        padding: 160px 0 80px;
    }

    .blogmv_detail_in {
        width: 92%;
        margin: 0 auto;
    }

    .blogmv_detail_in h1 {
        font-size: 24px;
        line-height: 32px;
    }

    .blogarea h3,
    h4 {
        margin-top: 24px;
    }

    .blogarea .blogmargin {
        margin-top: 24px;
    }

    .spritbox {
        display: block;
    }

    .spritbox .txbox {
        width: 100%;
        margin-top: 16px;
    }

    .spritbox .imgbox {
        width: 100%;
        margin-top: 16px;
    }

    .writerbox {
        padding: 24px;
        margin-top: 40px;
        margin-bottom: 80px;
    }

    .writerbox_in {
        display: block;
    }

    .writerbox_in .imgbox {
        width: 100%;
        margin: 0 auto;
    }

    .writerbox_in .txbox {
        padding-left: 0;
        margin-top: 16px;
    }

    .writerbox_in .txbox span.writer {
        background-repeat: no-repeat;
        padding: 4px 24px 4px 4px;
        font-size: 12px;
        line-height: 12px;
    }

    .writerbox_in .txbox p.name {
        font-size: 20px;
        line-height: 28px;
        padding: 2px 0 4px;
    }

    .writerbox_in .txbox p.name small {
        font-size: 12px;
        line-height: 12px;
    }

    .newarticle {
        padding: 80px 0;
    }

    .newarticle .saishinkiji {
        font-size: 24px;
        line-height: 40px;
    }

    .newarticle ul {
        display: block;
        max-width: inherit;
        width: 92%;
        margin: 40px auto 0;
        justify-content: space-between;
    }

    .newarticle ul li {
        display: flex;
        width: 100%;
    }

    .writerbox_in .txbox p.katagaki {
        font-size: 11px;
        line-height: 16px;
    }
}


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

footer {
    padding: 120px 4%;
    background-color: #0C1D32;
}

footer .navLft {
    display: flex;
}

footer .ftlogo {
    width: 72px;
}

footer .nav {
    display: flex;
    align-items: center;
}

footer .nav ul {
    display: flex;
    align-items: center;
    width: 600px;
    flex-wrap: wrap;
    margin-left: 24px;
}

footer .nav ul li {
    margin-right: 8px;
    font-size: 12px;
}

footer .nav ul li a {
    color: #fff;
    font-size: 14px;
}

footer .nav ul li a img {
    width: 56px;
}

footer .nav ul li a:hover {
    color: #4ED0F2;
}

footer .nav .button_solid019 {
    width: 240px;
    max-width: 240px;
}

footer .footercontactbtn {
    display: flex;
}

footer .footercontactbtn .button_solid019_online {
    margin-right: 8px;
}

footer .footercontactbtn .button_solid019_online a {
    background-color: #0094BA;
}

footer .sub {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

footer .sub ul {
    margin-top: 40px;
}

footer .sub ul li {
    color: #959090;
    font-size: 12px;
}

footer .sub .copyright {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 24px;
    text-align: left;
    color: #959090;
}

@media only screen and (max-width: 959px) {
    footer {
        padding: 80px 4%;
    }

    footer .navLft {
        display: block;
    }

    footer .nav {
        display: block;
    }

    footer .ftlogo {
        width: 72px;
        margin: 0 auto;
    }

    footer .nav ul {
        display: block;
        align-items: center;
        width: 100%;
        flex-wrap: wrap;
        margin-left: 0;
        margin-top: 24px;
        margin-bottom: 16px;
    }

    footer .nav ul li {
        margin-right: 0;
        margin-bottom: 16px;
        text-align: center;
    }

    footer .nav .button_solid019 {
        margin: 0 auto;
    }

    footer .sub {
        display: block;
    }

    footer .sub ul {
        margin-top: 24px;
        text-align: center;
    }

    footer .sub ul li {
        font-size: 10px;
    }

    footer .sub .copyright {
        font-size: 10px;
        text-align: center;
    }

    .footercta {
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 5;
    }

    .footercta ul {
        display: flex;
    }

    .footercta ul li {
        width: 50%;
    }

    footer .footercontactbtn {
        display: block;
        margin-top: 32px;
    }

    footer .footercontactbtn .button_solid019_online {
        margin: 0 auto;
    }

    footer .footercontactbtn .button_solid019_online a {
        background-color: #0094BA;
        margin-right: 0;
        margin-bottom: 16px;
    }
}


/*---------------------------------------------------------
inpage
---------------------------------------------------------*/

.inpage_titleh1 {
    padding: 160px 0;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.inpage_titleh1_voice {
    background-color: #0A3464;
    padding: 160px 0 80px;
}

.inpage_companybg {
    background-image: url(../img/inpage_companybg@2x.jpg);
}

.inpage_servicebg {
    background-image: url(../img/inpage_servicebg@2x.jpg);
}

.inpage_contactbg {
    background-image: url(../img/inpage_contactbg@2x.jpg);
}

.inpage_recruitmentbg {
    background-image: url(../img/inpage_recruitmentbg@2x.jpg);
}

.inpage_voicebg {
    background-image: url(../img/inpage_voicebg@2x.jpg);
}

.inpage_titleh1 h1.title {
    max-width: 1120px;
    margin: 0 auto;
}

@media only screen and (max-width: 959px) {
    .inpage_titleh1 {
        padding: 80px 0;
    }

    .inpage_titleh1_voice {
        background-color: #0A3464;
        padding: 80px 0 40px;
    }

    .inpage_titleh1 h1.title {
        max-width: inherit;
        width: calc(100% - 48px);
        margin: 0 auto;
    }
}


/*---------------------------------------------------------
message
---------------------------------------------------------*/

.message {
    padding-bottom: 120px;
}

.message ul {
    display: flex;
    margin-top: 120px;
    justify-content: space-between;
    align-items: center;
}

.message ul li {
    width: 50%;
}

.message ul li.boxright {
    width: 520px;
}

.message ul li.boxright p.tx {
    margin-bottom: 16px;
}

.message ul li.boxright p.img {
    text-align: right;
}

.message ul li.boxright p.img img {
    width: 320px;
    text-align: right;
}

@media only screen and (max-width: 959px) {
    .message ul {
        display: block;
        margin-top: 80px;
    }

    .message ul li {
        width: 100%;
    }

    .message ul li.boxright {
        width: 100%;
        margin: 16px 0;
    }

    .message ul li.boxright p.tx {
        margin-bottom: 8px;
    }

    .message ul li.boxright p.img {
        text-align: right;
    }

    .message ul li.boxright p.img img {
        width: 240px;
    }
}


/*---------------------------------------------------------
gaiyo
---------------------------------------------------------*/

.gaiyo {
    padding-bottom: 120px;
}

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

.Table {
    width: 100%;
    border-top: solid 1px #E0DFDF;
    border-bottom: solid 1px #E0DFDF;
    border-collapse: collapse;
    margin-top: 120px;
}

.Table_agent {
    margin-top: 40px;
}

.Table-Head-Row-Cell {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 0.5em;
    padding-right: 0.5em;
}

.Table-Body-Row {
    border-top: solid 1px #E0DFDF;
    border-bottom: solid 1px #E0DFDF;
}

.Table-Body .bgblue {
    background-color: #D9DEEA;
    color: #1E6CC3;
    font-weight: bold;
}

.Table-Body-Row-Cell {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 40px;
    padding-right: 40px;
    font-weight: normal;
}

@media screen and (max-width: 959px) {
    .Table {
        font-size: 12px;
        margin-top: 40px;
    }

    .Table-Body-Row-Cell {
        min-width: 80px;
        padding-left: 8px;
        padding-right: 8px;
    }
}


/*---------------------------------------------------------
jigyogaiyo
---------------------------------------------------------*/

h3.inpagetitle {
    margin-top: 64px;
}

.jigyogaiyo {
    margin-top: 40px;
}

.jigyogaiyo li {
    padding: 24px 0;
    border-bottom: 1px solid #E0DFDF;
}

.jigyogaiyo li span.circle {
    padding: 8px;
}

@media screen and (max-width: 959px) {
    .jigyogaiyo {
        margin-top: 16px;
    }
}


/*---------------------------------------------------------
access
---------------------------------------------------------*/

.access {
    padding-bottom: 120px;
}

.map {
    margin-top: 120px;
}

.access ul {
    display: flex;
    margin-top: 64px;
}

.access ul li.left {
    width: 48%;
}

.access ul li h4 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 0.04em;
    line-height: 40px;
    text-align: left;
    color: #0d0100;
}

.access ul li p.txline {
    border-bottom: 1px solid #E0DFDF;
    padding-bottom: 24px;
}

.addressbox {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
}

.addressbox p {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 20px;
    text-align: left;
    color: #0d0100;
}

.addressbox .txL {
    width: 58%;
    margin-bottom: 12px;
}

.access .button_solid019 a {
    margin: 24px 0 0 auto;
}

@media screen and (max-width: 959px) {
    .access {
        padding-bottom: 80px;
    }

    .map {
        margin-top: 80px;
    }

    .access ul {
        display: block;
        margin-top: 40px;
    }

    .access ul li.left {
        width: 100%;
    }

    .access ul li h4 {
        font-size: 20px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .access ul li p.txline {
        border-bottom: 1px solid #E0DFDF;
        padding-bottom: 24px;
    }

    .addressbox {
        display: block;
    }

    .access .button_solid019 a {
        margin: 24px auto 0;
    }
}


/*---------------------------------------------------------
 ourservice
---------------------------------------------------------*/

.ourservice {
    padding-bottom: 120px;
}

.ourservice ul {
    margin-top: 24px;
    font-size: 0;
    text-align: center;
}

.ourservice ul li {
    width: 347px;
    display: inline-block;
    vertical-align: top;
    margin-right: 25px;
    margin-top: 40px;
}

.ourservice ul li .button_solid019 a {
    margin: 16px auto 0;
}

.ourservice ul li :nth-child(3) {
    margin-right: 0;
}

.ourservice ul li :nth-child(5) {
    margin-right: 0;
}

.ourservice ul li h3 {
    margin: 12px 0;
}

.ourservice ul li p.tx {
    font-size: 1.4rem;
    text-align: left;
}

.ourservice .okigaru {
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 0.04em;
    line-height: 40px;
    text-align: center;
    color: #0a3464;
    margin-top: 64px;
}

.okigaruul {
    margin-top: 0 !important;
}

.textbox {
    background-color: #EDF0F8;
    padding: 64px 0;
    text-align: center;
    margin-top: 80px;
    border-top: 4px solid #0A3464;
}

.textbox .taioutx {
    margin: 24px auto 0;
    width: 560px;
}

.textbox img {
    width: 348px;
}

p.taiou {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 32px;
    letter-spacing: 0.04em;
    line-height: 56px;
    text-align: center;
    color: #0d0100;
    margin-top: 16px;
}

p.taiou span {
    color: #1E6CC3;
}

p.safe {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.04em;
    line-height: 32px;
    text-align: center;
    color: #0d0100;
    margin: 16px 0;
}

p.lang {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 32px;
    text-align: center;
    color: #959090;
    margin-top: 16px;
}

@media only screen and (max-width: 959px) {
    .ourservice {
        padding-bottom: 80px;
    }

    .ourservice ul li {
        width: 100%;
        display: block;
        margin-right: 0;
        margin-top: 24px;
    }

    .ourservice ul li h3 {
        margin: 8px 0;
    }

    .textbox {
        padding: 64px 16px;
        margin-top: 64px;
    }

    .textbox .taioutx {
        margin: 24px auto 0;
        width: 100%;
    }

    .textbox img {
        width: 240px;
    }

    .textbox p.taiou {
        font-family: "Noto Sans JP";
        font-weight: bold;
        font-size: 20px;
        line-height: 32px;
        margin: 16px 0;
    }

    .textbox p.safe {
        font-family: "Noto Sans JP";
        font-weight: bold;
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 16px;
    }

    .textbox p.lang {
        font-family: "Noto Sans JP";
        font-size: 12px;
        line-height: 20px;
        margin-top: 16px;
    }

    .ourservice ul li p.tx {
        font-size: 1.2rem;
        text-align: left;
    }

    .boxrecruitment p.taiou {
        font-size: 20px;
        line-height: 1.4;
    }
}

p.banner {
    margin-top: 64px;
}

p.banner img {
    width: 100%;
}

p.banner a:hover {
    opacity: 0.6;
}


/*---------------------------------------------------------
charm
---------------------------------------------------------*/

.charm {
    background-color: #EDF0F8;
    padding: 120px 0;
}

.charm .charmbox {
    margin-top: 64px;
}

.charm .charmbox .charmboxIn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto 64px;
}

.charm .charmbox .rowreverse {
    flex-direction: row-reverse;
}

.charm .charmbox .charmboxIn li {
    width: 50%;
    text-align: left;
    border: none;
}

.charm .charmbox .charmboxIn li.textbox {
    width: 50%;
}

.charm .charmbox .charmboxIn li.odd {
    padding: 0 40px 0 11%;
}

.charm .charmbox .charmboxIn li.even {
    padding: 0 11% 0 40px;
}

.charm .charmbox .charmboxIn li .numberbox {
    display: flex;
    align-items: center;
}

.charm .charmbox .charmboxIn li h3 {
    text-align: left;
}

.charm .charmbox .charmboxIn li p.tx {
    margin-top: 24px;
}

.charm .foreignbox {
    padding-bottom: 120px;
}

.charm .foreign {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 0.04em;
    line-height: 40px;
    text-align: center;
    color: #0a3464;
    margin-top: 40px;
    margin-bottom: 16px;
}

@media only screen and (max-width: 1439px) {
    .charm .charmbox .charmboxIn li.odd {
        padding: 0 40px 0 40px;
    }

    .charm .charmbox .charmboxIn li.even {
        padding: 0 40px 0 40px;
    }
}

@media only screen and (max-width: 959px) {
    .charm {
        padding: 80px 0;
    }

    .charm .charmbox {
        margin-top: 64px;
    }

    .charm .charmbox .charmboxIn {
        display: block;
        max-width: inherit;
        margin: 0 auto 64px;
    }

    .charm .charmbox .rowreverse {
        flex-direction: row-reverse;
    }

    .charm .charmbox .charmboxIn li {
        width: 100%;
    }

    .charm .charmbox .charmboxIn li.textbox {
        width: calc(100% - 48px);
        margin: 0 auto;
        margin-top: 24px;
    }

    .charm .charmbox .charmboxIn li.odd {
        padding: inherit;
    }

    .charm .charmbox .charmboxIn li.even {
        padding: inherit;
    }

    .charm .charmbox .charmboxIn li .numberbox {
        display: flex;
        align-items: center;
    }

    .charm .charmbox .charmboxIn li p.tx {
        margin-top: 16px;
    }

    .charm .foreignbox {
        padding-bottom: 120px;
    }

    .charm .foreign {
        font-family: "Noto Sans JP";
        font-weight: bold;
        font-size: 24px;
        letter-spacing: 0.04em;
        line-height: 40px;
        text-align: center;
        color: #0a3464;
        margin-top: 40px;
        margin-bottom: 16px;
    }

    .charm .charmbox .charmboxIn {
        display: block;
        max-width: inherit;
        margin: 0 auto 64px;
    }

    .charm .charmbox .charmboxIn li.textbox span.circle {
        padding: 3px 7px;
    }

    .spleft {
        text-align: left !important;
    }
}


/*---------------------------------------------------------
RECRUITMENT
---------------------------------------------------------*/

.recruitment {
    padding-top: 80px;
}

.recruitment ul {
    display: flex;
    margin-top: 120px;
    align-items: center;
}

.recruitment ul li.commission {
    width: 260px;
}

.recruitment ul li.boxright {
    padding-left: 80px;
}

.recommendbackgroundimg {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-image: url(../img/recommend_backimage@2x.jpg);
    padding: 80px 0;
    width: 100%;
    margin: 80px 0;
}

.recommendbackgroundimg p.taiou {
    text-align: center;
    color: #fff;
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 32px;
    letter-spacing: 0.04em;
    line-height: 56px;
    text-align: center;
}

.recommendlist {
    display: flex;
    flex-wrap: wrap;
    margin: 40px auto !important;
    justify-content: space-between;
}

.recommendlist li {
    width: 48% !important;
    border-bottom: 1px solid #68778B;
    text-align: left;
    margin-bottom: 24px;
    padding-bottom: 24px;
    font-weight: bold;
    color: #fff;
}

.recommendlist2 li {
    border-bottom: 1px solid #E0DFDF;
}

.recommendlist li p {
    color: #0D0100;
    margin-top: 16px;
}

.textbox_recruitment {
    background: #fff;
}

.textbox_recruitment .gokui {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.04em;
    line-height: 32px;
    text-align: center;
    color: #0d0100;
}

.textbox_recruitment .gokui span {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 32px;
    letter-spacing: 0.04em;
    line-height: 56px;
    text-align: center;
    color: #1e6cc3;
}

.textbox_recruitment .intro {
    display: flex;
    align-items: center;
    max-width: 960px;
    margin: 40px auto;
    border-top: 1px #E0DFDF solid;
    border-bottom: 1px #E0DFDF solid;
    padding: 40px 0;
}

.textbox_recruitment .intro .introL {
    width: 320px;
}

.textbox_recruitment .intro .introR {
    padding-left: 64px;
    text-align: left;
}

.textbox_recruitment .intro .introR .name {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 28px;
    letter-spacing: 0.04em;
    line-height: 40px;
    text-align: left;
    color: #0d0100;
}

.textbox_recruitment .intro .introR .name span {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 28px;
    text-align: left;
    color: #0d0100;
}

.textbox_recruitment .intro .introR .tx {
    color: #0A3464;
    font-size: 12px;
    margin-top: 8px;
}

.textbox_recruitment p.tx {
    text-align: left;
    max-width: 960px;
    margin: 0 auto;
}

.accordion-container {
    position: relative;
    width: 100%;
    border-top: none;
    outline: 0;
    cursor: pointer
}

.accordion-container .accordion-title {
    display: block;
    position: relative;
    margin: 0 0 2px 0;
    color: #fff;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    cursor: pointer;
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 32px;
    letter-spacing: 0.04em;
    line-height: 40px;
    text-align: center;
    color: #fff;
    padding: 120px 0;
    transition: all 0.2s ease-out;
}

.accordion-container .accordion-title:hover {
    opacity: 0.8;
    transition: all 0.2s ease-out;
}

.accordionEn {
    font-family: Roboto;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.04em;
    line-height: 32px;
    text-align: left;
    color: #fff;
    margin-bottom: 8px;
}

.titleimg01 {
    background-image: url(../img/point01@2x.jpg);
}

.titleimg02 {
    background-image: url(../img/point02@2x.jpg);
}

.titleimg03 {
    background-image: url(../img/point03@2x.jpg);
}

.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-container .content-entry.open .accordion-title {
    background-color: #00aaa7;
    color: white;
}

.accordion-container .accordion-title:hover i:before,
.accordion-container .accordion-title:hover i:active,
.accordion-container .content-entry.open i {
    color: white;
}

.accordion-title {
    position: relative;
}

.accordion-title:after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 24px;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.accordion-title.open:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.accordion-content {
    display: none;
    padding: 40px 0 80px;
}


/* CSS for CodePen */

.accordion-container {
    width: 100%;
    margin: 120px auto;
}

ul.taglist {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

ul.taglist li {
    padding: 8px 0;
    border-radius: 8px;
    background: #0A3464;
    color: #fff;
    min-width: 172px;
    text-align: center;
    margin: 8px;
}

.boxrecruitment span.small {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.04em;
    line-height: 32px;
    color: #0d0100 !important;
}

.boxrecruitment span.exsmall {
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 20px;
    color: #0d0100 !important;
}

.inpage_contactbg_rec {
    background-image: url(../img/inpage_contactbg@2x.jpg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 80px 0;
    display: block;
    font-size: 32px;
    text-align: center;
    color: #fff;
    line-height: 1.2;
    max-width: 1120px;
    margin: 80px auto 0;
}

.inpage_contactbg_rec:hover {
    opacity: 0.8;
    padding: 80px 0;
}

.inpage_contactbg_rec img {
    width: 28px !important;
    margin-top: 8px;
}

@media only screen and (max-width: 959px) {
    .recruitment ul {
        display: block;
        margin-top: 64px;
    }

    .recruitment ul li.commission {
        width: 160px;
        margin: 0 auto;
    }

    .recruitment ul li.boxright {
        padding-left: 0;
        margin-top: 16px;
    }

    .recommendbackgroundimg {
        padding: 64px 0;
        margin: 64px 0;
    }

    .recommendbackgroundimg p.taiou {
        font-size: 24px;
    }

    .recommendlist {
        display: block;
    }

    .recommendlist li {
        width: 100% !important;
        margin-bottom: 16px;
        padding-bottom: 16px;
        font-size: 14px;
    }

    .inpage_contactbg_rec {
        padding: 64px 0;
        display: block;
        font-size: 24px;
        max-width: inherit;
        width: 92%;
        margin: 64px auto 0;
    }

    .inpage_contactbg_rec2 {
        margin: 0 auto;
    }

    .accordion-container {
        margin: 80px auto;
    }

    .accordion-container .accordion-title {
        font-size: 18px;
        line-height: 1.4;
        padding: 80px 0;
    }

    ul.taglist {
        flex-wrap: wrap;
        margin-top: 40px;
    }

    ul.taglist li {
        min-width: 147px;
    }

    .recommendlist li p {
        margin-top: 8px;
    }

    .textbox_recruitment .gokui {
        font-size: 14px;
        line-height: 24px;
    }

    .textbox_recruitment .gokui span {
        font-family: "Noto Sans JP";
        font-weight: bold;
        font-size: 24px;
        line-height: 32px;
    }

    .textbox_recruitment .intro {
        display: block;
    }

    .textbox_recruitment .intro .introL {
        width: 100%;
    }

    .textbox_recruitment .intro .introR {
        padding-left: 0;
        text-align: left;
    }

    .textbox_recruitment .intro .introR .name {
        font-size: 20px;
        letter-spacing: 0.04em;
        line-height: 24px;
        margin-top: 16px;
    }
}


/*---------------------------------------------------------
bosyuyoko
---------------------------------------------------------*/

.bosyuyoko {
    padding: 120px 0;
}

.bosyuyoko p.tx {
    margin-top: 80px;
}

.alphabetbox {
    padding: 40px;
    background: #EDF0F8;
    margin-top: 40px;
}

.alphabetbox ul li {
    border-bottom: 1px solid #E0DFDF;
    padding: 24px 0;
}

.alphabetbox ul li .numberbox {
    display: flex;
    align-items: center;
}

.alphabetbox ul li .numberbox p {
    font-weight: bold;
    font-size: 16px;
}

.recruitment_bosyu Table {
    margin-top: 40px;
}

.bigtext {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 28px;
    letter-spacing: 0.04em;
    line-height: 40px;
    text-align: center;
    color: #0d0100;
    margin-top: 80px;
}

@media only screen and (max-width: 959px) {
    .alphabetbox {
        padding: 24px;
    }

    .bigtext {
        font-size: 18px;
        line-height: 1.4;
        margin-top: 40px;
    }
}


/*---------------------------------------------------------
recruitment_flow
---------------------------------------------------------*/

.recruitment_flow ul {
    margin-top: 40px;
}

.recruitment_flow ul li {
    border-bottom: 1px solid #E0DFDF;
    padding: 24px 0;
}

.recruitment_flow ul li .numberbox {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 959px) {
    .bosyuyoko {
        padding: 64px 0;
    }

    .recruitment_flow ul {
        margin-top: 24px;
    }
}


/*---------------------------------------------------------
pointchose
---------------------------------------------------------*/

.pointchose {
    background-color: #EDF0F8;
    padding: 120px 0;
    margin-top: 120px;
}

@media only screen and (max-width: 959px) {
    .pointchose {
        background-color: #EDF0F8;
        padding: 64px 0;
        margin-top: 64px;
    }
}


/*---------------------------------------------------------
voice
---------------------------------------------------------*/

.voice {
    padding-top: 80px;
    padding-bottom: 80px;
}

.voice p.tx {
    margin-top: 80px;
}

.voicecard {
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    max-width: 1120px;
    margin: 40px auto 0;
}

.voicecard img {
    width: 360px;
}

.voicecard .voicetextbox {
    width: 640px;
}

.voicecard .voicetextbox .tag {
    background: #F0F0F0;
    border-radius: 4px;
    padding: 4px 12px;
    font-size: 12px;
    margin-right: 4px;
}

.voicecard .voicetextbox .title {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.04em;
    line-height: 32px;
    color: #0d0100;
    padding: 12px 0 16px;
}

.voicecard .voicetextbox table {
    margin-top: 0;
    border-top: none;
}

.voicecard .voicetextbox .Table-Body-Row-Cell {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 0;
    padding-right: 24px;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.2;
}

.Table-Body-Row-Cell-L {
    width: 30%;
}

.voicecard .voicetextbox .Table-Body-Row-none {
    border-top: none;
}

.voicecard .voicetextbox .voicebtn a {
    margin: 24px 0 0 auto;
}

.inpage_titleh1_voice h1.title {
    font-size: 32px;
    letter-spacing: 0.04em;
    line-height: 56px;
    text-align: left;
}

.profilebox {
    background: #EDF0F8;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profilebox .title h2 {
    font-size: 28px;
    line-height: 32px;
}

.profilebox .tablebox {
    width: 640px;
}

.profilebox .tablebox table {
    margin-top: 0;
    border-top: none;
}

.profilebox .tablebox .Table-Body-Row {
    border-top: solid 1px #E2E7F5;
    border-bottom: solid 1px #E2E7F5;
}

.profilebox .tablebox .Table-Body-Row-Cell {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 0;
    padding-right: 24px;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.2;
}

.profilebox .tablebox .Table-Body-Row-none {
    border-top: none;
}

.voice_detail_img {
    text-align: center;
}

.voice_detail_img img {
    width: 640px;
}

.voice_article {
    margin-top: 80px;
}

p.csan {
    text-align: left;
    color: #0D0100;
    position: relative;
    padding-left: 80px;
    margin-top: 40px;
}

p.csan:before {
    position: absolute;
    content: 'Cさん：';
    color: #7C7C7C;
}

p.csan:before {
    left: 0rem;
}

p.okusama {
    text-align: left;
    color: #0D0100;
    position: relative;
    padding-left: 80px;
    margin-top: 40px;
}

p.okusama:before {
    position: absolute;
    content: '奥様：';
    color: #7C7C7C;
}

p.okusama:before {
    left: 0rem;
}

p.asan {
    text-align: left;
    color: #0D0100;
    position: relative;
    padding-left: 80px;
    margin-top: 40px;
}

p.asan:before {
    position: absolute;
    content: 'Aさん：';
    color: #7C7C7C;
}

p.asan:before {
    left: 0rem;
}

p.asanmusume {
    text-align: left;
    color: #0D0100;
    position: relative;
    padding-left: 80px;
    margin-top: 40px;
}

p.asanmusume:before {
    position: absolute;
    content: 'Aさん娘：';
    color: #7C7C7C;
}

p.asanmusume:before {
    left: 0rem;
}

p.bsan {
    text-align: left;
    color: #0D0100;
    position: relative;
    padding-left: 80px;
    margin-top: 40px;
}

p.bsan:before {
    position: absolute;
    content: 'Bさん：';
    color: #7C7C7C;
}

p.bsan:before {
    left: 0rem;
}

.voice_article_img {
    margin-top: 40px;
    text-align: center;
}

.voice_article_img img {
    width: 640px;
}

.voice_btm {
    text-align: center;
    margin-top: 40px;
}

.voice_btm a {
    margin: 0 auto;
}

.voice_btm a::after {
    display: none;
}

@media only screen and (max-width: 959px) {
    .voice {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .voicecard {
        padding: 24px;
        display: block;
        max-width: 100%;
        margin: 24px auto 0;
    }

    .voice p.tx {
        margin-top: 64px;
    }

    .voicecard img {
        width: 100%;
    }

    .voicecard .voicetextbox {
        width: 100%;
        margin-top: 24px;
    }

    .voicecard .voicetextbox .tag {
        padding: 2px 8px;
        font-size: 10px;
    }

    .voicecard .voicetextbox .title {
        font-size: 16px;
        line-height: 24px;
        padding: 8px 0 12px;
        margin-top: 8px;
    }

    .voicecard .voicetextbox .Table-Body-Row-Cell {
        padding-top: 8px;
        padding-bottom: 8px;
        padding-right: 16px;
        font-size: 12px;
        line-height: 1.2;
    }

    .Table-Body-Row-Cell-L {
        width: 40%;
    }

    .voicecard .voicetextbox .voicebtn a {
        margin: 24px auto 0;
    }

    .inpage_titleh1_voice h1.title {
        font-size: 20px;
        line-height: 32px;
    }

    .profilebox {
        padding: 24px;
        display: block;
    }

    .profilebox .title h2 {
        font-size: 20px;
        line-height: 24px;
    }

    .profilebox .tablebox {
        width: 100%;
    }

    .profilebox .tablebox table {
        margin-top: 24px;
    }

    .profilebox .tablebox .Table-Body-Row-Cell {
        padding-top: 8px;
        padding-bottom: 8px;
        padding-right: 24px;
        font-weight: normal;
        font-size: 12px;
        line-height: 1.2;
    }

    .voice_detail_img img {
        width: 100%;
    }

    .voice_article {
        margin-top: 40px;
    }

    p.csan {
        padding-left: 48px;
        margin-top: 24px;
    }

    p.okusama {
        padding-left: 48px;
        margin-top: 24px;
    }

    .voice_article_img {
        margin-top: 24px;
    }

    .voice_article_img img {
        width: 100%;
    }

    .voice_btm {
        margin-top: 24px;
    }
}


/*---------------------------------------------------------
base
---------------------------------------------------------*/

p.mt {
    margin-top: 80px;
}

p.line {
    position: relative;
    padding: 1rem 2rem;
    border-bottom: 1px solid #E0DFDF;
    max-width: 1120px;
    margin: 120px auto;
    width: 100%;
}

p.line:before {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 16px;
    height: 1px;
    content: '';
    background: #10A5CC;
}

.inner1360 {
    max-width: 1360px;
    margin: 0 auto;
}

.inner1120 {
    max-width: 1120px;
    margin: 0 auto;
}

.inner960 {
    max-width: 960px;
    margin: 0 auto;
}

.inner560 {
    max-width: 560px;
    margin: 0 auto;
    text-align: left !important;
}

.pankuzu {
    padding: 16px 0;
    border-bottom: 1px solid #E0DFDF;
}

.pankuzu ul {
    /*
	display: flex;
	*/
}

.pankuzu ul li {
    margin-right: 8px;
    font-weight: normal;
    display: inline-block;
}

.pankuzu ul li a {
    color: #0D0100;
    font-weight: normal;
    text-decoration: underline;
}

.anc {
    width: 960px;
    margin: 80px auto;
}

.anc ul {
    display: flex;
    justify-content: center;
}

.anc ul li {
    width: 293px;
    padding: 2%;
}

.anc ul li a {
    width: 100%;
    max-width: 293px;
}

.anc ul li .button_solid019 a:after {
    display: none;
}

span.circle {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.04em;
    line-height: inherit;
    text-align: center;
    color: #fff;
    background-color: #0A3464;
    border-radius: 40px;
    padding-top: 3px;
    margin-right: 16px;
    min-width: 48px;
    min-height: 48px;
    display: inline-block;
}

.blue {
    color: #1E6CC3 !important;
}

.skyblue {
    color: #29D4F4 !important;
}

.mintgreen {
    color: #1F9BA5 !important;
}

.bgblue {
    background: #1E6CC3;
}

.bgmintgreen {
    background: #1F9BA5 !important;
}

@media only screen and (max-width: 959px) {
    p.mt {
        margin-top: 64px;
    }

    p.line {
        max-width: inherit;
        margin: 64px auto;
        width: calc(100% - 48px);
    }

    p.line2 {
        width: 100%;
    }

    .inner1360 {
        max-width: inherit;
        width: 100%;
        margin: 0 auto;
    }

    .inner1120 {
        max-width: inherit;
        width: calc(100% - 48px);
        margin: 0 auto;
    }

    .inner960 {
        max-width: inherit;
        width: calc(100% - 48px);
        margin: 0 auto;
    }

    .inner560 {
        max-width: inherit;
        width: 100%;
        margin: 0 auto;
    }

    .anc {
        width: calc(100% - 48px);
        margin: 40px auto;
    }

    .anc ul {
        display: flex;
    }

    .anc ul li {
        width: 161px;
    }

    .anc ul li a {
        max-width: inherit;
    }

    .anc ul li .button_solid019 a:after {
        display: none;
    }

    span.circle {
        font-size: 16px;
        margin-right: 8px;
        padding-top: 6px;
        min-width: 40px;
        min-height: 40px;
    }
}


/* solid019 */

.button_solid019 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 240px;
    padding: 16px 32px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: #1E6CC3;
    border-radius: 50px;
    font-size: 16px;
}

.button_solid019 a:after {
    content: url(../img/btn.svg);
    width: 16px;
    height: 16px;
    position: absolute;
    top: 28%;
    right: 16px;
    transition: 0.3s ease-in-out;
}

.button_solid019 a:hover {
    transform: translateY(-2px);
    background: #0D3C71;
}

@media only screen and (max-width: 959px) {
    .button_solid019 a {
        padding: 16px;
    }
}


/*---------------------------------------------------------
title
---------------------------------------------------------*/

h1.title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    font-size: 48px;
    letter-spacing: 0.04em;
    line-height: 72px;
    text-align: left;
    color: #fff;
}

h1.title span {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 28px;
    text-align: left;
    color: #fff;
}

h2.title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    font-size: 48px;
    letter-spacing: 0.04em;
    line-height: 72px;
    text-align: left;
    color: #0d0100;
}

h2.title span {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 28px;
    text-align: left;
    color: #959090;
}

h2.inpagetitle {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 40px;
    letter-spacing: 0.04em;
    line-height: 64px;
    text-align: left;
    color: #0d0100;
    position: relative;
    margin-bottom: 80px;
}

h2.inpagetitle span {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.04em;
    line-height: 32px;
    text-align: center;
    color: #0d0100;
}

h2.inpagetitle::after {
    content: '';
    width: 80px;
    height: 2px;
    display: inline-block;
    background-color: #0A3464;
    position: absolute;
    bottom: -40px;
    left: 0;
}

h3.title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 0.04em;
    line-height: 48px;
    text-align: left;
    color: #fff;
}

h3.inpagetitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    font-size: 32px;
    letter-spacing: 0.04em;
    line-height: 56px;
    text-align: left;
    color: #0d0100;
    padding-left: 24px;
    position: relative;
}

h3.inpagetitle::before {
    content: '';
    width: 12px;
    height: 12px;
    display: inline-block;
    background-color: #0A3464;
    position: absolute;
    top: 24px;
    left: 0;
}

h3.inpagetitle_b {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.04em;
    line-height: 28px;
    text-align: center;
    color: #0d0100;
}

h4.inpagetitle {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.04em;
    line-height: 34px;
    text-align: left;
    color: #0d0100;
    position: relative;
    padding-left: 16px;
}

h4.inpagetitle::before {
    content: '';
    width: 2px;
    height: 16px;
    display: inline-block;
    background-color: #0A3464;
    position: absolute;
    top: 10px;
    left: 0;
}

@media only screen and (max-width: 959px) {
    h1.title {
        font-size: 28px;
        letter-spacing: 0.04em;
        line-height: 48px;
    }

    h1.title span {
        font-size: 12px;
        letter-spacing: 0.04em;
        line-height: 24px;
    }

    h2.title {
        font-size: 28px;
        letter-spacing: 0.04em;
        line-height: 48px;
    }

    h2.title span {
        font-size: 12px;
        letter-spacing: 0.04em;
        line-height: 24px;
    }

    h2.inpagetitle {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 64px;
    }

    h2.inpagetitle::after {
        width: 48px;
        height: 2px;
        bottom: -32px;
        left: 0;
    }

    h2.inpagetitle span {
        font-size: 14px;
    }

    h3.title {
        font-size: 16px;
        line-height: 32px;
    }

    h3.inpagetitle {
        font-size: 24px;
        line-height: 40px;
        padding-left: 24px;
    }

    h3.inpagetitle::before {
        top: 16px;
    }

    h3.inpagetitle_b {
        font-size: 16px;
        letter-spacing: 0.04em;
        line-height: 24px;
        text-align: center;
        color: #0d0100;
    }

    h4.inpagetitle {
        font-size: 16px;
    }

    h4.inpagetitle::before {
        content: '';
        width: 2px;
        height: 16px;
        display: inline-block;
        background-color: #0A3464;
        position: absolute;
        top: 10px;
        left: 0;
    }
}


/*---------------------------------------------------------
fadein
---------------------------------------------------------*/


/* 画面外にいる状態 */

.fadein {
    opacity: 0.1;
    transform: translate(0, 24px);
    transition: all 500ms;
}


/* 画面内に入った状態 */

.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}

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


/*---------------------------------------------------------
Form
---------------------------------------------------------*/

.contactform {
    margin: 80px auto !important;
}

.Form {
    margin-top: 80px;
    margin-bottom: 80px;
    margin-left: auto;
    margin-right: auto;
}

.error {
    display: block;
    color: #A30009;
    font-size: 12px;
    font-weight: normal;
}

.Form-Item {
    padding-top: 24px;
    padding-bottom: 24px;
    width: 100%;
    display: flex;
    align-items: center;
}

.Form-Item:nth-child(5) {}

.Form-Item-Label {
    width: 100%;
    max-width: 240px;
    letter-spacing: 0.05em;
    font-weight: bold;
    font-size: 16px;
}

.Form-Item-Label.isMsg {
    margin-top: 8px;
    margin-bottom: auto;
}

.Form-Item-Label-Required {
    border-radius: 8px;
    width: 48px;
    display: inline-block;
    text-align: center;
    background: #A30009;
    color: #fff;
    font-size: 14px;
    display: block;
}

.inputbox {
    margin-left: 0;
    width: 100%;
}

.Form-Item-Input {
    border: 1px solid #767676;
    border-radius: 8px;
    padding-left: 1em;
    padding-right: 1em;
    height: 48px;
    flex: 1;
    width: 100%;
    background: #fff;
    font-size: 16px;
}

.errorForm {
    border: 1px solid #A30009;
}

.Form-Item-Textarea {
    border: 1px solid #767676;
    border-radius: 8px;
    padding: 1em;
    height: 216px;
    flex: 1;
    width: 100%;
    background: #fff;
    font-size: 16px;
}

.Form-Btn {
    border-radius: 48px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 280px;
    display: block;
    letter-spacing: 0.05em;
    background: #1E6CC3;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    border: none;
    cursor: pointer;
    cursor: hand;
}

.c-block-input__items {
    display: flex;
    align-items: center;
}

.c-block-input__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.c-block-input__radio input[type="radio"] {
    display: none;
}

.c-block-input__radio label {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 3px 0 3px 26px;
    position: relative;
    width: auto;
    padding-right: 24px;
    font-size: 16px;
}

.c-block-input__radio label::before {
    content: "";
    display: block;
    border: 1px solid #999;
    border-radius: 1000px;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -8px;
}

.c-block-input__radio label::after {
    content: "";
    display: block;
    background: #1E6CC3;
    border-radius: 1000px;
    width: 10px;
    height: 10px;
    opacity: 0;
    position: absolute;
    left: 4px;
    top: 50%;
    margin-top: -4px;
}

.c-block-input__radio input[type=radio]:checked+label::after {
    opacity: 1;
}

.Form-Item-Input-small {
    width: 120px;
}

.yoko {
    display: flex;
    align-items: center;
}

.year {
    padding-left: 8px;
}

.cp_ipselect {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.cp_ipselect select {
    width: 100%;
    padding-right: 1em;
    cursor: pointer;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}

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

.cp_ipselect.cp_sl01 {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 2px;
    background: #ffffff;
    border-radius: 4px;
    font-size: 14px !important;
}

.cp_ipselect.cp_sl01::before {
    position: absolute;
    top: 1.2em;
    right: 0.9em;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666666;
    pointer-events: none;
}

.cp_ipselect.cp_sl01 select {
    padding: 12px 38px 12px 16px;
    color: #0D0100;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 6px;
    width: 18px;
    height: 18px;
}

@media screen and (max-width: 959px) {
    .contactform {
        margin: 64px auto;
    }

    .Form {
        margin-top: 64px;
    }

    .Form-Item {
        padding-top: 16px;
        padding-bottom: 16px;
        flex-wrap: wrap;
    }

    .Form-Item-Label {
        max-width: inherit;
        display: flex;
        align-items: center;
        font-size: 15px;
    }

    .Form-Item-Label.isMsg {
        margin-top: 0;
    }

    .Form-Item-Label-Required {
        border-radius: 4px;
        padding-top: 4px;
        padding-bottom: 4px;
        width: 32px;
        font-size: 10px;
        margin-right: 8px;
    }

    .Form-Item-Input {
        margin-left: 0;
        margin-top: 18px;
        height: 40px;
        flex: inherit;
        font-size: 15px;
    }

    .Form-Item-Textarea {
        margin-top: 18px;
        margin-left: 0;
        height: 200px;
        flex: inherit;
        font-size: 15px;
    }

    .Form-Btn {
        margin-top: 24px;
        padding-top: 8px;
        padding-bottom: 8px;
        width: 160px;
        font-size: 16px;
    }

    .c-block-input__items {
        margin-top: 18px;
    }
}