@charset "utf-8";
/* *************************************
// スタイル
************************************* */

:root {
    --blue01: #2478be;
    --blue02: #1f518e;

    --filter-blue01: invert(30%) sepia(9%) saturate(4453%) hue-rotate(184deg) brightness(95%) contrast(95%);


    --main-color: var(--blue01);
    --sub-color: var(--blue02);


    /* サイズ系 */
    --header-height: 80px;

    --font-size: 18px;

    --padding-section: 80px;
}


@media (max-width: 767px) {
    :root {
        /* サイズ系 */
        --header-height: 60px;

        --font-size: 16px;

        --padding-section: 40px;
    }
}



body {
    font-size: var(--font-size);
    font-weight: 500;
}

#main {
    overflow: hidden;
}


section {
    padding: var(--padding-section) 0;
}



.btn001 > a {
    font-weight: bold;
}
.btn001 > a:after {
    content: "→";
    display: inline-block;
    margin-left: 0.5em;
    transition: all 0.3s;
}
.btn001 > a:hover:after {
    transform: translateX(5px);
}


.hl001:before {
    background-image: url(../images/common/h1.webp);
}


.googlemap > iframe {
    width: 100%;
    display: block;
}

/* *************************************
// ヘッダー・メニュー
************************************* */
.h001.header {
    height: var(--header-height);
    box-shadow: none;
}
.h001.header #inner-header {
    height: 100%;
}

.h001.header .menu_box {
    height: var(--header-height);
    padding: 0 20px;
}
.h001.header .menu_box nav {
    display: flex;
    align-items: stretch;
    gap: 0 15px;
}
.h001.header .menu_box nav ul li {
    display: grid;
    align-items: center;
    width: 115px;
}
.h001.header .menu_box nav ul li a {
    font-weight: bold;
}
.h001.header .menu_box nav ul li a:hover {
    color: var(--blue01);
}

.contact_box {
    display: flex;
    align-items: center;
    height: 0;
}

.h001.header a.tel_box {
    align-self: center;
}
.h001.header a.tel_box .number {
    font-size: 30px;
}
.h001.header a.tel_box .number img {
    filter: var(--filter-blue01);
}

.h001.header .fax_box {
    display: none;
}
.h001.header .fax_box .number {
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    line-height: 1.2;
    white-space: nowrap;
    gap: 0 20px;
}
.h001.header .fax_box .number img {
    display: block;
    filter: var(--filter-blue01);
    width: 50px;
    height: 50px;
    object-fit: contain;
}

@media (max-width: 1029px) {

    .h001.header .menu_box nav ul li {
        width: auto;
    }
    .h001.header .menu_box nav ul li a {
        font-size: 16px;
    }

    /* 画面下部にfixedする */
    .contact_box {
        height: auto;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.2);
        background-size: cover;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 40px;
        padding: 15px;
    }
    .contact_box:before {
        content: "";
        z-index: -1;
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        background-image: url(../images/common/h1.webp);
        background-size: cover;
        background-position: center;
    }
    .h001.header a.tel_box {
        background: #fff;
        margin: 0;
        padding: 10px;
    }
    .h001.header a.tel_box .number img {
        display: block;
        filter: var(--filter-blue01);
        width: 50px;
        height: 50px;
        object-fit: contain;
    }
    .h001.header .fax_box {
        display: block;
        background: #fff;
        padding: 10px;
    }

}

@media (max-width: 767px) {
    .h001.header a.tel_box .number img,
    .h001.header .fax_box .number img {
        width: 25px;
        height: 25px;
        margin: 0;
    }
    .h001.header a.tel_box .number,
    .h001.header .fax_box .number {
        font-size: 20px;
        gap: 0 10px;
    }

    .h001.header .menu_box {
        overflow-y: auto;
        padding-top: 80px;
    }
    .h001.header .menu_box nav ul {
        width: 100%;
        border: none;
    }
    .h001.header .menu_box nav ul li {
        border: none;
    }
    .h001.header .menu_box nav ul li a {
        text-align: center;
        font-size: 20px;
    }

    .contact_box {
        gap: 0 10px;
        padding: 10px;
    }

}

