/* 全ページ共通 */
html {
    font-size: 62.5%;
}

@font-face {
    font-family: "GenJyuuGothic";
    src: url(../font/GenJyuuGothic-ExtraLight.ttf) format('truetype');
    font-weight: 100;
}

@font-face {
    font-family: "GenJyuuGothic";
    src: url(../font/GenJyuuGothic-Light.ttf) format('truetype');
    font-weight: 200;
}

@font-face {
    font-family: "GenJyuuGothic";
    src: url(../font/GenJyuuGothic-Normal.ttf) format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: "GenJyuuGothic";
    src: url(../font/GenJyuuGothic-Regular.ttf) format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: "GenJyuuGothic";
    src: url(../font/GenJyuuGothic-Medium.ttf) format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: "GenJyuuGothic";
    src: url(../font/GenJyuuGothic-Bold.ttf) format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: "GenJyuuGothic";
    src: url(../font/GenJyuuGothic-Heavy.ttf) format('truetype');
    font-weight: 700;
}

body {
    font-family: "GenJyuuGothic";
    background-color: #FDFCFA;
    margin: 0;
}

a {
    text-decoration: none;
}

h1 {
    font-size: 60px;
    font-weight: 500;
}

h2 {
    font-size: 45px;
    font-weight: 500;
    color: #13334E;
}

h3 {
    font-size: 35px;
    font-weight: 600;
    color: #13334E;
}

li {
    list-style: none;
}

h1, h2, h3, p {
    margin: 0px;
}

/* パンくずリスト */
.breadcrumb {
    color: #13334E;
    font-size: 11px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.breadcrumb a span {
    color: #FF8D2A;
}

/* ヘッダー */
header {
    margin: 0px 70px;
    padding-top: 60px;
    height: 90px;
    display: flex;
    justify-content: space-between;
}

.logo img {
    width: 120px;
}

#menu-global-navigation {
    display: flex;
}

.header_menu a {
    color: #13334E;
    margin-left: 25px;
    font-size: 16px;
}

.nav {
    transition: all 250ms ease-out;
    transform: translateX(100%);
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 110px 35px;
    position: fixed;
    top: 0;
    right: 0px;
    left: 0px;
}

/* ハンバーガーメニューをクリックした時に出るメニュー */
.nav.show {
    background-color: #F0A11C;
    color: #fff;
    position: fixed;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 110px 35px;
    transform: translateX(0%);
    z-index: 89;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    letter-spacing: 0.5em;
    margin: 0px auto;
    line-height: 1;
    text-align: center;
}

.nav-menu p {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 100px;
}

.nav-menu a {
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
}
/* 上記ハンバーガーメニュー */

/* フッター */
footer {
    background-color: #31261E;
    color: #fff;
    padding: 0px 140px;
    display: flex;
    justify-content: space-between;
}

.footer_title {
    font-size: 28px;
    margin-top: 50px;
}

.footer_info {
    margin-top: 90px;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    flex-flow: column;
    align-items: end;
}

.footer_info p,
.footer_info a {
    margin-bottom: 20px;
}

.footer_info a {
    color: #fff;
    margin-bottom: 55px;
}

/* トップページ　ファーストビュー */
.firstview {
    width: 100%;
    height: 100vh;
    margin-bottom: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../image/firstview.JPG);
}

.catchcopy {
    position: relative;
    margin: 49vh 105px 0px auto;
    width: 450px;
    height: 170px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.catchcopy_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 50%;
    filter: blur(30px);
    z-index: 0;
}

.catchcopy h1 {
    color: #13334E;
    z-index: 1;
}

.catchcopy h1 span {
    color: #FA8D2A;
}
/* 上記ファーストビュー */

/* トップページ　ご挨拶 */
.home_hello {
    margin: 0px 140px 100px;
}

.hello_title {
    margin-bottom: 40px;
}

.hello_inner {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 30px;
}

.hello_inner img {
    max-width: 450px;
    width: 45%;
    height: calc(45% * 0.6);
    border-radius: 10px;
    object-fit: cover;
}

.text {
    font-size: 16px;
    line-height: 2;
    color: #13334E;
}

