﻿@charset "UTF-8";
/*
Theme Name: milk-san
Author: num
Description: This is my original theme.
Version: 1.0
*/

/*-------------------------------------
定義
-------------------------------------*/
:root {
    --font_ja: "Shippori Mincho", san-serif;
    --font_en: "Chillax", san-serif;
    --h1_font: clamp(22px, 3vw, 32px);
    --h2_font: clamp(25px, 3vw, 70px);
    --h3_font: clamp(22px, 3vw, 55px);
    --m_color: rgb(0, 172, 23);
    --m_color2: #999593;
    --m_color3: #4b4948;
    --a_color: #c2e900;
    --f_color: #222;
    --b_color: #ddd;
    --border_r: max(10px, min(15px, calc((100vw - 10px - 100%) * 9999)));
    --tr: 0.3s ease-out;
    --main_w: min(1240px, calc(100% - (var(--m_ps8) * 2)));
    --main_mp: 100px;
    --m_ps3: 30px;
    --m_ps5: 50px;
    --m_ps8: 80px;
    --gr: linear-gradient(45deg, var(--m_color) 0%, #007bd7 50%, #00beff 100%);
}

/*-------------------------------------
JSアニメーションパーツ
-------------------------------------*/
/*順番にフェードアップアニメーション*/
.order_fadeUp {
    -webkit-transition:
        opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    transition:
        opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s,
        transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.6s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
}
.order_fadeUp-is-show {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
/*フェードアップアニメーション*/
.fadeUp {
    -webkit-transition:
        opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    transition:
        opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s,
        transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.6s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
}
.fadeUp-is-show {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
/*左方向から右へフェードイン*/
.slide_left_fadeIn {
    -webkit-transition: all 800ms cubic-bezier(0.07, 0.76, 0.44, 1);
    transition: all 800ms cubic-bezier(0.07, 0.76, 0.44, 1);
    opacity: 0;
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
}
.slide_left_fadeIn-is-show {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
/*右方向から左へフェードイン*/
.slide_right_fadeIn {
    -webkit-transition: all 800ms cubic-bezier(0.07, 0.76, 0.44, 1);
    transition: all 800ms cubic-bezier(0.07, 0.76, 0.44, 1);
    opacity: 0;
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
}
.slide_right_fadeIn-is-show {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
/*ボックスアニメーション*/
.block {
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.block:before {
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition:
        transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53),
        -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    background-color: #fff;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.block.block_is-show:before {
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}
.block:after {
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0) translateX(0);
    -ms-transform: scaleX(0) translateX(0);
    transform: scaleX(0) translateX(0);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: -webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition:
        transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53),
        -webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    background-color: #555;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.block.block_is-show:after {
    -webkit-transform: scaleX(1) translateX(101%);
    -ms-transform: scaleX(1) translateX(101%);
    transform: scaleX(1) translateX(101%);
}
/*ボケながらフェードイン*/
.BlurFadeIn {
    visibility: hidden;
}
@keyframes blurAnime {
    from {
        filter: blur(30px);
        transform: scale(1.2);
        opacity: 0;
        visibility: hidden;
    }

    to {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
        visibility: visible;
    }
}
.BlurFadeIn-is-show {
    -webkit-animation: blurAnime 1s ease-in-out forwards 0s;
    -moz-animation: blurAnime 1s ease-in-out forwards 0s;
    animation: blurAnime 1s ease-in-out forwards 0s;
    visibility: visible;
}

/*-------------------------------------
共通パーツ
-------------------------------------*/
.pc_none2 {
    display: none;
}
.flex {
    display: -webkit-flex;
    display: flex;
}
.flex_c {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
.flex_c2 {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.flex_c_c {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.main_col {
    margin-bottom: calc(var(--main_mp) * 2);
}
.main_pa {
    padding-top: calc(var(--main_mp) * 2);
    padding-bottom: calc(var(--main_mp) * 2);
}
.m_a {
    max-width: var(--main_w);
    padding-left: 20px;
    padding-right: 20px;
}
.m_lr {
    margin-right: auto;
    margin-left: auto;
}
.m_ps3 {
    margin-bottom: var(--m_ps3);
}
.m_ps5 {
    margin-bottom: var(--m_ps5);
}
.m_ps8 {
    margin-bottom: var(--m_ps8);
}
.mb10 {
    margin-bottom: 10px;
}
.mb20 {
    margin-bottom: 20px;
}
.mb30 {
    margin-bottom: 30px;
}
.mb40 {
    margin-bottom: 40px;
}
.mb50 {
    margin-bottom: 50px;
}
.mb60 {
    margin-bottom: 60px;
}
.mb70 {
    margin-bottom: 70px;
}
.mb80 {
    margin-bottom: 80px;
}
.mb90 {
    margin-bottom: 90px;
}
.mb100 {
    margin-bottom: 100px;
}
.mt10 {
    margin-top: 10px;
}
.mt20 {
    margin-top: 20px;
}
.mt30 {
    margin-top: 30px;
}
.mt40 {
    margin-top: 40px;
}
.mt50 {
    margin-top: 50px;
}
.mt60 {
    margin-top: 60px;
}
.mt70 {
    margin-top: 70px;
}
.mt80 {
    margin-top: 80px;
}
.mt90 {
    margin-top: 90px;
}
.mt100 {
    margin-top: 100px;
}
.fc {
    text-align: center;
}
.fl {
    text-align: left;
}
.fr {
    text-align: right;
}
.fb {
    font-weight: bold;
}
.annotation {
    font-size: 13px;
    color: gray;
}

/*ボタン*/
.common_btn {
}
.fc.common_btn {
    display: flex;
    justify-content: center;
}
.common_btn a {
    text-decoration: none;
    color: var(--f_color);
    padding: 30px 20px;
    display: inline-block;
    background: var(--a_color);
    position: relative;
    font: 16px var(--font_en);
    letter-spacing: 0.15em;
    min-width: 250px;
    transition: var(--tr);
    display: block;
    width: 100%;
    max-width: 350px;
}
.common_btn a:before {
    position: absolute;
    right: 25px;
    top: 50%;
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    margin-top: -2px;
    border-right: 1px solid var(--f_color);
    border-top: 1px solid var(--f_color);
    transform: rotate(45deg) translateY(-50%);
}
.common_btn a:hover {
    opacity: 0.7;
}

/*-------------------------------------
CTA
-------------------------------------*/
.common_cta_wrap {
    /* background: url(img/bg02.jpg) no-repeat 50% / cover; */
    /* width: calc(100% - (124.63px * 2)); */
    /* margin-left: auto; */
    /* margin-right: auto; */
}
.common_cta_inner {
    text-align: center;
    position: relative;
    border: 1px solid var(--f_color);
    /* background: url(img/cta_bg.jpg) 50% 50% / cover; */
}
.common_cta_inner:before {
    /* content: ""; */
    background: url(img/cta_img01.png) no-repeat 50% / contain;
    aspect-ratio: 1000/935;
    height: auto;
    width: min(440px, 40vw);
    position: absolute;
    left: 11%;
    top: 50%;
    transform: translateY(-50%);
}
.common_cta_inner:after {
    /* content: ""; */
    background: url(img/icon01.png) no-repeat 50% / contain;
    aspect-ratio: 563/672;
    height: auto;
    width: min(270px, 30vw);
    position: absolute;
    left: 3%;
    top: 67%;
    transform: translateY(-50%);
    filter: drop-shadow(17px 10px 7px rgba(0, 0, 0, 0.2));
}
.common_cta_phone {
    width: min(100%, 50%);
}
.common_cta_mail {
    /* width: min(100%, 50%); */
    padding-top: min(80px, 10vw);
    padding-bottom: min(80px, 10vw);
    margin-left: auto;
    /* padding-right: 5vw; */
}
.common_cta_inner a {
    font: 900 clamp(27px, 3vw, 55px) var(--font_en);
    color: var(--f_color);
    text-decoration: none;
    letter-spacing: 0.43vw;
    /* width: fit-content; */
    /* margin-left: auto; */
    /* margin-right: auto; */
    position: relative;
    /* padding: 0 55px; */
}
.common_cta_inner a:before {
    position: absolute;
    right: 25px;
    top: 50%;
    display: block;
    /* content: ""; */
    width: 11px;
    height: 11px;
    border-right: 2px solid var(--f_color);
    border-top: 2px solid var(--f_color);
    transform: rotate(45deg) translateY(-50%);
}
.common_cta_inner img {
    width: min(40px, 7vw);
    margin-right: 10px;
    display: block;
}

/*-------------------------------------
見出し
-------------------------------------*/
h1 {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 30px;
}
body:not(.home):not(.single):not(.error404) h1,
body.single .single_h1 {
    /* padding: 40px 50px; */
    letter-spacing: 0.25em;
    margin: 0;
    font: 400 clamp(16px, 3vw, 20px) var(--font_ja);
    color: var(--f_color);
    width: fit-content;
    margin-left: auto;
    text-align: left;
}
body:not(.home):not(.single) h1:before,
body.single .single_h1:before {
    content: attr(data-text);
    display: block;
    text-transform: uppercase;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    font: 900 clamp(25px, 3vw, 50px) var(--font_en);
    letter-spacing: 0.52vw;
}
.singleh1 {
    color: var(--f_color);
    letter-spacing: 0;
    padding: 0;
    font-size: clamp(20px, 3vw, 25px);
    margin-bottom: var(--m_ps5);
    font-weight: normal;
}
h2 {
    margin: 0 0 50px;
    position: relative;
}
.top_h2 {
    position: relative;
}
.top_h2 h2 {
    z-index: 0;
    letter-spacing: 0.15em;
    font: bold 16px var(--font_ja);
}
.top_h2 .data_text {
    font: 900 var(--h2_font) var(--font_en);
    text-transform: uppercase;
    letter-spacing: 0.5vw;
    margin-bottom: 10px;
    position: relative;
}
.top_h2 h2:after {
    content: none;
    background: var(--f_color);
    width: 100px;
    height: 1px;
    display: block;
    border-radius: 10px;
    margin-top: 30px;
}
.other_h2 {
    letter-spacing: 0.25em;
    font-size: clamp(20px, 3vw, 30px);
    margin-bottom: var(--m_ps8);
}
.other_h2 h2 {
}
.other_h2 h2:before {
}
h3 {
    font-weight: bold;
    margin: 0 0 50px;
    font-size: 25px;
    position: relative;
}
h3:after {
    /* content: ""; */
    width: 100px;
    height: 2px;
    background: var(--f_color);
    display: block;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
}

/*-------------------------------------
レイアウト
-------------------------------------*/
@media only screen and (min-width: 551px) {
    body {
        min-width: 1000px;
    }
}
.wrap {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1920px;
}
.main_wrap {
    padding-top: calc(var(--main_mp) * 1);
    padding-bottom: calc(var(--main_mp) * 2);
    position: relative;
}
body.page-template-contact .main_wrap {
    padding-bottom: 0;
}

/*-------------------------------------
header
-------------------------------------*/
.header {
    /* background: linear-gradient(0deg, #ffffff 0%, #e1e1e1 100%); */
    position: relative;
}
body.home .header {
    height: auto;
    width: 100%;
    aspect-ratio: 16/9;
    /* max-height: 100vh; */
}
.header:before {
    /* content: ""; */
    background: url(img/header_bg_icon02.jpg) no-repeat 50% / cover;
    aspect-ratio: 405/180;
    height: auto;
    position: absolute;
    left: 0;
    top: 60%;
    transform: translateY(-50%);
    width: min(405px, 26vw);
    z-index: 1;
}
body.home .header:before {
    width: min(405px, 40vw);
}
body.home .header:after {
    content: "";
    width: 100%;
    height: 10vh;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, #fafafa 0%, white 100%);
}

/* サイトタイトル */
.site_ttl {
    line-height: 0;
    width: 300px;
    margin: 0;
    transition: var(--tr);
    padding-left: min(50px, 4vw);
}
.h_nav_wrap.is-fixed .site_ttl {
    width: 200px;
}
.site_ttl a {
    display: block;
    color: var(--f_color);
    font-weight: bold;
    text-decoration: none;
    margin: 0 auto;
    transition: var(--tr);
}
.site_ttl a:hover {
    opacity: 0.7;
}
/*ナビ*/
.h_nav_wrap {
    position: fixed;
    margin-left: auto;
    /* padding: 20px 50px; */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    transition: var(--tr);
}
.h_nav_wrap.is-fixed {
    background: #fff;
}
.h_nav_inner {
    justify-content: space-between;
    align-items: center;
}
.h_nav_wrap nav {
    height: 100%;
}
.pc_h_nav {
    height: 100%;
}
.pc_h_nav_top {
    justify-content: flex-end;
    margin-bottom: 10px;
    transition: var(--tr);
}
.h_nav_wrap.is-fixed .pc_h_nav_top {
    margin-bottom: 0;
}
.pc_h_nav li {
    margin-left: min(30px, 5vw);
    position: relative;
}
.pc_h_nav a,
.pc_h_nav span {
    font:
        normal 16px var(--font_en),
        var(--font_ja);
    padding: 10px 10px;
    text-decoration: none;
    color: var(--f_color);
    letter-spacing: 0.15vw;
    text-transform: capitalize;
    display: block;
}
.pc_h_nav ul ul a {
    font-size: 14px;
}
.pc_h_nav > ul > li:last-child {
    margin-left: 30px;
}
.pc_h_nav > ul > li:last-child a {
    background: var(--a_color);
    /* aspect-ratio: 1/1; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 44px 20px;
    transition: var(--tr);
    letter-spacing: 3px;
}
.h_nav_wrap.is-fixed .pc_h_nav > ul > li:last-child a {
    aspect-ratio: auto;
    height: auto;
    padding: 20px;
}
.pc_h_nav a:hover {
    opacity: 0.8;
}

.pc_h_nav svg {
    position: absolute;
    visibility: hidden;
}

.pc_h_nav ul ul {
    list-style: none;
    position: absolute;
    z-index: 9998;
    top: 100%;
    left: 1px;
    width: 330px;
    margin: 0;
    padding: 0;
}
.pc_h_nav ul ul li {
    overflow: hidden;
    height: 0;
    transition: 0.2s;
    margin: 0;
}
.pc_h_nav li:hover li {
    overflow: visible;
    height: 50px;
}
.pc_h_nav ul ul li a {
    padding: 15px 20px 15px 35px;
    border-bottom: 1px solid #f3f3f3;
    background: #fff;
    text-align: left;
    font-weight: normal;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
    display: block;
    margin: 0;
    position: relative;
}
.pc_h_nav ul ul li a:before {
    content: "";
    width: 6px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: var(--f_color);
    position: absolute;
    left: 19px;
    top: 22px;
}

/*************************************/
.h_img_wrap {
    position: relative;
    z-index: 1;
    /* width: min(1200px,80vw); */
    /* height: 100%; */
    margin-left: auto;
    margin-right: auto;
    /* padding-top: 110px; */
    /* padding-bottom: 110px; */
}
.h_bg {
    position: absolute;
    right: 124.63px;
    z-index: -1;
    height: 97.06%;
    width: 32vw;
}
.h_bg img {
    /* height: 70%; */
    /* width: 32vw; */
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.h_img_mv {
    width: 100%;
    /* position: absolute; */
    /* height: 100%; */
    z-index: -1;
}
.h_img_mv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.h_img_logo {
    /* width: 100%; */
    position: absolute;
    left: 50%;
    /* top: 50%; */
    transform: translate(-50%, 22%);
    /* height: 100%; */
    z-index: 1;
    bottom: 50%;
}
.h_img_logo img {
    width: min(500px, 25vw);
    /* display: flex; */
    /* margin-right: 60px; */
    /* margin-left: min(176px, 10vw); */
    /* flex-flow: column; */
    /* justify-content: center; */
}
body.home .h_img_img {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8vw;
    padding-top: 8%;
}
.h_img_logo p {
    font-weight: 600;
    font-size: clamp(20px, 3vw, 24px);
    margin-top: 46px;
}
body.home .h_img_img img {
    width: min(563px, 50vw);
}
body:not(.home) .h_img_wrap {
    /* background: url(img/header.jpg) no-repeat; */
    padding-top: calc(var(--main_mp) * 2);
    padding-bottom: var(--main_mp);
    /* padding-left: 20px; */
    /* padding-right: 20px; */
    text-align: center;
    display: block;
    width: var(--main_w);
    margin-left: auto;
    margin-right: auto;
}

/*-------------------------------------
TOP 1コンテンツ目
-------------------------------------*/
.top_con01_inner {
    justify-content: space-between;
}
.top_con01_img {
    width: 65%;
    order: 2;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}
.top_con01_img img {
}
.top_con01_txt {
    width: min(650px, 45%);
    margin-left: 15%;
    margin-right: -10%;
    position: relative;
    /* padding-left: 10%; */
    display: flex;
}
.top_h2.tate {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.25em;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-feature-settings: "palt" 0;
    white-space: nowrap;
    display: flex;
    position: relative;
    align-items: center;
    padding-right: min(80px, 6vw);
    margin-bottom: 0;
    display: flex;
}
.top_h2.tate:before {
    content: "";
    width: 1px;
    height: 50px;
    background: var(--f_color);
    margin-bottom: 20px;
    display: block;
    position: static;
}
.top_h2.tate h2:after {
    content: none;
}
.top_con01_txt_inner {
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    padding-bottom: 10%;
}

/*-------------------------------------
TOP 2コンテンツ目
-------------------------------------*/
.top_con02_wrap {
}
.top_con02_wrap .top_h2 {
    width: fit-content;
    margin-left: auto;
    margin-right: auto; /* text-align: center; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}
.top_con02_wrap .data_text:before {
    margin-left: auto;
    margin-right: auto;
    content: "";
    position: absolute;
    right: calc(100% + 20px);
    width: 50px;
    height: 1px;
    background: var(--f_color);
    top: 50%;
}
.top_con02_wrap .top_h2 div,
.top_con02_wrap .top_h2 h2 {
    margin-bottom: 0;
}
.top_con02_wrap .top_h2 h2 {
    margin-left: 20px;
}
.top_con02_inner {
}
.top_con02_txt {
    width: 30%;
    background: #fff;
    margin-left: -5%;
    margin-right: -5%;
    position: relative;
    filter: drop-shadow(2px 4px 15px rgba(0, 0, 0, 0.1));
    background: url(img/bg02.jpg) no-repeat 50% / cover;
    position: relative;
    z-index: 1;
}
.top_con02_txt .common_btn a {
    min-width: 100%;
}
.top_con02_left {
    padding: var(--m_ps8) 0 var(--m_ps5) 0;
    border-bottom: 1px solid #cbcbcb;
    width: min(calc(100% - 7.5vw));
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.top_con02_left:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: -2px;
    left: 0;
}
.top_con02_right {
    padding: var(--m_ps5) 0 var(--m_ps8);
    border-bottom: 1px solid #ddd;
    width: min(calc(100% - 7.5vw));
    margin-left: auto;
    margin-right: auto;
}
.top_con02_ttl {
    margin-bottom: 30px;
    position: relative;
}
.top_con02_ttl span:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 1vw solid transparent;
    border-bottom: 1vw solid transparent;
    border-right: 1.3vw solid #555555;
    border-left: 0;
    position: absolute;
    right: calc(100% + 5%);
    top: 54%;
    transform: translateY(-50%);
}
.top_con02_right .top_con02_ttl span:before {
    border-top: 1vw solid transparent;
    border-bottom: 1vw solid transparent;
    border-left: 1.3vw solid #555555;
    border-right: 0;
    display: block;
}
.top_con02_ttl span {
    display: block;
    font-weight: 700;
    font-size: clamp(18px, 3vw, 22px);
    position: relative;
}
.top_con02_inner {
    align-items: center;
}
.top_con02_img_img {
    width: 40%;
    height: auto;
    position: relative;
}
.top_con02_img_img:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: #000;
    left: 0;
    top: 0;
    opacity: 0.3;
    transition: var(--tr);
}
.top_con02_img_img.is-show:before {
    opacity: 0;
}
.top_con02_img_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

/*****************/
.top_con03_inner {
}
.top_con03_list {
    display: flex;
    flex-flow: column;
    gap: calc(var(--main_mp) * 2);
}
.top_con03_item {
    gap: 5vw;
    align-items: center;
    display: flex;
}
.top_con03_img {
    width: 55%;
    position: relative;
}
.top_con03_img:before {
    content: "";
    background: url(img/header_bg_icon02.jpg) no-repeat 50% / cover;
    width: 55%;
    height: 80%;
    position: absolute;
    right: 55%;
    top: 35%;
    z-index: -1;
}
.top_con03_list > section:nth-child(1) .top_con03_img {
    order: 2;
}
.top_con03_list > section:nth-child(1) .top_con03_img:before {
    right: auto;
    left: 55%;
}
.top_con03_txt {
    flex: 1;
}
.top_con03_ttl {
    margin-bottom: 50px;
}
.top_con03_ttl01 > div {
    aspect-ratio: 465/486;
    width: auto;
    height: 150px;
}
.top_con03_ttl02 > div {
    aspect-ratio: 464/60;
    height: auto;
    width: 100%;
}
.top_con03_ttl img {
    width: 100%;
}
.top_con03_txt h3 {
    margin-bottom: 0;
}

/************/
.sec1 {
    width: 100%;
    display: flex;
    /* overflow: hidden; */
    position: relative;
}
.sec1__title--first,
.sec1__title--second {
    flex-shrink: 0;
    width: auto;
    height: auto;
    display: inline-block;
    text-wrap: nowrap;
    white-space: nowrap;
    font-size: clamp(80px, 8vw, 120px);
    font-family: var(--font_en);
    opacity: 0.2;
}
.sec1__title--first {
    animation: anim--first 60s infinite linear 0.1s both;
}
.sec1__title--second {
    animation: anim--second 60s infinite linear 0.1s both;
}
@keyframes anim--first {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}
@keyframes anim--second {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/********/
.top_con04_wrap {
    position: relative;
}
.sec1:before {
    /* content: ""; */
    background: url(img/cta_bg.jpg) 50% 0% / cover;
    width: 100%;
    height: auto;
    aspect-ratio: 1920/1200;
    position: absolute;
    left: 0;
    top: -102%;
    z-index: -1;
}
.top_con04_inner {
    max-width: min(455px, calc(100% - (var(--m_ps8) * 2)));
    width: fit-content;
    background: url(img/header_bg_icon02.jpg) no-repeat 50% / cover;
    padding: var(--m_ps5);
}
.top_con04_inner .top_h2 {
}
.top_h2:before {
    content: "";
    background: url(img/icon01.png) no-repeat 50% / contain;
    aspect-ratio: 300/213;
    width: min(150px, 33vw);
    height: auto;
    position: absolute;
    right: calc(100% - 66px);
    top: -34%;
}
/********/
.top_con05_wrap {
}
.top_con05_inner {
    max-width: min(455px, calc(100% - (var(--m_ps8) * 2)));
    width: fit-content;
    background: url(img/header_bg_icon02.jpg) no-repeat 50% / cover;
    padding: var(--m_ps5);
}

/*-------------------------------------
お知らせ
-------------------------------------*/
.new_wrap {
    border-top: none;
    position: relative;
    justify-content: space-between;
}
.new_left {
    /* width: min(650px, 45%); */
    /* margin-left: 15%; */
    /* margin-right: -10%; */
    position: relative;
    /* padding-left: 10%; */
    display: flex;
}
.new_inner {
    width: 75%;
    order: 2;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    margin-right: 5%;
}
time {
    font: 17px/1 var(--font_en);
    display: block;
    letter-spacing: 0.1vw;
    margin-right: 10px;
}
.new_list {
    border-top: 1px solid var(--f_color);
    padding-top: 30px;
    width: 100%;
}
.new_list li {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--f_color);
}
.new_list li:last-child {
    margin-bottom: 0;
}
.new_item_date {
    /* align-items: center; */
    /* flex-wrap: wrap; */
    row-gap: 15px;
    column-gap: 30px;
    flex-flow: column;
}
.new_item_date > div.flex {
    align-items: center;
    white-space: nowrap;
}
.new_item_cat {
    color: var(--f_color);
    line-height: 1;
    font-size: 12px;
    background: var(--a_color);
}
.new_item_cat a {
    text-decoration: none;
    color: var(--f_color);
    line-height: 1;
    padding: 7px 10px;
    display: block;
}
.new_item_ttl {
    color: var(--h_color);
    font-weight: bold;
    padding-right: 55px;
}
.news_txt {
    margin-top: 20px;
    display: none;
}
.new_list li:nth-child(1) .news_txt {
    display: block;
}
.news_txt p {
    margin-bottom: 30px;
}
.news_thumbnail {
    max-width: 146.67px;
    width: 100%;
    margin-right: 15px;
}
.new_item_ttl {
    margin: 0;
    padding: 0;
}
.new_item_ttl a {
    display: block;
    color: var(--f_color);
    text-decoration: none;
    font-weight: normal;
    font-size: 16px;
}
.new_item_ttl:after {
    content: none;
}
/*アイコン*/
.new_item_date::before,
.new_item_date::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 1px;
    background-color: var(--f_color);
    transition: var(--tr);
}
.new_item_date::before {
    top: 8px;
    right: 15px;
    transform: rotate(0deg);
}
.new_item_date::after {
    top: 8px;
    right: 15px;
    transform: rotate(90deg);
}
.new_item_date.is-close::before {
    transform: rotate(45deg);
}
.new_item_date.is-close::after {
    transform: rotate(-45deg);
}

.new_list li:nth-child(1) .new_item_date::before {
    transform: rotate(45deg);
}
.new_list li:nth-child(1) .new_item_date::after {
    transform: rotate(-45deg);
}
.new_list li:nth-child(1) .new_item_date.is-close::before {
    transform: rotate(0deg);
}
.new_list li:nth-child(1) .new_item_date.is-close::after {
    transform: rotate(90deg);
}

/*-------------------------------------
TOPページインスタ
-------------------------------------*/
.top_sns_wrap {
    display: block;
}
.top_sns_ig .top_h2 h2:after {
    margin-left: auto;
    margin-right: auto;
}
.top_sns_wrap > div {
    width: 100%;
}
.top_sns_ig {
}
.insta_img_list {
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.insta_img_list:before {
    content: "";
    order: 2;
    width: calc(100% / 5 - 5px);
}
.insta_img_list:after {
    content: "";
    width: calc(100% / 5 - 5px);
}
.insta_img_list .item {
    position: relative;
    z-index: 0;
    width: calc(100% / 5 - 5px);
    overflow: hidden;
    margin-bottom: 10px;
}
.insta_img_list .item a {
    display: block;
    position: relative;
    /* height: 100%; */
    aspect-ratio: 1/1;
}
.insta_img_list .item img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/*-------------------------------------
パンくず
-------------------------------------*/
.breadcrumbsinner {
    width: 100%;
    padding: 30px 50px;
    background: #f3f3f3;
    margin-top: calc(var(--main_mp) * 1);
}
.breadcrumbs {
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.5;
    background: none;
    position: relative;
}
.breadcrumbs a,
.breadcrumbs span {
    font-size: clamp(10px, 3vw, 13px);
    color: var(--f_color);
    font-family: var(--font_ja);
    letter-spacing: 0.15em;
}
.breadcrumbs:before {
    /* content: "\f015"; */
    font: 100% "Font Awesome 6 free";
    font-weight: bold;
}
.breadcrumbs span:last-child a {
    pointer-events: none;
    text-decoration: none;
}

/*-------------------------------------
Milk Café みるくsanページ
-------------------------------------*/
.milk-san_desc {
}
.milk-san_desc_inner {
    /* align-items: flex-end; */
    gap: 8vw;
    margin-left: 10vw;
}
.milk-san_desc_txt {
    /* letter-spacing: 0.03em; */
    /* font-size: clamp(14px, 1.714vw, 21px); */
    /* font-weight: bold; */
    /* padding-bottom: 3vw; */
    /* font-size: clamp(22px, 3vw, 32px); */
    /* letter-spacing: 0.25em; */
    line-height: 2;
    width: clamp(100px, 45.643vw, 600px);
    letter-spacing: 0.15em;
    max-width: 470px;
}
.milk-san_desc_txt h1 {
    width: 100% !important;
    margin-bottom: 50px !important;
}
.milk-san_desc_txt h1:before {
    content: none !important;
}
.milk-san_desc_txt h1 img {
    max-height: 200px;
}
.milk-san_desc_txt p:nth-child(2) {
    font-size: clamp(22px, 3vw, 32px);
    margin-bottom: 30px;
    letter-spacing: 0.25em;
    line-height: 2;
}
.milk-san_desc_img {
    order: 2;
    flex: 1;
}
.milk-san_desc_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.milk-san_desc_item {
}
.rcm_item {
    gap: 5vw;
    margin-bottom: var(--m_ps5);
}
.rcm_item .img {
    width: 55%;
    position: relative;
}
.rcm_item .ttl:before {
    content: "";
    background: url(img/icon01.png) no-repeat 50% / contain;
    aspect-ratio: 300 / 213;
    width: min(150px, 33vw);
    height: auto;
    position: absolute;
    left: calc(100% - 98px);
    top: -100%;
    z-index: -1;
}
.rcm_item .txt {
    flex: 1;
}
.rcm_item .ttl {
    font-size: clamp(18px, 3vw, 25px);
    /* margin-bottom: 30px; */
    letter-spacing: 0.25em;
    position: relative;
    width: fit-content;
}
.rcm_item .price {
    margin-bottom: 30px;
}
.milk-san_desc_item ul {
    gap: 2vw;
    flex-wrap: wrap;
    row-gap: var(--m_ps5);
}
.milk-san_desc_item li {
    width: calc(100% / 3 - 1.333vw);
}
.milk-san_desc_item li .img {
    margin-bottom: 20px;
}
.milk-san_desc_item li .txt {
}
.milk-san_desc_item li .ttl {
    font-size: clamp(17px, 3vw, 20px);
    letter-spacing: 0.25em;
}
.milk-san_desc_item li .price {
    margin-bottom: 20px;
}

/*-------------------------------------
コンセプトページ
-------------------------------------*/
.concept_desc {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    max-width: 550px;
    padding-left: 20px;
    padding-right: 20px;
}
.concept_desc > div {
    font-size: clamp(22px, 3vw, 32px);
    margin-bottom: 30px;
    letter-spacing: 0.25em;
    line-height: 2;
}
.concept_desc p {
    letter-spacing: 0.15em; /* font-size: clamp(16px, 3vw, 18px); */
}

.concept_con01 {
    position: relative;
    z-index: 0;
}
.concept_con01:before {
    content: "";
    background: url(img/bg02.jpg);
    position: absolute;
    right: 0;
    top: 0;
    width: 65%;
    height: 100%;
    z-index: -1;
}
.concept_con01 ul {
}
.concept_con01 li:not(:last-child) {
    margin-bottom: var(--m_ps5);
}
.concept_con01 section {
    justify-content: space-between;
    border: 2px solid var(--f_color);
    background: #fff;
}
.concept_con01_txt {
    width: 50%;
    padding: var(--m_ps5);
}
.concept_con01_txt h3 {
    text-align: center;
}
.concept_con01_txt .common_btn a::before {
    content: none;
}
.concept_con01_map {
    width: 50%;
}
.concept_con01_map iframe {
    width: 100%;
    height: 100%;
}

/*-------------------------------------
お知らせ 一覧ページ
-------------------------------------*/
.news_inner ul {
}
.news_inner li {
    background: #f3f3f3;
    margin-bottom: 10px;
    padding: var(--m_ps5);
}
.news_inner li section {
    justify-content: space-between;
}
.news_photo {
    width: 30%;
}
.news_text {
    width: 65%;
}
.new_ttl {
    margin-bottom: 0;
    font-size: clamp(16px, 3vw, 20px);
}
.new_ttl a {
    text-decoration: none;
    color: var(--f_color);
    font-size: clamp(16px, 3vw, 20px);
    font-weight: normal;
}
.news_cat {
}
.news_cat a {
    background: var(--a_color);
    color: var(--f_color);
    text-decoration: none;
    padding: 5px 10px;
    display: inline-block;
    line-height: 1;
    font-size: 13px;
    font-weight: 700;
}

/*-------------------------------------
お知らせ 末端ページ
-------------------------------------*/
.single_news_wrap {
    max-width: 1040px;
}

/*-------------------------------------
会社概要ページ
-------------------------------------*/
.company_wrap {
}
.company_inner dl {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: 1px solid #ddd;
}
.company_inner dt {
    float: left;
    width: 27.27%;
    padding: 23px 0;
    border-bottom: 1px solid #ddd;
}
.company_inner dd {
    float: left;
    padding: 23px 0;
    width: 72.73%;
    border-bottom: 1px solid #ddd;
}
.company_googlemap iframe {
    width: 100%;
    border: none;
    height: 450px;
}

.sns_wrap {
    background: url(img/bg02.jpg) no-repeat 50% / cover;
    margin-bottom: 50px;
    margin-top: 50px;
    padding: var(--m_ps5) var(--m_ps8);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.sns_wrap p {
    font-size: clamp(17px, 3vw, 20px);
    font-family: var(--font_en);
    margin-bottom: 10px;
}
.sns_wrap a {
    border-radius: 50%;
    background: #fff;
    padding: 10px;
    display: block;
    text-align: center;
    height: auto;
    aspect-ratio: 1/1;
    width: 50px;
    margin-left: auto;
    margin-right: auto;
}
.sns_wrap img {
    width: 100%;
    height: 100%;
}

.company_inner .common_btn:not(.not_arr) a::before {
    content: none;
}

/*-------------------------------------
ブログ
-------------------------------------*/
.blog_wrap {
    margin: 0 auto;
}
.blog_inner,
.single_inner,
.search_inner {
    order: 2;
    width: calc(100% - 250px);
}
.my_result_count {
    margin: 0 0 20px;
}
.blog_inner li {
    margin-bottom: 50px;
}
.blog_photo {
    width: 350px;
}
.blog_photo img {
    object-fit: cover;
    height: auto;
    width: 100%;
    aspect-ratio: 16/9;
}
.blog_text {
    width: calc(100% - 350px - 30px);
    margin-left: auto;
}
.blog_title {
    margin: 0 0 10px;
    text-align: left;
}
.blog_title a {
    font-size: 16px;
    color: var(--f_color);
    text-decoration: none;
}
.post-categories li {
    margin: 0 5px 5px 0;
}
.blog_clock time {
    color: #999;
    font-size: clamp(13px, 3vw, 15px);
}
.post-categories {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
}
.post-categories li a {
    background: var(--m_color);
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.8125rem;
    color: #fff;
    text-decoration: none;
}
.post-categories li a:hover {
    background: #f9f9f4;
    color: var(--m_color);
}
.post-categories li a:hover:before {
    color: var(--m_color);
}
.post-categories li a:before {
    content: "\f07c";
    font: 100%/1 "font awesome 6 free";
    color: #fff;
    display: inline-block;
    margin: 0 2px 0 0;
}
.share_sns_container {
    margin: 0 0 0 auto;
}
.share_sns_container li :before {
    font-size: 1.875rem;

    display: block;
    margin: 0 10px 0 0;
}
.share_sns_container li:nth-of-type(1) :before {
    color: #3f51b5;
}
.share_sns_container li:nth-of-type(2) :before {
    color: #222;
}
.share_sns_container li:nth-of-type(3) :before {
    color: #4caf50;
}
.article_top {
    margin: 0 0 30px;
    align-items: center;
}

/*記事内装飾*/
.article_main h2 {
    margin: 30px 0 20px 0;
    background: #000000;
    padding: 10px 20px;
    font-size: 25px;
    color: #ffffff;
    text-align: left;
}
.article_main h3 {
    margin: 30px 0 20px 0;
    font-weight: bold;
    font-size: 1.4375rem;
    border-bottom: 1px solid #333;
    padding: 0 0 5px;
}
.article_main h3:after {
    content: none;
}
.article_main h3:before {
    content: none;
}
.article_main h4 {
    margin: 30px 0 20px 0;

    font-weight: bold;
    font-size: 1.25rem;
}
.article_main h5 {
    margin: 30px 0 20px 0;
    font-weight: bold;
}
.box2,
.box1,
.box4,
.txt_solid_bl,
.txt_solid_rd,
.txt_dot_bk,
.txt_dot_gr,
.txt_dot_pk {
    display: inline-block;
}
.box5 {
    position: relative;
    display: inline-block;
    margin: 1.5em 0;
    padding: 7px 10px;
    min-width: 120px;
    max-width: 100%;
    color: #555;
    font-size: 16px;
    background: #ffdd40;
}
.box5:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #ffdd40;
}
.box6 {
    position: relative;
    display: inline-block;
    margin: 1.5em 0;
    padding: 7px 10px;
    min-width: 120px;
    max-width: 100%;
    color: #555;
    font-size: 16px;
    background: #ffdd40;
}
.box6:before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-bottom: 15px solid #ffdd40;
}
.text_anime01 {
    -webkit-animation: blink 0.5s ease-in-out infinite alternate;
    -moz-animation: blink 0.5s ease-in-out infinite alternate;
    animation: blink 0.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.article_main .post_thumbnail_container img {
    display: block;
    margin: 0 auto 30px;
    height: auto;
}
.article_main img {
    display: block;
    margin: 0 auto 30px;
}
.article_main .wp-caption {
    width: min(310px, 100%) !important;
}
.article_main .wp-caption img {
    margin-bottom: 15px;
}
.article_main a {
}
.article_main p {
    margin: 0 0 25px;
    /* line-height: 1.8; */
}
.article_main strong {
    background: linear-gradient(transparent 60%, #ffff66 60%);
    font-weight: bold;
}
.article_main table {
    margin: 0 0 25px;
    border-top: 1px solid var(--b_color);
    border-right: 1px solid var(--b_color);
}
.article_main table th {
    background: #e6f7f5;
    font-weight: bold;
    border-left: 1px solid var(--b_color);
    border-bottom: 1px solid var(--b_color);
    padding: 10px 20px;
}
.article_main table td {
    border-left: 1px solid var(--b_color);
    padding: 10px 20px;
    border-bottom: 1px solid var(--b_color);
    font-size: 15px;
}
.article_main ul {
    padding: 20px 20px 20px 30px;
    border-top: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    margin: 0 0 30px;
}
.article_main ul li {
    position: relative;
    padding: 0.5em 0.5em 0.5em 30px;
    line-height: 1.5em;
}
.article_main ul li:before {
    position: absolute;
    content: "";
    display: inline-block;
    background: #333;
    border-radius: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    line-height: 25px;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.article_main ol {
    border: solid 1px #f9f9f4;
    padding: 20px 20px 20px 50px;
    position: relative;
    background: #fafafa;
    margin: 0 0 30px;
}
.article_main ol li {
    line-height: 1.5;
    padding: 0.5em 0;
    list-style-type: none !important;
    position: relative;
}
.article_main ol li:before {
    font-family: "Font Awesome 6 Free";
    content: "\f0da";
    position: absolute;
    font-weight: bold;
    left: -18px;
    color: gray;
}
.article_main dl {
}
.article_main dt {
    background: #f9f9f4;
    padding: 10px;
    margin: 0 0 10px;
}
.article_main dd {
    border-left: 1px solid #333;
    padding: 0 0 0 10px;
    margin: 0 0 25px;
    line-height: 1.8;
}
/*シングル　ページネーション*/
.single_pagenavi {
    margin: 10vh 0 0;
}
.single_pagenavi .next {
    margin: 0 0 0 auto;
}
.single_pagenavi .prev a,
.single_pagenavi .next a {
    background: var(--f_color);
    display: block;
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
}
.single_pagenavi :before {
    color: #fff;
}
.single_pagenavi .prev a:hover,
.single_pagenavi .next a:hover {
    background: #999;
}
/*目次*/
.outline {
    border: 1px solid #ddd;
    padding: 30px;
    margin: 10px 0 30px;
    display: inline-block;
    font-size: 0.875rem;
    max-width: 800px;
    width: 100%;
    line-height: 1.5em;
}
.outline__title {
    font-size: 1rem;
    font-weight: bold;
}
.outline__toggle {
    display: none;
}
.outline__switch::before {
    content: "開く";
    cursor: pointer;
    background: #fff;
    border: solid 1px #eee;
    padding: 5px 10px;
    font-size: 0.8rem;
    margin-left: 5px;
    border-radius: 5px;
}
.outline__toggle:checked + .outline__switch::before {
    content: "閉じる";
}
.outline__switch + .outline__list {
    overflow: hidden;
    width: 0;
    height: 0;
    margin: -20px 0;
    transition: var(--tr);
    border: none;
    padding: 0;
}
.outline__toggle:checked + .outline__switch + .outline__list {
    width: auto;
    height: auto;
    margin: 20px 0 0;
    transition: var(--tr);
    border-top: solid 1px #ddd;
    padding: 17px 20px 0;
    border-bottom: none;
    background: none;
}
ul.outline__list li {
    border: none;
    margin: 0 0 0;
    padding: 0.5em 0.5em 0.5em 15px;
}
ul.outline__list li:before {
    content: "-";
    width: 0;
    height: 0;
    line-height: 1.6;
    top: 6px;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
}
ul.outline__list ul {
    border: none !important;
    margin: 0 !important;
    padding: 0 0 0 1em !important;
    background: none !important;
}
.outline__link {
    position: relative;
    color: #191919 !important;
}
span.outline__number {
    display: none;
}
label.outline__switch {
    position: relative;
    float: right;
}
.outline ul {
    -webkit-padding-start: 1.2em;
}
/*-------------------------------------
サイドバー
-------------------------------------*/
.side_container {
    margin: 0 50px 0 0;
    width: 250px;
}
.side_container > div {
    margin: 0 0 30px;
}
.widget_title div {
    color: #555;
    letter-spacing: 0.08em;
    border-bottom: 1px solid;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font: 900 clamp(20px, 1.5vw, 50px) var(--font_en);
}
.side_container li {
    position: relative;
    padding: 10px 0;
    transition: var(--tr);
}
.side_container li:hover {
    opacity: 0.7;
}
.side_container li a {
    font-size: 0.8125rem;
    text-decoration: none;
    color: var(--f_color);
}
.side_container li a > div:nth-child(1) {
    width: 70px;
    height: auto;
}
.side_container li a > div:nth-child(2) {
    width: calc(100% - 80px);
    margin-left: auto;
}

/*検索窓*/
.widget_search {
    position: relative;
}
.widget_search input {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: none;
    border: 1px solid rgba(0, 0, 0, 0.16);
    color: inherit;
    font-family: inherit;
    font-size: 1em;
    padding: 0.4em 0.8em;
    outline: 0;
}
.widget_search input[type="text"] {
    width: 100%;
}
.widget_search input[type="submit"] {
    border: none;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 0;
    font-weight: bold;
    font-family: "font awesome 6 free";
}
/*最近の投稿*/
.widget_my_recent_posts img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    height: auto;
}
.widget_my_recent_posts time {
    font-size: 0.6875rem;
    margin-bottom: 5px;
}
/*カテゴリーとアーカイブ*/
.widget_archive li a,
.widget_categories li a {
    display: block;
    padding: 0 0 0 10px;
}
.widget_archive li:before,
.widget_categories li:before {
    content: "-";
    margin: 0 5px 0 0;
    position: absolute;
    left: 0;
    top: 5px;
}
/*アーカイブ　ページネーション*/
.wp-pagenavi {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.wp-pagenavi .page-numbers {
    padding: 10px 20px;
    background: var(--f_color);
    color: #fff;
    text-decoration: none;
    display: block;
    margin-right: 10px;
}
.wp-pagenavi .current {
    background: var(--a_color);
    color: var(--f_color);
}
.wp-pagenavi .page-numbers:hover {
    opacity: 0.8;
}

/*-------------------------------------
お問い合わせ
-------------------------------------*/
.contact_contaciner {
}
.contact_inner {
}
.contact_info {
    text-align: center;
    background: url(img/bg02.jpg) 50% / cover;
    padding: 40px 20px;
    margin: 0 auto 5vw;
    max-width: 1000px;
}
.contact_info a {
    text-decoration: none;
    color: var(--f_color);
    margin: 0 0 5px;
    width: 100%;
    cursor: pointer;
    /* letter-spacing: 0.05em; */
    font: 500 clamp(32px, 3vw, 70px) / 1 var(--font_en);
}
.contact_info a i {
    margin-right: 10px;
    font-size: clamp(22px, 3vw, 30px);
}
.contact_info a img {
    margin-right: 10px;
    display: block;
    width: max(30px, 3vw);
}
.contact_info a:hover {
    opacity: 0.7;
}

/*お問い合わせフォーム内*/
.wpcf7 {
}
.wpcf7-list-item-label {
    margin-left: 5px;
}
.wpcf7-form_form {
    border-top: 1px solid #ddd;
    background: #fff;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.wpcf7_left {
    display: block;
    max-width: 200px;
    width: 100%;
    padding: 25px 15px;
    list-style: none;
    border-bottom: 1px solid #ddd;
    /* border-bottom: none; */
    /* background: #f3f3f3; */
}
form.wpcf7-form .required:after {
    content: "必須";
    width: auto;
    display: inline-block;
    background: #e74c3c;
    padding: 0 5px 0 5px;
    font-weight: normal;
    font-size: 10px;
    color: #fff;
    margin-right: 5px;
    vertical-align: middle;
}
form.wpcf7-form .required2:after {
    content: "任意";
    width: auto;
    display: inline-block;
    background: #999;
    padding: 0 5px 0 5px;
    font-weight: normal;
    font-size: 10px;
    color: #fff;
    margin-right: 5px;
    vertical-align: middle;
}
.wpcf7_right {
    width: 100%;
    padding: 25px 15px;
    border-bottom: 1px solid #ddd;
    border-left: none;
    /* border-bottom: none; */
}
.wpcf7_checkbox_title {
    max-width: 200px;
    width: 100%;
    border: 1px solid #ddd;
    border-bottom: none;
    background: #f3f3f3;
}
span.wpcf7-list-item {
    display: block !important;
}
.wpcf7-list-item_first_input input {
    width: auto !important;
}
span.wpcf7-list-item input {
    width: auto !important;
}
.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
    border: 2px solid #e94e43 !important;
    font-size: 14px;
    color: #e94e43;
    margin: 30px 0;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border: 2px solid #e94e43 !important;
    font-size: 14px;
    color: #e94e43;
}
@media all and (-ms-high-contrast: none) {
    span.wpcf7-list-item input {
        margin: 0 5px 0 0;
    }
}
.form_privacy span.wpcf7-list-item input {
    margin: 0 5px 4px 0;
}
.wpcf7_container #info2 {
    margin: 10px 0 0;
}
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border: none;
    /* border-radius: 3px; */
    padding: 8px;
    width: 100%;
    font-size: 100%;
    background: #f3f3f3;
    outline: none;
}
.wpcf7-checkbox input,
.wpcf7-checkbox label span {
    cursor: pointer;
}
.form_privacy {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    text-align: center;
}
.wpcf7c-elm-step2 {
    text-align: center;
}
.wpcf7_container {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
input::placeholder {
    color: #ddd;
}
input::-moz-input-placeholder {
    color: #ddd;
}
input::-ms-input-placeholder {
    color: #ddd;
}
textarea::placeholder {
    color: #ddd;
}
textarea::-ms-placeholder {
    color: #ddd;
}
textarea::-moz-placeholder {
    color: #ddd;
}
/*submitボタンのリセットCSS*/
input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}
.wpcf7-form div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
    border: 2px solid #e94e43;
    font-size: 14px;
    color: #e94e43;
    margin: 30px 0;
}
.wpcf7-form span.wpcf7-not-valid-tip {
    font-size: 14px;
    color: #e94e43;
}
/*submitボタンの装飾*/
.wpcf7c_submit {
    text-align: center;
}
.wpcf7c_submit input {
    outline: none;
    max-width: 250px;
    width: 100%;
    margin: 15px auto 0;
    display: block;
    color: var(--f_color);
    font-weight: 700;
    z-index: 0;
    border: none;
    padding: 15px;
    font-size: 14px;
    letter-spacing: 0.18em;
}
.wpcf7c_submit input[type="submit"] {
    text-align: center;
    background: var(--a_color);
}
.wpcf7c_submit input[type="submit"]:hover,
.wpcf7c_submit input[type="button"]:hover {
    opacity: 0.8;
}
.wpcf7c_submit input[type="button"] {
    background: none;
    border: 1px solid;
    color: var(--m_color);
}

/*プライバシーポリシー*/
.readme {
    width: 78%;
    height: 200px;
    margin: 40px auto 10px;
    overflow-y: scroll;
    padding: 10px 20px;
    border: 1px solid #dadada;
    font-size: 0.8125rem;
}
.readme dl {
    margin: 20px 0 0;
}
.readme dt {
    font-weight: bold;
}
.readme dd {
    margin: 0 0 0 15px;
}
.readme ol li {
    margin: 0 0 0 40px;
    list-style: decimal-leading-zero;
}

/* コンタクトフォーム確認画面 */
#wpcf7cpcnf table {
    border: none;
    width: 100%;
}
#wpcf7cpcnf table th {
    /* background: #fbfbf8; */
    /* border: 1px solid #ccc; */
    color: #202020;
    text-align: left;
    width: 25%;
    padding: 10px 15px;
}
#wpcf7cpcnf table th p {
    color: #202020;
    background: #f3f3f3;
    padding: 10px;
}
#wpcf7cpcnf table td {
    /* background: #fff; */
    /* border: 1px solid #ccc; */
    width: 75%;
    /* padding: 5px 15px; */
}
#wpcf7cpcnf table td p {
    background: #fff;
    padding: 10px;
}
.wpcf7cp-btns {
    text-align: center;
}
.wpcf7cp-btns button {
    padding: 15px 20px;
    font-weight: bold;
    cursor: pointer;
}
.wpcf7cp-cfm-edit-btn {
    background: var(--f_color);
    color: #fff;
    border: none;
}
.wpcf7cp-cfm-submit-btn {
    background: var(--a_color);
    color: var(--f_color);
    border: none;
}

/*recaptcha*/
.grecaptcha-badge {
    bottom: 90px !important;
    z-index: 5;
    /* display: none; */
}

/*送信完了画面*/
.thanks_tel {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.thanks_tel a {
    font: clamp(27px, 4vw, 60px) var(--font_en);
    text-decoration: none;
    color: var(--f_color);
}
.thanks_tel a i {
    font-size: clamp(23px, 4vw, 45px);
    margin-right: 10px;
}

/*-------------------------------------
フッター部分
-------------------------------------*/
/* フッター */
.footer {
    position: relative;
    z-index: 0;
}
.footer_inner {
    padding: var(--main_mp) 0;
    width: var(--main_w);
    width: calc(100% - (124.63px * 2));
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
}
.footer_nav {
}
.footer_nav a {
    text-decoration: none;
    position: relative;
    margin: 0 30px 0 0;
    font-size: 0.8125rem;
    color: var(--f_color);
}
.footer_nav a:before {
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    content: "\f105";
    display: inline-block;
    margin: 0 3px 0 0;
}
.footer_nav a:hover {
    text-decoration: underline;
}
.footer_address {
    width: 100%;
}
.footer_address .site_ttl {
    padding: 0;
    position: static;
    background: none;
    width: min(250px, 80%);
    margin-left: auto;
    margin-right: auto;
}
.footer_address .site_ttl a {
    margin: 0 auto;
}
/*sns部分*/
.footer_address_sns {
    /* margin-top: 20px; */
}
.footer_address_sns a {
    font-size: 25px;
    display: inline-block;
}
.footer_address_sns i {
    color: var(--f_color);
}

/*アドレス*/
.address_container {
    font-size: 0.8125rem;
    margin: var(--m_ps5) 0 var(--m_ps8);
    justify-content: space-between;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.address_inner {
    width: 45%;
}
.address_container > div > div {
    font-weight: 600;
    font-size: clamp(17px, 3vw, 19px);
    position: relative;
}
.address_container > div > div:before {
    content: "";
}
.address_container a {
    color: var(--f_color);
    text-decoration: none;
}
.footer_map {
    margin-top: 30px;
}
.footer_map iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
}
.copyright {
    border: none;
    color: var(--f_color);
    font-size: 13px;
    text-align: center;
}
.copyright p {
}
.copyright a {
    font-size: 0.875rem;
    color: #fff;
}

/* topに戻る */
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 6;
}
#page-top a {
    display: block;
    position: relative;
    padding: 10px 12px;
    background: var(--a_color);
    width: 50px;
    height: 50px;
}
#page-top a::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-top: 1px solid var(--f_color);
    border-left: 1px solid var(--f_color);
    transform: translate(-50%, -50%) rotate(45deg);
    position: absolute;
    left: 50%;
    top: 61%;
}
#page-top a:hover {
    opacity: 0.7;
}

