@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@600&family=Noto+Sans:ital,wght@1,700&family=Noto+Sans+JP:wght@500;700&display=swap');

/* *{
	box-sizing: border-box;
} */

:root{
    --fsz-56: clamp(5.0rem, calc(100vw / (375 / 56)), 5.6rem);
    --fsz-50: clamp(3.6rem, calc(100vw / (375 / 36)), 5.0rem);
    --fsz-40: clamp(3.0rem, calc(100vw / (375 / 40)), 4.0rem);
    --fsz-32: clamp(2.4rem, calc(100vw / (375 / 32)), 3.2rem);
    --fsz-26: clamp(2.2rem, calc(100vw / (375 / 26)), 2.6rem);
    --fsz-24: clamp(2.0rem, calc(100vw / (375 / 24)), 2.4rem);
    --fsz-22: clamp(1.6rem, calc(100vw / (375 / 22)), 2.2rem);
    --fsz-18: clamp(1.4rem, calc(100vw / (375 / 18)), 1.8rem);
    --fsz-16: clamp(1.2rem, calc(100vw / (375 / 16)), 1.6rem);
    --fsz-15: clamp(1.2rem, calc(100vw / (375 / 15)), 1.5rem);
    --fsz-14: clamp(1.2rem, calc(100vw / (375 / 14)), 1.4rem);
    --fsz-12: clamp(1.0rem, calc(100vw / (375 / 12)), 1.2rem);
    --fsz-10: clamp(0.8rem, calc(100vw / (375 / 10)), 1.0rem);
}

html{
	font-size: 62.5%;
    font-family: 'Noto Sans JP', "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    scroll-padding-top: 60px;
    scroll-behavior: smooth;
}

body{
	background: #e3f2fa;
	color: #000;
    margin: 0;
    padding: 0;
}

.page-contents,
.page-footer {
    filter: drop-shadow(3px 3px 3px rgba(0,0,0,.2));
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
th,
td,
dt,
dd {
    color: #333;
    margin: 0;
    padding: 0;
    font-size: var(--fsz-16);
    font-weight: 500;
    line-height: 1;
    box-sizing: border-box;
}

a {
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    line-height: 1.7;
    text-decoration: none;
    box-sizing: border-box;
    transition: .5s;
}

a:hover {
    opacity: .5;
}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}
.row{
    display: flex;
}