/* *************************************
// フッター問い合わせ
************************************* */
#bottom_contact {  
    padding: 150px 0 80px;
    position: relative;
    z-index: 0;
}
#bottom_contact:before {  
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 100% 100px, 100% 100%, 0% 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: #f8f8f8;
    opacity: 1;
}
#bottom_contact:after {  
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 100px, 100% 0, 100% 100%, 0% 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: var(--blue01);
    opacity: 1;
}

#bottom_contact .title {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #fff;
}

#bottom_contact .two_in_one {
    gap: 10px 40px;
}

#bottom_contact .two_in_one > div {
    background: #fff;
    padding: 15px;
    text-align: center;
    font-weight: bold;
}

#bottom_contact p {
    margin-bottom: 1;
}

#bottom_contact .tel_box,
#bottom_contact .fax_box {
    display: block;
}

#bottom_contact .tel_box .number,
#bottom_contact .fax_box .number {
    font-size: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    line-height: 1.2;
    white-space: nowrap;
    gap: 0 20px;
}
#bottom_contact .tel_box .number img {
    display: block;
    filter: var(--filter-blue01);
    width: 50px;
    height: 50px;
    object-fit: contain;
}
#bottom_contact .fax_box .number img {
    display: block;
    filter: var(--filter-blue01);
    width: 50px;
    height: 50px;
    object-fit: contain;
}


.home #bottom_contact {
    margin-top: 80px;
}

@media (max-width: 1029px) {

    #bottom_contact .tel_box .number,
    #bottom_contact .fax_box .number {
        font-size: 40px;
        gap: 0 10px;
    }
}

@media (max-width: 767px) {
    .home #bottom_contact,
    #bottom_contact {
        padding: 60px 0 40px;
    }
    #bottom_contact:before {
        clip-path: polygon(0 0, 100% 40px, 100% 100%, 0% 100%);
    }
    #bottom_contact:after {
        clip-path: polygon(0 40px, 100% 0, 100% 100%, 0% 100%);
    }
    #bottom_contact .two_in_one {
        grid-template-columns: 100%;
    }

}

/* *************************************
// フッター
************************************* */


.f001 {
    background: var(--blue02);
}
.f001 #inner-footer {
    justify-content: space-between;
    gap: 20px;
}
.f001 #inner-footer > * {
    margin: 0;
}

.f001 nav ul.nav {
    display: flex;
    flex-wrap: wrap;
    width: auto;
    gap: 0 20px;
}

@media (max-width: 1029px) {
    .f001 nav ul.nav {
        flex-direction: column;
    }

}

@media (max-width: 767px) {
    .f001 #inner-footer {
        padding: 40px 5%;
    }
    .f001 .company_info {
        text-align: center;
    }
    .f001 nav {
        display: none;
    }

}



/* *************************************
// トップページ
************************************* */

.mv001 {
    height: auto;
    padding: 0 5%;
    background: #fff;
}

.mv001 .mv001_slider {
    width: 100%;
    max-width: 1500px;
    margin: auto;
}

.mv001 .mv001_slider::after {
    display: none;
}

.scroll_down {
  position:absolute;
  top: 90vh;
  right: 2%;
  z-index: 5;
}

.scroll_down > .text {
    position: absolute;
    left: 10px;
    bottom: 35px;
    color: #000;
    font-size: 12px;
    writing-mode: vertical-lr;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background:#000;
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove{
  0%{bottom:100px;}
  100%{bottom:0px;}
}

@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}

.scroll_down:after{
  content:"";
  position: absolute;
  bottom:0;
  left:0;
  width:1px;
  height: 100px;
  background:#000;
}

@media (max-width: 767px) {

    .mv001 {
        padding: 0;
        width: 100%;
    }

}



.contents01 .two_in_one {
    align-items: center;
}
.contents01 .two_in_one > div > .inner {
    width: 80%;
    max-width: 600px;
    margin: auto;
}

.contents01 h2 {
    font-size: 45px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 30px;
}

.contents01 .btn001 > a {
    margin-left: 0;
}

