@charset "utf-8";
@import url("https://use.fontawesome.com/releases/v5.15.4/css/all.css");
/*-------------------------------------------------------------
///////////////////////////////////////////////////////////////
font setting 2026
///////////////////////////////////////////////////////////////
--------------------------------------------------------------*/
body {
    font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Noto Sans JP",
    sans-serif;
    overflow-wrap: anywhere;
     word-break: normal;
}
/*-------------------------------------------------------------
///////////////////////////////////////////////////////////////
base module & style
///////////////////////////////////////////////////////////////
--------------------------------------------------------------*/

:root {
    --color_primary: #00646E;
    --color_secondary: #9D8000;
    --color_tertiary: #F7C345;
}


.sp_on {
    display: block; /* SPのみ表示 */

    @media (width >= 1200px) {
        display: none;
    }
}

.pc_on {
    display: none; /* タブレット以上のみ表示 */

    @media (width >= 1200px) {
        display: block;
    }
}

/* ページトップへもどる */
.page_top {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 60px;
    position: fixed;
    background-image: linear-gradient(var(--color_tertiary), var(--color_tertiary));
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;

    @media (width >= 1200px) {
        bottom: 30px;
    }
}
.page_top::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-top: 1px solid #000000;
    border-right: 1px solid #000000;
    transform: rotate(-45deg);
}

.wrapper {
    width: 100%;
}

/* @group メインエリア
------------------------------------------------------*/
.main {
    width: 100%;

    @media (width >= 1200px) {
        background-image: linear-gradient(to right, transparent 0%, transparent 50%, #000000 50%, #000000 100%), url(../images/main_bg_pc.jpg);
        background-position: left top, left top;
        background-repeat: no-repeat, repeat;
        background-size: 100% 100%, 95px auto;
    }
    
}


.main_container {
    width: 100%;
    background-color: #FFFFFF;
}

@media (width >= 1200px) {
    .main_container {
        width: 1100px;
        margin-inline: auto;
        display: flex;
        flex-direction: row-reverse;
    }
}

/* @group コンテンツエリア
------------------------------------------------------*/

.contents {
    width: 100%;
}

@media (width >= 1200px) {
    .contents {
        width: 850px;
    }
}

/* サイドメニューありの場合表示させる影 */
@media (width >= 1200px) {

    .contents {
        position: relative;
    }

    .contents::before {
        content: "";
        position: absolute;
        width: 10px;
        height: 100%;
        top: 0;
        left: 0;
        background-image: url(../images/shadow.png);
        background-size: cover;
        background-position: left 120px;
        background-repeat: repeat-y;
        background-size: 10px auto;
        z-index: 2;
        mix-blend-mode: multiply;
    }
}

.header {
    width: 100%;
}
.header_container {
    position: relative;
    width: 100%;
    min-height: 725px;

    @media (width >= 414px) {
        min-height: 770px;
    }

    @media (width >= 430px) {
        min-height: 799px;
    }

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-image: url(../images/header_small.jpg);
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: cover;
        z-index: 1;
    }

    @media (width >= 768px) {
        min-height: 994px;

        &::before {
            background-image: url(../images/header_large.jpg);
        }

        @media (width >= 820px) {
            min-height: 1061px;
        }

        @media (width >= 1024px) {
            min-height: 1325px;
        }

        @media (width >= 1200px) {
            min-height: 1100px;
        }
    }
/* 子ページヘッダー */
    &.child {
        min-height: 215px;

        &::before {
            background-image: url(../images/header_child_small.jpg);
        }

        @media (width >= 414px) {
            min-height: 228px;
        }
    
        @media (width >= 430px) {
            min-height: 237px;
        }

        @media (width >= 768px) {
            min-height: 262px;

            &::before {
                background-image: url(../images/header_child_large.jpg);
            }
        }

        @media (width >= 820px) {
            min-height: 280px;
        }

        @media (width >= 1024px) {
            min-height: 349px;
        }

        @media (width >= 1200px) {
            min-height: 160px;
        }

    }
}

/* 英語 */
.header_container.en {
    position: relative;
    width: 100%;
    min-height: 725px;

    @media (width >= 414px) {
        min-height: 770px;
    }

    @media (width >= 430px) {
        min-height: 799px;
    }

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-image: url(../images/header_small_en.jpg);
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: cover;
        z-index: 1;
    }

    @media (width >= 768px) {
        min-height: 994px;

        &::before {
            background-image: url(../images/header_large_en.jpg);
        }

        @media (width >= 820px) {
            min-height: 1061px;
        }

        @media (width >= 1024px) {
            min-height: 1325px;
        }

        @media (width >= 1200px) {
            min-height: 1100px;
        }
    }
