@charset "utf-8";

html {
    text-decoration: none;
    font-family: roboto, sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #222;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 23px;
}

body {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    background: #fff;
}

main {
    margin: 0 auto;
}

ul,
li {
    list-style: none;
    padding: 0;
}

img {
    max-width: 100%;
}

a,
button {
    text-decoration: none;
    cursor: pointer;
    color: #222;
}

div,
main,
p,
span,
footer,
header,
main,
nav,
section {
    display: block;
    margin: 0 auto;
}

p {
    font-size: 15px;
}

br.spc {
    display: block;
    content: "";
    margin: 7px 0;
}

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

    .sp {
        display: none;
    }
}

/* ------------------------------------------------------
　animation
  ------------------------------------------------------ */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100%;
    }
}

/* ------------------------------------------------------
    sp-view
  ------------------------------------------------------ */
@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    p {
        font-size: 14px;
        line-height: 1.8em;
    }
}

/*===============
　header
    ===============*/
header {
    width: 100%;
    padding: 1.5rem 20px;
    position: fixed;
    top: 0;
    background: #fff;
    z-index: 3;
    height: 35px;
}

.hd_nav {
    display: flex;
    margin-bottom: 20px;
}

.hd_nav_logo {
    position: relative;
    text-align: center;
    top: -20px;
    left: 0;
}

.hd_nav_logo p {
    font-size: 10px;
}


ul {
    padding-bottom: 10px;
    margin-top: 0px;
}

ul.pc,
.hd_link {
    display: inline-flex;
}

ul.pc {
    margin-left: 30px;
}

ul.pc li {
    margin: 0 15px;
    font-size: 12px;
}

.hd_link {
    text-align: right;
    margin-right: 40px;
}

.hd_link li {
    display: inline-block;
    width: 38px;
    height: 45px;
}

.hd_link ul {
    margin-top: 10px;
}


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

    ul.pc,
    .hd_link li {
        display: none;
    }

    #header {
        padding-left: 0;
    }

    .hd_nav {
        display: block;
    }

    .hd_nav_logo {
        top: -10px;
    }

    a.hd_logo img {
        max-width: 200px;
        display: block;
        margin: 0 auto;
    }
}

/*===============
        ハンバーガーボタン　
        ===============*/
.hamburger {
    display: none;
    position: relative;
    position: fixed;
    z-index: 300;
    left: 5px;
    top: 20px;
    width: 38px;
    height: 38px;
    cursor: pointer;
    text-align: center;
    padding: 7px;
    z-index: 100;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 27px;
    height: 3px;
    left: 13px;
    border-radius: 50px;
    background: #222;
    transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 16px;
}

.hamburger span:nth-child(2) {
    top: 23px;
}

.hamburger span:nth-child(3) {
    top: 30px;
}

/* --------------------------
    ナビゲーションドロップダウンの指定 
    ----------------------------*/
nav ul ul {
    display: block;
    margin: 0;
}

nav ul li {
    position: relative;
}

nav ul li a {
    display: block;
    text-decoration: none;
    padding: 10px 0px;
    transition: all .3s;

}

nav ul li a:hover,
.has-child a:hover {
    color: #D0D5D4;
}

/* menu/price横の矢印 */
nav ul li.has-child::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 15px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #999;
    border-right: 2px solid #999;
    transform: rotate(135deg);
}

/*下の階層を持っているulの指定*/
nav li.has-child ul {
    /*絶対配置で位置を指定*/
    position: absolute;
    left: 0;
    top: 20px;
    z-index: 4;
    /*形状を指定*/
    background: rgba(255, 255, 255, 0.8);
    width: 120px;
    /*はじめは非表示*/
    visibility: hidden;
    opacity: 0;
    /*アニメーション設定*/
    transition: all .3s;
    /* padding: 10px 0; */
    text-align: center;
    margin-top: 20px;
    padding: 0;
    margin: 20px 0 0 0;
}

nav li.has-child ul li {
    border: 1px solid #D0D5D4;
}

/*hoverしたら表示*/
nav li.has-child:hover>ul,
nav li.has-child ul li:hover>ul,
nav li.has-child:active>ul,
nav li.has-child ul li:active>ul {
    visibility: visible;
    opacity: 1;
}

nav li.has-child ul li {
    margin: 0;
}

nav li.has-child ul li a {
    color: #222;
    border-bottom: solid 1px rgba(255, 255, 255, 0.6);
}

