/* 2024.10- */

/* 2024.10.18
    box-sizing      --> general.css
    body            --> general.css
    top navigation  --> general.css
    icon            --> general.css
    footer(general) --> general.css */

/* 2024.10.27
    category mokuji --> general.css */



/* Main sheet -- so called Container */

.sheet_row {   /* YOKO Narabi */
    background: #CCF0F5;
    width: 100%;
/*    max-width: 1440px; */
    margin: 0 auto;
    padding: 30 0 0 0 ;
    display: flex;
    flex-direction: row;
    border: 0px solid green;    /* for debug */
}

.sheet_column {   /* TATE Narabi */
    background: #CCF0F5;
    width: 100%;
/*    max-width: 1440px; */
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    border: 0px solid green;    /* for debug */
}


/* Contents: Headline/Heading + Text (right side of Main sheet) */

.content {
    width: 100%;
/*    max-width: 1440px; */
    margin: 0 auto;
    color: #000;
    font-family: "Noto Serif JP", Helvetica;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
}

/* Headline/Heading (in Contents) */

.content .headline-border {
    width: 100%;
    margin: 0 auto 40 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 0px solid white;    /* for debug */
}

.content p.headline {
    margin: 0;
    color: #04A7B9;
    font-family: "MFW-PKaishoMCBK1ProN-Bold", serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%; /* 28px */
}

.content p.headline_e {
    margin: 7 0 0 0;
    color: #04A7B9;
    font-family: "Namdhinggo", Helvetica;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 20px */
}

.content .heading {
    margin: 50px auto 0px auto; 
    color: var(--Text-Gray2, #383940);
    font-family: "MFW-PKaishoMCBK1ProN-Bold", serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 36.8px */
}

/* Main text (in Contents) */

.maintext {
    margin: 10 260 0 70;
    color: #000;
    text-align: justify;
    font-family: "MFW-PShinseiKaiCBSK1Pr5N-Regular", serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.4px;    
}

.section {
    margin: 20px auto; 
    color: #000;
}

/* Main text Link decoration */

.maintext a { color: #04A7B9;}

.maintext a:visited { color: #04A7B9;}