@media screen and (min-width:520px) {
    .page-contents,
    .page-footer {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media screen and (min-width:768px) {
    .page-contents,
    .page-footer {
        max-width: 100%;
    }
}

/* ===============
汎用
=============== */

.en {
    font-family: 'Mukta','Noto Sans JP', "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-weight: 600;
}

.page-ttl_en {
    font-family: 'Mukta','Noto Sans JP', "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-weight: 600;
    font-size: var(--fsz-50);
    font-size: var(--fsz-18);
    margin-top: .5em;
    color: #008ad0;
    text-align: center;
    margin-bottom: 10px;
}

.page-ttl {
    /* font-size: var(--fsz-18); */
    font-size: var(--fsz-50);
    color: #008ad0;
    text-align: center;
}


/* フレックスボックス */

.f_box {
    display: flex;
}

@media screen and (min-width:768px) {
    .f_box-pc {
        display: flex;
    }
}

/* 余白 */

.inner {
    margin: 0 auto;
    padding: 30px 26px 26px;
}

@media screen and (min-width:768px) {
    .inner {
        max-width: 600px;
        margin: 0 auto;
        /* padding: 0 16px; */
    }
}

.page-ttl_area .inner {
    padding: 30px 26px 10px;
}

/* figure */

figure img {
    margin-bottom: 2px;
}

figcaption {
    color: #666;
    font-size: 1.5rem;
    text-align: center;
}

/* pc・sp表示切り替え */
.sp-show { display: block;}
.pc-show { display: none;}
.inline.pc-show { display: none;}
.f_box.sp-show { display: flex;}

@media screen and (min-width:768px) {
    .sp-show { display: none;}
    .pc-show { display: block;}
    .inline.pc-show { display: inline;}
    .f_box.pc-show { display: flex;}
}



/* headerのnav pc・sp表示切り替え */

.hdr3.sp-show { display: block;}
.pc-nav.pc-show { display: none;}

/* @media screen and (min-width:920px) { */
@media screen and (min-width:980px) {
    .hdr3.sp-show { display: none;}
    .pc-nav.pc-show { display: block;margin-top: 1.7em;}
}

@media screen and (min-width:768px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

/* フェードイン */

.fadein{
    animation-name: fadeInAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}
    
@keyframes fadeInAnime{
    from {
    opacity: 0;
    }

    to {
    opacity: 1;
    }
}

span.pc-show {
    /* overflow-wrap: break-word; */
}
.spacer{
    /* white-space: pre-wrap; */
    white-space: break-spaces;
}


/* ===============
.page-header
=============== */

.page-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    height: 58px;
    border-bottom: 1px solid #000;
}

.hdr1 {
    justify-content: space-between;
}

.hdr-logo {
    margin: 13px;
    width: 68px;
}

.hdr_btn {
    display: block;
    font-size: var(--fsz-18);
    color: #fbb03b;
    background: -webkit-gradient(
		linear, left top, left bottom,
		from(#0368b4),
		to(#1b2b79));
	background: linear-gradient(
		top,
		#0368b4 0%,
		#1b2b79);
    border-radius: 16px;
    padding: .1em 2em;
    margin: 13px 10px;
    letter-spacing: .1em;
}

.pc-nav {
    margin-top: 10px;
}

.pc-nav a {
    margin-right: 30px;
    margin-bottom: 0;
}

.pc-nav .ftr_en {
    font-size: var(--fsz-10);
    margin-bottom: 6px;
    text-align: center;
}

.pc-nav .ftr_jp {
    font-size: var(--fsz-14);
    color: #008ad0;
    text-align: center;
    margin-bottom: 0;
}

/* ===============
.contents-footer
=============== */

.contents-footer {
    background: #fff;
    padding: 40px;
}

.con-foo_btn {
    font-size: var(--fsz-18);
    color: #fff;
    background: -webkit-gradient(
        linear, left top, left bottom,
        from(#0368b4),
        to(#1b2b79));
    background: linear-gradient(
        top,
        #0368b4 0%,
        #1b2b79);
    display: block;
    text-align: center;
    border-radius: 16px;
    padding: 1em 2em;
    letter-spacing: .1em;
    margin: 50px auto;
    max-width: 400px;
}

.contents-footer.bg-w {
    padding-top: 0;
}

.contents-footer.bg-w .con-foo_btn {
    margin-top: 0;
}


/* ===============
.page-footer
=============== */

.page-footer {
    background: #008ad0;
}

.page-footer .inner {
    padding: 42px 26px 20px;
}

.ftr_en {
    /* font-size: var(--fsz-40); */
    font-size: var(--fsz-14);
    margin-top: .5em;
    color: #2e3192;
    font-weight: 700;
    margin-bottom: 10px;
}

.ftr_jp {
    /* font-size: var(--fsz-14); */
    font-size: var(--fsz-26);
    color: #fff;
}

.ftr_link {
    display: block;
    margin-bottom: 26px;
}

.ftr_btn {
    font-size: var(--fsz-18);
    color: #fbb03b;
    background: -webkit-gradient(
		linear, left top, left bottom,
		from(#0368b4),
		to(#1b2b79));
	background: linear-gradient(
		top,
		#0368b4 0%,
		#1b2b79);
    display: block;
    text-align: center;
    border-radius: 16px;
    padding: .3em 2em;
    letter-spacing: .1em;
    margin: 50px auto;
}

.ftr_btn span {
    font-size: var(--fsz-32);
    vertical-align: -0.1em;
}

.ftr_ban {
    display: block;
    margin-bottom: 18px;
}

.copy {
    font-size: var(--fsz-12);
    color: #fff;
    text-align: center;
    margin: 70px 0 0;
    padding: 0;
}

@media screen and (min-width:768px) {

    nav .f_box-pc,
    .page-footer .f_box-pc {
        justify-content: space-between;
    }

    .ftr_ban {
        width: 49%;
    }
}

/* ===============
トップページ
.home
=============== */

.slider {
    margin: 0;
    padding: 0;
}

.home .home1 {
    position: relative;
    background: #008ad0;
    margin-top: -40px;
    padding-top: 40px;
    min-height: 774px;
    z-index: -100;
}

.home .home1 h1 {
    font-size: var(--fsz-56);
    color: #fff;
    line-height: 1.3;
    margin-bottom: 14px;
}

.home .home1 p {
    font-size: var(--fsz-16);
    color: #fff;
    line-height: 2.0;
    font-feature-settings: "palt";
}

.home .home1 .img_be {
    position: absolute;
    top: 86px;
    right: 6px;
    width: 112px;
    z-index: -10;
}

/* 2024.09.10追加 */
.home .home-youtube{
    background: #d2e0eb;
    padding: 4em 0;
}
.home .home-youtube .inner{
    padding: 0;
}
.home .home-youtube h2{
    /* color:#008ad0; */
    color:#0368b4;

    font-size: clamp(2.0rem, calc(100vw / (430 / 26)), 2.6rem);
    line-height: 1.4;
    text-align: center;
    margin-bottom: 1em;
}
.home .youtube{
    margin: 0 auto 2em;
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 のアスペクト比 (9/16 = 0.5625) */
    height: 0;
    overflow: hidden;
}
.home .youtube iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* 2024.09.10追加ここまで */

.home .home2 {
    background: #fff;
    padding-bottom: 70px;
}

.home .home2 .top-int_num {
    margin-bottom: 20px;
    max-width: 400px;
}

.home .home2 h2 {
    font-size: var(--fsz-24);
    color: #008ad0;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.home .home2 .top-int_pho {
    margin-bottom: 60px;
}


.home .home3 {
    background: #d2e0eb;
    padding-bottom: 60px;
}

.home .top-book {
    display: block;
    margin: 0 auto;
    max-width: 500px;
    padding-left: 26px;
    padding-right: 26px;
}

@media screen and (min-width:768px) {
    .home .home1 .inner {
        max-width: 375px;
    }

    .home .home1 .img_be {
        right: 32vw;
        width: 112px;
        z-index: -10;
    }

    .home .home2 .inner {
        max-width: 1200px;
    }

    .home .home2 .inner h2 {
        font-size: var(--fsz-22);
        line-height: 1.4;
    }

    .home .home2 .f_box-pc {
        justify-content: space-between;
    }

    .home .home2 .top_int {
        display: block;
        width: 31%;
    }
    
}

/* ===============
インタビュー
.interview
=============== */

.interview .section-container {
    margin-bottom: 0;
}

.interview .bg-w {
    background: #fff;
    /* z-index: -1000; */
}

.interview .int-bg-a {
    position: relative;
    background: #008ad0;
    /* z-index: -100; */
}

.interview .int-bg-b {
    background: #d2e0eb;
}

.interview .int-top {
    width: 140px;
    margin-bottom: 20px;
}

.interview .int-ttl {
    font-size: var(--fsz-24);
    color: #008ad0;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.interview .name {
    color: #fff;
    line-height: 1.5;
    margin-bottom: 20px;

}

.interview .catch {
    display: inline-block;
    color: #fff;
    background: #000;
    padding: .3em 1em;
    margin-bottom: 16px;
}

.interview .img_be {
    position: absolute;
    top: 580px;
    right: 10px;
    width: 112px;
    z-index: -10;
}

.interview h3 {
    font-size: var(--fsz-24);
    color: #fbb03b;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.interview p {
    color: #fff;
    line-height: 2.0;
    margin-bottom: 40px;
}

.interview .int-txt img {
    margin-bottom: 40px;
}

.interview .int-bg-b .page-ttl_en {
    color: #008ad0;
    margin-bottom: 0;
}

.interview .int-bg-b .support {
    font-size: var(--fsz-22);
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 30px;
}

.interview .int-bg-b h3 {
    color: #008ad0;
    text-align: center;
    border-bottom: 1px solid #000;
    padding-bottom: 14px;
    margin-bottom: 14px;
}

.interview .int-bg-b p {
    color: #000;
    margin-bottom: 30px;
}

.interview .int-bg-b img {
    margin-bottom: 40px;
}


@media screen and (min-width:768px) {
    .interview .int-top {
        display: block;
        margin: 0 auto 10px;
    }

    .interview .int-ttl {
        text-align: center;
        margin-bottom: 100px;
    }

    .mv-area_pc {
        position: relative;
    }

    .mv-area_pc .int-mv {
        position: absolute;
        width: 80%;
        max-width: 500px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }

    .int-bg-a {
        padding-top: 50px;
    }
    /* .interview .int-bg-a .inner{
        position: relative;
        z-index: 1;
    } */
    
}

@media screen and (min-width:1200px) {
    .interview .int-ttl {
        margin-bottom: 70px;
    }
    
    .int-bg-a {
        padding-top: 0;
    }
}


/* ===============
SxSの一日
.schedule
=============== */

.schedule .contents-header,
.schedule .contents-body {
    background: #fff;
}

.schedule .accordion {
    list-style: none;
    padding: 0;
}

.schedule .accordion h2 {
    font-size: var(--fsz-24);
    font-weight: 700;
    position: relative;
    cursor: pointer;
}

.schedule .accordion h2 span.num {
    font-size: var(--fsz-26);
    color: #008ad0;
    font-family: 'Noto Sans','Noto Sans JP', "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.schedule .accordion h2 i {
    color: #fff;
    background: -webkit-gradient(
		linear, left top, left bottom,
		from(#fbae17),
		to(#f15a24));
	background: linear-gradient(
		top,
		#fbae17 0%,
		#f15a24);
    border-radius: 50%;
    font-size: var(--fsz-18);
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
}

.schedule .accordion li:first-child {
    border-top: 1px solid #000;
}

.schedule .accordion li {
    border-bottom: 1px solid #000;
    padding: 20px 0;
}

/* .schedule .accordion .ac-inner {
    display: none;
} */

.schedule .accordion p {
    line-height: 1.7;
    margin: 20px 0;
}

.schedule .sec2 {
    background: #008ad0;
    margin: 0;
}

.schedule .sec2 .page-ttl_en,
.schedule .sec2 .page-ttl {
    color: #fff;
}

.schedule .mes-box {
    margin: 40px 0;
}

.schedule .mes-box img {
    margin-bottom: 20px;
}

.schedule .mes-box h3 {
    font-size: var(--fsz-24);
    color: #fbb03b;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.schedule .mes-box p {
    color: #fff;
    line-height: 1.7;
}

.schedule .section-container {
    margin-bottom: 0;
    border-bottom: 1px solid #fff;
}

@media screen and (min-width:768px) {
    
    .schedule .accordion h2 {
        cursor: default;
    }

    .schedule .sec1 .inner {
        max-width: 800px;
    }

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

    .schedule .accordion li {
        width: 48%;
        border: 1px solid #000;
        border-radius: 10px;
        padding: 1em;
        margin-bottom: 40px;
    }

    .schedule .accordion i {
        display: none;
    }

    .schedule .accordion .ac-inner {
        display: block;
    }
}

@media screen and (min-width:970px) {
    .schedule .sec1 .inner {
        max-width: 1200px;
    }

    .schedule .accordion li {
        width: 32%;
    }
}

/* ===============
採用情報
.info
=============== */

.info .contents-header,
.info .sec1 {
    background: #d2e0eb;
}

.info .sec1 h2 {
    color: #008ad0;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 80px;
}
.info .sec1 h2:first-child {
    margin-top: 20px;
}
.info .sec1 h2.page-ttl{
    margin-top: 130px;
}

.info .sec1 p {
    font-size: var(--fsz-15);
    line-height: 1.6;
    margin-bottom: 30px;
}

.info .sec1 p.page-ttl_en {
    /* font-size: var(--fsz-50); */
    font-size: var(--fsz-18);
    /* margin-top: 80px; */
    /* margin-bottom: 0; */
}

.info .sec1 .page-ttl_en {
    margin-bottom: 40px;
}

.info .flo-box {
    background: #fff;
    border: 1px solid #008ad0;
    padding: 1.5em 1em;
    margin-bottom: 10px;
}


.info .sec1 .flo-box h3 {
    font-size: var(--fsz-24);
    font-weight: 700;
    padding-left: 1.5em;
    text-indent: -1.5em;
    line-height: 1.5;
}

.info .sec1 .flo-box h3 span.num {
    font-size: var(--fsz-26);
    color: #008ad0;
    font-family: 'Noto Sans','Noto Sans JP', "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.info .sec1 .flo-box p {
    color: #008ad0;
    font-size: var(--fsz-14);
    text-indent: 2.5em;
    margin-top: 4px;
    margin-bottom: 0;
}

.info .sec1 .flo-arw {
    display: block;
    margin: 0 auto 10px;
    width: 30px;
}

.info .sec1 .flo-box.last {
    margin-bottom: 100px;
} 

.info .com-txt {
    margin-top: 30px;
    margin-bottom: 40px;
}

.info .com-txt p {
    font-size: var(--fsz-15);
    line-height: 1.8;
    font-feature-settings: "palt";
}

.info .com-txt p.officer {
    padding-left: 4.3em;
    text-indent: -4.3em;
}

.info .sec2 {
    background: #fff;
}

.info .sec2 h3 {
    color: #008ad0;
    font-weight: 700;
    margin-bottom: 8px;
}

.info .sec2 p {
    line-height: 1.5;
}

.info .sec2 img {
    margin: 10px 0 40px;
}


/* ===============
エントリーページ
.entry
=============== */

.entry .contents-header,
.entry .contents-body {
    background: #fff;
}

.entry .contents-body {
    padding-bottom: 70px;
}

.entry .sec1 .sec-ttl {
    font-size: var(--fsz-26);
    color: #008ad0;
    font-weight: 700;
    margin-bottom: 20px;
}

.entry .sec1 p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.entry .sec1 .cap {
    color: #008ad0;
    text-indent: -1em;
    padding-left: 1em;
}

.entry .sec2 label {
    font-size: var(--fsz-14);
    color: #008ad0;
    margin-bottom: 20px;
}
.entry .subject{
    margin-bottom: 30px;
}
.entry .subject > label{
    display: block;
    margin: 0;
}
.entry .subject p{
    display: block;
    margin-right: 1em;
    line-height: 1.2;
    padding: 10px 0 0;
}
@media screen and (min-width: 480px){
    .entry .subject p{
        display: inline-block;
    }
}

.entry .subject p label{
    font-size: var(--fsz-18);
    line-height: 1.2;
    color: #000;
}

.entry .field{
    margin-bottom: 30px;
}
.entry .date-time .field{
    margin-bottom: 0;
}
.entry .date-time{
    margin-bottom: 30px;
}
.entry .date-time p{
    margin: .5em 0;
    line-height: 1.3;
    font-size: var(--fsz-14);
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,option,
textarea {
    font-size: var(--fsz-18);
	width: 100%;
    padding: 10px 0;
	border: 0;
	border-bottom: 1px solid #000;
	background-color: transparent;
    line-height: 1.2;
}
select{
    padding: 6.75px 0;
}
textarea {
    margin-top: .5em;
    border: 1px solid #000;
    min-height: 5em;
    resize: vertical;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
	outline: none;
}
.entry input::placeholder,
select::placeholder {
    color: #ccc;
    font-weight: normal;
}

.entry .row {
    justify-content: space-between;
}

.entry .row > div{
    width: 48%;
    /* border: 1px solid #000; */
}


.entry .privacy .pri-lead {
    font-size: var(--fsz-14);
    line-height: 1.6;
    margin-bottom: 30px;
}

.privacy-outer {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}

.privacy-outer .pri-ttl {
	font-size: var(--fsz-14);
    font-weight: 700;
    margin-bottom: 10px;
}

.privacy-outer .pri-txt {
	font-size: var(--fsz-12);
    line-height: 1.8;
    margin-bottom: 10px;
}

.privacy-outer .pri-txt.ind {
    padding-left: 2.2em;
    text-indent: -2.2em;
}

.privacy-outer .pri-txt.right {
    text-align: right;
}

.privacy-outer .pri-txt.last {
    margin-bottom: 30px;
}

.more::before {
	width: 100%;
	content: "";
	display: block;
	height: 4em;
	opacity: .5;
	margin-top: -4em;
	background: linear-gradient( rgba( 255,255,255,.5) 40%, rgba( 255,255,255,.95) 60%, rgba(255,255,255,1) 70%);
}

.open_btn {
	display: block;
	content: "すべて表示する";
	text-align: center;
	width: 8em;
	padding: .2em 0 .5em;
	font-size: var(--fsz-12);
	margin: 1em auto 0;
	border-radius: 1.5em;
	border: 1px solid #000;
	background: #fff;
}

@media screen and ( min-width: 768px)  {
	.privacy-outer,
	.more {
		max-width: 600px;
		padding: 0;
		margin: auto;
	}	
}

.entry label.accept-outer {
    display: block;
    color: #000;
    font-size: var(--fsz-16);
    font-weight: 700;
    text-align: center;
    margin: 26px auto 10px;
}

.entry .accept {
    margin-right: 4px;
}

.entry .sec2 .f-submit {
    margin-top: 20px;
}

.entry .sec2 #formSubmit {
    font-size: var(--fsz-18);
    color: #fff;
    font-weight: 700;
    background: -webkit-gradient(
		linear, left top, left bottom,
		from(#0368b4),
		to(#1b2b79));
	background: linear-gradient(
		top,
		#0368b4 0%,
		#1b2b79);
    border-radius: 16px;
    display: block;
    margin: 0 auto;
    padding: .6em 4em;
    cursor: pointer;
}
.entry .sec2 #formSubmit.disabled,
.entry .sec2 #formSubmit:disabled {
    cursor: default;
    opacity: .5;
}



.goodcompany {
    background: #fff;
}

.goodcompany .sec-ttl{
    font-size: var(--fsz-26);
    color: #D67338;
    font-weight: 700;
    line-height: 1.4;
    margin: 1em 0 1em;
    text-align: center;
}
.goodcompany figure{
    text-align: center;
    margin: 1em auto 5em;
    padding: 0;
}
.goodcompany figure img{
    display: block;
    margin: 0 auto;
    width: 100%;
}
.goodcompany figure .portrate{
    max-width: 300px;
}

.goodcompany figcaption{
    font-size: var(--fsz-18);
    line-height: 1.4;
    text-align: center;
    margin: 1em 0;
}

.goodcompany p{
    font-size: var(--fsz-16);
    line-height: 1.7;
}
.goodcompany h3{
    font-size: var(--fsz-26);
    font-weight: bold;
    color: #D67338;
    text-align: center;
}
.goodcompany h4{
    font-size: var(--fsz-18);
    font-weight: normal;
    color: #D67338;
    border-bottom: 1px solid #D67338;
    padding-bottom: .5em;
    margin: 1em 0  .5em;

}