nav li.has-child ul li:last-child a {
    border-bottom: none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active {
    /* background: #D0D5D4; */
    background: #fff;
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav ul li a {
        padding: 0;
        font-size: 13px;
    }

    nav li.has-child ul,
    nav li.has-child ul ul {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        visibility: visible;
        /*JSで制御するため一旦表示*/
        opacity: 1;
        /*JSで制御するため一旦表示*/
        display: none;
        /*JSのslidetoggleで表示させるため非表示に*/
        transition: none;
        /*JSで制御するためCSSのアニメーションを切る*/
        background-color: #D0D5D4;
    }

    nav li.has-child ul li {
        border: 1px solid #fff;
    }

    nav li.has-child ul li a {
        border-bottom: none;
    }

    nav li.has-child ul li a:hover,
    .has-child a:hover {
        color: #D0D5D4;
    }

    /*矢印の位置と向き*/

    nav ul li.has-child::before {
        left: 90px;
        top: 25px;
    }

    nav ul ul li.has-child::before {
        transform: rotate(135deg);
        left: 20px;
    }

    nav ul li.has-child.active::before {
        transform: rotate(-45deg);
    }
}

/* ==============
    sp_menu
    =================*/
.sp_menu_wrap {
    position: fixed;
    z-index: 2;
    left: 0;
    top: 74px;
    background-color: #fff;
    width: 80%;
}

.globalMenuSp {
    text-align: center;
}

.globalMenuSp ul {
    margin-top: 0;
}

.globalMenuSp ul li {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid #E2E2E2;
}

.globalMenuSp ul li:first-child {
    border-top: 1px solid #E2E2E2;
}

.globalMenuSp ul li:last-child {
    border-bottom: none;
}

.hd_link_sp {
    margin-bottom: 30px;
}

.hd_link_sp ul {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.hd_link_sp ul li a {
    display: block;
    padding: 20px 15px;
}

.btn_close {
    display: flex;
    text-align: center;
    height: 60px;
    background-color: #D0D5D4;
}

.btn_close p {
    margin: 0 auto;
    font-size: 19px;
    line-height: 60px;
    margin-left: 0;
}

.btn_close .cross {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
    background-color: #D0D5D4;
    color: #222;
    margin-top: 2px;
    margin-right: 1px;
    left: -5px;
}

.btn_close .cross::before,
.btn_close .cross::after {
    content: "";
    display: block;
    width: 70%;
    height: 5px;
    transform: rotate(45deg);
    transform-origin: 0% 200%;
    position: absolute;
    background-color: #02040A;
}

.btn_close .cross::after {
    transform: rotate(-45deg);
    transform-origin: 100% 200%;
    left: auto;
    right: 14%;
}

.globalMenuSp ul li a:hover,
.globalMenuSp .has-child a:hover {
    color: #999;
}

/* -------------------
  *アニメーション部分
----------------------*/
.sp_menu_wrap {
    transform: translateX(-100%);
    transition: all .5s ease-in-out;
}

.sp_menu_wrap.is-active {
    transform: translateX(0);
}

/* =============
   *main
===============*/
main {
    text-align: center;
}

section {
    margin-top: 100px;
    text-align: center;
}

h2 {
    position: relative;
}

h2 img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: brightness(0.8);
}

h2 p {
    position: absolute;
    color: #fff;
    font-style: italic;
    font-size: 38px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn_reserve {
    margin: 70px 20% 90px;
}

.btn,
a.btn,
button.btn {
    font-size: 1rem;
    font-weight: 400;
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #212529;
}

a.btn-white {
    overflow: hidden;
    padding: 1.3rem 6rem;
    color: #333;
    border-radius: 0;
    background: #fff;
    border: #333 1px solid;
}

a.btn-white span {
    position: relative;
}

a.btn-white:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -webkit-transform: translateX(-96%);
    transform: translateX(-96%);
    background: #333;
}

a.btn-white:hover:before,
a.btn-black:hover:before {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

a.btn-white:hover {
    color: #fff;
}

.btn {
    position: relative;
}

.btn-white {
    position: relative;
}

.btn-white::after {
    content: "";
    margin: auto;
    position: absolute;
    top: 27px;
    right: 33px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg);
}

a.btn-white::after:hover {
    color: #fff;
}

.menu-box,
.menu-box-tax,
.lite {
    margin: 50px 20% 70px;
}

h3 {
    font-size: 24px;
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
    padding: 13px 0;
    text-align: left;
    line-height: 30px;
    line-height: 23px;
}

.small {
    font-size: 14px;
    white-space: nowrap;
}

table,
th,
td {
    margin: 0 auto;
    border-collapse: collapse;
    border: solid 1px #B4B4B4;
}

.red {
    color: red;
}

table {
    width: 100%;
}

th,
td {
    padding: 10px 20px;
}

.menu-item_2 th {
    width: 50%;
}

th img {
    width: 100px;
}

.menu-image {
    display: flex;
    text-align-last: left;
    margin-top: 20px;
    margin-bottom: 50px;
}

.menu-image img {
    width: 220px;
    height: 200px;
    object-fit: cover;
}

h4 {
    font-size: 18px;
    padding-bottom: 10px;
    border-bottom: solid 2px #333;
    text-align: left;
    margin: 0 0 13px;
}

h5 {
    text-align: left;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 20px;
    white-space: nowrap;
}

h6 {
    font-size: 16px;

}

.menu-info {
    width: 100%;
    margin-left: 25px;
}

.menu-info p {
    font-size: 12px;
}

.topcoat p {
    text-align: left;
    margin: 30px 0 35px 25px;
}

.topcoat_info {
    display: flex;
    margin-bottom: 35px;
}

.topcoat_info img {
    width: 220px;
    height: 200px;
    object-fit: cover;
}

.menu-detail th {
    padding: 10px;
    background-color: #a09e9e;
    color: #fff;
    text-align: center;
    font-size: 14px;
}

.menu-detail td {
    font-size: 14px;
}

.tax {
    text-align: right;
    font-size: 14px;
    margin-top: 50px;
}


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

    h3 {
        font-size: 17px;
        padding: 10px 0;
    }

    .mv img {
        height: 210px;
        width: 100%;

    }

    .introduction p {
        padding: 40px 32px 0px;
    }

    h2 img {
        height: 145px;
        width: 100%;
    }

    h2 p {
        font-size: 26px;
        position: absolute;
        font-style: italic;
    }

    .btn,
    a.btn,
    button.btn {
        font-size: 0.9rem;
    }

    a.btn-white {
        padding: 1rem 5rem;
    }

    .btn-white,
    .btn-black {
        margin: 25px auto;
    }

    .btn-white::after {
        top: 23px;
        right: 22px;
        width: 8px;
        height: 8px;
    }

    .menu-box,
    .lite,
    .btn_reserve {
        margin: 32px 3% 40px;
    }

    .menu-image {
        flex-direction: column;
    }

    .menu-image img {
        margin: 0 auto;
        height: 224px;
        width: 100%;
        margin-bottom: 13px;
    }

    h4 {
        margin-top: 30px;
        font-size: 20px;
    }

    h5 {
        font-size: 16px;
    }

    .menu-info,
    .after-service {
        margin-left: 0;
    }

    th,
    td {
        padding: 10px 6px;
    }

    .topcoat_info {
        display: block;
    }

    .topcoat_info img {
        width: 100%;
    }

    .notice-wrap {
        margin-top: 150px;
    }

    .notice p {
        font-size: 15px;
    }

    .notice {
        margin: 100px 5% 80px;
    }

    .inquiry {
        text-align: center;
    }

    .inquiry ul {
        display: block;
    }

    .inquiry ul li.contact-btn {
        margin: 0 70px;
    }

    .contact-btn {
        padding: 7px 20px 9px;
    }

    .contact-btn p {
        font-size: 24px;
    }

    .icon {
        display: flex;
        margin: 50px 40px;
        justify-content: space-around;
    }

    .menu-item .size {
        font-size: 10px;
    }

    th {
        white-space: nowrap;
        /* 改行をさせない */
    }

    th img {
        width: 70px;
        vertical-align: middle;
        margin-right: 2px;
        /* 0〜4pxくらいで調整可能 */
        height: auto;
        /* 必要に応じて高さ調整 */
    }

    th .size {
        vertical-align: middle;
    }

}