/* 子ページヘッダー */
    &.child {
        min-height: 215px;

        &::before {
            background-image: url(../images/header_child_small_en.jpg);
        }

        @media (width >= 414px) {
            min-height: 228px;
        }
    
        @media (width >= 430px) {
            min-height: 237px;
        }

        @media (width >= 768px) {
            min-height: 271px;

            &::before {
                background-image: url(../images/header_child_large_en.jpg);
            }
        }

        @media (width >= 820px) {
            min-height: 289px;
        }

        @media (width >= 1024px) {
            min-height: 361px;
        }

        @media (width >= 1200px) {
            min-height: 160px;
        }

    }
}

/* ヘッダー内のテキスト非表示 */
.header_container > * {
    position: absolute;
    left: -9999em;
}

/* トップページお知らせ */
.news {
    position: relative;
    width: 100%;
    min-height: 350px;
    padding-top: 120px;
    padding-bottom: 25px;

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-image: url(../images/news_bg_small.jpg);
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: cover;
    }

    @media (width >= 414px) {
        min-height: 372px;
    }

    @media (width >= 430px) {
        min-height: 386px;
    }

    @media (width >= 768px) {
        min-height: 334px;

        &::before {
            background-image: url(../images/news_bg_large.jpg);
        }

        @media (width >= 820px) {
            min-height: 357px;
        }

        @media (width >= 1024px) {
            min-height: 446px;
        }

        @media (width >= 1200px) {
            min-height: 372px;
        }
    }
}

.news > h2 {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 35px;
  
    & > span {
      position: relative;
      font-size: 18px;
      font-weight: bold;
      color: var(--color_secondary);
      text-align: center;

      &::before {
        position: absolute;
        content: "";
        bottom: -7px;
        left: 0;
        width: 100%;
        height: 5px;
        background-image: linear-gradient(to right, var(--color_primary) 0%, var(--color_primary) 50%, var(--color_secondary) 50%, var(--color_secondary) 100%);
        background-position: left top;
        background-repeat: no-repeat;
        background-size: 100% 100%;
      }
    }
  }

.news-list {
    position: relative;
    height: 180px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 20px;
    padding-right: 20px;
    overflow-y: auto;
    line-height: 1.4;

    @media (width >= 1200px) {
        height: 140px;
        padding-left: 40px;
        padding-right: 40px;
    }

    & li {
        display: flex;
        border-bottom: 1px dashed #000000;
        padding: 0 3px 8px;
        color: #000000;

        & .date {
            width: 100px;
            font-weight: bold;
            font-size: 14px;
            

            @media (width >= 1200px) {
                width: 110px;
            }
        }

        & .excerpt {
            width: calc(100% - 100px);
            font-size: 13px;

            @media (width >= 1200px) {
                width: calc(100% - 85px);
            }
        }
        
    }
     
}


/* @group ナビゲーション、運営事務局エリア
------------------------------------------------------*/

.nav_wrap {
    width: 100%;

    @media (width >= 1200px) {
        width: 250px;
        background-color: var(--color_primary);

        &.en {
            background-color: var(--color_secondary);
        }
    }

    & > .logo {
        display: none;

        @media (width >= 1200px) {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 120px;
            background-color: #000000;
        }

        & > img {
            width: 80px;
            height: 80px;
        }
    }
}


.secretariat_wrap {
    width: 100%;
    background-color: var(--color_primary);

    &.en {
        background-color: var(--color_secondary);
    }

    @media (width >= 768px) {
        position: relative;
        display: flex;
        gap: 40px;

        &::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 30px;
            left: 0;
            background-image: linear-gradient(#000000, #000000);
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: left top;
            z-index: 0;
        }
    }

    @media (width >= 1200px) {
        display: flex;
        flex-direction: column;
        gap: 0px;

        &::before {
            height: 0;
            background-image: none;
        }
    }

}

.secretariat h2 {
    position: relative;
    width: 100%;
    height: 30px;
    margin-bottom: 7px;
    background-color: #000000;
    display: flex;
    align-items: center;
}