.hello_btn {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.hello_btn a {
    width: 200px;
    height: 40px;
}

.button,
.send_btn input {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    border-radius: 20px;
    background-image: linear-gradient(to right, #FF8D2A, #FBDB56);
}

.hello_btn .button img {
    width: 12px;
    height: 10px;
    margin-left: 40px;
}

/* トップページ　施工事例 */
.home_example {
    margin: 0px 140px 100px;
}

.example_title {
    margin-bottom: 40px;
}

.example_wrap {
    margin: 0px 70px 40px;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.example_inner_big img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
}

.example_inner_small {
    width: 250px;
    height: 70px;
    background-color: white;
    position: absolute;
    top: calc(100% - 70px);
    right: 0px;
    border-radius: 10px 0px 0px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.example_inner_small p {
    color: #13334E;
    font-size: 14px;
    font-weight: 400;
}

.example_inner_small::before,
.example_inner_small::after {
    width: 10px;
    height: 10px;
    background-color: white;
    position: absolute;
    content: '';
}

.example_inner_small::before {
    top: -10px;
    right: 0;
    clip-path: path("M10,0v10h-10C5,10,10,5,10,0Z");
    /* M10,0：開始点 v10：垂直線を描く h-10：水平線を描く C：曲線 5(x),10(y)第1制御点 10(x),5(y)第2制御点 終点：10,0 */
    /* 右上からスタート */
}

.example_inner_small::after {
    top: 60px;
    left: -10px;
    clip-path: path("M10,0v10h-10C5,10,10,5,10,0Z");
}

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

.example_btn a {
    width: 130px;
    height: 40px;
}

.example_btn .button img {
    width: 12px;
    height: 10px;
    margin-left: 40px;
}

/* トップページ　鷲見技装ができること */
.home_category {
    margin-bottom: 100px;
    width: 100%;
    height: 700px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url(../image/category.jpeg);
}

.home_category::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #61615F;
    mix-blend-mode: multiply;
}

.home_category h3,
.home_category p {
    color: #fff;
}

.category_title,
.category_heading,
.category_list {
    position: relative;
    z-index: 1;
}

.category_title {
    padding: 70px 140px 0px;
    margin-bottom: 40px;
}

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

.category_heading p {
    font-size: 24px;
    font-weight: 600;
}

.category_list {
    font-size: 16px;
    font-weight: 600;
    height: 400px;
    margin: 80px 210px 0;
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
    align-items: center;
    gap: 55px 10px;
}

.category_list p {
    text-align: center;
    width: 300px;
}

/* トップページ　選ばれる理由 */
.home_select {
    margin: 0px 140px 100px;
}

.select_title {
    margin-bottom: 60px;
}

.select_wrap {
    display: flex;
    justify-content: center;
    column-gap: 60px;
}

.select_inner {
    display: flex;
    flex-flow: column;
    align-items: center;
    position: relative;
    color: #13334E;
    flex: 1;
}

.select_number {
    position: absolute;
    font-size: 60px;
    font-weight: 600;
    color: #F39800;
    left: calc(50% - 100px);
    top: 0px;
    line-height: 1;
}

.select_inner img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.select_inner_title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.select_text {
    font-size: 16px;
}

.selest_btn {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.selest_btn a {
    width: 190px;
    height: 40px;
}

.selest_btn .button img {
    width: 12px;
    height: 10px;
    margin-left: 40px;
}

/* トップページ　取引の流れ */
.home_flow {
    margin: 0px 210px 100px;
}

.flow_title {
    margin-bottom: 60px;
}

.flow_list .flow:nth-child(-n+4) {
    margin-bottom: 60px;
    position: relative;
}

.flow {
    display: flex;
    justify-content: space-around;
    align-items: center;
    column-gap: 50px;
}

.flow p {
    color: #13334E;
}

.flow_list .flow:nth-child(-n+4)::after {
    content: '';
    position: absolute;
    display: block;
    width: 1px;
    height: 50px;
    background-color: #13334E;
    left: 18px;
    transform: translateY(70px);
}

.flow_number {
    font-size: 60px;
    font-weight: 600;
}

.flow img {
    width: 70px;
    height: 70px;
}

.flow_text_wrap {
    width: 100%;
}

.flow_heading {
    font-size: 22px;
    margin-bottom: 15px;
}

.flow_text {
    font-size: 16px;
}

/* トップページ　料金システム */
.home_system {
    margin: 0px 140px 100px;
}

.home_system p {
    color: #13334E;
}

.system_title {
    margin-bottom: 40px;
}

.system_content_group {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.cross {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 40px;
}

.floor {
    grid-column: 2;
    grid-row: span 2;
}

.fusuma {
    grid-column: 1;
    grid-row: 2;
}

.system_content_title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}

.system_content_text {
    font-size: 18px;
}

.conditions {
    margin-bottom: 20px;
}

.system_content_text .conditions:nth-of-type(2) {
    margin-top: 40px;
}

.text_inner {
    display: flex;
    margin-bottom: 20px;
    column-gap: 50px;
    width: 450px;
}

.item {
    width: 130px;
}

.text-description {
    line-height: 2;
}

.system_btn {
    display: flex;
    justify-content: center;
    margin-top: 70px;
}

.system_btn a {
    width: 190px;
    height: 40px;
}

.system_btn .button img {
    width: 12px;
    height: 10px;
    margin-left: 40px;
}

/* トップページ　お問い合わせリンク */
.contact_link {
    width: 100%;
    height: 400px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 160px;
}

.contact_link::before {
    content: '';
    position: absolute;
    inset: 0;
    mix-blend-mode: multiply;
    background-color: #929292;
}

.contact_title {
    color: #fff;
    z-index: 1;
    margin-bottom: 40px;
}

.contact_link p {
    font-size: 14px;
    color: #fff;
    display: block;
    margin-bottom: 45px;
    z-index: 1;
}

.contact_link img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    top: 0;
    position: absolute;
    mix-blend-mode: multiply;
}

.contact_btn {
    z-index: 1;
}

.contact_btn a {
    width: 190px;
    height: 45px;
    border-radius: 23px;
}
/* 上記トップページ */


/* ページ　鷲見技装について */
.page_title {
    margin: 125px 140px 60px;
}

.page_title h2 {
    margin-bottom: 10px;
}

.page_about_content_block {
    margin: 0px 140px;
    color: #13334E;
}

.page_about_content {
    margin-bottom: 120px;
}

.page_about_content_title {
    margin-bottom: 40px;
}

.page_about_content_title p {
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
    position: relative;
}

.page_about_content_title p::before {
    content: '';
    background-color: #FF8D2A;
    display: block;
    width: 120px;
    height: 15px;
    position: absolute;
    top: 16px;
    z-index: -1;
}

.page_about_content.under .page_about_content_title p::before {
    width: 140px;
}

.page_about_inner {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
}

.page_about_content.middle .page_about_inner {
    flex-flow: row-reverse;
}

.page_about_inner_img {
    width: 45%;
    aspect-ratio: 3 / 2;
    border-radius: 10px;
    overflow: hidden;
}

.page_about_inner_img img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.page_about_inner p {
    max-width: 45%;
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
}

.business_info {
    width: 100%;
    height: 1050px;
    background-color: #F58220;
    margin-bottom: 160px;
    color: #fff;
    display: flex;
    flex-flow: column;
    align-items: center;
}

.business_info > p {
    font-size: 25px;
    font-weight: 500;
    padding: 70px 0px;
}

.business_info_text_wrap {
    display: flex;
    flex-flow: column;
}

.info_text_inner {
    display: flex;
    align-items: end;
    font-size: 16px;
    margin-bottom: 40px;
    width: 550px;
    border-bottom: 1px dashed #fff;
    padding-bottom: 3px;
}

.info_text_inner > p:nth-child(1) {
    width: 150px;
    margin-right: 50px;
    flex-shrink: 0;
    text-align: center;
}

/* ページ　施工事例内容 */
.page_example_content {
    margin: 0px 140px;
    color: #13334E;
}

.post_Links {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #13334E;
    margin: 60px 140px 160px;
}

.postLink {
    width: 50%;
}

.postLink a {
    color: #13334E;
}

.postLink-next {
    text-align: right;
}

.postLink-prev i {
    margin-right: 5px;
}

.postLink-next i {
    margin-left: 5px;
}

.fa-chevron-left::before {
    content: "<";
}

.fa-chevron-right::before {
    content: ">";
}

/* ページ　施工事例リスト */
.exampleList_wrap {
    margin: 0px 140px 160px;
}

.category_check {
    margin: 0px 140px;
    color: #13334E;
}

.search_radio {
    display: flex;
    margin: 0px 70px 30px;
}

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

.search_radio_label label {
    display: flex;
    align-items: center;
    font-size: 12px;
    line-height: 1;
    margin-right: 15px;
    margin-bottom: 15px;
}

.search_radio label input {
    width: 15px;
    height: 15px;    
    margin-right: 10px;
    border-radius: 10px;
}

.search_button {
    width: 100px;
    height: 20px;
    font-weight: 600;
    border-radius: 5px;
    background-color: #FF8D2A;
    color: #fff;
    box-shadow: 1px 3px 5px #B1B1B1;
    margin-left: auto;
}

.active-term {
    color: #FF8D2A;
}

.exampleList_wrap > .example_block:nth-child(n+2) {
    margin-top: 100px;
}

.example_block {
    margin: 0px 70px;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.example_block a {
    display: block;
    width: 100%;
    height: 200px;
}

.example_block img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
}

.example_category {
    min-width: 80px;
    height: 25px;
    background-color: white;
    position: absolute;
    top: 10px;
    left: 20px;
    border-radius: 13px;
}

.example_category a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 25px;
    font-size: 10px;
    padding: 0 16px;
    color: #FF8D2A;
}

.example_text {
    width: 250px;
    height: 70px;
    background-color: white;
    position: absolute;
    top: calc(100% - 70px);
    right: 0px;
    border-radius: 10px 0px 0px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.example_text p {
    color: #13334E;
    font-size: 14px;
    font-weight: 400;
    padding: 0px 10px;
}

.example_text::before,
.example_text::after {
    width: 10px;
    height: 10px;
    background-color: white;
    position: absolute;
    content: '';
}

.example_text::before {
    top: -10px;
    right: 0;
    clip-path: path("M10,0v10h-10C5,10,10,5,10,0Z");
    /* M10,0：開始点 v10：垂直線を描く h-10：水平線を描く C：曲線 5(x),10(y)第1制御点 10(x),5(y)第2制御点 終点：10,0 */
    /* 右上からスタート */
}

.example_text::after {
    top: 60px;
    left: -10px;
    clip-path: path("M10,0v10h-10C5,10,10,5,10,0Z");
}

.wp-pagenavi {
    margin: 25px 70px 0px;
    color: #13334E;
}

.wp-pagenavi a {
    color: #13334E;
}

.post_none {
    margin: 0px 140px 160px;
    font-size: 18px;
    text-align: center;
}

/* ページ　選ばれる理由 */
.page_select_content_block {
    margin: 0px 210px 160px;
}

.page_select_content.top,
.page_select_content.middle {
    margin-bottom: 100px;
}

.page_select_content_title {
    margin-bottom: 40px;
}

.page_select_content_title p {
    font-size: 30px;
    font-weight: 600;
    color: #13334E;
    position: relative;
}

.page_select_content_title p::before {
    content: '';
    background-color: #FF8D2A;
    display: block;
    height: 15px;
    position: absolute;
    top: 27px;
    z-index: -1;
}

.page_select_content.top .page_select_content_title p::before {
    width: 370px;
}

.page_select_content.middle .page_select_content_title p::before {
    width: 310px;
}

.page_select_content.under .page_select_content_title p::before {
    width: 160px;
}

.page_select_content.middle .page_select_inner {
    flex-flow: row-reverse;
}

.page_select_inner {
    display: flex;
    justify-content: space-between;
    color: #13334E;
    gap: 70px;
}

.page_select_inner.top,
.page_select_inner.middle {
    margin-bottom: 40px;
}

.page_select_inner img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.page_select_inner_title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
}

.page_select_text {
    font-size: 16px;
}

/* ページ　料金システム */
.page_system {
    margin: 0px 140px 160px;
}

.page_system .page_title {
    margin: 125px 0px 60px;
}

.system_content {
    color: #13334E;
    margin-bottom: 70px;
}

.system_content_title {
    position: relative;
    font-size: 30px;
    font-weight: 600;
}

.system_content_title p::before {
    content: '';
    background-color: #FF8D2A;
    display: block;
    height: 15px;
    position: absolute;
    top: 27px;
    z-index: -1;
}

.system_content.top .system_content_title p::before {
    width: 190px;
}

.system_content.middle .system_content_title p::before {
    width: 400px;
}

.system_content.under .system_content_title p::before {
    width: 310px;
}

.page_system_content_text {
    font-size: 18px;
    margin-left: 35px;
}

.conditions {
    margin-bottom: 30px;
    font-weight: 500;
}

.page_system_content_text .conditions:nth-of-type(n+2) {
    margin-top: 50px;
}

.page_system_text_inner {
    display: flex;
    width: 800px;
    margin-bottom: 30px;
    position: relative;
    overflow: visible;
}

.page_system_text_inner p {
    font-weight: 500;
}

.page_system_text_inner span {
    font-size: 11px;
    font-weight: 400;
}

.page_system_text_inner .span_note {
    font-size: 14px;
}

.system_content_item {
    width: 400px;
    flex-shrink: 0;
}

.system_note {
    color: #13334E;
    margin-bottom: 100px;
}

.note_title {
    margin-bottom: 30px;
}

.note_title p {
    font-size: 20px;
    font-weight: 600;
}

.note_text p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}

