/*
Theme Name:ニチガスサービスdesign
*/

@charset "utf-8";

/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

body {
    line-height: 1.8;
    letter-spacing: 0.08em;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    font-family: 'Helvetica', 'Verdana', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', Meiryo, sans-serif;
    color: #444;
}

@font-face {
    font-family: 'catchmincho';
    src: url('catchmincho.ttf') format('truetype');
}

@font-face {
    font-family: 'corplogo';
    src: url('Corporate-Logo-Bold-ver2.ttf') format('truetype');
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

#root,
#__next {
    isolation: isolate;
}

ul {
    padding: 0;
}

li {
    list-style: none;

}

a {
    text-decoration: none;
}

a:any-link {
    color: #444;
}

:root {
    --mainc: #56D6D6;
    --subc: #E5B007;
    --acc: #E56C07;
    --pale: #FFF8CF;
    --text: #3C4287;
    --footer: #3c6584;
    --spaces: 1rem;
    --spacem: 2rem;
    --spacel: 4rem;
    --title: 'corplogo', sans-serif;
    --paletext: #4D8AAE;
}

.ib {
    display: inline-block;
}
.underline{
    background:linear-gradient(transparent 50%,var(--subc) 50%);
}
.content {
    max-width: 1200px;
    width: 80%;
    margin: 4rem auto;
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL'0,
        'wght'400,
        'GRAD'0,
        'opsz'24
}

.header_inner {
    padding: var(--spaces);
    max-width: 1200px;
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.logo {
    width: clamp(7.5rem, 2.273rem + 26.14vw, 21.875rem);
}

.header_menu {
    width: 100%;
    display: flex;
    column-gap: 1.5rem;
    margin-top: var(--spaces);
}

.header_menu_list {
    display: flex;
    width: 80%;
    justify-content: space-between;
    align-items: center;
}

.header_menu_list li a {
    position: relative;
}

.header_menu_list li :not(.header_contact_button a)::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    opacity: 0;
    background-color: var(--acc);
}

.header_menu_list li a:hover::before {
    animation: blink .7s linear infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }

    60% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.header_contact_button {
    background-color: var(--subc);
    border-radius: 10px;
    transition: opacity .3s linear, filter .3s linear;
}

.header_contact_button a {
    padding: 1rem;
    color: #fff;
    display: block;
}

.header_contact_button:hover {
    opacity: .7;
    filter: contrast(1.3);
}

#drawer_button {
    width: 70px;
    height: 70px;
    background: linear-gradient(to bottom, #d2f7e9 1%, #56d6d6 55%, #7d9fe8 83%, #7284c9 99%);
    display: none;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: fixed;
    right: 20px;
    top: 10px;
    border-radius: 50%;
    z-index: 10000;
    cursor: pointer;
}

#drawer_button span:not(:last-child) {
    height: 3px;
    width: 55%;
    background-color: #fff;
    transition: transform .3s linear;
}

#drawer_button span:first-child {
    transform: translateY(10px);
}

#drawer_button span:nth-child(2) {
    transform: translateY(10px);
}

#drawer_button span:last-child::before {
    content: 'MENU';
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
}

#drawer_button.open span:first-child {
    transform: translateY(15px) rotate(45deg);
}

#drawer_button.open span:nth-child(2) {
    transform: translateY(0) rotate(-45deg);
}

#drawer_button.open span:last-child::before {
    content: 'CLOSE';
}

#drawer_menu {
    opacity: 0;
    display: none;
    flex-direction: column;
    background-color: #fff;
    transition: opacity .3s linear, display .3s linear allow-discrete;
    position: fixed;
    right: 20px;
    top: 50px;
    z-index: 9999;
    padding: 1.5rem;
    width: 240px;
    min-height: 500px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    border: 5px solid var(--mainc);
}

#drawer_menu.active {
    display: flex;
    opacity: 1;
    @starting-style{
        opacity: 0;
    }
}

.drawer_menu_list {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.drawer_contact_button {
    margin-block: var(--spaces);
    background-color: var(--subc);
    border-radius: 10px;
    transition: opacity .3s linear, filter .3s linear;
}

.drawer_contact_button a {
    padding: 1rem;
    color: #fff;
    display: block;
}

.drawer_contact_button:hover {
    opacity: .7;
    filter: contrast(1.3);
}

.drawer_menu_list li {
    position: relative;
}

.drawer_menu_list li :not(.drawer_contact_button a)::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    opacity: 0;
    background-color: var(--acc);
}

.drawer_menu_list li a:hover::before {
    animation: blink .7s linear infinite;
}

.main_visual {
    aspect-ratio: 16/6;
    position: relative;
    width: 88%;
    height: 100%;
    margin-left: 12%;
    overflow: hidden;
    border: 5px solid var(--mainc);
    border-radius: 20px 0 0 20px;
}

.mvfilter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: brightness(0.8);
    z-index: 100;
}

.top_slider {
    width: 100%;
}

.top_slider .top_slide {
    aspect-ratio: 16/6;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.top_slider .top_slide01 {
    background-image: url(images/N885_hunnenwoagerusakurajima.jpg);
}

.top_slider .top_slide02 {
    background-image: url(images/chuou_ss.jpg);
}

.top_slider .top_slide03 {
    background-image: url(images/nanbu_ss.jpg);
}

.main_visual h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    color: #fff;
    font-family: 'catchmincho', serif;
    font-size: clamp(1.2rem, 0.727rem + 2.36vw, 2.5rem);
    font-weight: 500;
    width: 80%;
}

.intro_wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.intro_img {
    width: 48%;
    position: relative;
}

.intro_text {
    width: 60%;
    margin-left: -10%;
    padding: var(--spaces);
    border: 5px solid var(--subc);
    border-radius: 20px;
    position: relative;
    z-index: -1;
    padding-left: 6rem;
}

.intro_text::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 6rem;
    background-color: #fff;
    width: 40px;
    height: 5px;
}