#top_service {
    position: relative;
    z-index: 0;
}

#top_service:before {
    content: "";
    display: block;
    width: 100%;
    height: 80%;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
    background: var(--blue01);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: 0.1;
}

#top_service:after {
    content: "SERVICE";
    display: inline;
    font-size: 10vw;
    font-weight: bold;
    color: var(--blue01);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: 0.2;
    line-height: 1;
}

#top_service .two_in_one > div.image > img {
    width: 60%;
    display: block;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    position: relative;
}

#top_service .two_in_one > div.image > img:nth-child(1) {
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 15px;
    z-index: 1;
}
#top_service .two_in_one > div.image > img:nth-child(2) {
    margin-left: auto;
    margin-right: 0;
    z-index: 0;
}

@media (max-width: 1029px) {

    .contents01 .two_in_one {
        grid-template-columns: 100%;
    }
    #top_service .two_in_one > div.image {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }
    #top_service .two_in_one > div.image > img:nth-child(1) {
        width: 55%;
        margin-right: -5%;
        margin-top: 0;
        margin-bottom: 0;
    }
    #top_service .two_in_one > div.image > img:nth-child(2) {
        width: 55%;
        margin-left: -5%;
        margin-top: 100px;
    }
}
@media (max-width: 767px) {
    .contents01 .two_in_one > div > .inner {
        width: 90%;
    }
    .contents01 h2 {
        font-size: 25px;
    }
    .contents01 .btn001 > a {
        margin: 0 auto;
    }
    #top_service .two_in_one > div.image > img:nth-child(1) {
        width: 70%;
        margin-right: auto;
        margin-top: 0;
        margin-bottom: 0;
    }
    #top_service .two_in_one > div.image > img:nth-child(2) {
        width: 70%;
        margin-left: auto;
        margin-top: -40px;
    }
    #top_service:after {
        font-size: 20vw;
    }
}


#top_works {
    background: var(--blue01);
    position: relative;
    z-index: 0;
}

#top_works:after {
    content: "WORKS";
    display: inline;
    font-size: 10vw;
    font-weight: bold;
    color: #fff;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    opacity: 0.2;
    line-height: 1;
}
#top_works h2 {
    font-size: 45px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 50px;
    color: #fff;
    text-align: center;
}

#top_works p {
    margin: 0 0 50px;
    text-align: center;
    color: #fff;
}

#top_works .btn001 {
    margin-top: 50px;
}

#top_works .btn001 > a {
    background: #fff;
    color: var(--blue01);
}

.works_container .slick-track {
    display: flex;
    align-items: stretch;
}
.works_container .slick-track > .item {
    display: flex;
    align-items: stretch;
    height: auto;
}

.works_container .item {
    padding: 0 1vw;
}
.works_container .item a {
    display: block;
    background: #fff;
    color: var(--text-color);
    position: relative;
    z-index: 0;
}
.works_container .item a:before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background: var(--blue02);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    position: absolute;
    bottom: 0px;
    right: 0px;
}
.works_container .item a:after {
    content: "";
    display: block;
    width: 0.5em;
    height: 0.5em;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    transform: rotate(45deg);
    transform-origin: top right;
    bottom: 5px;
    right: 5px;
}


.works_container .item .image {
    width: 100%;
    overflow: hidden;
}
.works_container .item .image > img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
    transition: all 0.3s;
}

.works_container .item a:hover .image > img {
    transform: scale(1.05);
}

.works_container .item h3 {
    padding: 15px 15px 5px;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.5;
}

.works_container .item .category {
    padding: 5px 15px 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 5px 10px;
}
.works_container .item .category > span {
    background: var(--blue01);
    color: #fff;
    line-height: 1.2;
    padding: 5px 10px;
    font-size: 14px;
}

@media (max-width: 767px) {

    #top_works h2 {
        font-size: 25px;
        margin-bottom: 40px;
    }
    #top_works:after {
        font-size: 20vw;
    }

}

#top_company {
    position: relative;
    z-index: 0;
    padding: 100px 0;
}

#top_company:after {
    content: "COMPANY";
    display: inline;
    font-size: 10vw;
    font-weight: bold;
    color: var(--blue01);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: 0.05;
    line-height: 1;
}

