@charset "UTF-8";

/*-----------------------------------------------
  製品紹介

-- 01 ページタイトル/その他調整
-- 02 ページ概要
-- 03 ページ内リンク
-- 04 製品カテゴリ一覧
-- 05 製品個別タイトル
-- 06 NKエステル一覧
-- 07 製品詳細ページ
-- 08 ポリマー関連
-- 09 扉ページ 使用例

------------------------------------------------*/

/*------------------------------------------------
  01 ページタイトル/その他調整
------------------------------------------------*/
.page-title-inner {
    background-image: url('../../images/products/page-title-bg.jpg');
}
.main.bg-rhombus::before {
    top: 1900px;
}
.main.bg-rhombus::after {
    bottom: 360px;
}

/*------------------------------------------------
  02 ページ概要
------------------------------------------------*/
.page-overview-image {
    background-image: url('../../images/products/products_top_pic.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
    width: 100%;
    height: 300px;
}
.page-overview-content {
    margin: auto;
    width: calc(100% - 40px);
}
.page-overview-heading {
    line-height: 1.25em;
}

@media print, screen and (max-width: 900px) {
    .page-overview-image {
        margin: 0 calc(50% - 50vw);
        width: 100vw;
    }
    .page-overview-explanation {
        background-color: rgb(255, 255, 255, .8);
        margin-top: -25%;
        padding: 1em;
    }
}

@media print, screen and (min-width: 768px) {
    .page-overview-content {
        max-width: var(--layout-inner-width);
    }
}

@media print, screen and (min-width: 901px) {
    .page-overview-content {
        margin-top: -60px;
    }
    .page-overview-item {
        display: flex;
        justify-content: space-between;
        gap: 0 30px;
    }
    .page-overview-image {
        margin-left: calc(50% - 50vw);
        padding-left: calc(50vw - 50%);
        height: 556px;
    }
    .page-overview-explanation {
        width: calc(100% + 60px);
        margin-top: 0;
        padding: 0;
    }
}

@media print, screen and (min-width: 1201px) {
    .page-overview-content {
        margin-top: -90px;
    }
    .page-overview-item {
        gap: 0 100px;
    }
}

@media print, screen and (min-width: 1201px) {
    .page-overview-content {
        margin-top: -120px;
    }
}

/*------------------------------------------------
  03 ページ内リンク
------------------------------------------------*/
.anchor-link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

}
.anchor-link-inner {
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    width: calc(100% - 40px);
}
.anchor-link-item {
    width: calc(50% - 10px);
}
.anchor-link-item a {
    display: block;
    font-weight: 900;
    font-size: 1rem;
    color: var(--primary-color);
    background-color: #eaeff1;
    position: relative;
    padding: 20px;
    line-height: 1.25;
}
.anchor-link-item a::before, 
.anchor-link-item a::after {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
}
.anchor-link-item a::before {
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
}
.anchor-link-item a::after {
	background-image: url('../../images/common/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 10px auto;
    transform: translateY(-50%) rotate(90deg);
}

@media print, screen and (min-width: 360px) {
    .anchor-link-item a {
        font-size: 1.2rem;
    }
}

@media print, screen and (min-width: 390px) {
    .anchor-link-item a {
        font-size: 1.4rem;
    }
}

@media print, screen and (min-width: 420px) {
    .anchor-link-item a {
        font-size: 1.6rem;
        padding: 26px;
    }
    .anchor-link-item a::before, 
    .anchor-link-item a::after {
        right: 16px;
        width: 24px;
        height: 24px;
    }
}

@media print, screen and (min-width: 768px) {
    .anchor-link-inner {
        max-width: var(--layout-inner-width);
        margin-top: 80px;
        margin-bottom: 80px;
    }
    .anchor-link-item a {
        font-size: 1.8rem;
    }
    .sp-adjast-br {
        display: none;
    }
    .anchor-link-item a::before, 
    .anchor-link-item a::after {
        right: 20px;
        width: 26px;
        height: 26px;
    }
}

@media print, screen and (min-width: 901px) {
    .anchor-link-inner {
        margin-top: 100px;
        margin-bottom: 100px;
    }
    .anchor-link-item {
        width: calc(100% / 3 - 14px);
    }
    .anchor-link-item a {
        padding: 40px 20px;
    }
    .anchor-link-item a::before, 
    .anchor-link-item a::after {
        width: 30px;
        height: 30px;
        right: 25px;
    }
    .anchor-link-item a::after {
        background-size: 14px auto;
    }
}

@media print, screen and (min-width: 1201px) {
    .anchor-link-inner {
        margin-top: 120px;
        margin-bottom: 120px;
    }
    .anchor-link-item a {
        font-size: 2rem;
        padding: 60px 35px;
    }
    .anchor-link-item a::before, 
    .anchor-link-item a::after {
        width: 36px;
        height: 36px;
        right: 30px;
    }
}

@media print, screen and (min-width: 1401px) {
    .anchor-link-inner {
        margin-top: 140px;
        margin-bottom: 140px;
    }
    .anchor-link-item a {
        font-size: 2.2rem;
    }
}

@media print, screen and (min-width: 1601px) {
    .anchor-link-inner {
        margin-top: 160px;
        margin-bottom: 160px;
    }
    .anchor-link-item a {
        font-size: 2.4rem;
    }
}

/*------------------------------------------------
  04 製品カテゴリ一覧
------------------------------------------------*/
.products-top-block {
    margin-top: var(--header-sp-height-adjust);
    padding-top: var(--header-sp-height);
    margin-bottom: 60px;
}
.products-top-block-inner {
    margin-left: 20px;
    margin-right: 20px;
}
.products-top-block:last-of-type {
    margin-bottom: 40px;
}
.products-top-block-explanation, 
.products-top-block-detail-link {
    margin: 30px 0;
}
.products-top-block-explanation p {
    padding: 0.5em 0;
    font-weight: 700;
    font-size: 1.2rem;
}
.products-top-block-explanation-bold {
    font-weight: 900;
    color: var(--primary-color);
    font-size: 110%;
}
.products-top-block-detail-link-item a {
    background-color: #fff;
    border-bottom: 1px solid var(--primary-color);
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    height: 60px;
    position: relative;
    line-height: 1.2em;
}
.products-top-block-detail-link-item.item-nkester a {
    background-color: var(--primary-color);
    color: #fff;
    font-size: 110%;
    font-weight: 900;
    border-bottom: none;
    margin-bottom: 1.5em;
}
.products-top-block-detail-link-item.item-nkester-top a {
    border-top: 1px solid var(--primary-color);
}
.products-top-block-detail-link-item a span.link-item-center {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.products-top-block-detail-link-item a::before, 
.products-top-block-detail-link-item a::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
}
.products-top-block-detail-link-item a::before {
    background-color: var(--primary-color);
    border-radius: 50%;
}
.products-top-block-detail-link-item.item-nkester a::before {
    background-color: #fff;
}
.products-top-block-detail-link-item a::after {
    background-image: url('../../images/common/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px auto;
}
.products-top-block-detail-link-item.item-nkester a::after {
    background-image: url('../../images/common/arrow-blue.svg');
}

@media print, screen and (min-width: 420px) {
    .products-top-block {
        margin-bottom: 80px;
    }
}

@media print, screen and (min-width: 768px) {
    .products-top-block {
        margin-bottom: 100px;
    }
}

@media print, screen and (min-width: 821px) {
    .products-top-block {
        margin-top: var(--header-pc-height-adjust);
        padding-top: var(--header-pc-height);
    }
    .products-top-block-detail-link-item.item-nkester a {
        margin-left: -30px;
    }
}

@media print, screen and (min-width: 901px) {
    .products-top-block {
        margin-bottom: 120px;
    }
    .products-top-block:last-of-type {
        margin-bottom: 60px;
    }
    .products-top-block-inner {
        margin: auto;
        width: calc(100% - 40px);
        max-width: var(--layout-inner-width);
    }
    .products-top-block-contents {
        display: flex;
        justify-content: space-between;
        margin-top: 40px;
    }
    .products-top-block-explanation, 
    .products-top-block-detail-link {
        margin: 0;
    }
    .products-top-block-explanation {
        width: calc(60% - 15px);
        max-width: 500px;
    }
    .products-top-block-detail-link {
        width: calc(40% - 15px);
        max-width: 460px;
    }
    .products-top-block-explanation p {
        padding: 1em 0;
        font-size: 1.4rem;
    }
    .products-top-block-detail-link-item a {
        height: 100px;
    }
    .products-top-block-detail-link-item a span.link-item-center {
        left: 40px;
    }
    .products-top-block-detail-link-item a::before, 
    .products-top-block-detail-link-item a::after {
        width: 32px;
        height: 32px;
    }
    .products-top-block-detail-link-item a::after {
        background-size: 14px auto;
    }
}

@media print, screen and (min-width: 1201px) {
    .products-top-block {
        margin-bottom: 160px;
    }
    .products-top-block:last-of-type {
        margin-bottom: 80px;
    }
    .products-top-block-explanation p {
        font-size: 1.6rem;
    }
}

@media print, screen and (min-width: 1401px) {
    .products-top-block {
        margin-bottom: 200px;
    }
    .products-top-block:last-of-type {
        margin-bottom: 120px;
    }
}

@media print, screen and (min-width: 1601px) {
    .products-top-block {
        margin-bottom: 240px;
    }
    .products-top-block:last-of-type {
        margin-bottom: 160px;
    }
}

/*------------------------------------------------
  05 製品個別タイトル
------------------------------------------------*/
.product-name {
    height: 200px;
    position: relative;
    background-color: #e7f3f8;
    z-index: -1;
}
.product-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 62px;
    background-color: #fff;
    z-index: -1;
}
.product-name-outer {
    margin: auto 20px;
    padding-top: 30px;
    height: 100%;
}
.product-name-inner {
    margin: auto 20px;
    height: 100%;
}
.product-name-bg-en {
	position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
	font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 5rem;
    text-transform: uppercase;
    line-height: 1.25;
    color: #e9f5fa;
    z-index: 2;
}
.product-name-item {
    background-color: #fff;
    height: 100%;
    margin-left: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    position: relative;
    display: flex;
    align-items: center;
    border-top-right-radius: 50px;
    box-shadow: 20px -20px 40px rgba(var(--primary-color-rgb), 0.1);
}
.product-name-h2 {
    font-weight: 900;
    font-size: 2rem;
    line-height: 0.75em;
    position: relative;
    z-index: 3;
    margin-top: -1em;
    color: var(--primary-color);
}
.product-name-h2 span {
    font-size: 1.2rem;
}

@media print, screen and (min-width: 360px) {
    .product-name-h2 {
        font-size: 2.4rem;
    }
}

@media print, screen and (min-width: 390px) {
    .product-name-h2 {
        font-size: 2.6rem;
    }
}

@media print, screen and (min-width: 420px) {
    .product-name-h2 {
        font-size: 2.8rem;
    }
    .product-name-h2 span {
        font-size: 1.4rem;
    }
}

@media print, screen and (min-width: 768px) {
    .product-name {
        height: 230px;
    }
    .product-name::after {
        height: 71px;
    }
    .product-name-bg-en {
        font-size: 6rem;
    }
    .product-name-item {
        border-top-right-radius: 60px;
    }
    .product-name-h2 {
        font-size: 3.2rem;
    }
    .product-name-h2 span {
        font-size: 1.6rem;
    }
}

@media print, screen and (min-width: 901px) {
    .product-name {
        height: 260px;
    }
    .product-name::after {
        height: 81px;
    }
    .product-name-outer {
        margin: auto;
        width: calc(100% - 40px);
        max-width: var(--layout-max-width);
    }
    .product-name-outer {
        padding-top: 45px;
    }
    .product-name-inner {
        margin: auto;
        width: calc(100% - 40px);
        max-width: 1280px;
    }
    .product-name-item {
        margin-left: calc(50% - 50vw);
        padding-left: calc(50vw - 50%);
        border-top-right-radius: 80px;
    }
    .product-name-bg-en {
        font-size: 8rem;
    }
    .product-name-h2 {
        font-size: 3.8rem;
    }
    .product-name-h2 span {
        font-size: 2rem;
    }
}

@media print, screen and (min-width: 1201px) {
    .product-name {
        height: 290px;
    }
    .product-name::after {
        height: 90px;
    }
    .product-name-outer {
        padding-top: 60px;
    }
    .product-name-bg-en {
        font-size: 11rem;
    }
    .product-name-item {
        border-top-right-radius: 100px;
    }
    .product-name-h2 {
        font-size: 4.4rem;
        margin-left: 0;
    }
    .product-name-h2 span {
        font-size: 2.4rem;
    }
}

@media print, screen and (min-width: 1401px) {
    .product-name-h2 {
        margin-left: -100px;
    }
}

@media print, screen and (min-width: 1601px) {
    .product-name-h2 {
        margin-left: -160px;
    }
}

/*------------------------------------------------
  06 NKエステル一覧
------------------------------------------------*/
.product-nkester-list-inner {
    margin: auto 20px;
}
.product-list-table-wrap {
    margin-top: 30px;
    margin-bottom: 40px;
}
.product-list-table {
    width: 100%;
    line-height: 1.5em;
    font-size: 1.2rem;
    background-color: #fff;
}
.product-list-table th, 
.product-list-table td {
    text-align: center;
    vertical-align: middle;
    padding: 0.5em 0.75em;
}
.product-list-table th {
    font-weight: 700;
}
.product-list-table td {
    font-weight: 400;
}
.product-list-table thead th {
    background-color: var(--primary-color);
    color: #fff;
}
.product-list-table tbody th {
    background-color: rgba(0,0,0,0.05);
    color: var(--primary-color);
}
.product-list-table tbody th { /* 追加 */
    padding: 0;
}
.product-list-table tbody th a { /* 追加 */
    display: block;
    width: 100%;
    height: 100%;
}
.product-list-table tbody tr {
    border-bottom: 1px solid var(--primary-color);
}
.product-list-table tbody tr:hover {
    background: rgba(0, 42, 99, 0.15);
}
.product-list-table tbody tr:hover td.td-type {
    background: rgba(255, 255, 255, 1);
}
.product-list-table .ester-type {
    text-align: left;
    font-weight: 700;
    background-color: var(--tertiary-color);
    color: var(--primary-color);
}

/* 製品別構造式画像表示幅（最大幅）指定 */
.product-chemical-formula.item-ester01, 
.product-chemical-formula.item-ester02, 
.product-chemical-formula.item-ester05, 
.product-chemical-formula.item-ester06, 
.product-chemical-formula.item-ester07, 
.product-chemical-formula.item-ester08 {
    max-width: 525px;
}
.product-chemical-formula.item-ester03, 
.product-chemical-formula.item-ester04 {
    max-width: 494px;
}
.product-chemical-formula.item-ester09, 
.product-chemical-formula.item-ester11, 
.product-chemical-formula.item-ester14, 
.product-chemical-formula.item-ester16, 
.product-chemical-formula.item-ester18 {
    max-width: 570px;
}
.product-chemical-formula.item-ester10, 
.product-chemical-formula.item-ester24 {
    max-width: 550px;
}
.product-chemical-formula.item-ester12 {
    max-width: 460px;
}
.product-chemical-formula.item-ester13 {
    max-width: 315px;
}
.product-chemical-formula.item-ester15 {
    max-width: 384px;
}
.product-chemical-formula.item-ester17, 
.product-chemical-formula.item-ester29 {
    max-width: 580px;
}
.product-chemical-formula.item-ester19, 
.product-chemical-formula.item-ester20, 
.product-chemical-formula.item-ester21, 
.product-chemical-formula.item-ester22, 
.product-chemical-formula.item-ester23, 
.product-chemical-formula.item-ester25, 
.product-chemical-formula.item-ester26 {
    max-width: 500px;
}
.product-chemical-formula.item-ester27, 
.product-chemical-formula.item-ester28 {
    max-width: 680px;
}

@media print, screen and (max-width: 900px) {
    .product-list-table-wrap {
        overflow-x: scroll;
    }
}

@media print, screen and (max-width: 767px) {
    .product-list-table {
        min-width: 700px;
    }
    .product-list-table th, 
    .product-list-table td {
        white-space: nowrap;
    }
}

@media print, screen and (min-width: 768px) {
    .product-list-table {
        font-size: 1.4rem;
    }
}

@media print, screen and (min-width: 901px) {
    .product-nkester-list-inner {
        margin: auto;
        width: calc(100% - 40px);
        max-width: var(--layout-inner-width);
    }
    .product-list-table-wrap {
        margin-top: 46px;
        margin-bottom: 60px;
    }
    .product-list-table th, 
    .product-list-table td {
        padding: 1em;
    }
    .product-list-table tbody th a { /* 追加 */
        padding: 1em;
    }
}

/*------------------------------------------------
  07 製品詳細ページ
------------------------------------------------*/
.product-detail .common-block-heading { /* 追加 */
    margin-bottom: 50px;
}
.product-detail-inner {
    margin: auto 20px;
}
.page-move { /* 追加 */
    margin-top: var(--header-sp-height-adjust);
    padding-top: var(--header-sp-height);
    display: block;
}
.product-detail-item {
    margin-bottom: 50px;
}
.product-detail-item:first-of-type {
    margin-top: 30px;
}
.product-detail-item:last-of-type {
    margin-bottom: 30px;
}
.product-detail-item-heading {
    background-color: #f5f5f5;
    padding: 30px 40px;
}
.product-cate {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    background-color: #fff;
    border: 1px solid var(--primary-color);
    padding-left: 0.5em;
    padding-right: 0.5em;
}
.product-detail-name {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
}
.u-top-line {
    position: relative;
    display: inline-block;
}
.u-top-line:after {
    content: "";
    display: block;
    border-top: 1px solid;
    position: absolute;
    top: 3px;
    left: 0;
    width: 100%;
}
.product-detail-item .product-list-table-wrap {
    margin-top: 0;
}
.product-chemical-formula {
    margin: auto;
    width: auto;
    margin-top: 40px;
}
.product-chemical-formula img {
    width: 100%;
    height: auto;
}
.product-list-table figure {
    margin: auto;
}
.product-list-table .img001 {
    width: 70px;
}
.product-list-table .img002 {
    width: 72px;
}
.product-list-table .img003 {
    width: 86px;
}
.product-list-table .img004 {
    width: 66px;
}
.product-list-table .img005 {
    width: 36px;
}
.product-list-table .img006 {
    width: 40px;
}
.product-list-table .img007 {
    width: 46px;
}
.product-list-table .img008 {
    width: 50px;
}
.product-list-table .img009 {
    width: 92px;
}
.product-list-table .w70p {
    width: 70px;
}
.product-list-table .u-tate {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    letter-spacing: 0.5;
    line-height: 2;
    font-weight: 700;
    color: var(--primary-color);
}
.annotation-list {
    line-height: 2;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
}
.annotation-item.item-deco01, 
.annotation-item.item-deco02 {
    display: block;
    position: relative;
    padding: 0 0 0 20px;
}
.annotation-item.item-deco01::before, 
.annotation-item.item-deco02::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.2rem;
    font-weight: 700;
}
.annotation-item.item-deco01::before {
    content: "※";
}
.annotation-item.item-deco02::before {
    content: "●";
}