.free_service {
    color: #13334E;
}

.free_service_title {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 50px;
}

.free_service_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.free_service_content .free_service_inner:nth-child(2),
.free_service_content .free_service_inner:nth-child(4) {
    justify-self: end;
}

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

.free_service_inner img {
    width: 70px;
    height: 70px;
    margin-right: 15px;
}

.free_service_text {
    width: 30vw;
    flex-shrink: 0;
}

.free_service_text p:nth-child(1) {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.free_service_text p:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
}

.tablet_display {
    display: none;
}

/* ページ　お問い合わせ */
.page_contact {
    margin-bottom: 160px;
}

.line_button,
.send_btn {
    width: 100%;
    display: flex;
    justify-content: center;
}

.line_button {
    margin-bottom: 75px;
}

.line_button a {
    width: 280px;
    height: 40px;
    background-color: #19C855;
    border-radius: 20px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
}

.contact_form {
    display: flex;
    flex-flow: column;
    align-items: center;
    margin-bottom: 70px;
    color: #13334E;
}

.form_group label,
.form_group_radio > label {
    display: flex;
    align-items: center;
    margin-bottom: 45px;
}

.form_content label {
    align-items: start;
    margin-bottom: 20px;
}

.form_content label p {
    margin-top: 10px;
}

.contact_form span {
    color: #FF3B00;
}