#top_company > .wrap {
    max-width: 1200px;
}


.contents02 .two_in_one {
    align-items: center;
    gap: 20px 60px;
}
.contents02 .two_in_one > div > .inner {
    width: 100%;
}

.contents02 h2 {
    font-size: 45px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 30px;
}

.contents02 .btn001 > a {
    margin-left: 0;
}

@media (max-width: 1029px) {
    .contents02 .two_in_one {
        grid-template-columns: 100%;
    }
    .contents02 .two_in_one > div {
        width: 80%;
        margin: auto;
    }
    .contents02 .btn001 > a {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .contents02 h2 {
        font-size: 25px;
    }
    .contents02 .two_in_one > div {
        width: 90%;
    }
    #top_company {
        padding: 40px 0;
    }
    #top_company:after {
        font-size: 20vw;
    }

}

/* *************************************
// 施工事例
************************************* */

#works_content h2 {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 50px;
}

#works_content .text {
    width: 800px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {

    #works_content h2 {
        font-size: 20px;
        margin-bottom: 25px;
    }

}

.facility_slider_wrap {
    margin-bottom: 50px;
    width: 800px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.facility_slider_wrap .slick-slide > img {
  width: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 3  / 2;
  object-fit: cover;
}

.facility_slider_wrap #slick .slick-slide {
  position: relative;
}

.facility_slider_wrap #slick {
  margin-bottom: 15px;
}

.facility_slider_wrap #slick_thumb {
  margin-bottom: 20px;
}

.facility_slider_wrap #slick_thumb .slick-slide {
  padding: 5px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.facility_slider_wrap #slick_thumb .slick-slide.slick-current {
	background: var(--blue01);
}

.facility_slider_wrap #slick button {
	background: rgba(0,0,0,0.6);
	color: #fff;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
    z-index: 999;
    border: none;
}

.facility_slider_wrap #slick button.prev {
	left: 0;
	padding: 12px 12px 12px 0;
}
.facility_slider_wrap #slick button.next {
	right: 0;
	padding: 12px 0 12px 12px;
}


@media (max-width: 767px) {

  .facility_slider_wrap {
    width: 100%;
  }

  .facility_slider_wrap #slick_thumb .slick-list {
    padding: 0!important;
  }

  #slick_thumb.number_three .slick-track {
    transform: unset !important;
  }
}

@media (min-width: 768px) {

  #slick_thumb.number_three .slick-track,
  #slick_thumb.number_five .slick-track {
    transform: translate3d(0px, 0px, 0px) !important;
  }
}

#works_archive .sub {
    text-align: center;
    font-size: 20px;
    margin-bottom: 50px;
}


#works_archive .works_container {
    gap: 40px;
}
#works_archive .works_container .item {
    padding: 0;
}
#works_archive .works_container .item a {
    border: 1px solid #000;
    height: 100%;
}


@media (max-width: 1029px) {
    #works_archive .works_container {
        gap: 20px;
    }
}  

@media (max-width: 767px) {
    #works_archive .sub {
        font-size: 16px;
    }
    #works_archive .works_container {
        grid-template-columns: 100%;
    }
    #works_archive .works_container .item {
        width: 90%;
        margin: auto;
    }
}

.cat_list001 {

}
.cat_list001 > a {
    flex: 1;
}

@media (max-width: 1029px) {
    .cat_list001 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .cat_list001 > a {
        width: auto;
        min-width: 100px;
    }
}  

@media (max-width: 767px) {


    .cat_list001 > a {
        width: 100%;
        font-size: 14px;
        padding: 5px;
    }

}

table.works_table {
    width: 800px;
    max-width: 100%;
    margin: 50px auto;
}

table.works_table tr th,
table.works_table tr td {
    padding: 20px;
    border-bottom: 1px solid #ccc;
}
table.works_table tr th {
    background: var(--blue01);
    color: #fff;
    font-weight: bold;
}

@media (max-width: 767px) {
    table.works_table tr th, table.works_table tr td {
        border: none;
    }
    table.works_table tr th {
        padding: 10px 15px;
    }

}