@media print, screen and (min-width: 768px) {
    .product-detail .common-block-heading { /* 追加 */
        margin-bottom: 60px;
    }
    .page-move { /* 追加 */
        margin-top: var(--header-pc-height-adjust);
        padding-top: var(--header-pc-height);
        display: block;
    }
    .product-detail-item {
        margin-bottom: 60px;
    }
    .product-detail-item:first-of-type {
        margin-top: 50px;
    }
    .product-detail-item:last-of-type {
        margin-bottom: 50px;
    }
    .product-cate {
        font-size: 1.2rem;
    }
    .product-detail-name {
        font-size: 2rem;
    }
    /* NKオリゴ（ウレタンアクリレート）テーブル */
    .product-list-table.oligo1 {
        font-size: 1.3rem;
    }
}

@media print, screen and (min-width: 901px) {
    .product-detail-inner {
        margin: auto;
        width: calc(100% - 40px);
        max-width: var(--layout-inner-width);
    }
    .product-detail-item {
        margin-bottom: 80px;
    }
    .product-detail-item:first-of-type {
        margin-top: 60px;
    }
    .product-detail-item:last-of-type {
        margin-bottom: 60px;
    }
    .product-detail-item-heading {
        padding: 40px 40px;
    }
    .product-chemical-formula {
        margin-top: 60px;
    }
    .product-detail-name {
        font-size: 2.4rem;
    }
    .annotation-list, 
    .annotation-item.item-deco01::before, 
    .annotation-item.item-deco02::before {
        font-size: 1.4rem;
    }
}