.form_group_radio span {
    color: #13334E;
}

.form_group label,
.form_group_radio label,
.final_check label {
    font-size: 16px;
}

.form_group > label > p,
.form_group_radio > label > p {
    display: inline-block;
    width: 250px;
    text-align: center;
    flex-shrink: 0;
}

.form_group > label > p span,
.form_group_radio > label > p span {
    margin-left: 5px;
}

input,
textarea {
    width: 450px;
    background-color: #FCEFCF;
    border-radius: 5px;
    border: none;
}

input {
    height: 40px;
    padding-left: 10px;
}

textarea {
    height: 200px;
    padding-top: 10px;
    padding-left: 10px;
}

input::placeholder,
textarea::placeholder {
    font-size: 16px;
    font-family: "GenJyuuGothic";
    font-weight: 300;
    color: #959595;
}

textarea::placeholder {
    line-height: 1.5;
}

.radio_group {
    display: flex;
    flex: 1;
}

.radio_group label input {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 5px;
}

.radio_group span > label {
    margin-right: 30px;
    display: flex;
    align-items: center;
    line-height: 1;
}

.wpcf7-list-item {
    margin: 0px !important;
}

.final_check {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 70px;
}

.final_check input {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    margin-right: 20px;
}

.final_check label {
    display: flex;
    align-items: center;
}