.secretariat h2 span {
    margin-left: 18px;
    margin-top: 3px;
    font-size: 14px;
    font-weight: bold;
	color: #FFFFFF;
    line-height: 1;
}

@media (width >= 1200px) {
    .secretariat h2 span {
        margin-left: 13px;
    }
}

.secretariat dl {
    position: relative;
    margin-left: 18px;
    padding-bottom: 18px;
    color: #FFFFFF;
    line-height: 1.3;
}

.secretariat.en dl {
    padding-bottom: 40px;
}

@media (width >= 1200px) {
    .secretariat dl {
        margin-left: 13px;
    }
}

.secretariat dt {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: bold;
}

.secretariat dd {
    font-size: 12px;
}

.secretariat dd a {
    color: #00FFFF;
}

/* @group フッターエリア
------------------------------------------------------*/

.footer {
    width: 100%;
    background-color: var(--color_secondary);

    &.en {
        background-color: var(--color_primary);
    }
}

.footer_container {
    width: 100%;
}
@media (width >= 1200px) {
    .footer_container {
        width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }
}

.footer-copyright {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 1.4;
    text-align: center;
}
@media (width >= 768px) {
    .footer-copyright {
        height: 30px;
        padding-left: 20px;
        padding-right: 20px;
    }
}
/* @group ページ共通
------------------------------------------------------*/

.page-contents {
    position: relative;
    min-height: 800px;
    background-color: #FFFFFF;
}
@media (width >= 768px) {
    .page-contents {
        min-height: 1100px;
    }
}

@media (width >= 1200px) {
    .page-contents {
        min-height: 1190px;
    }
}

/* 既存の垂直マージンを削除 */
.page-contents > * {
	margin-top: 0;
	margin-bottom: 0;
}

/* 連続する要素だけに上方向のマージンを適用 */
.page-contents > * + * {
	margin-top: 20px;
}

.page-title {
    position: relative;
    display: flex;
    align-items: center;
    background-image: linear-gradient(to right bottom, rgba(0, 100, 110, 0.85) 20%, rgba(193, 229, 249, 0.1) 100%), url(../images/page_title_bg.jpg);
    background-size: 100% 100%, cover;
    background-repeat: no-repeat;
    background-position: center top, center bottom;
    padding: 20px 10px;

    &.en {
        background-image: linear-gradient(to right bottom, var(--color_secondary) 0%, #000000 50%, #000000 50%, #000000 100%);
        background-image: linear-gradient(to right bottom, rgba(247, 195, 69, 0.75) 40%, rgba(193, 229, 249, 0.3) 100%), url(../images/page_title_bg.jpg);
    }
}

@media (width >= 768px) {
    .page-title {
        padding: 30px 15px 27px;
    }
}

.page-title > span {
    position: relative;
    display: block;
    padding-left: 10px;
	font-size: clamp(1.375rem, 1rem + 1.2vi, 1.75rem);
	font-weight: bold;
    font-feature-settings: "palt";
    color: #FFFFFF;

    @media (width >= 768px) {
        padding-left: 20px;
    }
    
}



.page-body {
    padding: 0px 10px 30px 10px;
}
@media (width >= 768px) {
    .page-body {
        padding: 0px 20px 40px 20px;
    }
}

/* 既存の垂直マージンを削除 */
.page-body>* {
    margin-top: 0;
    margin-bottom: 0;
}

/* 連続する要素だけに上方向のマージンを適用 */
.page-body>*+* {
    margin-block-start: 20px;
}

.page-body > section > * + * {
    margin-top: 15px;
}

/* 見出し */
.heading_h3 {
	position: relative;
	padding: 1em .75em 1em 1em;
    margin-bottom: 10px;
    text-indent: -.75em;
}
.heading_h3::after {
	position: absolute;
	top: .5em;
	left: 0;
	content: '';
	width: 6px;
	height: -webkit-calc(100% - 1em);
	height: calc(100% - 1em);
	background-color: var(--color_primary);
	border-radius: 4px;
}

.heading_h3 > span {
    margin-left: 0.5em;
    font-size: clamp(1.25rem, 1rem + 0.8vi, 1.5rem);
    font-weight: bold;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.2);
    color: #000000;
}

.heading_h3 > span span {
    display: block;
    font-size: 0.8em;
    margin-left: 0.75em;
}

.heading_h4 {
    padding: .5em .7em .5em 0;
    color: #000000;
}