@media screen and (max-width: 480px) {
    .btn_reserve {
        display: block;
    }

}

/*===============
　footer
===============*/
footer {
    display: block;
    width: 100%;
    font-size: 12px;
}

.foot_wrap {
    display: flex;
    margin: 0 auto;
    max-width: 90%;
    padding-bottom: 50px;
}

.foot_wrap div,
.foot_wrap ul {
    margin: 0 auto;
}

.fw_left,
.fw_center,
.fw_right {
    padding: 0 25px;
}

.fw_left {
    width: 20%;
}

.foot_wrap .ft_logo img {
    display: block;
    width: 100%;
}

.foot_wrap .ft_sns {
    margin: 0;
}

.foot_wrap .ft_sns ul {
    display: flex;
}

.foot_wrap .ft_sns li {
    display: inline-flex;
    margin: 0 auto;
    justify-content: space-evenly;
    align-items: center;
    width: 40px;
}

.foot_wrap .ft_sns li {
    font-size: 30px;
}

.foot_wrap ul.ft_ns {
    column-count: 2;
    font-size: 15px;
}

.ft_ns li {
    padding-bottom: 10px;
}

p.cpl {
    text-align: center;
    font-size: 11px;
    padding-bottom: 2rem;
}

@media screen and (min-width:768px) {
    footer {
        padding-top: 7rem;
        margin-top: 10rem;
    }

    .foot_wrap .ft_sns {
        margin: 0;
    }

    .menu-box {
        border-bottom: 1px solid #ccc;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 768px) {
    footer {
        font-size: 11px;
        line-height: 1.2rem;
        margin-top: 6rem;
    }

    footer p {
        font-size: 11px;
        line-height: 1.8em;
    }

    .foot_wrap {
        display: block;
    }

    .foot_wrap .ft_sns {
        text-align: center;
        width: 90%;
        margin: 0 auto;
    }

    .foot_wrap .ft_logo img {
        width: 100%;
        display: block;
    }

    .foot_wrap ul.ft_ns li {
        margin: 0;
        display: inline-flex;
        justify-content: space-between;
        width: 100%;
        font-size: 13px;
        padding-bottom: 5px;
    }

    .fw_center,
    .fw_right {
        padding-top: 35px;
    }

    .fw_left {
        width: 70%;
        height: auto;
        padding-top: 10px;
    }

    .menu-item {
        position: relative;
        padding-left: 20px;
        /* 縦線との重なり防止用 */
        padding-right: 20px;
    }

    .menu-item::before,
    .menu-item::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 2px;
        background-color: #ccc;
        /* 線の色はお好みで */
        z-index: 1;
    }

    .menu-item::before {
        left: 1px;
        /* 左端から10px内側に線を描く */
    }

    .menu-item::after {
        right: 1px;
        /* 右端から10px内側に線を描く */
    }


}

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

    .foot_wrap,
    .ft_logo img {
        padding-bottom: 3.5rem;
    }
}