.final_check label p {
    color: #13334E;
}

.final_check label p > span {
    color: #FF3B00;
    margin-right: 10px;
}

.send_btn input {
    width: 150px;
    height: 40px;
}

.send_btn span {
    display: none;
}

/* ページ　プライバシーポリシー */
.page_privacy {
    margin-bottom: 160px;
}

.privacy_content {
    margin: 0px 140px;
}

/* -----画面幅1500px以上----- */
/* -----画面幅調整用----- */
@media screen and (min-width: 1500px) {
/* トップページ　ご挨拶 */
.hello_inner img {
    max-width: 600px;
}

/* トップページ　ご挨拶+ページ 鷲見技装について */
.text,
.page_about_inner p {
    line-height: 2.5;
}

/* トップページ　取引の流れ 料金 */
.flow_title,
.system_title {
    width: 1000px;
    margin: 0px auto 60px;
}

.flow_list,
.system_content_group {
    width: 1000px;
    margin: 0px auto;
}

/* トップページ　施工事例+ページ　施工事例リスト */
.example_wrap,
.example_block,
.example_block img {
    height: 300px;
}
}


/* -----タブレット版----- */
@media screen and (max-width: 1024px) {
/* 画面サイズが1024px以下の場合に適用 */
/* -----共通部分----- */
h1 {
    font-size: 50px;
}

h2 {
    font-size: 40px;
}

/* ヘッダー */
/* ハンバーガーメニュー */
.nav_toggle {
    display: block;
    width: 4rem;
    height: 2rem;
    position: absolute;
    right: 70px;
    z-index: 90;
}

.nav_toggle i {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #13334E;
    position: absolute;
    transition: transform .5s, opacity .5s;
}

.nav_toggle.show {
    position: fixed;
    right: 70px;
}

/* ハンバーガーメニューの3本線 */
.nav_toggle i:nth-child(1) {
    top: 0;
}

.nav_toggle i:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
}

.nav_toggle i:nth-child(3) {
    bottom: 0;
}

/* ハンバーガーメニューをクリックしたら×に変わる */
.nav_toggle.show i:nth-child(1) {
    transform: translateY(9px) rotate(-45deg);
    background-color: #fff;
}

.nav_toggle.show i:nth-child(2) {
    opacity: 0;
}

.nav_toggle.show i:nth-child(3) {
    transform: translateY(-9px) rotate(45deg);
    background-color: #fff;
}

/* ヘッダーメニュー非表示(画面1024px以下) */
.header_menu {
    display: none;
}

/* ナビメニュー */
.nav-menu a {
    display: flex;
    justify-content: center;
    font-size: 16px;
}
/* 上記ハンバーガーメニュー */

/* フッター */
footer {
    padding: 0px 70px;
}

/* トップページ　ファーストビュー */
.catchcopy {
    margin: 61vh 20px 0px auto;
    width: 400px;
    height: 160px;
}

.catchcopy_bg {
    filter: blur(25px);
}
/* 上記ファーストビュー */

/* トップページ　ご挨拶 */
.home_hello {
    margin: 0px 70px 100px;
}

.hello_inner {
    flex-flow: column;
    justify-content: center;
    width: 100%;
    gap: 40px;
}

.hello_inner img {
    max-width: none;
    width: 100%;
    max-height: 500px;
}

/* トップページ　施工事例 */
.home_example {
    margin: 0px 70px 100px;
}

.example_wrap {
    margin: 0px 0px 40px;
}

/* トップページ　鷲見技装ができること */
.home_category {
    height: 550px;
}

.category_title {
    padding: 40px 70px 0px;
    margin-bottom: 40px;
}

.category_list {
    height: 320px;
    margin: 40px 70px 0;
    gap: 40px 10px;
}

.category_heading p {
    font-size: 21px;
}

.category_list p {
    text-align: center;
    width: 290px;
}

/* トップページ　選ばれる理由 */
.home_select {
    margin: 0px 70px 100px;
}

.select_title {
    margin-bottom: 40px;
}

.select_wrap {
    flex-flow: column;
    column-gap: 0px;
    row-gap: 40px;
}

.select_inner {
    align-items: start;
    flex-flow: row;
    gap: 60px;
}

.select_number {
    left: 0;
}

.select_text_wrap {
    display: block;
}

.select_inner img {
    margin-bottom: 0px;
    flex-shrink: 0;
}

.select_inner_title {
    text-align: start;
}

.selest_btn {
    margin-top: 30px;
}


/* トップページ　取引の流れ */
.home_flow {
    margin: 0px 70px 100px;
}

.flow_title {
    margin-bottom: 40px;
}

.flow_list .flow:nth-child(-n+4) {
    margin-bottom: 40px;
}

.flow {
    column-gap: 45px;
}

/* トップページ　料金システム */
.home_system {
    margin: 0px 70px 100px;
}

.system_content_group {
    display: block;
}

.text_inner {
    column-gap: 60px;
}