.single_works #works_archive {
    position: relative;
    z-index: 0;
}

.single_works #works_archive .title01 {
    font-weight: bold;
}

.single_works #works_archive:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--blue01);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: 0.1;
}

#works_list {
    position:relative;
    z-index: 0;
    margin-bottom: 50px;
}
#works_list:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--blue01);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: 0.1; 
}


#works_list > .wrap {
    width: 1280px;
    max-width: 95%;
}

.works_list {
    display: grid;
    grid-template-columns: 100%;
    gap: 30px 0;

}
.works_list > .item {
    background: #fff;
    padding: 30px 20px;
}

.works_list > .item h3 {
    display: inline-block;
    padding: 5px 20px;
    background: var(--blue01);
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    margin-left: -30px;
    margin-top: -20px;
    margin-bottom: 20px;
    position: relative;
}
.works_list > .item h3:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: var(--blue02);
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    position: absolute;
    top: 100%;
    left: 0;
}

.works_list > .item p {
    text-align: right;
    margin: 0.5em 0 0;
}

.works_list ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}
.works_list ul > li {
    display: flex;
    border-bottom: 1px dashed #ccc;
    padding: 10px 5px;
}
.works_list ul > li > div:nth-child(1) {
    width: 115px;
    min-width: 115px;
    color: var(--blue02);
}

@media (max-width: 1029px) {

    .works_list ul {
        grid-template-columns: 100%;
    }
}

@media (max-width: 767px) {
    .works_list ul > li {
        font-size: 14px;
        line-height: 1.5;
    }
    .works_list ul > li > div:nth-child(1) {
        width: 90px;
        min-width: 90px;
    }
    .works_list > .item p {
        font-size: 14px;
    }
}


/* *************************************
// 会社概要
************************************* */

.title01 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0 20px;
    margin-bottom: 50px;
    position: relative;
}
.title01 .jp {
    font-size: 30px;
    font-weight: bold;
}
.title01 .en {
    font-size: 20px;
    display: none;
}

.title01:before {
    bottom: -18px;
    content: "";
    display: inline-block;
    height: 5px;
    left: 50%;
    margin: 0 0 0 -20px;
    position: absolute;
    width: 40px;
    background: var(--main-color);
}

@media (max-width: 767px) {

    .title01 .jp {
        font-size: 25px;
    }
}

.about_table table {
    width: 100%;
}

.about_table table tr th,
.about_table table tr td {
    padding: 20px;
    border-bottom: 1px solid #ccc;  
}

.about_table table tr th {
    width: 300px;
    border-bottom-color: var(--blue02);
    color: var(--blue02);

}


@media (max-width: 1029px) {
    .about_table table tr th {
        width: 200px;
    }

    #about_awards.about_table table tr th  {
        width: 300px;
    }
}

@media (max-width: 767px) {
    .about_table table tr th,
    #about_awards.about_table table tr th {
        width: 100%;
        background: var(--blue02);
        color: #fff;
        padding: 10px 15px;
    }

    .about_table table tr th,
    .about_table table tr td {
        border: none;
    }

}


/* 挨拶 */

#about_message .layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

#about_message .subtitle {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: var(--blue02);
} 

#about_message .layout img {
    width: 100%;
    display: block;
}

#about_message .sign {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: flex-end;
    gap: 0 1em;
}
#about_message .sign .name {
    font-size: 25px;
}

@media (max-width: 767px) {

    #about_message .subtitle {
        font-size: 20px;
    }
    #about_message .layout {
        grid-template-columns: 100%;
    }

    #about_message .layout .right {
        width: 60%;
        margin: auto;
    }
}



#about_philosophy {
    position: relative;
    z-index: 0;
}
#about_philosophy:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--blue01);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: 0.1;
}

#about_philosophy > .inner {
    position: relative;
    z-index: 0;
}

#about_philosophy .philosophy_wrap {
    display: grid;
    place-content: center;
}

#about_philosophy ol {
    display: grid;
    grid-template-columns: 100%;
    gap: 0;
}