@media print, screen and (min-width: 1201px) {
    .product-detail .common-block-heading { /* 追加 */
        margin-bottom: 70px;
    }
    .product-detail-item {
        margin-bottom: 100px;
    }
    .product-detail-item:first-of-type {
        margin-top: 80px;
    }
    .product-detail-item:last-of-type {
        margin-bottom: 80px;
    }
    .product-detail-item-heading {
        padding: 50px 70px;
    }
    .product-cate {
        font-size: 1.4rem;
    }
    .product-chemical-formula {
        margin-top: 80px;
    }
    .product-detail-name {
        font-size: 2.6rem;
    }
    .product-list-table .u-tate {
        font-size: 1.8rem;
    }
}

@media print, screen and (min-width: 1401px) {
    .product-detail .common-block-heading { /* 追加 */
        margin-bottom: 80px;
    }
    .product-detail-item {
        margin-bottom: 120px;
    }
    .product-detail-name {
        font-size: 2.8rem;
    }
}

/*------------------------------------------------
  08 ポリマー関連
------------------------------------------------*/
.detail-polymer {
    margin-top: 30px;
}
.product-list-table-caption {
    font-weight: 500;
    font-size: 1.6rem;
    text-align: center;
    padding: 1em;
    color: #fff;
    background-color: #999;
}
.product-list-table .bgcolor-grey {
    background-color: #fafafa;
    font-size: 1.2rem;
}