.intro_text::after {
    content: '';
    position: absolute;
    top: 5rem;
    right: -5px;
    background-color: #fff;
    width: 5px;
    height: 40px;
}

.category {
    color: #fff;
    font-size: 12px;
    padding: .1rem .5rem;
    display: inline-block;
    border-radius: 6px;
    margin-right: 14px;
}

.subtitle_image {
    position: absolute;
    top: 0;
    left: 0;
    font-family: var(--title);
    color: var(--text);
    font-size: 2rem;
}

.subtitle_image span {
    background: linear-gradient(transparent 50%, var(--pale) 50%);
}

.intro_card_wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: var(--spacem);
}

.intro_card {
    width: 31%;
    border: 5px solid var(--mainc);
    padding: var(--spaces);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.intro_card_desc {
    flex: 1;
}

.intro_card_img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.intro_card:first-child .intro_card_img {
    background-image: url(images/service-gasukiki.jpg);
}

.intro_card:nth-child(2) .intro_card_img {
    background-image: url(images/service-keihouki.jpg);
}

.intro_card:nth-child(3) .intro_card_img {
    background-image: url(images/service-mizu.jpg);
}

.intro_card_desc {
    margin-bottom: var(--spaces);
}

.intro_card_button {
    display: block;
    margin-block: 1rem;
    width: 100%;
}

.intro_card_button a {
    background-color: var(--subc);
    border-radius: 10px;
    padding: 1rem;
    color: #fff;
    width: 100%;
    display: block;
    text-align: center;
    font-weight: 600;
    transition: opacity .3s linear, filter .3s linear;
    font-size: 1.25rem;
}

.intro_card_button a:hover {
    opacity: .7;
    filter: contrast(1.5);
}

.subtitle_cardpl {
    text-align: center;
    font-size: 1.5rem;
    color: #4D8AAE;
}

.subtitle_line {
    width: 100%;
    background: linear-gradient(180deg, var(--mainc) 0, var(--mainc)80%, #fff 80%, #fff 90%, var(--mainc)90%, var(--mainc)100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacem);
}

.subtitle_line h3 {
    font-family: var(--title);
    color: var(--text);
    font-size: clamp(1.1rem, 0.591rem + 2.55vw, 2.5rem);
    padding: 0rem 1rem 1rem 1rem;
}

.s_l_en {
    font-size: clamp(1.1rem, 0.591rem + 2.55vw, 2.5rem);
    color: var(--pale);
    font-weight: 600;
    padding: 0rem 1rem 1rem 0rem;
}

.info_wrapper {
    border: 5px solid var(--mainc);
    padding-block: 1.5rem;
    border-radius: 20px;
}

.info_list li {
    border-bottom: 2px solid var(--mainc);
    padding-bottom: .5rem;
}

.info_title {
    position: relative;
}

.info_title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--acc);
    opacity: 0;
}

.info_title:hover::before {
    animation: blink .7s linear infinite;
}

.info_list li:not(:last-child) {
    margin-bottom: var(--spaces);
}

.info_list li time {
    font-weight: 600;
    margin-right: 1rem;
}

.info_date {
    display: flex;
    align-items: center;
}

.info_tag {
    border-bottom: 1px solid #333;
    margin-bottom: var(--spacem);
    display: flex;
    align-items: center;
}

.info_tag span {
    color: var(--acc);
}


.frame_button_wrapper {
    display: flex;
    justify-content:center;
    margin-block: var(--spacel);
}

.info_wrapper .frame_button_wrapper {
    justify-content: flex-end;
}

.frame_button {
    display: flex;
    align-items: center;
    position: relative;
    height: 2rem;
    font-weight: 600;
    min-width: 200px;
    justify-content: space-between;
    text-align: center;
}

.frame_button_wrapper a {
    color: var(--text);
}

.frame_button div {
    position: relative;
    display: inline-block;
}

.info_inner {
    width: 80%;
    margin: 0 auto;
}

.frame_left {
    width: 1rem;
    background-color: var(--mainc);
    height: 2rem;
    position: relative;
    transition: transform .3s linear;
    margin-right: 1rem;
}

.frame_right {
    width: 1rem;
    background-color: var(--mainc);
    height: 2rem;
    position: relative;
    transition: transform .3s linear;
    margin-left: 1rem;
}

.frame_button:hover .frame_left {
    transform: scale(0.7);
}

.frame_button:hover .frame_right {
    transform: scale(0.7);
}

.frame_left::before {
    content: '';
    position: absolute;
    width: calc(100% - 3px);
    height: calc(100% - 6px);
    top: 3px;
    left: 3px;
    background-color: #fff;
}

.frame_left::after {
    content: '';
    width: 3px;
    height: 6px;
    position: absolute;
    top: 50%;
    left: 0;
    background-color: #fff;
    transform: translateY(-50%);
}

.frame_right::before {
    content: '';
    position: absolute;
    width: calc(100% - 3px);
    height: calc(100% - 6px);
    top: 3px;
    right: 3px;
    background-color: #fff;
}

.frame_right::after {
    content: '';
    width: 3px;
    height: 6px;
    position: absolute;
    top: 50%;
    right: 0;
    background-color: #fff;
    transform: translateY(-50%);
}

.service_wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.service_block {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border: 5px solid var(--mainc);
    border-radius: 20px;
    padding: 1.5rem;
    row-gap: .5rem;
}

.service_icon {
    width: 100px;
    position: relative;
}

.service_title {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    color: #3A9FA4;
}

.service_list {
    margin-left: var(--spaces);
}

.service_list li a {
    color: var(--text);
    position: relative;
    z-index: 1;
}

.service_list li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background-color: var(--text);
    transition: height .3s linear;
}

.service_list li a:hover::before {
    height: 100%;
    z-index: -1;
}

.service_list li a:hover {
    color: #fff;
}