.heading_h4 > span {
    font-size: clamp(1rem, 0.875rem + 0.4vi, 1.125rem);
    font-weight: bold;
    font-feature-settings: "palt";
}

.heading_h4 > span::before {
    font-family: "Font Awesome 5 Free";
    content: "\f14a";
    font-weight: 900;
    font-size: 0.8em;
    padding-right: .7rem;
    color: var(--color_primary);
    position: relative;
    bottom: 1px;
}

.heading_h4 >span >span.required {
    color: #e50012;
}
.h4heading02 {
	grid-column: 1 / -1;
	grid-row: 1;
	border-bottom:1px solid #003F8F;
	text-align:center;
	padding-bottom:10px;
}
.h4heading02 span {
	font-size:16px;
	font-weight:600;
}

.under_construction {
    text-align: center;
    font-size: 1.1em;
    padding-top: 50px;
}


/* アイコン
--------------------------*/

.exlink::after {
    content: "\f360";
    /* fa-external-link-square-alt (solid) */
    font-family: "Font Awesome 5 Free";
    font-size: 0.85em;
    font-weight: 900;
    margin-left: .5em;
}


.download:before {
    content: '\f019';
    /* fa-download (solid) */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: .5em;
    margin-right: .5em;
}

.pdf:after {
    content: '\f1c1';
    /* fa-file-pdf (solid) */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}

.word:after {
    content: '\f1c2';
    /* fa-file-word (solid) */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}

.ppt:after {
    content: '\f1c4';
    /* fa-file-powerpoint (solid) */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}

.excel:after {
    content: '\f1c3';
    /* fa-file-excel (solid) */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}

.mail:after {
    content: '\f0e0';
    /* fa-envelope (solid) ※v4の\f003はv5では別グリフ */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}

.cipher a:before {
    content: '\f023';
    /* fa-lock (solid) */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: .5em;
}

.check::before {
    content: '\f14a';
    /* fa-check-square (solid) ※v4のcheck-square-o(\f046)に相当 */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: .3em;
}

/*罫線*/

hr {
    border: none;
    border-top: 1px solid #ccc;
}

hr.hr-full {
    margin: 0 .75em 1.5em;
    box-shadow: 1px 1px 1px rgba(0, 71, 157, 0.2);
}

/* ハイライト */
.text-highlight {
    background: linear-gradient(transparent 40%, #f6ff5f 40%);;
}

.inline {
    display: inline;
}

/*文字詰め*/

.feature {
    font-feature-settings: "palt";
}

/*囲み*/

.enclosure01 {
    border: 1px;
    border-style: solid;
    padding: 0.75em 1em;
}

.enclosure02 {
    display: inline-block;
    border: 1px;
    border-style: solid;
    padding: .5em 1em;
}

.enclosure-style01 {
    border-color: #DDDDDD;
    background: #FFFFFF;
}

.enclosure-style02 {
    border: 3px solid rgba(245, 200, 200, 0.4);
    background: rgba(245, 200, 200, 0.1);
}
.enclosure-style03 {
	border: 3px solid #ff0000;
	background: #FFFFFF;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;

}


/*リストスタイル*/
.list-style01 {
    margin-left: 2em;
    margin-right: 2em;
    font-size: clamp(0.875rem, 0.818rem + 0.242vw, 1rem);
}

.list-style01 li {
    margin-bottom: .3em;
}

.list-style {
    list-style-position: outside;
    padding-left: 1.8em;
}

.list-style > * + * {
    margin-top: 0.25em;
}

.list-disc {
    list-style-type: disc;
}

.list-num {
    list-style-type: decimal;
}

.list-num2 {
    list-style-type: decimal-leading-zero;
}

/* 方法1: text-indent と padding-left の組み合わせ */
.asterisk {
    padding-left: 1.2em;
    text-indent: -0.9em;
}

/* 方法2: table レイアウトを使用 */
.kome_ja > * {
    display: table;
    width: 100%;
}

.kome_ja > *:before {
    display: table-cell;
    content: "※";
    width: 1em;
}
/* 英語　* */
.kome_en > * {
	display:table;
	width: 100%;
	
	&:before {
		display: table-cell;
		content: "*";
		width: 1em;
	}
}

/*表組み*/
.tbl-sp {
    overflow-x: auto;
}

.tbl-sp table {
    min-width: 690px;
}
.tbl-width100 {
    width: 100%;
}

.tbl-width50 {
    width: 50%;
}

.tbl-style01 thead th {
    background-color: #DDD;
    border: 1px #CCCCCC;
    border-style: solid;
    padding: .5em;
}

.tbl-style01 tbody th,
.tbl-style01 tbody td {
    border: 1px #CCCCCC;
    border-style: solid;
}

.tbl-style01 tbody th {
    background-color: #EEEEEE;
    padding: .5em;
}
.tbl-style01 tbody td {
    background-color: #FFFFFF;
    padding: .5em;
}

.tbl-style02 tbody th,
.tbl-style02 tbody td {
    border: 1px #FFFFFF;
    border-style: solid;
}

.tbl-style02 tbody th {
    background-color: #FFFFFF;
    padding: .5em;
}

.tbl-style02 tbody td {
    background-color: #FFFFFF;
    padding: .5em;
}

.th-c-m th {
    text-align: center;
    vertical-align: middle;
}

.th-l-m th {
    text-align: left;
    vertical-align: middle;
}

.th-l-t th {
    text-align: left;
    vertical-align: top;
}

.td-c-m td {
    text-align: center;
    vertical-align: middle;
}

.td-l-m td {
    text-align: left;
    vertical-align: middle;
}

.td-l-t td {
    text-align: left;
    vertical-align: top;
}

/* ボタン */
.button_container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: 30px;
	margin-bottom: 30px;

    @media (width >= 768px) {
        flex-direction: row;
    }
}
.button_jsmo2027 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 350px;
	min-height: 50px;
	padding: 12px 20px;
	box-sizing: border-box;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	border-radius: 4px;
	transition: all 0.3s ease;
	cursor: pointer;
	line-height: 1.2;
}