.main_sns {
    width: 60%;
    height: auto;
    margin: 80px auto;
}

.main_sns ul {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.main_sns ul li a {
    padding: 20px 15px;
}

/*top明朝体
  .top_wrap_a p , .top_wrap_b p {
    font-family: serif;
  }
  */
.introduction {
    width: 100%;
    text-align: center;
    font-family: sans-serif;
}

/*
.red,
.blue {
    display: inline;
    padding: 2px 4px;
    border-radius: 4px;
    line-height: 1.8;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    text-indent: 0;
}

.red {
    background-color: #f9dada;
}

.blue {
    background-color: #d9e7f5;
}
*/
.effect-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.effect-label {
    border: 1px solid #000;
    padding: 6px 12px;
    font-weight: bold;
    font-size: 14px;
    min-width: 10px;
    text-align: center;
    margin: 0 10px 0 0;
    line-height: 1.4;
    flex-shrink: 0;
}

.effect-text {
    font-size: 12px;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

.underlined {
    display: inline;
    border-bottom: 1px solid #000;
}


@media screen and (max-width: 768px) {
    .table-scroll table {
        width: 100%;
        font-size: 13px;
        /* スマホ用に少し小さめに */
        word-break: break-word;
        table-layout: fixed;
        /* 列幅均等に */
    }

    .table-scroll th,
    .table-scroll td {
        padding: 6px 4px;
    }
}

@media screen and (max-width: 768px) {
    .mobile-break {
        font-size: 13px;
        text-align: center;
        vertical-align: middle;
        line-height: 1.4;
        white-space: normal;
        height: auto;
    }

    .mobile-break .line-sp {
        display: inline-block;
        line-height: 1.4;
        max-width: 100%;
        word-break: break-word;
    }

    .mobile-break .line-pc {
        display: none;
    }

    td {
        font-size: 0.8rem;
    }
}

@media screen and (min-width: 769px) {
    .mobile-break .line-sp {
        display: none;
    }

    .mobile-break .line-pc {
        display: inline;
    }
}

th.mobile-break {
    overflow: visible;
}

/*サービスアイコン*/
.service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 常に5列 */
    gap: 4px;
    max-width: 800px;
    margin: 0 auto;
    margin: 10px;
}

.service-box {
    width: 100%;
    height: 40px;
    /* 高さを固定 */
    background: #ddd;
    color: #999;
    text-align: center;
    font-weight: bold;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    padding: 4px;
    box-sizing: border-box;
    line-height: 1.2;
    text-align: center;
}

/* アクティブ状態 */

.service-box.active {
    background: #210082;
    color: #fff;
}

/*グラデ
.service-box.active {
    background: linear-gradient(to right, #000, #3300cc);
    color: #fff;
}
    */

@media screen and (max-width: 768px) {
    .service-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        /* 常に5列 */
        gap: 2px;
        width: 100%;
        margin: 0 auto;
        margin-top: 10px;
    }

    .service-box {
        width: 100%;
        height: 40px;
        /* 高さを固定 */
        background: #ddd;
        color: #999;
        text-align: center;
        font-weight: bold;
        font-size: 7px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        padding: 2px;
        box-sizing: border-box;
        line-height: 1.2;
        text-align: center;
    }

}