.service_icon_name {
    position: absolute;
    bottom: 0;
    right: 0;
    color: var(--text);
    font-weight: 600;
    text-shadow: 1px 1px #fff;
}

.service_block:nth-child(2) .service_icon_name {
    right: -2rem;
}

.service_announce {
    font-size: .8rem;
    color: #aaa;
    width: 100%;
    text-align: center;
}

.remodel_img {
    aspect-ratio: 3 / 1;
    overflow: hidden;
    width: 100%;
    margin-bottom: var(--spaces);
}

.remodel_img img {
    object-fit: cover;
}

.subtitle_pl {
    text-align: center;
    font-size: clamp(1.1rem, 0.955rem + 0.73vw, 1.5rem);
    margin-bottom: var(--spaces);
    color: #4BB4C6;
}

.remodel_text {
    width: 80%;
    margin: 0 auto;
}

.remodel .frame_button_wrapper {
    justify-content: center;
    margin-block: var(--spacel);
}

.remodel .frame_button_l .frame_left {
    height: 4rem;
}

.remodel .frame_button_l .frame_right {
    height: 4rem;
}

.frame_button_l {
    font-size: clamp(1.031rem, 0.818rem + 0.909vw, 1.5rem);
}

.subtitle_disc {
    position: relative;
    padding-left: 1rem;
    font-size: 1.5rem;
}