.button_jsmo2027:hover {
	text-decoration: none;
}

.button_jsmo2027.primary {
	background-color: #0f2350;
	color: #ffffff;
	border: 2px solid #0f2350;
}

.button_jsmo2027.primary:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	filter: brightness(1.1);
}

.button_jsmo2027.secondary {
	background-color: var(--color_secondary);
	color: #ffffff;
	border: 2px solid var(--color_secondary);
}

.button_jsmo2027.secondary:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	filter: brightness(1.1);
}
.button_jsmo2027.tertiary {
	background-color: var(--color_tertiary);
	color: #ffffff;
	border: 2px solid var(--color_tertiary);
}

.button_jsmo2027.tertiary:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	filter: brightness(1.1);
}

/* 学術集会について */

.society_president {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px dotted #000000;
    padding-bottom: 20px;

    @media (width >= 768px) {
        padding: 0 20px 20px 20px;
        flex-direction: row-reverse;
        justify-content: flex-start;
        align-items: flex-end;
        gap: 20px;
    }

    & > img {
        width: 150px;
        height: 200px;
        object-fit: cover;
    }

    & > figcaption {
        font-size: 15px;
        text-align: center;
        font-feature-settings: "palt";

        @media (width >= 768px) {
            text-align: right;
        }

        & > .president_name {
            font-size: 18px;
        }
    }
   
}

.salutation p {
    text-indent: 1em;
    margin-bottom: 0.75em;
    font-size: clamp(0.875rem, 0.813rem + 0.313vw, 1rem);
    line-height: 1.8;

    @media (min-width: 768px) {
        margin-bottom: 1em;
        padding: 0 .5em;
    }

    &.en p {
        text-indent: 0;
    }
}

.overview-list {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 1.5;
    font-feature-settings: "palt";

    @media (width >= 768px) {
        align-items: baseline;
    }
  }
  
  .overview-list dt {
    width: 100%;
    min-height: 30px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    background-color:#0f2350;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    color: #FFFFFF;
  }
  
  .overview-list dd {
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    margin-bottom: 15px;
    margin-left: 0;
  }
  
  .overview-list dd ul {
    list-style: none;
    padding-left: 0;
  }

  @media (width >= 768px) {
    .overview-list {
      flex-direction: row;
      flex-wrap: wrap;
      row-gap: 30px;
      column-gap: 20px;
    }
    
    .overview-list dt {
      width: 130px;
      height: 30px;
      vertical-align: top;
      justify-content: center;
    }
    
    .overview-list dd {
      flex: 0 0 calc(100% - 150px);
      margin-bottom: 0;
    }
  }