/*コーティング*/
.after-coat-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 40px 0 20px;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.after-coat-title::after {
    content: "";
    display: block;
    width: 50%;
    height: 1px;
    background-color: #004cc5;
    /* 暗めの青 */
    margin: 6px auto 0;
    border-radius: 2px;
}


.after-coat-section {
    margin: 0 auto;
    max-width: 90%;
    width: 800px;
}

.after-coat-section div {
    margin-bottom: 10px;
}

.gradient-line {
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #000, #888, transparent);
    margin-bottom: 20px;
}

.drop-header {
    width: 95%;
    align-items: center;
    align-items: baseline;
    flex-wrap: wrap;
    font-weight: bold;
    font-size: 1.6rem;
    gap: 5px;
    margin-bottom: 15px;
}

.drop-title {
    width: 25%;
    margin: 0;
}

.drop-title .drop-price {
    text-align: center;
}

.drop-keywords {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 3px;
    flex-wrap: nowrap;
    margin: 0 auto;
    margin-top: 10px;
}

.drop-keywords .keyword {
    width: 60px;
    padding: 2px 4px;
    border: 1px solid #333;
    font-size: 9px;
    white-space: nowrap;
    margin: 0;
    box-sizing: border-box;
}

.drop-content {
    width: 95%;
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.drop-price {
    font-weight: bold;
    font-size: 1.3rem;
    white-space: nowrap;
    width: 30%;
    margin: 0;
    text-align: center;
}

.small {
    font-size: 12px;
    line-height: 1.2;
    vertical-align: top;
    /* 行のベースラインを詰める */
    white-space: normal;
    text-align: left;
}

p.wrap-text {
    white-space: normal;
}

.drop-description {
    font-size: 10px;
    line-height: 1.3;
    flex: 1;
    width: 60%;
    margin: 0;
    letter-spacing: 0.05em;
}

.under {
    text-decoration: underline;
}


@media (min-width: 768px) {
    .after-coat-section {
        margin: 0 auto;
        max-width: 90%;
        padding: 40px 30px;
    }

    .drop-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 15px;
    }

    .drop-title {
        width: 30% !important;
        font-size: 1.5rem;
        margin: 0;
        width: auto;
        white-space: nowrap;
    }

    .drop-keywords {
        flex: 1;
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
        margin-top: 0;
        margin-left: 30px;
    }

    .drop-keywords .keyword {
        font-size: 10px;
        padding: 4px 8px;
        width: 72px;
    }

    .drop-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 30px;
        margin-bottom: 100px;
    }

    .drop-price {
        width: 30% !important;
        font-size: 1.4rem;
        width: 180px;
        text-align: center;
    }

    .drop-description {
        font-size: 12px;
        line-height: 1.7;
        letter-spacing: 0.05em;
        width: calc(100% - 200px);
    }

    .after-coat-title {
        font-size: 2rem;
    }

    .after-coat-title::after {
        height: 2px;
        margin-top: 10px;
        background-color: #004cc5;
    }
}
