@charset "UTF-8";
html {
    height: 100%;
    font-size: 62.5%;
    background-color: #FFFFFF;
    animation: loading 1s ease;
    scroll-padding-top: 120px;
    scroll-behavior: smooth;
}
@keyframes loading {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
#body {
    height: 100%;
    font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium ", "Yu Gothic Medium", "Yu Gothic", sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 2;
    letter-spacing: 0.1em;
    text-align: justify;
    word-break: break-all;
    color: #666666;
    font-feature-settings: "palt";
}
#body .body_inner {
    min-height: 100%;
    width: 100%;
    position: relative;
}
#main {
    padding: 140px 0 466px;
}
@media (min-width:760px) {
    #main {
        padding-bottom: 334px;
    }
}
@media (min-width:960px) {
    #main {
        padding-bottom: 274px;
    }
}
#header {
    position: fixed;
    z-index: 100;
    width: 100%;
    padding: 20px;
    border-bottom: solid 1px #D7D7D7;
    background-color: #FFFFFF;
}
#header .header_inner {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#header .hamburger_button_area {
    margin-right: 20px;
}
#header #hamburger_button_flag {
    display: none;
}
#header .hamburger_button {
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    cursor: pointer;
    transition: all .3s;
    position: relative;
}
#header .hamburger_button_line {
    position: absolute;
    display: block;
    height: 2px;
    width: 40px;
    background-color: #3C3C3C;
    transition: all 0.3s;
}
#header .hamburger_button_line:first-child {
    transform: translateY(-10px);
}
#header .hamburger_button_line:last-child {
    transform: translateY(10px);
}
#header #hamburger_button_flag:checked~.hamburger_button .hamburger_button_line:first-child {
    transform: rotate(45deg);
}
#header #hamburger_button_flag:checked~.hamburger_button .hamburger_button_line:nth-child(2) {
    opacity: 0;
}
#header #hamburger_button_flag:checked~.hamburger_button .hamburger_button_line:last-child {
    transform: rotate(-45deg);
}
#header #header_nav {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    text-align: start;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background-color: rgb(255, 255, 255, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
#header #hamburger_button_flag:checked~#header_nav {
    opacity: 1;
    visibility: visible;
}
#header .nav_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: 1040px;
    padding: 20px;
    margin: 0 auto;
}
#header .nav_list {
    width: 49%;
    margin-bottom: 20px;
}
#header .nav_item {
    margin-bottom: 12px;
}
#header .nav_item:last-child {
    margin-bottom: 0;
}
#header .info_area {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
#header .time {
    margin-bottom: 20px;
}
#header .sns {
    display: flex;
}
#header .sns a {
    display: block;
    height: 20px;
    width: 20px;
    margin-right: 20px;
}
#header .sns a:last-child {
    margin-right: 0;
}
#header .sns img {
    height: 100%;
    width: 100%;
}
#header .copyright {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 1rem;
}
#header .logo_area {
    z-index: 10;
    margin-right: 20px;
}
#header .suzuyadesign {
    display: block;
    height: 40px;
    max-width: 103.33px;
    margin: 0 auto;
}
#header .suzuyadesign img {
    height: 100%;
    width: 100%;
}
#header .contact_button_area {
    z-index: 10;
    margin-left: auto;
}
@media (min-width:760px) {
    #header .hamburger_button_area,
    #header .logo_area,
    #header .contact_button_area {
        width: 32%;
        margin: 0;
    }
    #header .hamburger_button_area {
        margin-right: 0;
    }
    #header .contact_button_area .link_button {
        margin-right: 0;
    }
    #header .nav_list,
    #header .info_area {
        width: 32%;
    }
    #header .nav_list {
        margin-bottom: 0;
    }
}
@media (max-height:490px) {
    #header .nav_list,
    #header .info_area {
        width: 32%;
    }
    #header .nav_list {
        margin-bottom: 0;
    }
}
@media (hover: hover) and (pointer: fine) {
    #header .hamburger_button:hover {
        opacity: 0.6;
    }
}
section {
    width: 100%;
    margin-bottom: 60px;
}
.section_inner {
    max-width: 1040px;
    padding: 0 20px;
    margin: 0 auto;
}
.section_inner_660 {
    max-width: 700px;
}
.subsection {
    margin-bottom: 40px;
}
h1,
h2,
h3,
h4,
strong {
    color: #3C3C3C;
    font-weight: 700;
}
a {
    transition: all 0.3s;
}
@media (hover: hover) and (pointer: fine) {
    a:hover {
        opacity: 0.6;
    }
}
.section_title {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 20px;
}
.description,
.bullet_point {
    max-width: 660px;
    margin-bottom: 20px;
}
.bullet_point_item {
    display: flex;
}
.bullet {
    white-space: nowrap;
    margin-right: 4px;
}
.bullet_point_item .description,
.attention .description {
    margin-bottom: 0;
}
.attention {
    display: flex;
}
.annotation,
.caution {
    white-space: nowrap;
    margin-left: 4px;
}
.update {
    color: #D70000;
    font-weight: 400;
    margin-right: 4px;
}
.text_red {
    color: #D70000;
}
.text_bold {
    color: #3C3C3C;
    font-weight: 700;
}
.text_yellow_line {
    color: #3C3C3C;
    font-weight: 700;
    background: linear-gradient(transparent 65%, #FFFF3C 65%);
}
.separate_line {
    display: block;
    height: 1px;
    background-color: #D7D7D7;
}
.separate_line_top {
    margin-bottom: 40px;
}
.img_border {
    border: solid 1px #D7D7D7;
}
.link_text {
    color: #3C3C3C;
    font-weight: 700;
}
.link_text_area {
    width: 100%;
    text-align: right;
}
.link_button {
    display: block;
    height: 40px;
    width: 150px;
    padding: 13px;
    color: #3C3C3C;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    border: solid 1px #3C3C3C;
    cursor: pointer;
    margin: 0 auto;
    transition: all 0.3s;
}
@media (hover: hover) and (pointer: fine) {
    .link_button:hover {
        color: #FFFFFF;
        opacity: 1;
    }
    .link_button_black:hover {
        background-color: #3C3C3C;
    }
    .link_button_green:hover {
        background-color: #06C755;
        border: solid 1px #06C755;
    }
    .link_button_red:hover {
        background-color: #D70000;
        border: solid 1px #D70000;
    }
}
.article_list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.article_item {
    width: 48%;
    margin: 0 4% 20px 0;
}
.article_link {
    border: solid 1px #D7D7D7;
}
.article_item:nth-child(2n) {
    margin-right: 0;
}
.article_item:nth-last-child(-n+2) {
    margin-bottom: 0;
}
.article_link {
    display: block;
}
.article_thumbnail {
    height: 100%;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    margin-bottom: 12px;
}
.article_link .article_title,
.article_link .article_tag,
.article_link .article_date {
    padding: 0 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 12px;
}
.article_link .article_date {
    margin-bottom: 12px;
}
@media (min-width:760px) {
    .article_item {
        width: 23.5%;
        margin: 0 2% 2% 0;
    }
    .article_item:nth-child(2n) {
        margin-right: 2%;
    }
    .article_item:nth-last-child(-n+2) {
        margin-bottom: 2%;
    }
    .article_item:nth-child(4n) {
        margin-right: 0;
    }
    .article_item:nth-last-child(-n+4) {
        margin-bottom: 0;
    }
}
@media (hover: hover) and (pointer: fine) {
    .article_link:hover {
        opacity: 0.6;
    }
}
.ac_list>.ac_item {
    border-top: solid 1px #D7D7D7;
}
.ac_list>.ac_item:last-child {
    border-bottom: solid 1px #D7D7D7;
}
.ac_flag {
    display: none;
}
.ac_parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s;
}
.ac_date {
    line-height: 2;
    margin-right: 8px;
}
.ac_title {
    max-width: 660px;
    color: #3C3C3C;
    font-weight: 700;
    line-height: 2;
}
.ac_button_area {
    margin-left: 12px;
}
.ac_button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 12px;
    width: 12px;
    position: relative;
}
.ac_button_line {
    position: absolute;
    display: block;
    height: 2px;
    width: 12px;
    background-color: #3C3C3C;
    transition: all 0.3s;
}
.ac_button_line:first-child {
    transform: rotate(-90deg);
}
.ac_child {
    display: none;
    padding: 0 12px 12px;
}
.ac_child .description:last-child {
    margin-bottom: 0;
}
@media (hover: hover) and (pointer: fine) {
    .ac_parent:hover {
        opacity: 0.6;
    }
}
#section_contact .text_area {
    text-align: center;
    margin-bottom: 40px;
}
#section_contact .copy,
#section_contact .description_area_inner {
    display: inline-block;
}
#section_contact .copy {
    font-size: 2rem;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 20px;
}
#section_contact .link_button:first-child {
    margin-bottom: 20px;
}
@media (min-width:760px) {
    #section_contact .text_area {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    #section_contact .copy_area,
    #section_contact .description_area {
        width: 49%;
    }
    #section_contact .copy {
        margin-bottom: 0;
    }
    #section_contact .description {
        text-align: justify;
    }
    #section_contact .link_button_area {
        display: flex;
    }
    #section_contact .link_button:first-child {
        margin: 0 20px 0 0;
    }
    #section_contact .link_button:last-child {
        margin: 0;
    }
}
#footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #3C3C3C;
}
#footer .footer_inner {
    position: relative;
}
#footer #footer_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: 1040px;
    padding: 20px;
    text-align: start;
    margin: 0 auto;
}
#footer .logo_area {
    width: 100%;
    margin-bottom: 20px;
}
#footer .suzuyadesign {
    display: block;
    height: 40px;
    max-width: 103.33px;
    color: #FFFFFF;
}
#footer .suzuyadesign img {
    height: 100%;
    width: 100%;
}
#footer .nav_list {
    width: 49%;
    margin-bottom: 20px;
}
#footer .nav_item {
    margin-bottom: 12px;
}
#footer .nav_item:last-child {
    margin-bottom: 0;
}
#footer .info_area {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-bottom: 30px;
}
#footer .time {
    color: #FFFFFF;
    margin-bottom: 20px;
}
#footer .sns {
    display: flex;
}
#footer .sns a {
    display: block;
    height: 20px;
    width: 20px;
    color: #FFFFFF;
    margin-right: 20px;
}
#footer .sns a:last-child {
    margin-right: 0;
}
#footer .sns img {
    height: 100%;
    width: 100%;
}
#footer .copyright {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: #FFFFFF;
    font-size: 1rem;
}
#footer .link_text {
    color: #FFFFFF;
}
@media (min-width:760px) {
    #footer .nav_list {
        margin-bottom: 30px;
    }
    #footer .nav_list,
    #footer .info_area {
        width: 32%;
    }
}
@media (min-width:960px) {
    #footer .logo_area,
    #footer .nav_list,
    #footer .info_area {
        width: 23.5%;
    }
}
img {
    pointer-events: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -moz-touch-callout: none;
    -webkit-touch-callout: none;
}
@media print {
    #body {
        display: none;
    }
}
@media (min-width:760px) {
    #section_404 .link_button {
        margin: 0;
    }
}
.fadein {
    animation: fadeIn linear forwards;
    animation-timeline: view();
    animation-range: entry -100% cover 30%;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    } }