body.error404 h1 {
    display: block;
    text-transform: uppercase;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    font: 900 clamp(25px, 3vw, 50px) var(--font_en);
    letter-spacing: 0.52vw;
}

@media only screen and (max-width: 1024px) {
    .wrap {
        background: none;
    }
}
@media only screen and (min-width: 768px) {
    .pc_none {
        display: none;
    }
}
@media only screen and (max-width: 767px) {
    /*-------------------------------------
    CTA
    -------------------------------------*/

    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    .main_col {
        margin-bottom: 80px;
    }
    .main_pa {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .sp_none {
        display: none !important;
    }
    .main_wrap {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    /*-------------------------------------
    header
    -------------------------------------*/
    .h_nav_wrap {
        background: none;
        padding: 20px 20px;
        background: #ffffffde;
    }
    body:not(.home) .h_img_wrap {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    /***** ハンバーガーメニュー *****/
    .scroll-prevent {
        overflow: hidden;
    }
    .overlay {
        content: "";
        display: block;
        width: 0;
        height: 0;
        background-color: rgba(0, 0, 0, 0.5);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        opacity: 0;
        transition: opacity var(--tr);
    }
    .overlay.open {
        width: 100%;
        height: 100%;

        opacity: 1;
    }
    .menu-trigger {
        display: inline-block;
        width: 50px;
        height: 45px;
        vertical-align: middle;
        cursor: pointer;
        position: fixed;
        top: 20px;
        right: 10px;
        z-index: 100;
        transition: var(--tr);
    }
    .menu-trigger span {
        display: inline-block;
        box-sizing: border-box;
        position: absolute;
        left: 10px;
        width: 30px;
        height: 1px;
        background-color: var(--f_color);
        transition: var(--tr);
    }
    .menu-trigger.active span {
        /* background-color: var(--m_color) !important; */
    }
    .menu-trigger span:nth-of-type(1) {
        top: 11px;
        /* width: 10px; */
    }
    .menu-trigger.active span:nth-of-type(1) {
        transform: translateY(12px) rotate(-45deg);
        width: 30px;
    }
    .menu-trigger span:nth-of-type(2) {
        top: 21px;
        /* width: 20px; */
    }
    .menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .menu-trigger span:nth-of-type(3) {
        bottom: 12px;
    }
    .menu-trigger.active span:nth-of-type(3) {
        transform: translateY(-14px) rotate(45deg);
        bottom: 6px;
    }
    .sp_h_nav_inner {
        width: 100%;
        height: 100%;
        padding: 75px 0;
        background: url(img/bg02.jpg);
        position: fixed;
        top: 0;
        right: 0;
        z-index: 8;
        left: 100%;
        transition: var(--tr);
        overflow-y: auto;
    }
    nav.open .sp_h_nav_inner {
        left: 0;
    }
    .sp_h_nav_inner ul {
        height: auto;
        margin: 0 0 10vw;
    }
    .sp_h_nav_inner .sp_h_nav_list li {
        margin: 0 0 15px;
    }
    .sp_h_nav_inner .sp_h_nav_list a {
        text-align: left;
        position: relative;
        display: block;
        text-decoration: none;
        color: var(--f_color);
        padding: 10px 20px;
        text-align: center;
        font:
            16px var(--font_en),
            var(--font_ja);
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    .sp_h_nav_inner .sp_h_nav_list li:last-child a {
        display: inline-block;
        background: var(--a_color);
        padding: 25px 50px;
        /* color: #fff; */
    }
    .sp_h_nav_inner .sp_h_nav_list li:last-child a i {
        /* color: #fff; */
        padding-left: 5px;
    }

    .sp_h_nav_inner .sp_h_nav_list_inner {
        border-bottom: none;
    }
    .sp_h_nav_inner .sp_h_nav_list_inner li a {
        padding: 10px 0 10px 60px;
        color: #666;
    }
    .sp_h_nav_inner .sp_h_nav_list_inner li a:before {
        content: "┗";
        font-weight: normal;
        left: 40px;
        color: var(--f_color);
    }
    .sp_h_nav_inner li:last-child {
        border: none;
        text-align: center;
        margin: 10px 0 0 0;
    }
    .sp_h_nav_tel {
        padding: 30px 10px;
        background: #f9f9f4;
        text-align: center;
        width: 90%;
        margin: 0 auto;
    }
    .sp_h_nav_tel a {
        text-decoration: none;
        color: var(--m_color);
        display: block;
        margin: 0 0 10px;
        letter-spacing: 0.4vw;
        font: 900 25px/1 var(--font_en);
    }
    .sp_h_nav_tel img {
        max-width: 40px;
    }
    .sp_h_nav_sns {
        text-align: center;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        /* margin: 0 0 10vw; */
    }
    .sp_h_nav_sns a {
        background: url(img/bg02.jpg);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: inline-block;
        text-align: center;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 10px 0px;
        text-decoration: none;
        display: flex !important;
    }
    .sp_h_nav_sns a i {
        color: var(--f_color);
        font-size: 16px !important;
    }
    .sp_h_nav_sns img {
        max-width: 28px;
    }

    .sp_h_nav_inner .access {
        width: calc(100% - 40px);
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    .sp_h_nav_inner .access li {
        background: #fff;
        padding: 30px;
        text-align: left;
    }
    .sp_h_nav_inner .access li * {
        font-size: 13px;
    }
    .sp_h_nav_inner .access div:not(.common_btn) a {
        text-decoration: none;
        font-size: 15px;
        color: var(--f_color);
        font-weight: bold;
        display: block;
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .sp_h_nav_inner .access div.common_btn a {
        display: flex;
    }

    /*ハンバーガーメニューここまで*/
    /***************************/

    /*-------------------------------------
    TOPページお知らせ
    -------------------------------------*/
    .new_wrap {
        width: 100%;
    }
    .new_inner {
    }
    .new_inner:before {
        font-size: 120px;
        margin-right: 20px;
    }

    /*-------------------------------------
    ブログ
    -------------------------------------*/
    .blog_wrap,
    .single_wrap {
        display: block;
    }
    .blog_inner,
    .single_inner,
    .search_inner,
    .side_container {
        width: 100%;
    }
    .blog_inner {
        margin: 0 0 50px;
    }
}
@media only screen and (max-width: 550px) {
    /*-------------------------------------
    定義
    -------------------------------------*/
    :root {
        --main_w: 100%;
        --main_mp: 80px;
        --m_ps3: 20px;
        --m_ps5: 30px;
        --m_ps8: 50px;
    }
    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    .m_a {
        padding-left: 30px;
        padding-right: 30px;
    }
    .main_col {
        /* margin-bottom: 50px; */
    }
    .main_pa {
        /* padding-top: 50px; */
        /* padding-bottom: 50px; */
    }
    .main_wrap {
        /* padding-top: 50px; */
        padding-bottom: 120px;
    }
    .sp_none2 {
        display: none !important;
    }
    .pc_none2 {
        display: block;
    }
    .h1,
    body:not(.home):not(.single) h1,
    .single_h1 {
        font-size: clamp(16px, 3vw, 25px);
        padding: 0 30px;
    }
    body:not(.home) h1.singleh1 {
        padding: 0;
        font-size: clamp(18px, 3vw, 20px);
    }
    body:not(.home) h1:before {
        font-size: 23px;
    }
    body:not(.home) h1::after {
        left: 23px;
        top: 14px;
    }
    h2:before {
        font-size: 45px;
        top: -70px;
    }
    .top_h2:before {
        right: calc(100% - 105px);
        top: auto;
        bottom: calc(100% - 54px);
    }
    .top_h2 h2 {
        margin-bottom: 30px;
    }
    .top_h2 h2:after {
        margin-top: 25px;
    }
    h3 {
        font-size: clamp(18px, 3vw, 20px);
        margin-bottom: 30px;
    }

    /*スクロールヒント*/
    .js-scrollable {
        overflow: auto;
        white-space: nowrap;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .js-scrollable::-webkit-scrollbar {
        display: none;
    }
    .scroll-hint-icon {
        height: 66px;
        top: 10px;
        width: 66px;
        left: auto;
        right: 10px;
        background: #004bb1;
        background: -moz-linear-gradient(45deg, #004bb1 0%, #0062c4 25%, #007bd7 45%, #0098ec 65%, #00beff 100%);
        background: -webkit-linear-gradient(45deg, #004bb1 0%, #0062c4 25%, #007bd7 45%, #0098ec 65%, #00beff 100%);
        background: linear-gradient(45deg, #004bb1 0%, #0062c4 25%, #007bd7 45%, #0098ec 65%, #00beff 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#004bb1', endColorstr='#00beff', GradientType=1);
        background: #2c3e57;
    }
    .scroll-hint-icon:before {
        width: 25px;
        height: 30px;
    }
    .scroll-hint-icon:after {
        width: 30px;
        height: 10px;
        background-size: contain;
    }
    .scroll-hint-text {
        font-size: 13px;
        white-space: normal;
        margin-top: 0;
    }

    /*-------------------------------------
    CTA
    -------------------------------------*/
    .common_cta_wrap {
        width: calc(100% - 60px);
        padding: 0;
    }
    .common_cta_inner:before {
        left: 36%;
        top: 18%;
        width: 60vw;
    }
    .common_cta_inner:after {
        width: 60vw;
        top: 15%;
    }
    .common_cta_mail {
        width: 100%;
        /* padding-top: 215px; */
        padding-right: 20px;
        padding-left: 20px;
    }

    /*-------------------------------------
    レイアウト
    -------------------------------------*/
    .wrap {
        font-size: 15px;
    }

    /*-------------------------------------
    header
    -------------------------------------*/
    .header {
        padding-top: 0;
    }
    body.home .header:before {
        aspect-ratio: 3/5;
    }
    body.home .h_img_wrap {
        /* height: 100vh; */
        /* max-height: 790px; */
        flex-flow: column;
    }
    .h_bg {
        right: 20px;
    }
    .h_img_logo {
        width: 60%;
        transform: translate(-50%, 50%);
    }
    .h_img_logo img {
        width: 100%;
    }
    body.home .h_img_img {
        justify-content: flex-start;
        padding: 0;
        padding-left: 20px;
        padding-top: min(100px, 12vh);
    }
    body.home .h_img_img img {
        width: 60vw;
        filter: drop-shadow(17px 10px 7px rgba(0, 0, 0, 0.2));
    }
    .h_nav_wrap.is-fixed {
        padding: 15px 20px;
    }
    .site_ttl {
        width: 200px;
        padding-left: 0;
    }
    .site_ttl a {
        color: #fff;
    }
    .h_nav_wrap.is-fixed .site_ttl {
        width: 150px;
    }
    .menu-trigger {
        top: 10px;
        right: 10px;
    }
    .h_nav_wrap.is-fixed .menu-trigger {
        top: 2px;
    }
    body:not(.home) .h_img_wrap {
        padding-top: 120px;
        padding-bottom: 50px;
    }
    .header:before {
        aspect-ratio: 405 / 300;
        top: 65%;
    }

    /*-------------------------------------
    TOP 1コンテンツ目
    -------------------------------------*/
    .top_con01_inner {
        display: block;
    }
    .top_con01_img {
        width: 100%;
        margin-bottom: 30px;
    }
    .top_con01_txt {
        margin-left: 13%;
    }

    /*-------------------------------------
    TOP 2コンテンツ目
    -------------------------------------*/
    .top_con02_img_img {
        width: 100%;
    }
    .top_con02_txt {
        width: 100%;
        margin: 0;
        padding: 50px;
        filter: none;
    }
    .top_con02_left {
        padding: 0;
        margin: 0;
        border: none;
        width: 100%;
    }
    .top_con02_left:after {
        content: none;
    }
    .top_con02_right {
        border: none;
        width: 100%;
        padding: 0;
    }
    .top_con02_img_img img {
        min-height: 0;
    }
    .top_con02_img_img:before {
        content: none;
    }
    .top_con02_ttl span:before {
        content: none;
    }
    .top_con02_txt .common_btn a {
        min-width: 250px;
    }

    /*-------------------------------------
    TOPページ 3コンテンツ目
    -------------------------------------*/

    .top_con03_item {
        display: block;
    }
    .top_con03_img {
        order: 0 !important;
        margin-bottom: 30px;
        width: 100%;
    }
    .top_con03_img:before {
        top: 30%;
    }
    .top_con03_ttl {
        margin-bottom: 30px;
    }
    .top_con03_ttl02 {
        margin-top: 50px;
    }
    .top_con03_ttl02 > div {
        aspect-ratio: auto;
    }

    .top_con04_inner,
    .top_con05_inner {
        max-width: min(455px, calc(100% - (30px * 2)));
        /* padding: 0; */
        width: 100%;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    /*-------------------------------------
    TOPページお知らせ
    -------------------------------------*/
    .new_left {
        /* margin-left: 10%; */
    }
    .new_item_date {
        display: block;
    }
    .new_item_ttl {
        margin-top: 10px;
    }

    /*-------------------------------------
    TOPページインスタ
    -------------------------------------*/
    .insta_img_list .item {
        width: calc(100% / 2 - 5px);
        margin-bottom: 5px;
    }

    /*-------------------------------------
    コンセプトページ
    -------------------------------------*/
    .concept_con01 section {
        display: block;
    }
    .concept_con01_txt {
        width: 100%;
    }
    .concept_con01_map {
        width: 100%;
        aspect-ratio: 1/1;
    }

    /*-------------------------------------
    みるくsan
    -------------------------------------*/
    .milk-san_desc_inner {
        display: block;
        margin: 0;
        padding-left: 30px;
        padding-right: 30px;
    }
    .milk-san_desc_txt h1 {
        padding: 0 !important;
        margin-left: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .milk-san_desc_img {
        margin-bottom: 30px;
    }
    .milk-san_desc_txt {
        width: 100%;
        max-width: 100%;
        margin-bottom: 50px;
    }
    .rcm_item {
        flex-flow: column;
    }
    .rcm_item .img {
        width: 100%;
    }
    .rcm_item .txt {
    }
    .milk-san_desc_item ul {
        flex-flow: column;
        margin-bottom: 50px;
    }
    .milk-san_desc_item ul li {
        width: 100%;
    }

    /*-------------------------------------
    お知らせ一覧ページ
    -------------------------------------*/
    .news_inner li section {
        display: block;
    }
    .news_photo {
        width: 100%;
        margin-bottom: 30px;
    }
    .news_text {
        width: 100%;
    }

    /*-------------------------------------
    お知らせ 末端ページ
    -------------------------------------*/

    /*-------------------------------------
    お問い合わせ
    -------------------------------------*/
    .contact_inner > p {
        text-align: left;
    }
    .wpcf7 {
        margin: 30px 0 0;
    }
    .wpcf7_container div.flex {
        display: block;
    }
    .wpcf7_checkbox_title {
        border: none;
    }
    .wpcf7-form-control-wrap input,
    .wpcf7-form-control-wrap textarea {
        font-size: 16px;
    }
    .wpcf7-form_form .flex {
        display: block;
        border-bottom: 1px solid #ddd;
        padding: 0 0 15px;
    }
    .wpcf7_left {
        max-width: 100%;
        border: none;
        padding: 10px 0;
    }
    .wpcf7_right {
        /* border-left: 1px solid #ddd; */
        padding: 0;
        border: none;
    }
    .readme {
        width: 100%;
        margin: 30px 0 10px;
        height: 150px;
    }

    /*確認画面*/
    div#wpcf7cpcnf {
        z-index: 2 !important;
    }
    #wpcf7cpcnf table th,
    #wpcf7cpcnf table td {
        display: block;
        width: 100%;
    }

    /*-------------------------------------
    ブログページ
    -------------------------------------*/
    .blog_text {
        width: calc(100% - 130px);
        margin: 0;
    }
    .blog_photo {
        margin: 0 10px 0 0;
    }
    .blog_photo img {
        height: 100px;
        width: 120px !important;
    }
    .post-categories li a {
        font-size: 11px;
    }
    .article_top {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .cat_container + div {
        padding: 6px 0 0 0;
    }
    .article_main p {
        font-size: 16px;
    }
    .article_main h2 {
        font-size: 18px;
    }
    .article_main h3 {
        font-size: 18px;
    }
    /*目次*/
    .outline {
        padding: 20px;
    }
    .outline__toggle:checked + .outline__switch + .outline__list {
        padding: 17px 0 0;
    }
    .footer {
    }
    .footer_nav {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }
    .footer_nav li {
        margin: 0 0 5px;
    }
    .copyright {
        margin: 0;
    }
    .breadcrumbsinner {
        padding: 30px 20px;
    }
    .article_main img {
        object-fit: contain;
        height: auto;
    }

    /*-------------------------------------
    footer
    -------------------------------------*/
    .footer_inner {
        display: block;
        /* padding-left: 20px; */
        /* padding-right: 20px; */
        width: calc(100% - 40px);
    }
    .address_container {
        display: block;
    }
    .address_inner {
        width: 100%;
    }
    .address_inner:nth-child(1) {
        margin-bottom: 50px;
    }

    /*-------------------------------------
    footer追従ナビ
    -------------------------------------*/
    .sp_bar {
        padding-bottom: env(safe-area-inset-bottom);
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9;
        background: var(--m_color);
    }
    .sp_bar li {
        width: calc(100% / 2);
        padding: 5px 0;
    }
    .sp_bar a {
        color: #fff;
        padding: 0 10px;
        display: block;
        font-size: 0.6875rem;
        text-align: center;
        border-right: 1px solid rgba(255, 255, 255, 0.3);
        position: relative;
        text-decoration: none;
    }
    .sp_bar li a:before {
        font-weight: bold;
        font-family: "Font Awesome 6 Free";
        display: block;
    }
    .sp_bar li:nth-of-type(1) a:before {
        content: "\f0e0";
    }
    .sp_bar li:nth-of-type(1) a:before {
        content: "\f095";
    }
    .sp_bar li:nth-of-type(2) :before {
        content: "\f077";
    }

    .grecaptcha-badge {
        bottom: 20px !important;
    }
}
@media only screen and (max-width: 320px) {
    .wp-pagenavi {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .wp-pagenavi .page-numbers {
        margin: 0 5px 5px 0;
    }
}
