@charset "UTF-8";

@media only screen and (min-width:462px) and (max-width:1023px) {
/* フラグ */
.flg-tablet {
    display: block;
}

.container {
    /* background: green; */
    /* border: 2px solid red; */
}

.container > * {
    position: relative;
}

.container > header {
    position: fixed;
    padding: 0 0 1rem;
    background: #ffffff;
    z-index: 1010;
}

/* 幅の設定 */
.logo-container,
.container h1 > span,
.container > main,
.footer-container {
    width: 100%;
    margin: auto;
    position: relative;
    /* padding: 0 2rem; */
}

/* ヘッダーの中身 */
.logo-container {
    /* border: 1px solid red; */
    height: 9rem;
    padding: 0 0 1rem;
}

/* タイトルロゴ */
.logo {
    padding: 1.75rem 3rem 0;
}

.logo span {
    font-size: 2.2rem;
    font-weight: bold;
    color: #333333;
    display: inline-block;
    margin-left: 3rem;
}

/* メインメニュー */
.main-menu {
    top: 0;
    /* right: 0; */
    right: -500px;
    position: fixed;
    /* width: 0; */
    width: 70%;
    height: 100%;
    visibility: hidden;
    background: #444444;
    z-index: 1080;
    box-shadow: -5px 0 15px #2a1b45 ;
}

@keyframes slideIn {
    from {
        visibility: hidden;
        /* width: 0; */
        right: -500px;
    }

    to {
        visibility: visible;
        /* width: 90%; */
        right: 0;
    }
}

@keyframes slideOut {
    from {
        visibility: visible;
        /* width: 90%; */
        right: 0;
    }
    to {
        visibility: hidden;
        /* width: 0; */
        right: -500px;
    }
}

/* メニュー内ロゴ */
.sub-logo {
    /* background: #ffffff; */
    display: inline-block;
    /* padding: 1.55rem 1rem; */
}

/** --------------------
 * ハンバーガーメニュー：label タグにデザインしている
 */
.hamburger-menu {
    position: fixed;
    top: 0;
    right: 5px;
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    z-index: 1090;
    /* background-color: #444; */
}

.hamburger-menu::after {
    content: "メニュー";
    color: #222;
    position: relative;
    top: 18px;
}

.hamburger-menu span,
.hamburger-menu span:before,
.hamburger-menu span:after {
    content: '';
    display: block;
    height: 3px;
    width: 30px;
    border-radius: 3px;
    background-color: #0044cc;
    position: absolute;
}

.hamburger-menu span:before {
    bottom: 8px;
}

.hamburger-menu span:after {
    top: 8px;
}

.menu-btn-check {
    display: none;
}

/** チェックボックスがチェックされている時の設定。
ハンバーガーメニューがタッチされている状態を表す */
.menu-btn-check:checked~.hamburger-menu span {
    background-color: rgba(255, 255, 255, 0);
    /*メニューオープン時は真ん中の線を透明にする*/
}

.menu-btn-check:checked~.hamburger-menu span::before {
    bottom: 0;
    transform: rotate(45deg);
    background: #ffffff;
}

.menu-btn-check:checked~.hamburger-menu span::after {
    top: 0;
    transform: rotate(-45deg);
    background: #ffffff;
}


/** ハンバーガー押下でメインメニューが展開 */
.menu-btn-check:checked~.main-menu {
    animation: slideIn 0.2s ease-in-out 0s forwards;
}

/** 閉じるボタン押下でメインメニューを閉じる */
/* .menu-btn-check:unchecked ~.main-menu {
    animation: slideOut 0.2s ease-in-out 0s forwards;
} */
/* .menu-btn-check ~.main-menu {
    animation: slideOut 0.2s ease-in-out 0s forwards;
} */
.menu-btn-check.closed ~.main-menu {
    animation: slideOut 0.2s ease-in-out 0s forwards;
}

.menu-btn-check:checked~.hamburger-menu::after {
    content: "閉じる";
    color: #ffffff;
}

/**
 * メインメニューのデザイン
 */
.main-menu > ul {
    /* max-width: 80%; */
    height: 100%;
    margin: 2rem 0 0;
}

.main-menu > ul > li {
    border-bottom: 2px dotted #000000;
    /* padding: 0 1rem 1rem 0; */
}

.main-menu a {
    /* 
        text-align: center;
        text-decoration: none; */
    display: block;
    color: #ffffff;
    font-size: 1.3rem;
    padding: 1rem;
    text-decoration: none;
    /* vertical-align: baseline; */
    /* transition: none; */
}

.main-menu > ul > li a {
    padding: 0.9rem 1rem 0.9rem 2.5rem;
}

/*  */
.main-menu .menu1 > a::before,
.main-menu .menu3 > a::before,
.main-menu .menu7 > a::before,
.main-menu .menu8 > a::before {
    /* content: url(../img/icn_arrow_forward.svg); */
    content: "r";
    font-family: 'アイコンフォント';
    font-size: 0.8em;
    /* display: inline-block; */
    /* zoom: 0.8; */
    margin-right: 0.5rem;
    vertical-align: 0.2rem;
}

.main-menu .menu7 > a::before {
    content: "w";
}

.main-menu .menu2 > a::before {
    /* content: url(../img/icn_pluse_w.svg); */
    /* display: inline-block; */
    /* zoom: 0.4; */
    content: "r";
    font-family: 'アイコンフォント';
    font-size: 0.5em;
    margin: 0 0.5rem 0 -0.3rem;
    vertical-align: middle;
}

.main-menu .menu2.closed > a::before {
    /* content: url(../img/icn_minace_w.svg);
    display: inline-block;
    zoom: 0.4; */
    content: "m";
    font-family: 'アイコンフォント';
    font-size: 0.5em;
    margin: 0 0.5rem 0 -0.3rem;
    vertical-align: middle;
}

.main-menu .menu4 > a::before,
.main-menu .menu5 > a::before,
.main-menu .menu6 > a::before {
    content: "・";
    /* display: inline-block; */
    margin-right: 0.5rem;
}

.menu1 > a, .menu2 > a, .menu3 > a, .menu4 > a,
.menu5 > a, .menu6 > a, .menu7 > a, .menu8 > a {
    font-weight: bold;
}

/* サブメニュー */
.submenu {
    background: #555555;
}

.submenu > li {
    border-bottom: 2px dashed #444444;
    padding: 0 0 0 2rem;
}

.submenu > li:last-child {
    border-bottom: none;
}

.submenu>li>a::before {
    /* content: url(../img/icn_arrow_forward.svg);
    display: inline-block;
    zoom: 0.8; */
    content: "r";
    font-family: 'アイコンフォント';
    font-size: 0.8em;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* サブメニュー：閉じる状態 */
.submenu.closed {
    display: block;
}

/* イベント情報・エントリーボタン */
.event-entry {
    /* background: #ffffff; */
    /* padding: 0.5rem 0; */
    margin: 2rem 0 0;
}

.event-btn, .entry-btn {
    flex-grow: 1;
    position: relative;
    /* border: 1px solid red; */
}

.event-btn::before,
.entry-btn::before {
    /* content: url(../img/icn_arrow_forward.svg); */
    content: "r";
    font-family: 'アイコンフォント';
    font-size: 1.3em;
    color: #ffffff;
    position: absolute;
    bottom: 1.5rem;
    left: 5px;
}

.entry-btn::before {
    /* content: url(../img/icn_arrow_forward_b.svg); */
    color: #0044cc;
}

.event-btn {
    background: #0037a6;
}

.entry-btn {
    background: #fad000;
}

.event-btn > a,
.entry-btn > a {
    font-size: 1.3rem;
    font-weight: bold;
    display: block;
    text-align: center;
    padding: 1.5rem 0;
    text-decoration: none;
}

.event-btn > a {
    color: #ffffff;
}

.entry-btn > a {
    color: #0037a6;
}


/* パンくずリスト */
.breadcrumb {
font-size: 1rem;
padding: 0 3rem 3.5rem;
}

.breadcrumb > a {
display: inline-block;
/* padding: 0 1rem; */
}

.breadcrumb > a:after {
content: "　>　";
display: inline-block;
}

/* アンカーリスト */
.anchor {font-size: 1.75rem;padding: 0 0 2rem;}
.anchor > a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    margin: 0 2rem 0;
    color: #333333;
    padding-left: 2rem;
}
.anchor.ex > a {
    margin: 0;
}
.anchor > a:hover {
color: #b40000; /* orange */
}
.anchor > a::before {
    /* content: "D"; */
    content: "\2794";
    font-family: 'アイコンフォント', sans-serif;
    position: absolute;
    left: 0;
    top: -0.1em;
    font-size: 1em;
    /* margin-right: 0.5rem; */
    color: #003bca;
    transform:rotate(90deg);
}

/* 本文 */
.container main {
padding: 0 0 1.5rem;
margin: 0 0 15rem;
position: relative;
z-index: 10;
}

.contents {
line-height: 1.8;
padding: 0 3rem;
}

/* 文字 */
.container h1 {
width: 100%;
font-size: 3rem;
font-weight: 600;
color: #ffffff;
height: 9rem;
padding: 0.2rem 0 0 2.5rem;
margin: 11rem 0 1.5rem;
background: linear-gradient(to bottom, #003fcb, #0054fc);
/* 以下、上下中心の設定 */
display: flex;
/* justify-content: center; */
align-items: center;
}

/* .container h2 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #0044cc;
    border: 2px solid #0044cc;
    border-width: 2px 2px 2px 0;
    border-radius: 0 2.5rem 2.5rem 0;
    height: 5rem;
    margin: 0 0 2rem;
    padding: 0.2rem 0 0 0.5rem;

    display: flex;

    align-items: center;
} */
.container .h2nd {
    /* font-size: 2.2rem; */
    font-size: 2rem;
    font-weight: bold;
    color: #0044cc;
    border: 2px solid #0044cc;
    border-width: 2px 2px 2px 0;
    border-radius: 0 2.5rem 2.5rem 0;
    /* height: 5rem; */
    height: 4rem;
    line-height: 3.5rem;
    margin: 0 0 2rem;
    padding: 0 0 0 0.5rem;
    /* 以下、上下中心の設定 */
    display: flex;
    /* justify-content: center; */
    align-items: center;
}

/* .container h3 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 2rem;
}
.container h3::before {
    content: "";
    display: inline-block;
    border: 3px solid #0044cc;
    border-radius: 2px;
    margin-right: 0.5rem;
    width: 1.6rem;
    height: 1.6rem;
} */

.container h2 {
    /* font-size: 2rem; */
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 0 2rem;
    /* text-indent: -3rem; */
    /* margin-left: 3rem; */
    border-image-source: url(../img/h2_border.png);
    border-image-slice: 6;
    border-image-width: 6px;
    border-image-outset: 0;
    border-image-repeat: round;
    padding-left: 2.5rem;

    -webkit-border-image: url(../img/h2_border.png) 6 / 6px / 0 round;
    /* text-indent: -0.5rem; */
}
/* .container h2::before {
    content: "";
    display: inline-block;
    border: 3px solid #0044cc;
    border-radius: 2px;
    margin-right: 0.5rem;
    width: 1.4rem;
    height: 1.4rem;
} */

.container h2::before {
    content: "";
    display: inline-block;
    /* border-radius: 2px; */
    /* margin-right: 2.5rem; */
    /* width: 5px; */
    /* height: 3rem; */
    /* background: #0044cc; */
    vertical-align: -0.75rem;
}

.container p {
padding-bottom: 2rem;
}

/* h3 にぶら下がる最後の p の修飾 */
.container h3~p:last-child {
padding-bottom: 2rem;
/* border-bottom: 1px solid #cccccc; */
}

.container h3~p.no-border:last-child {
border: 0px;
}


/* フッター */
.container footer {
padding: 3rem 2.5rem 0;
background: #0044cc;
position: absolute;
bottom: 0;
left: 0;
z-index: 10;
}

.footer-nav li {
font-size: 1.2rem;
line-height: 3;
}

.footer-nav.column {
justify-content: flex-start;
}

.footer-nav.column > li {
flex-basis: auto;
padding: 0 1rem 0 0;
}

.footer-nav.column > li:nth-child(6) {
padding: 0 10rem 0 0;
}

.footer-nav a {
color: #ffffff;
text-decoration: none;
}

/* .footer-nav a::before {
content: url(../img/icn_arrow_forward.svg);
display: inline-block;
margin-right: 0.5rem;
vertical-align: -10%;
zoom: 0.8;
}

.footer-nav a[target]::before {
content: url(../img/icn_window_mw.svg);
display: inline-block;
margin-right: 0.5rem;
vertical-align: -10%;
zoom: 0.9;
} */

.footer-nav a:hover {
color: #b40000; /* orange */
}

/* pマーク */
.pmark {
position: absolute;
top: 0;
right: 0;
}

.copyright {
font-size: 1.3rem;
color: #ffffff;
padding: 4rem 0 0.5rem;
}

/*  */
.return2top {
    left: initial;
    right: 2.5rem;
    margin: 0;
}


/*  */
.br_tablet {
    display: block;
}

.container .btn_a::before {
    /* bottom: 0.15rem; */
    top: initial;
}

/* +++++++++++++++++++++++++++++
 * 合同企業説明会
*/

.detail {
    /* display: block; */
    width: 100%;
    border: 1px solid #cccccc;
    font-size: 1.6rem;
    position: relative;
    margin-bottom: 3rem;
}

.detail th[colspan] {
    width: 100%;
    background: #bbd3fa;
    border-bottom: 1px solid #cccccc;
}

.detail th {
    width: 20%;
    background: #edf2fa;
    text-align: left;
    vertical-align: top;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #cccccc;
}

.detail td {
    width: 80%;
    padding: 0.5rem 1.5rem 0.5rem 2rem;
    border-left: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
}

.detail tr:last-child th, 
.detail tr:last-child td {
    border-bottom: none;
}

.detail .btn_a {
    margin: 1.2rem 0 1.5rem;
}

/* マイナビ */
.cmt_mynav::before {
    white-space: pre;
    content: "ご来場には予約が必要です。\a詳しくは、株式会社マイナビの運営するウェブサイトをご確認ください。\a";
}

/* サーナ */
.cmt_if::before {
    white-space: pre;
    content: "ご来場には予約が必要です。\a詳しくは、株式会社イフの運営するウェブサイトをご確認ください。\a";
}

/* クローバー */
.cmt_jay::before {
    white-space: pre-wrap;
    content: "ご来場には予約が必要です。\a詳しくは、株式会社ジェイ・ブロードの運営するウェブサイトをご確認ください。\a";
}

/*  */
.anchor_offset {
    /* position: absolute; */
    position: relative;
    top: -10rem;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
}

/* +++++++++++++++++++++++++++++
 * エントリーフォーム
*/

.container label[for=yes], 
.container label[for=no] {
    font-size: 1.8rem;
    font-weight: bold;
    vertical-align: 0;
}

.entryform_table {
    font-size: 1.4rem;
    border: 1px solid #cccccc;
    margin-bottom: 2.5rem;
}

.entryform_table th {
    text-align: left;
    font-weight: 300;
    width: 35%;
    background: #edf2fa;
}

.entryform_table tr > * {
    padding: 1rem;
    border-bottom: 1px solid #cccccc;
}

.entryform_table td {
    line-height: 2.7;
}

.entryform_table tr:last-child > * {
    border-bottom: none;
}

.entryform_table small {
    color: rgb(200, 0, 0);
}

.entryform_table input[type=text] {
    padding: 0.5rem;
    border: 1px solid #cccccc;
    border-radius: 5px;
}

.entryform_table select {
    border: 1px solid #cccccc;
    border-radius: 5px;
    padding: 0.4rem 0.6rem;
}

.inputarea03 {
    width: 100%;
}

textarea.inputarea03 {
    margin: 0;
    display: block;
    height: max-content;
    border: 1px solid #dddddd;
}


/* +++++++++++++++++++++++++++++
 * インデックス
*/

.offset_img {
    display: block;
    margin: auto;
    height: 10rem;
}

.container h1.index_h1 {
    position: relative;
    width: 100%;
    height: auto;
    font-size: 3rem;
    font-weight: normal;
    color: #ffffff;
    padding: 0;
    margin: 4rem 0 1.5rem;
    background: #ffffff;
    display: block;
}

/* トップイメージ */
.container h1.index_h1 .br_tablet {
    display: block;
    width: 100%;
    height: auto;
}

.container h1.index_h1 span {
    position: absolute;
    top: 6rem;
    left: 0;
    width: 42.5rem;
    height: 9rem;
    background: #0044cc;
    display: inline-block;
    padding: 1rem 0 0 2.5rem;
    
    font-size: 2rem;
    line-height: 1.3;

    /* display: flex;
    align-items: center; */
}

.container h1.index_h1 span::first-line {
    font-size: 3.2rem;
}

.whats_new {
    font-size: 1.6rem;
    margin: 0 0 4rem;
    display: table;
    table-layout: fixed;
}

.whats_new > * {
    display: table-cell;
}

.whats_new > *:first-child {
    font-size: 1.8rem;
    color: #0044cc;
    font-weight: bold;
    padding: 0 5rem 0 0;
    white-space: nowrap;
}

/* .whats_new time {
    display: inline-block;
    padding: 0 1rem 0 0;
} */

.whats_new_list {
	width: 100%;
	display: flex;
}

.whats_new_list > *:first-child {
	width: 13rem;
}

.whats_new_list > *:last-child {
	width: calc(100% - 13rem);
	text-indent: -0.5em;
	padding-left: 0.5em;
}


.column.index {
    justify-content: space-between;
    margin: 0 0 4rem;
    gap: 2rem;
}

.column.index > * {
    position: relative;
    overflow: hidden;
    /* border: 1px solid red; */
    flex-basis: calc(50% - 2rem);
    border-radius: 0.5rem;
}

.column.index .this_block {
    width: 100%;
    height: max-content;
}

.column.index > *:last-child .br_pc,
.column.index > *:last-child .br_tablet,
.column.index > *:last-child .br_sp {
    display: none;
}

.column.index > *:last-child .br_tablet {
    display: block;
    width: 100%;
    height: auto;
}

.column.index > *:last-child img {
    display: block;
    width: 100%;
    height: initial;
}

.index_ex, .index_ex3 {
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
}

.index_ex2 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.link_ex {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
}

.column.index > *.additional_content {
    position: relative;
    padding-bottom: calc(4rem + 2em);
    border-radius: initial;
    /* height: 26rem; */
    /* border: 1px solid red; */
}

.column.index > *.extra_item {
    border-radius: initial;
}

.column.index > *.extra_item > .btn_a {
    width: 100%;
}

a[target].btn_a.icon_w::before {
    /* content: url(../img/icn_window_mw.svg); */
    content: "w";
    font-family: 'アイコンフォント';
}

.btn_tablet {
    display: block;
    margin-bottom: 0.5rem;
    height: auto;
    line-height: 1.5;
    padding: 0.5rem 2.5rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn_tablet[target]::before {
    /* content: url(../img/icn_window_mw.svg); */
    display: inline-block;
    position: absolute;
    /* bottom: calc(50% - 1.5rem); */
    left: 1rem;
}

/* +++++++++++++++++++++++++++++
 * 採用活動における個人情報の取り扱いについて
*/

.contents.privacy_policy {
    padding: 0 3rem 5rem;
}

.privacy_policy dl {
    font-size: 1.6rem;
    line-height: 1.6;
}

.privacy_policy dt {
    font-weight: bold;
}

.privacy_policy dd {
    padding: 0 0 1em 0;
}

.this-table {
    font-size: 1.6rem;
    border: 1px solid #333333;
    border-width: 0 0 0 1px;
    width: max-content;
    margin: 0 auto 2em;
}

.this-table * {
    padding: 0.5rem 1rem;
    border: 1px solid #333333;
    border-width: 0 1px 1px 0;
}

.this-table th {
    background: #666666;
    color: #ffffff;
}

.link-icon::before {
    content: "w";
    font-family: 'アイコンフォント';
    display: inline-block;
    margin-right: 0.5rem;
}

/* 
 * 生活相談員対談
 ++++++++++++++++++++++++++++++ */

 .column.sp {
    justify-content: flex-start;
    gap: 2rem;
    align-items: flex-end;
}

.column.sp > * {
    flex-basis: initial;
}

 .prof_box {
    font-size: 1.6rem;
    line-height: 1.6;
}

.prof_box dt {
    font-weight: bold;
}

.conversation_body {
    font-size: 1.6rem;
    line-height: 1.6;
    padding-bottom: 2rem;
}

.conversation_body > dl {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    padding-bottom: 1rem;
}

.conversation_body > dl > dt {
    width: min-content;
    white-space: nowrap;
    font-weight: bold;
}

.moji_ai {
    color: green;
}

.moji_am {
    color: brown;
}

/*  */
/* .container a.btn_a::before {
    margin: -0.2rem 0.2rem 0 0.3rem;
} */

.container a {
    vertical-align: baseline;
}

.container button.btn_a::before {
    top: initial;
    bottom: calc(50% - 0.75rem);
}


/* 
 * 採用フロー
 ++++++++++++++++++++++++++++++ */
 .aplicanse_flow_enclose {
    background: #e6edf5;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.flow_step {
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    width: 70%;
    margin: auto;
}


/* 
 * よくあるご質問・お問い合わせ
 ++++++++++++++++++++++++++++++ */
 .contents_block {
    font-size: 1.6rem;
    line-height: 1.6;
}

.faq_a {
    border-bottom: 1px dashed #cccccc;
}

.faq_a a::before {
    content: "r ";
    font-family: 'アイコンフォント';
}

.faq_a.last {
    border-bottom: none;
}

.Q {
    border-top: 1px dotted #cccccc;
    line-height: 1.6;
    padding: 1rem 0;
    position: relative;
    cursor: pointer;
}

.A {
    line-height: 1.6;
    padding: 1rem 3rem 1rem 2.8rem;
    position: relative;
    display: none;
    /* text-indent: -2.7rem; */
}

.Q.open+.A {
    display: block;
}

.Q::before {
    content: "Q ";
    font-family: 'アイコンフォント';
    color: #003dca;
    font-size: 2.2rem;
    vertical-align: -0.15rem;
}

.Q::after {
    content:"p";
    font-family: 'アイコンフォント';
    color: #003dca;
    font-size: 2.2rem;
    position: absolute;
    right: 0;
}

.Q.open::after {
    content:"m";
    font-family: 'アイコンフォント';
    color: #003dca;
    font-size: 2.2rem;
    position: absolute;
    right: 0;
}

.A::before {
    content: "A ";
    font-family: 'アイコンフォント';
    color: #e76b00;
    font-size: 2.2rem;
    position: absolute;
    top: 0.8rem;
    left: 0;
    vertical-align: -0.25rem;
}

.recruit_map {
    width: max( 100%, 640px );
    height: inherit;
    display: block;
}

.inquiry_list {
    padding: 1rem 0;
    font-size: 1.6rem;
    line-height: 1.6;
}


/* 
 * 社員インタビュー
 ++++++++++++++++++++++++++++++ */

 .flex_columns.columns_gap_in_interview {
    flex-wrap: wrap;
}

.interview_card {
    position: relative;
    width: calc(50% - 1rem);
    border: 3px solid #003dca;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.interview_title {
    /* position: absolute; */
    /* top: 1rem; */
    width: 100%;
    display: block;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.spec_column p {
    font-size: 1.4rem;
}

.btn_a.interview_btn {
    width: calc(100% - 3rem);
    justify-content: flex-start;
    margin: 0;
    position: absolute;
    bottom: 1.5rem;
    padding: 0.6rem 0.5rem 0.5rem 3.5rem;
    font-size: 1.5rem;
}

.portrait {
    width: 40%;
    height: 100%;
}

/* 
 * 社員インタビュー詳細ページ
 ++++++++++++++++++++++++++++++ */
 .profile_area {
    background: #d3dff4;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.flex_columns.interview_detail {
    justify-content: flex-start;
}

.profile_title {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    line-height: 1.5;
}

.portrait2 {
    border: 3px solid #ffffff;
    width: 45%;
    height: 100%;
}

.flex_columns.exexex {
    width: 100%;
    margin: auto;
}


/*  */
.none_tablet {
    display: none;
}


}



