.system_btn {
    margin-top: 30px;
}

/* トップページ　お問い合わせリンク */
.contact_link {   
    height: 300px;
}
/* 上記トップページ */


/* ページ　鷲見技装について */
.page_title { 
    margin: 100px 70px 50px;
}

.page_about_content_block {
    margin: 0px 70px 125px;
}

.page_about_content {
    margin-bottom: 100px;
}

.page_about_inner {
    flex-flow: column;
    align-items: center;
    gap: 40px;
}

.page_about_content.middle .page_about_inner {
    flex-flow: column;
}

.page_about_inner_img {
    width: 100%;
    height: 400px;
}

.page_about_inner p {
    max-width: 100%;
}

.business_info {
    width: 100%;
    height: 1050px;
    margin-bottom: 125px;
}

/* ページ　施工事例内容 */
.page_example_content {
    margin: 0px 70px;
}

.post_Links {
    margin: 60px 70px 125px;
}

/* ページ　施工事例リスト */
.exampleList_wrap {
    margin: 0px 70px 125px;
}

.category_check {
    margin: 0px 70px;
}

.search_radio {
    margin: 0px 0px 40px;
}

.exampleList_wrap > .example_block:nth-child(n+2) {
    margin-top: 100px;
}

.example_block {
    margin: 0px;
}

.wp-pagenavi {
    margin: 25px 0px 0px;
}

.post_none {
    margin: 0px 70px 125px;
}

/* ページ　選ばれる理由 */
.page_select_content_block {
    margin: 0px 70px 125px;
}

.page_select_content_title {
    margin-bottom: 30px;
}

.page_select_content_title p {
    font-size: 24px;
}

.page_select_content_title p::before {
    top: 19px; 
}

.page_select_content.top .page_select_content_title p::before {
    width: 300px;
}

.page_select_content.middle .page_select_content_title p::before {
    width: 250px;
}

.page_select_content.under .page_select_content_title p::before {
    width: 130px;
}

.page_select_inner {
    gap: 35px;
}

.page_select_inner.top,
.page_select_inner.middle {
    margin-bottom: 30px;
}

.page_select_inner img {
    width: 180px;
    height: 180px;
}

.page_select_inner_title {
    margin-bottom: 20px;
}

.page_select_text {
    font-size: 15px;
}

/* ページ　料金システム */
.page_system {
    margin: 0px 70px 125px;
}

.page_system .page_title {
    margin: 100px 0px 50px;
}

.page_system_text_inner {
    width: auto;
}

.system_content_item {
    width: 360px;
}

.free_service_title {
    font-size: 30px;
    margin-bottom: 40px;
}

.free_service_content {
    display: flex;
    flex-flow: column;
    gap: 40px;
}

.free_service_content .free_service_inner:nth-child(2),
.free_service_content .free_service_inner:nth-child(4) {
    justify-self: normal;
}

.free_service_text {
    width: auto;
    max-width: none;
    flex-shrink: 1;
}

.tablet_display {
    display: block;
}

/* ページ　お問い合わせ */
.page_contact {
    margin-bottom: 125px;
}

.line_button {
    margin-bottom: 60px;
}

.contact_form {
    margin-bottom: 60px;
}

.form_group label,
.form_group_radio > label {
    margin-bottom: 40px;
}

.form_content label {
    margin-bottom: 15px;
}

input,
textarea {
    width: 400px;
}

.radio_group {
    flex-wrap: wrap;
    width: 400px;
}

.radio_group label {
    margin-right: 0px;
    width: 120px;
}

.final_check {
    margin-bottom: 60px;
}

/* ページ　プライバシーポリシー */
.page_privacy {
    margin-bottom: 125px;
}

.privacy_content {
    margin: 0px 70px;
}
}