#about_philosophy ol > li {
    display: grid;
    align-items: center;
    grid-template-columns: 100px 1fr;
    gap: 0 20px;
    padding: 30px 0;
}
#about_philosophy ol > li:not(:last-child) {
    border-bottom: 1px solid #ccc;
}

#about_philosophy ol > li > .inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0 30px;
    align-items: center;
}

#about_philosophy ol > li .num {
    font-size: 80px;
    line-height: 1;
    color: var(--blue01);
    font-weight: bold;
}

#about_philosophy ol > li .text {
    font-size: 20px;
    font-weight: bold;
    line-height: 2;
    flex: 1;
}
#about_philosophy ol > li .detail {
    width: 100%;
}

@media (max-width: 767px) {

    #about_philosophy ol > li {
        grid-template-columns: 100%;
    }
    #about_philosophy ol > li .num {
        font-size: 40px;
        margin: 0 auto 15px;
    }
    #about_philosophy ol > li .text {
        line-height: 1.6;
    }
}


#about_profile table tr th {
    font-weight: bold;
}


#about_staff .staff_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 60px;
}
#about_staff .staff_list .item {
    width: 100%;
}

#about_staff .staff_list .item .info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 40px;
}
#about_staff .staff_list .item .info .image {
    border-radius: 50%;
    overflow: hidden;
}
#about_staff .staff_list .item .info .image > img {
    width: 100%;
    display: block;
}

#about_staff .staff_list .item .text {
    margin-top: 20px;
}


/* *************************************
// 事業紹介
************************************* */

/* 沼津金網について */
#service_top {
    position: relative;
    z-index: 0;
}
#service_top:before {
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
    background: var(--blue01);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: 0.1;
}

#service_top .three_in_one {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px 30px;
    margin-top: 50px;
}
#service_top .three_in_one > div {
    width: 100%;
    background: #fff;
}

#service_top .three_in_one > div img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}
#service_top .three_in_one > div .text {
    padding: 1px 15px 0px;
    font-size: 16px;
}
#service_top .three_in_one > div .text h3 {
    display: inline-block;
    padding: 5px 20px;
    background: var(--blue01);
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    margin-left: -25px;
    margin-top: -20px;
    margin-bottom: 20px;
    position: relative;
}
#service_top .three_in_one > div .text h3:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: var(--blue02);
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    position: absolute;
    top: 100%;
    left: 0;
}

@media (max-width: 1029px) {
    #service_top .three_in_one > div .text h3 {
        font-size: 18px;
    }

}

@media (max-width: 767px) {
    #service_top:before {
        height: 70%;
    }

    #service_top .three_in_one {
        grid-template-columns: 90%;
    }
}

/* 強み */

#service_strong {
    background: var(--blue01);
}
#service_strong .title01 {
    color: #fff;
}
#service_strong .title01:before {
    background-color: #fff;
}


ol.num01 {
    display: grid;
    grid-template-columns: 100%;
    gap: 60px 0;
}
ol.num01 > li {
    background: #fff;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 300px;
    gap: 0 20px;
    padding: 30px 40px;
}

ol.num01 > li > .inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0 30px;
    align-items: center;
}

ol.num01 > li .num {
    font-size: 80px;
    line-height: 1;
    color: var(--blue01);
    font-weight: bold;
}

ol.num01 > li .text {
    font-size: 20px;
    font-weight: bold;
    line-height: 2;
    flex: 1;
}
ol.num01 > li .detail {
    width: 100%;
    border-top: 1px solid #ccc;
    padding-top: 20px;
    margin-top: 15px;
}

ol.num01 > li img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
    width: 100%;
    display: block;
}

@media (max-width: 1029px) {

    ol.num01 > li .text {
        width: 100%;
        line-height: 1.5;
    }
}

@media (max-width: 767px) {
    ol.num01 {
        gap: 30px;
    }
    ol.num01 > li {
        grid-template-columns: 100%;
        padding: 30px 20px;
        gap: 20px;
    }
    ol.num01 > li .text {
        flex: none;
    }
    ol.num01 > li .num {
        margin: 0 auto 15px;
        font-size: 50px;
    }

}