.subtitle_disc::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    background-color: var(--mainc);
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.remodel_example_deck {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.re_ex_card {
    width: 30%;
    border: 5px solid var(--mainc);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 5px 5px #ddd;
    transition: box-shadow .3s linear;
}

.re_ex_card:hover {
    box-shadow: none;
}

.re_ex_img {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: var(--spaces);
}

.re_ex_img img {
    object-fit: cover;
}

.remodel_example_deck::after {
    content: '';
    width: 30%;
    height: 0;
}

.cooking_banner {
    display: block;
    filter: drop-shadow(5px 5px #ddd);
    transition: filter .3s linear;
    margin-bottom: 40px;
}

.cooking_banner:hover {
    filter: none;
}

.cooking_wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cooking_card {
    width: 30%;
    border: 5px solid var(--subc);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 5px 5px #ddd;
    transition: box-shadow .3s linear;
}

.cooking_card:hover {
    box-shadow: none;
}

.cooking_cardImg {
    height: 200px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: var(--spaces);
}

.cooking_cardImg img {
    object-fit: cover;
}

.cooking_info {
    display: flex;
    align-items: end;
}

.cooking_normalTag {
    background-color: #f2bd5f;
    display: inline-block;
    border-radius: 10px;
    margin-right: 1rem;
}

.cooking_sweetTag {
    background-color: #ff8594;
    display: inline-block;
    border-radius: 10px;
    margin-right: 1rem;
}

.cooking_eventTag {
    background-color: #88ea88;
    display: inline-block;
    border-radius: 10px;
    margin-right: 1rem;
}

.cooking_tagWord {
    display: block;
    padding: .3rem;
    font-size: .8rem;
    color: #fff;
}

.cooking_title {
    margin-top: 10px;
    font-weight: bold;
}

.cooking .frame_button_wrapper {
    justify-content: center;
    margin-block: var(--spacel);
}

.cooking .frame_button_l .frame_left {
    height: 4rem;
}

.cooking .frame_button_l .frame_right {
    height: 4rem;
}

.recruit_banner {
    display: block;
    filter: drop-shadow(5px 5px #ddd);
    transition: filter .3s linear;
}

.recruit_banner:hover {
    filter: none;
}

.footer_top {
    width: 100%;
    height: 2rem;
    background: linear-gradient(180deg, var(--mainc) 0, var(--mainc)80%, #fff 80%, #fff 90%, var(--mainc)90%, var(--mainc)100%);
    margin-bottom: var(--spaces);
}

.footer_inner {
    max-width: 1200px;
    width: 80%;
    margin: 0 auto;
}

.footer_inner .logo {
    max-width: 350px;
    display: block;
}

.footer_menu {
    width: 100%;
    display: flex;
    column-gap: 1.5rem;
    margin-block: var(--spacem);
}

.footer_menu_list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.footer_menu_list li a {
    position: relative;
}

.footer_menu_list li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    opacity: 0;
    background-color: var(--acc);
}

.footer_menu_list li a:hover::before {
    animation: blink .7s linear infinite;
}

.social {
    display: flex;
    justify-content: flex-end;
    column-gap: 2rem;
    margin-bottom: var(--spaces);
}

.social_icon {
    width: 60px;
}

.footer_bottom {
    padding-block: .5rem;
    background-color: var(--footer);
    height: 70px;
}

.footer_bottom_inner {
    display: flex;
    height: 100%;
    position: relative;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    width: 80%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.copyright {
    color: #fff;
}

.footer_bottom_button {
    position: absolute;
    right: 0;
    width: 150px;
}

/*responsive*/
@media screen and (min-width:1120px) {
    #drawer_menu.active {
        display: none;
    }
}

@media screen and (max-width: 1120px) {
    .header_menu {
        display: none;
    }

    #drawer_button {
        display: flex;
    }

}

@media screen and (max-width: 900px) {
    .intro_img {
        width: 100%;
    }

    .intro_text {
        width: 100%;
        margin-left: inherit;
        padding-left: inherit;
        padding: 1.5rem;
    }

    .intro_card_wrapper {
        row-gap: var(--spacem);
    }

    .service_wrapper {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .intro_card {
        width: 100%;
    }

    .footer_bottom_button {
        position: relative;
        padding-left: var(--spaces);
    }

    .footer_bottom {
        height: auto;
    }
}

@media screen and (max-width: 860px) {
    .footer_menu_list li {
        width: 50%;
    }
}

@media screen and (max-width: 700px) {
    .main_visual {
        aspect-ratio: 3/4;
    }

    .top_slider .top_slide {
        aspect-ratio: 3/4;
    }

    .subtitle_image {
        position: relative;
    }

    .service_wrapper {
        display: flex;
        flex-direction: column;
    }

    .service_block {
        width: 100%;
    }

    .re_ex_card {
        width: 100%;
    }

    .remodel_example_deck {
        row-gap: var(--spaces);
    }

}

/*page_about*/
.page_titleWrap {
    width: fit-content;
    margin: 0 auto;
    position: relative;
}

.page_titleWrap h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--title);
    color: var(--text);
    font-size: clamp(1.1rem, 0.591rem + 2.55vw, 2.5rem);
    font-weight: bold;
}

.message_wrapper {
    display: flex;
    justify-content: space-between;
}

.message_txt {
    width: 100%;
    line-height:2;
}

.message_imgBox {
    width: 30%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.message_name {
    padding-top: 10px;
    font-weight: bold;
    text-align:right;
}

.message_pName {
    font-size: 1.1rem;
}

.philosophy_wrapper {
    padding-block: 30px;
    border: 5px solid var(--subc);
    border-radius: 20px;
    text-align: center;
}

.philosophy_line {
    display: inline-block;
    font-family: var(--title);
    color: var(--text);
    font-size: clamp(1.1rem, 0.591rem + 2.55vw, 2.5rem);
    font-weight: bold;
}

.philosophy_line span {
    display: inline;
    background: linear-gradient(transparent 50%, var(--pale) 50%);
}

.value_wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.value_titleLine {
    display: flex;
    align-items: center;
}

.value_titleLine p {
    margin-left: 10px;
    font-family: var(--title);
    font-size: clamp(1.1rem, 0.591rem + 2.55vw, 2.5rem);
    font-weight: bold;
}

.licence_line {
    padding-block: 6px;
    display: flex;
}

.licence_line:nth-child(even) {
    background-color: var(--pale);
}

.licence_name {
    width: 50%;
    font-size: 1.1rem;
    font-weight: bold;
}

.licence_bottom {
    margin-top: 1rem;
}

.profile_line {
    padding-block: 6px;
    display: flex;
    border-bottom: 1px solid var(--mainc);
}

.profile_title {
    width: 30%;
    font-size: 1.1rem;
    font-weight: bold;
}

.profile_detail {
    width: 70%;
}

.break,
.break_address,
.break_branch {
    padding-left: 20px;
}

.members_line {
    display: flex;
}

.members_position {
    padding-right: 20px;
}

.org_chart {
    margin-top: 40px;
    padding-block: 15px;
    border: 1px solid var(--mainc);
}

.org_chartTitle {
    margin-bottom: 20px;
    text-align: center;
    font-size: clamp(1.1rem, 0.591rem + 2.55vw, 2.5rem);
    font-weight: bold;
}

.org_chartImg {
    margin: 0 auto;
    width: 65%;
}

.access_taniyama,
.access_jonan {
    padding: 30px 1rem;
    border-radius: 20px;
    background-color: var(--pale);
}

.access_jonan {
    margin-block: 30px;
}

.access_container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.access_shop {
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
}

.access_lower {
    margin-bottom: 15px;
    display: flex;
}

.access_hours {
    margin-left: 10px;
}

.access_map {
    position: relative;
    margin: 0 auto;
    padding-top: 42.85%;
    /* 21:9のアスペクト比 */
    width: 60%;
    height: 0;
}

.access_map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blue_contactWrap {
    display: flex;
    justify-content: center;
}

.blue_contact {
    display: flex;
    align-items: center;
    font-weight: 600;
    width: 310px;
    padding: 1rem;
    justify-content: center;
    background-color: var(--mainc);
    font-size: 1.1rem;
    border-radius: 20px;
    box-shadow: 5px 5px #ddd;
    transition: box-shadow .3s linear;
    margin-bottom: 50px;
}

.blue_contact p {
    color: #fff;
}

.blue_contact:hover {
    box-shadow: none;
}
.licence_list{
    width:100%;
    border-collapse:collapse;
}

.licence_list thead tr{
    text-align:left;
    background-color:var(--pale);
    font-size:1.1rem;
    top:0;
}

.licence_list thead th{
    padding-block:0.6rem;
}

.licence_list tbody tr:nth-child(even){
    background-color:var(--pale);
}

.licence_list tbody tr td:nth-child(1){
    font-weight:bold;
    font-size:1.1rem;
}

.licence_list tbody tr td{
    padding-block:0.4rem;
}

/*page_about_responsive*/
@media screen and (max-width: 970px) {
    .philosophy_wrapper {
        padding-block: 0;
        padding: 20px 20px 25px 20px;
    }

    .break_branch {
        padding-left: 0;
        display: block;
    }

    .profile_taniyama,
    .others_line1,
    .others_line2,
    .others_line3 {
        margin-bottom: 13px;
    }

    .break_others {
        display: block;
    }
}

@media screen and (max-width: 920px) {
    .philosophy_line br {
        display: none;
    }
}

@media screen and (max-width: 770px) {
    .message_wrapper {
        flex-direction: column;
        align-items: center;
    }

    .message_txt {
        width: 100%;
        padding-right: 0;
    }

    .message_imgBox {
        width: 65%;
        margin-top: 20px;
    }

    .philosophy_wrapper {
        padding: 15px;
    }

    .licence_name {
        width: 70%;
    }

    .profile_title {
        width: 24%;
    }

    .profile_detail {
        width: 76%;
    }

    .org_chartImg {
        width: 100%;
    }

    .access_map {
        width: 75%
    }
}
@media screen and (max-width: 768px) {
    .responsive-card thead {
        display: none;
    }

    .responsive-card,
    .responsive-card tbody,
    .responsive-card tr,
    .responsive-card td {
        display: block;
        width: 100%;
    }

    .responsive-card tr {
        margin-bottom: 20px;
        border: 1px solid #ddd;
        box-sizing: border-box;
    }

    .responsive-card td {
        position: relative;
        padding-left: 50%;
        text-align: right;
        min-height: 24px;
        margin-bottom: 10px;
                padding:1rem;
    }
    .responsive-card td:first-child{
    border-bottom:1px solid #ddd;
    }

    .responsive-card td:first-child p{
        text-align:left;
        padding-top:2rem;
    }

    .responsive-card td:last-child {
        margin-bottom: 0;
    }

    .responsive-card td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: calc(50% - 20px);
        text-align: left;
        font-weight: bold;
        white-space: normal;
    }
}
@media screen and (max-width: 630px) {

    .licence_line,
    .profile_line {
        flex-direction: column;
        align-items: center;
    }

    .licence_name,
    .profile_title,
    .profile_detail {
        width: 100%;
        text-align: center;
    }

    .profile_line:nth-child(2) .profile_detail {
        display: flex;
        flex-direction: column;
    }

    .break_address {
        padding-left: 0;
    }

    .members_line {
        justify-content: center;
    }

    .access_address {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .access_lower {
        flex-direction: column;
        align-items: center;
    }

    .access_map {
        width: 85%;
    }

    .access_hours {
        font-size: 14px;
        text-align: center;
    }
}
/* page about history */
.history_table tbody{
    display:block;
}

.history_table tr{
    border-collapse:collapse;
    display:flex;
}

.history_table th{
    text-align:right;
    font-size:1.1rem;
    vertical-align:top;
    width:25%;
    padding-bottom:var(--spacem);
    padding-right:var(--spaces);
    display:block;
    border-right:1px solid var(--mainc);
}

.history_table td{
    vertical-align:top;
    display:block;
    width:75%;
    padding-left:var(--spacem);
    padding-bottom:var(--spacem);
}
.history_table tr:last-child th,
.history_table tr:last-child td{
    padding-bottom:0;
}

@media screen and (max-width:900px){
    .history_table th{
        width:35%;
        padding-right:var(--spaces);
    }

    .history_table td{
        width:65%;
    }
}

@media screen and (max-width:500px){
    .history_table tr{
    flex-direction:column;
    }

    .history_table th{
        text-align:left;
        width:100%;
        padding-left:var(--spaces);
        padding-bottom:0;
        margin-bottom:0.4rem;
        border-right:0;
        border-left:2px solid var(--mainc);
    }

    .history_table td{
        width:100%;
    }
}


/*page_items*/

.gas_eq_container:first-child,
.gas_eq_container:nth-child(2) {
    margin-bottom: 40px;
}

.gas_eq_title {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.gas_eq_title p {
    margin-left: 10px;
    font-family: var(--title);
    font-size: clamp(1.1rem, 0.591rem + 2.55vw, 2.5rem);
    font-weight: bold;
}

.gas_eq_box {
    margin-bottom: 40px;
    padding: 0 20px;
    font-size: 1.3rem;
    font-weight: bold;
}

.gas_eq_box:last-child {
    margin-bottom: 0;
}

.gas_eq_boxImg {
    width: 60%;
    margin: 15px auto 0;
}

.contact_cBox{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: var(--spaces);
}

.contact_cImg {
    width: 25%;
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.alarm_container {
    display: flex;
    justify-content: space-between;
}

.item_copy p {
    padding-left: 25px;
    font-size: clamp(1.1rem, 0.591rem + 2.55vw, 2.5rem);
    font-weight: bold;
    position: relative;
}

.item_copy p::before {
    position: absolute;
    content: '';
    top: 30px;
    left: 3px;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background-color: #b0d7f7;
}

.alarm_advantages {
    margin-block: 30px 20px;
    font-weight: bold;
    font-size: clamp(1rem, 0.864rem + 0.582vw, 1.3rem);
}

.alarm_points {
    display: flex;
    align-items: center;
}

.alarm_points .material-symbols-outlined {
    color: var(--subc);
    font-size: 3rem;
}

.alarm_points p {
    font-size: clamp(1rem, 0.864rem + 0.582vw, 1.3rem);
    font-weight: bold;
}

.alarm_boxImg {
    width: 30%;
}

.alarm_imgs div {
    width: 60%;
    margin: 0 auto;
}

.alarm_imgs div:first-child {
    margin-block: 35px;
}

.notice_wrap {
    margin-top: 25px;
}

.notice_top {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.notice_top .material-symbols-outlined {
    margin-right: 10px;
    color: var(--subc);
    font-size: 2.4rem;
}

.notice_line p {
    position: relative;
    padding-left: 37px;
}

.notice_line p::before {
    position: absolute;
    content: '';
    top: 7px;
    left: 12px;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background-color: #b0d7f7;
}

.alarm_wrap .frame_button_l .frame_left,
.alarm_wrap .frame_button_l .frame_right {
    height: 4rem;
}

.fire_extinguisherTop {
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
    font-size: clamp(1.1rem, 0.955rem + 0.73vw, 1.5rem);
}

.fire_extinguisherTop span {
    color: var(--subc);
}

.fire_extinguisherImg {
    width: 60%;
    margin: 0 auto;
}

.water_main,
.water_points,
.kirishima,
.bottle {
    margin-bottom: 60px;
}

.water_visual {
    width: 70%;
    margin: 30px auto;
}

.water_txt {
    width: 70%;
    margin: 0 auto;
}

.water_need {
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    font-size: clamp(1.1rem, 0.955rem + 0.73vw, 1.5rem);
}

.water_pointsContainer {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    border-radius: 20px;
    width: 80%;
    margin-inline: auto;
}

.water_pointsLeft {
    width: 50%;
}

.water_pointsLeft p {
    margin-block: 50px;
    font-weight: bold;
    font-size: clamp(1.1rem, 0.955rem + 0.73vw, 1.5rem);
}

.water_pointsList {
    font-size: clamp(1.1rem, 0.955rem + 0.73vw, 1.5rem);
}

.water_pointsList li span {
    color: var(--subc);
    font-weight: bold;
}

.water_pointsRight {
    width: 50%;
}

.water_pointsBox {
    display: flex;
}

.water_pointsBox:last-child {
    flex-direction: row-reverse;
}

.water_pointsSmallBox {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.water_pointsCircle {
    width: 80%;
    background-color: var(--pale);
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    aspect-ratio:1;
}

.water_pointsCircle p {
    position: absolute;
    top: 50%;
    left: -65px;
    transform: translateY(-50%);
    font-size: 1.1rem;
}

.water_pointsBox:last-child .water_pointsCircle p {
    left: initial;
    right: -55px;
}

.water_pointsImg {
    width: 50%;
    overflow:hidden;
}
.water_pointsImg img{
    object-fit:cover;
    width:100%;
    height:100%;
}
.kirishima_wrap:last-child {
    margin-top: 45px;
}

.kirishima p {
    margin-bottom: 40px;
    font-weight: bold;
    font-size: clamp(1.1rem, 0.955rem + 0.73vw, 1.5rem);
}

.kirishima_container {
    display: flex;
    justify-content: space-between;
}

.kirishima_wrap:last-child .kirishima_container {
    flex-direction: row-reverse;
}

.kirishima_img {
    width: 47%;
    position: relative;
}

.kirishima_img::after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: inset 0 0 15px 15px #fff;
}

.kirishima_txt {
    width: 47%;
}

.bottle_container {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
}

.bottle_box {
    width: 47%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bottle_img {
    width: 75%;
}

.bottle_txt {
    margin-top: 15px;
    padding: 25px 30px;
    width: 100%;
    border-radius: 20px;
    border: 5px solid var(--subc);
}

.bottle_title {
    font-weight: bold;
    font-size: clamp(1.1rem, 0.955rem + 0.73vw, 1.5rem);
}

.bottle_txt p {
    line-height: 3;
}

.bottle_bottom {
    color: #b11818;
    font-weight: bold;
}

/*page_items_responsive*/
@media screen and (max-width: 970px) {
    .water_pointsContainer {
        flex-direction: column;
        text-align: center;
    }

    .water_pointsLeft {
        width: 100%;
    }

    .water_pointsLeft p {
        margin-block: 20px;
    }

    .water_pointsRight {
        width: 100%;
        margin-top: 20px;
    }

    .water_pointsBox,
    .water_pointsBox:first-child {
        justify-content: center;
    }

    .contact_cImg {
        width: 35%;
    }

    .item_copy p::before {
        top: 23px;
    }
}

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

    .gas_eq_boxImg,
    .alarm_imgs div,
    .fire_extinguisherImg,
    .water_visual,
    .water_txt,
    .bottle_img {
        width: 80%;
    }
}

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

    .gas_eq_boxImg,
    .alarm_imgs div,
    .fire_extinguisherImg,
    .water_visual,
    .water_txt {
        width: 100%;
    }

    .alarm_container {
        flex-direction: column;
    }

    .alarm_boxImg {
        width: 40%;
        margin: 0 auto;
    }

    .bottle_container {
        flex-direction: column;
    }

    .bottle_box {
        width: 100%;
    }

    .bottle_box:first-child {
        margin-bottom: 30px;
    }

    .bottle_img {
        width: 70%;
    }

    .bottle_txt {
        text-align: center;
    }
}

@media screen and (max-width: 700px) {
    .contact_container {
        padding: 25px 25px 30px;
    }
    .contact_cBox{
        justify-content: center;
    }
    .contact_cTaniyama {
        margin: 15px 0 10px;
    }

    .kirishima p {
        margin-bottom: 25px;
        text-align: center;
    }

    .kirishima_container,
    .kirishima_wrap:last-child .kirishima_container {
        flex-direction: column-reverse;
    }

    .kirishima_img {
        margin-top: 15px;
        width: 100%;
    }

    .kirishima_txt {
        width: 100%;
    }

    .item_copy p::before {
        top: 16px;
    }
}

@media screen and (max-width: 500px) {
    .item_copy p::before {
        top: 12px;
    }
}
.manuf_links {
    margin-block: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 30px;
    column-gap: 30px;
}

.ene_visual {
    margin-block: 40px;
    padding: 20px 30px;
    border-radius: 20px;
    border: 5px solid var(--subc);
}

.ene_imgsContainer {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
    column-gap: 30px;
    justify-content: center;
}

.ene_box {
    width: 30%;
}

.ene_box p {
    margin: 0 auto;
    width: fit-content;
    font-weight: bold;
    background: linear-gradient(transparent 40%, var(--pale) 0%);
}


/*page_example*/

.ex_paginationWrap {
    margin-top: 60px;
}

.ex_pagination {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 15px;
    column-gap: 10px;
}

.ex_paginationItem a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--mainc);
    font-size: 1.1rem;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s linear;
}

.ex_paginationItem a:hover {
    background-color: var(--subc);
}

.fa-angles-left,
.fa-angles-right {
    width: 20px;
}

.example .frame_button_wrapper {
    justify-content: center;
}


/* 料理教室 cookingclass */

.cookingclass_wrapper {
    display: flex;
    flex-wrap: wrap;
}

.cookingclass_txt {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cookingclass_img {
    width: 30%;
}

.cookingclass .blue_contactWrap {
    justify-content: left;
}

.blue_circle {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background-color: #b0d7f7;
}

.notes_list {
    background-color: var(--pale);
    border-radius: 20px;
    padding: 35px;
}

.notes_list li {
    position: relative;
    margin-bottom: var(--spaces);
}

.notes_list li p {
    position: relative;
    left: 1rem;
}

.notes_list li::before {
    content: "";
    position: absolute;
    width: 0.7rem;
    height: 0.7rem;
    top: 0.4rem;
    border-radius: 50%;
    background-color: #b0d7f7;
}

.notes_list li .caution {
    font-weight: bold;
}

.events .cooking_card {
    margin-bottom: var(--spacem);
}

.events .frame_button_wrapper {
    justify-content: center;
}
.bold{
    font-weight:bold;
}

.cookingclass_tel{
    font-size:clamp(2rem, 1.273rem + 3.64vw, 3rem);
    font-weight:bold;
    color:var(--paletext);
    line-height:1.2;
}

.subtitle_plane{
    font-size:1.5rem;
}

.terms ul li {
    list-style: none;
    margin-left:2rem;
}
.notes_text {
    margin-bottom: var(--spaces);
}

.notes_list li p {
    padding-left: 1rem;
}
@media screen and (max-width:900px){
    .cookingclass_txt{
        width:100%;
        order:2;
    }
    .cookingclass_img{
        order:1;
        margin:0 auto;
    }
}
/*privacy faq*/

.privacy ol li {
    list-style: decimal;
}

.caution {
    color: #e12424;
}

.contact_container {
    padding: 35px;
    border-radius: 20px;
    background-color: var(--pale);
}


.contact_cTop {
    font-size: clamp(1.1rem, 0.955rem + 0.73vw, 1.5rem);
    font-weight: bold;
}

.contact_cTaniyama,
.contact_cJonan {
    font-size: 17px;
}

.contact_cTaniyama {
    margin: 20px 0 30px;
}

.faq_details {
    margin-block: var(--spacem);
    background-color: var(--pale);
    position: relative;
    z-index: 1;
    transition: .3s linear;
}

.faq_details[open] {
    padding: 1rem;
}

.faq_details summary {
    padding: var(--spaces);
    display: block;
    cursor: pointer;
    padding-right: 4rem;
}

.faq_details::after {
    position: absolute;
    font-family: 'Material Symbols Outlined';
    content: '\e316';
    top: 0;
    right: 0;
    transform: scale(1, -1) translateY(2rem);
    color: var(--mainc);
    font-size: 4rem;
    z-index: 2;
    pointer-events: none;
    transition: transform .3s linear;

}

.faq_details p {
    background-color: #fff;
    padding: var(--spaces);
}

.faq_details[open]::after {
    transform: scale(1.0) translateY(-2rem);
}

@media screen and (max-width: 900px) {
    .s_l_en {
        display: none;
    }
}

@media screen and (max-width: 770px) {
    .access_lower {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 600px) {
    .content {
        width: 90%;
    }
}

.alarm_pointsBox {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

/*page_recruit*/
.recruit_titleLine {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.recruit_titleLine p {
    margin-left: 10px;
    font-family: var(--title);
    font-size: clamp(1.1rem, 0.591rem + 2.55vw, 2.5rem);
    font-weight: bold;
}

.recruit_container {
    display: flex;
    justify-content: space-between;
}

.recruit_left {
    width: 43%;
}

.recruit_right {
    width: 54%;
    position: relative;
}

.recruit_right::after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: inset 0 0 15px 15px #fff;
}

.recruit_yellow {
    margin: 20px auto 40px;
    padding: 25px 35px;
    width: 85%;
    background-color: var(--pale);
    border-radius: 20px;
    display: flex;
    row-gap: 1rem;
    flex-direction: column;
}

.recruit_points {
    display: flex;
    align-items: center;
}

.recruit_points .material-symbols-outlined {
    color: var(--subc);
    font-size: 3rem;
}

.recruit_points p {
    font-size: clamp(1rem, 0.864rem + 0.582vw, 1.3rem);
    font-weight: bold;
}

.recruit_linkTxt {
    text-align: center;
    font-size: clamp(1.1rem, 0.955rem + 0.73vw, 1.5rem);
    font-weight: bold;
}

.recruit_linkWrap .frame_button_wrapper {
    justify-content: center;
    margin-block: var(--spacel);
}

/*page_recruit_responsive*/
@media screen and (max-width: 700px) {
    .recruit_titleLine {
        margin-bottom: 15px;
    }

    .recruit_container {
        margin-bottom: 30px;
        flex-direction: column-reverse;
    }

    .recruit_left {
        width: 100%;
    }

    .recruit_right {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 630px) {
    .recruit_wrap1 .recruit_titleLine {
        align-items: baseline;
    }

    .recruit_yellow {
        padding: 1rem;
        width: 95%;
    }

    .recruit_points {
        align-items: flex-start;
    }
}




/* contact お問い合わせ */


.telephone_wrapper {
    display: flex;
    margin-bottom: var(--spacem);
    flex-wrap: wrap;
}

.telephone_address {
    width: 60%;
}

.subtitle_circle {
    padding-left: 25px;
    font-size: clamp(1.1rem, 0.591rem + 2.55vw, 2rem);
    font-weight: bold;
    position: relative;
}

.subtitle_circle::before {
    position: absolute;
    content: '';
    top: 0.7em;
    left: 3px;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background-color: #b0d7f7;
}

.telephone_address ul {
    padding-left: 25px;
}

.telephone_tel {
    margin-block: 30px 20px;
    font-weight: bold;
    font-size: clamp(1rem, 0.864rem + 0.582vw, 1.3rem);
}

.telephone_map {
    width: 40%;
}

.email_form {
    padding: 30px;
    border-radius: 20px;
    background-color: var(--pale);
    margin-top: var(--spaces);
}

.email_form table {
    display: block;
    margin-bottom: 1rem;
}

.email_form tbody {
    display: block;
}

.email_form tbody tr {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.6rem;
}

.email_form tbody th {
    position: relative;
    margin-bottom: 0.4rem;
}

.email_form tbody th span {
    margin: 0;
}

.email_form tbody th p {
    display: inline-block;
}


.required::before {
    content: "必須";
    background-color: var(--subc);
    color: #FFF;
    padding: 0.4rem;
    margin-right: 0.2rem;
    border-radius: 10px;
}

.email_form tbody td {
    margin-bottom: var(--spaces);
    display: block;
    width: 100%;
}

.email_form tbody td input,
.email_form tbody td textarea {
    width: 100%;
    border: none;
    padding-block: 0.2rem;
}

.contact_send {
    display: flex;
    justify-content: center;
}

.contact_send input {
    border: none;
    color: #fff;
    cursor: pointer;
}
/*contact responsive*/
@media screen and (max-width: 970px){
    .telephone_address{
    width: 100%;
    margin-bottom: var(--spaces);
}
    .telephone_map{
    width: 100%;
}
}

/*page_about_responsive*/
@media screen and (max-width: 970px) {
    .philosophy_wrapper {
        padding-block: 0;
        padding: 20px 20px 25px 20px;
    }

    .break_branch {
        padding-left: 0;
        display: block;
    }

    .profile_taniyama,
    .others_line1,
    .others_line2,
    .others_line3 {
        margin-bottom: 13px;
    }

    .break_others {
        display: block;
    }
}

@media screen and (max-width: 920px) {
    .philosophy_line br {
        display: none;
    }
}

@media screen and (max-width: 770px) {
    .message_wrapper {
        flex-direction: column;
        align-items: center;
    }

    .message_txt {
        width: 100%;
        padding-right: 0;
    }

    .message_imgBox {
        width: 65%;
        margin-top: 20px;
    }

    .philosophy_wrapper {
        padding: 15px;
    }

    .licence_name {
        width: 70%;
    }

    .profile_title {
        width: 24%;
    }

    .profile_detail {
        width: 76%;
    }

    .org_chartImg {
        width: 100%;
    }

    .access_map {
        width: 75%
    }
}

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

    .licence_line,
    .profile_line {
        flex-direction: column;
        align-items: center;
    }

    .licence_name,
    .profile_title,
    .profile_detail {
        width: 100%;
        text-align: center;
    }

    .profile_line:nth-child(2) .profile_detail {
        display: flex;
        flex-direction: column;
    }

    .break_address {
        padding-left: 0;
    }

    .members_line {
        justify-content: center;
    }

    .access_address {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .access_lower {
        flex-direction: column;
        align-items: center;
    }

    .access_map {
        width: 85%;
    }

    .access_hours {
        font-size: 14px;
    }
}


/*page_example*/
.example_wrap {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 5%;
}

/*page_example_responsive*/
@media screen and (max-width: 700px) {
    .example_wrap {
        row-gap: 50px;
    }
}


/* page_cooking */
.events .em.em-list .em-item,
.cooking .em.em-list .em-item{
    border: 5px solid var(--subc);
    border-radius: 20px;
    padding: 1.5rem;
}

.events .em.em-list .em-item:first-child,
.cooking .em.em-list .em-item:first-child{
    border-top: 5px solid var(--subc);
    padding-top: 1.5rem;
}
.events .em.em-list.em-grid .em-item,.events .em.em-list.size-small .em-item,
.cooking .em.em-list.em-grid .em-item,.cooking .em.em-list.size-small .em-item{
    border: 5px solid var(--subc);
}
.em.em-list .em-item .em-item-image img {
    padding: 0;
    border-radius: 20px;
}

.em.em-list .em-item .em-item-info {
    border-left: initial;
}

.em.pixelbones a {
    font-size: 1.1rem;
    font-weight: bold;
}

.em.em-list .em-item .em-item-info .button {
    margin-top: 15px;
}

.em.em-list .em-item .em-item-info h3.em-item-title a {
    position: relative;
}

.em.em-list .em-item .em-item-info h3.em-item-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    opacity: 0;
    background-color: var(--acc);
}

.em.em-list .em-item .em-item-info h3.em-item-title a:hover::before {
    animation: blink .7s linear infinite;
}

/* page_cooking_responsive */
@media screen and (max-width: 970px) {

    .em.em-list.size-small .em-item,
    .em.em-list .em-item:first-child {
        border: 5px solid var(--subc);
    }
}


/* page_cooking_category */
#em-wrapper {
    margin-top: 3rem;
}

.em.em-list .em-item.em-taxonomy.em-category .em-item-image .em-item-image-placeholder {
    background-image: url(https://nichigas-s.co.jp/wp-content/uploads/2025/05/no_image.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* page_information_pagination */
.nav-links {
    margin-top: 60px;
}

.page-numbers {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    row-gap: 15px;
    column-gap: 10px;
}

.page-numbers li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--mainc);
    font-size: 1.1rem;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s linear;
}

.page-numbers li span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--subc);
    font-size: 1.1rem;
    color: #fff;
    font-weight: bold;
}

.page-numbers li a:hover {
    background-color: var(--subc);
}

/* remodel 施工事例 */

.remodel_date {
    margin-top: 4rem;
    display: flex;
    align-items: center;
}

.remodel_tag {
    border-bottom: 1px solid #333;
    margin-bottom: var(--spacem);
    display: flex;
    align-items: center;
}

.remodel_tag span {
    color: var(--acc);
}

.remodel_content {
    display: flex;
    flex-wrap: wrap;
}

.subtitle_pale{
    color: var(--paletext);
    width: 100%;
    font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
}

.remodel_photo {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 3.8rem;
    width: 100%;
}

.remodel_photo h3 {
    font-weight: normal;
}

.remodel_photo span {
    display: block;
    aspect-ratio: 4 / 3;
    background-size: contain;
    background-repeat: no-repeat;
}

.remodel_photo img {
    object-fit: cover;
    aspect-ratio: 4/3;
}

.remodel_before,
.remodel_after {
    width: 48%;
}

.remodel_detail {
    margin-bottom: 2.6rem;
}

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

    .remodel_before {
        margin-bottom: 2rem;
    }

    .remodel_before,
    .remodel_after {
        width: 100%;
    }
}
/*event-manager*/
.event_category {
    display: flex;
    column-gap: 1rem;
}

.item-meta-line {
    display: flex;
    column-gap: 1rem;
}