.product-list-table.table-polymer01 tr:hover {
    background: rgba(255, 255, 255, 1);
    cursor: auto;
}
.product-list-table.table-polymer01 tr.bgcolor-grey:hover {
    background: rgba(250, 250, 250, 1);
}
.product-list-table .w100p {
    width: 100%;
    margin: 0 auto;
}
.product-list-table .w100p.w50 {
    width: 50px;
}
.product-list-table .w100p.w80 {
    width: 80px;
}
.product-chemical-formula.item-polymer01 {
    max-width: 800px;
}
.product-chemical-formula.item-polymer02 {
    max-width: 680px;
}

@media print, screen and (min-width: 768px) {
    .product-list-table .bgcolor-grey {
        font-size: 1.4rem;
    }
}

@media print, screen and (min-width: 901px) {
    .product-list-table-caption {
        font-size: 2rem;
    }
}

/*------------------------------------------------
  09 扉ページ 使用例
------------------------------------------------*/
.purpose-list {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}
.purpose-item {
    text-align: center;
}
.purpose-item-image {
    margin: auto;
}
.purpose-item-name {
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 0.75em;
    line-height: 1.25em;
}

@media print, screen and (max-width: 767px) {
    .purpose-list {
        gap: 0 20px;
    }
}

@media print, screen and (max-width: 390px) {
    .purpose-list {
        gap: 20px;
        flex-wrap: wrap;
    }
    .purpose-item {
        width: calc(50% - 10px);
    }
    .purpose-item-image {
        max-width: 100px;
    }
}

@media print, screen and (min-width: 901px) {
    .purpose-list {
        margin-top: 60px;
    }
    .purpose-item-name {
        font-size: 1.4rem;
        margin-top: 1em;
    }
}

@media print, screen and (min-width: 1201px) {
    .purpose-list {
        margin-top: 80px;
    }
}