/* -----モバイル版----- */
@media screen and (max-width:767px) {
/* 画面サイズが767px以下の場合に適用 */
/* -----共通部分----- */
h1 {
    font-size: 35px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 24px;
}

/* ヘッダー */
/* ハンバーガーメニュー */
.nav_toggle {
    width: 3rem;
    height: 1.4rem;
    right: 35px;
}

.nav_toggle.show {
    right: 35px;
}

/* ハンバーガーメニューをクリックしたら×に変わる */
.nav_toggle.show i:nth-child(1) {
    transform: translateY(6px) rotate(-45deg);
}

.nav_toggle.show i:nth-child(3) {
    transform: translateY(-6px) rotate(45deg);
}

header {
    margin: 0px 35px;
    padding-top: 50px;
    height: 60px;
}

.logo img {
    width: 80px;
}

/* フッター */
footer {
    display: block;
    padding: 0px 35px;
}

.footer_title {
    font-size: 20px;
    margin-top: 0px;
    padding-top: 30px;
}

.footer_info {
    margin-top: 20px;
    font-size: 13px;
}

.footer_info a {
    margin-bottom: 40px;
}

/* トップページ　ファーストビュー */
.firstview {
    margin-bottom: 90px;
}

.catchcopy {
    margin: 60vh 10px 0px auto;
    width: 270px;
    height: 120px;
}

.catchcopy_bg {
    filter: blur(20px);
}
/* 上記ファーストビュー */

/* トップページ　ご挨拶 */
.home_hello {
    margin: 0px 35px 90px;
}

.hello_title {
    margin-bottom: 30px;
}

.hello_inner {
    gap: 25px;
    margin-bottom: 25px;
}

.hello_inner img {
    height: calc((100vw - 70px) * 0.6);
}

.text {
    font-size: 14px;
}

.hello_btn a {
    width: 160px;
    height: 30px;
}

.button {
    font-size: 11px;
    border-radius: 15px;
}

.hello_btn .button img {
    margin-left: 30px;
}

/* トップページ　施工事例 */
.home_example {
    margin: 0px 35px 90px;
}

.example_title {
    margin-bottom: 30px;
}

.example_wrap {
    margin: 0px 0px 50px;
    height: 180px;
}

.example_inner_big img {
    height: 180px;
}

.example_inner_small {
    width: 200px;
    height: 70px;
}

.example_inner_small p {
    font-size: 12px;
}

.example_btn a {
    width: 110px;
    height: 30px;
}

.example_btn .button img {
    width: 12px;
    height: 10px;
    margin-left: 30px;
}

/* トップページ　鷲見技装ができること */
.home_category {
    margin-bottom: 90px;
    height: 600px;
}

.category_title {
    padding: 35px 35px 0px;
}

.category_heading p {
    font-size: 20px;
}

.category_list {
    font-size: 14px;
    height: auto;
    margin: 30px auto 0;
    flex-wrap: nowrap;
    gap: 20px 0px;
}

.category_list p {
    width: auto;
}

/* トップページ　選ばれる理由 */
.home_select {
    margin: 0px 35px 90px;
}

.select_title {
    margin-bottom: 30px;
}

.select_wrap {
    row-gap: 30px;
}

.select_inner {
    flex-flow: column;
    align-items: center;
    gap: 0px;
}

.select_number {
    left: calc(50% - 100px);
}

.select_inner img {
    margin-bottom: 20px;
}

.select_inner_title {
    margin-bottom: 15px;
    text-align: center;
}

.select_text {
    font-size: 14px;
}

.selest_btn a {
    width: 160px;
    height: 30px;
}

.selest_btn .button img {
    margin-left: 30px;
}

/* トップページ　取引の流れ */
.home_flow {
    margin: 0px 35px 90px;
}

.flow_title {
    margin-bottom: 30px;
}

.flow_list .flow:nth-child(-n+4) {
    margin-bottom: 30px;
}

.flow {
    column-gap: 20px;
    position: relative;
}

.flow_list .flow:nth-child(-n+4)::after {
    height: 60px;
    top: 90%;
    left: 12px;
    transform: translateY(0);
}

.flow_number {
    font-size: 40px;
}

.flow img {
    width: 50px;
    height: 50px;
}

.flow_heading {
    font-size: 18px;
}

.flow_text {
    font-size: 14px;
}

/* トップページ　料金システム */
.home_system {
    margin: 0px 35px 90px;
}

.system_title {
    margin-bottom: 30px;
}

.system_content_title {
    font-size: 18px;
    margin-bottom: 20px;
}

.system_content_text {
    font-size: 16px;
}


.system_content_text .conditions:nth-of-type(2) {
    margin-top: 25px;
}

.text_inner {
    margin-bottom: 20px;
    column-gap: 40px;
    width: auto;
}

.item {
    width: 120px;
}

.system_btn {
    margin-top: 30px;
}

.system_btn a {
    width: 160px;
    height: 30px;
}

.system_btn .button img {
    margin-left: 30px;
}

/* トップページ　お問い合わせリンク */
.contact_link {
    height: 180px;
    margin-bottom: 100px;
}

.contact_title {
    margin-bottom: 15px;
    font-size: 20px;
}

.contact_link p {
    font-size: 12px;
    margin-bottom: 25px;
}

.contact_link img {
    height: 180px;
}

.contact_btn a {
    width: 170px;
    height: 30px;
    border-radius: 15px;
}
/* 上記トップページ */


/* ページ　鷲見技装について */
.page_title { 
    margin: 75px 35px 40px;
}

.breadcrumb { 
    font-size: 10px;
}

.page_about_content_block {
    margin: 0px 35px 80px;
}

.page_about_content {
    margin-bottom: 75px;
}

.page_about_content_title {
    margin-bottom: 25px;
}

.page_about_content_title p {
    font-size: 20px;
}

.page_about_content_title p::before {
    width: 90px;
    height: 10px;
    top: 12px;
}

.page_about_content.under .page_about_content_title p::before {
    width: 110px;
}

.page_about_inner {
    gap: 20px;
}

.page_about_inner_img {
    width: 100%;
    height: calc((100vw - 70px) * 0.6);
}

.business_info {
    width: 100%;
    height: 980px;
    margin-bottom: 100px;
}

.business_info > p {
    font-size: 20px;
    padding: 50px 0px;
}

.business_info_text_wrap {
    margin: 0px 35px;
}

.info_text_inner {
    font-size: 14px;
    width: auto;
}

.info_text_inner > p:nth-child(1) {
    width: 100px;
    margin-right: 20px;
}

/* ページ　施工事例内容 */
.page_example_content {
    margin: 0px 35px;
}

.post_Links {
    margin: 40px 35px 100px;
    font-size: 12px;
}

/* ページ　施工事例リスト */
.exampleList_wrap {
    margin: 0px 35px 100px;
}

.category_check {
    margin: 0px 35px;
}

.search_button {
    width: 80px;
    flex-shrink: 0;
}

.example_block {
    height: 180px;
}

.exampleList_wrap > .example_block:nth-child(n+2) {
    margin-top: 50px;
}

.example_block img {
    height: 180px;
}

.example_category {
    left: 15px;
}

.example_text {
    width: 60%;
}

.example_text p {
    font-size: 12px;
}

.wp-pagenavi {
    margin: 20px 0px 0px;
}

.post_none {
    margin: 0px 35px 100px;
    font-size: 16px;
}


/* ページ　選ばれる理由 */
.page_select_content_block {
    margin: 0px 35px 100px;
}

.page_select_content.top,
.page_select_content.middle {
    margin-bottom: 75px;
}

.page_select_content_title p {
    font-size: 20px;
}

.page_select_content_title p::before {
    height: 10px;
    top: 18px;
}

.page_select_content.top .page_select_content_title p::before {
    width: 250px;
}

.page_select_content.middle .page_select_content_title p::before {
    width: 210px;
}

.page_select_content.under .page_select_content_title p::before {
    width: 110px;
}

.page_select_content.middle .page_select_inner {
    flex-flow: column;
}

.page_select_inner {
    justify-content: center;
    align-items: center;
    flex-flow: column;
    gap: 0px;
}

.page_select_inner img {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
}

.page_select_inner_title {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
}

.page_select_text {
    font-size: 14px;
}


/* ページ　料金システム */
.page_system {
    margin: 0px 35px 100px;
}

.page_system .page_title {
    margin: 75px 0px 40px;
}

.system_content {
    margin-bottom: 50px;
}

.system_content_title {
    font-size: 20px;
    margin-bottom: 30px;
}

.system_content_title p::before {
    height: 10px;
    top: 18px;
}

.system_content.top .system_content_title p::before {
    width: 130px;
}

.system_content.middle .system_content_title p::before {
    width: 270px;
}

.system_content.under .system_content_title p::before {
    width: 210px;
}

.page_system_content_text {
    font-size: 16px;
    margin-left: 0px;
}

.conditions {
    margin-bottom: 20px;
}

.page_system_content_text .conditions:nth-of-type(n+2) {
    margin-top: 40px;
}

.page_system_text_inner {
    display: block;
}

.system_content.under .page_system_text_inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.page_system_text_inner .span_note {
    font-size: 12px;
}

.system_content_item {
    width: 100%;
    margin-bottom: 15px;
    line-height: 1.2;
}

.system_content.under .page_system_text_inner .system_content_item {
    width: 50%;
    margin-bottom: 0px;
}

.system_note {
    margin-bottom: 75px;
}

.note_title {
    margin-bottom: 20px;
}

.note_title p {
    font-size: 18px;
}

.note_text p {
    margin-bottom: 15px;
}

.free_service_title {
    font-size: 20px;
    margin-bottom: 30px;
}

.free_service_content {
    gap: 30px;
}

.free_service_inner img {
    width: 50px;
    height: 50px;
}

.free_service_text {
    width: auto;
    max-width: none;
}

.free_service_text p:nth-child(1) {
    font-size: 16px;
}

.free_service_text p:nth-child(2) {
    font-size: 12px;
}

.tablet_display {
    display: none;
}


/* ページ　お問い合わせ */
.page_contact {
    margin-bottom: 100px;
}

.line_button {
    margin-bottom: 50px;
}

.line_button a {
    width: 200px;
    height: 30px;
    border-radius: 15px;
    font-size: 11px;
}

.contact_form {
    margin: 0px 35px;
}

.form_group > label,
.form_group_radio > label {
    display: block;
    margin-bottom: 30px;
}

.form_content label p {
    margin-top: 0px;
}

.form_group label,
.form_group_radio label,
.final_check label {
    font-size: 14px;
}

.form_group > label > p,
.form_group_radio > label > p {
    width: 100%;
    text-align: start;
    margin-bottom: 5px;
}

.final_check label p > span {
    margin-right: 5px;
}

input,
textarea {
    width: 100%;
    padding-right: 10px;
}

input {
    height: 40px;
}

input::placeholder,
textarea::placeholder {
    font-size: 14px;
}

.radio_group {
    width: auto;
}

.radio_group label {
    width: 90px;
    margin-right: 30px;
}

.final_check {
    margin-bottom: 35px;
}

.final_check label > input {
    margin-right: 10px;
}

.send_btn input {
    width: 120px;
    height: 30px;
    font-size: 12px;
}

/* ページ　プライバシーポリシー */
.page_privacy {
    margin-bottom: 100px;
}

.privacy_content {
    margin: 0px 35px;
}
}


/* 画面サイズが400px以下の場合に適用 */
@media screen and (max-width:400px) {
    .pc_display {
        display: none;
    }
}