@charset "UTF-8";
/*!
Theme Name: asano-farm
Theme URI: 
Author: Yoshitomo Takayama
Description: 株式会社浅野ファーム
Version: 1.0.0
*/


/* ==========================================================================
   Foundation
   ========================================================================== */

/* Reset
   ----------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}
img{
    vertical-align: top;
    max-width: 100%;
    height: auto;
}
ul,
ol {
    list-style: none;
}
pre {
    font-family: inherit;
    font-weight: initial;
    white-space: break-spaces;
}
a {
    color: inherit;
}
a:link,
a:visited {
    text-decoration: none;
}


/* ==========================================================================
   GLOBAL
   ========================================================================== */


/* main
   ----------------------------------------------------------------- */

.section_body {
    margin-top: 40px; 
}
.section_body_wrapper {
    padding: 40px 20px;
    border-radius: 20px;
    background: var(--white);
}
.section_body_col.col-txt {
    margin-top: 32px;
    padding: 0 20px;
}
.section_body_head + .section_body_txt,
.section_body_txt + .section_body_txt {
    margin-top: 24px;
}
@media (max-width: 320px){
    .section_body_col.col-txt {
        padding: 0;
    }
}
@media (min-width: 600px){
    .section_inner {
        margin: auto;
        max-width: calc(100% - 88px);
    }
    .section_body_wrapper {
        padding: 40px;
    }
}
@media (min-width: 768px){
    .section {
        padding: 64px 15px 96px;
    }
    .section_inner {
        max-width: calc(100% - 130px);
    }
    .section_body {
        margin-top: 64px; 
    }
    .section_body_col.col-txt {
        padding: 0;
    }
}
@media (min-width: 960px){
    .section {
        padding: 100px 15px 132px;
    }
    .section-1 {
        margin-top: 120px;
    }
    .section_inner {
        max-width: 1110px;
        width: 90%;
        margin: auto;
    }
    .section_body_wrapper {
        padding: 80px;
    }
    .section_title::after {
        width: 135px;
        height: 200px;
    }
    .section_body {
        margin-top: 80px; 
    }
}


/* footer
   ----------------------------------------------------------------- */

#footer {
    position: relative;
    padding: 48px 20px;
    background: var(--gray3);
}
.footer_body {
    max-width: 1110px;
    margin: auto;
}
.footer_nav_area {
    margin-top: 40px;
}
.footer_logo {
    width: 200px;
    margin: auto;
}
.footer_nav_list {
    text-align: center;
}
.footer_nav_item {
    font-size: 1.4rem;
}
.footer_nav_item + .footer_nav_item {
    margin-top: 12px;
}
.footer_bottom {
    margin-top: 48px;
}
.footer_copyright {
    text-align: center;
    font-size: 1rem;
    line-height: 1;
    color: var(--gray2);
}
.footer_nav_item>a:hover {
    border-bottom: 1px solid;
}
@media (min-width: 600px) {
    .footer_nav {
        padding-left: 24px;
    }
    .footer_nav_list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: left;
    }
    .footer_nav_item {
        width: 40%;
        margin: 6px 8%;
        font-size: 1.6rem;
    }
    .footer_nav_item + .footer_nav_item {
        margin-top: 0;
    }
    .footer_copyright {
        font-size: 1.2rem;
    }
}
@media (min-width: 768px) {
    .footer_body {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: distribute;
            justify-content: space-around;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .footer_nav {
        padding-left: 0;
    }
    .footer_nav_area {
        width: 64%;
        margin-top: 0;
    }
    .footer_nav_item {
        width: 45%;
        max-width: 260px;
        margin: 8px 2.5%;
    }
}
@media (min-width: 960px) {
    .footer_nav_area {
        width: 50%;
    }
}


/* コンポーネント
   ----------------------------------------------------------------- */

.center {
    margin: auto;
    text-align: center;
}
.bgcolor_white {
    background: var(--white);
}
.bgcolor_black {
    background: var(--gray1);
}
.bgcolor_gray {
    background: var(--gray5);
}
.bgcolor_primary {
    background: var(--primary);
}

a[href^="tel:"] {
    text-decoration: underline;
}
@media(min-width: 960px){
    a[href^="tel:"] {
        pointer-events: none;
        text-decoration: none;
    }
}

/**
 * ボタン
 */
.btn {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 236px;
    height: 48px;
    margin: 40px auto 0;
    text-align: center;
}
.btn>a {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary);
    border-radius: 50px;
    background: var(--primary);
    color: var(--white);
    font-size: 1.4rem;
}
.btn>a:hover {
    background: var(--white);
    color: var(--primary);
}
.btn-black>a {
    border: 1px solid var(--gray1);
    background: var(--gray1);
}
.btn-black>a:hover {
    color: var(--gray1);
}

@media (min-width: 768px) {
    .btn {
        width: 255px;
        height: 56px;
    }
    .btn>a {
        font-size: 1.6rem;
    }
}

/**
 * form
 */
::placeholder {
    color: var(--gray4);
}
::-ms-input-placeholder { /* IE対応 */
    color: var(--gray4);
}
input:focus,
select:focus,
textarea:focus {
    outline: 1px solid var(--primary);
}
select{
    color: var(--gray1);
}

/**
 * セクション区切り線
 */
.separation {
    display: block;
    width: 100%;
    height: 40px;
    max-height: 60px;
    margin: 0;
    z-index:5;
    bottom:-2px;
    position:absolute;
    left:0px;
    float:left;
}
#footer .separation {
    top:-38px;
}
.separater > use {
    animation: separater-move 8s linear 0s infinite;
}
.separater.bgcolor_white > use {
    fill: var(--white);
}
.separater.bgcolor_gray3 > use {
    fill: var(--gray3);
}
.separater.bgcolor_gray5 > use {
    fill: var(--gray5);
}
@keyframes separater-move {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}
@media (min-width: 768px) {
    .separation {
        height: 64px;
        max-height: 64px;
    }
    #footer .separation {
        top:-64px;
    }
}

/**
 * info用リスト
 */

.info_list_item {
    position: relative;
    border-bottom: 1px solid var(--gray4);
}
.info_list_item>a {
    display: inline-block;
    width: 100%;
    padding: 16px 0;
}
.info_list_item>a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0px;
    margin: auto;
    vertical-align: middle;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    content: '';
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: .2s;
}
.info_list_item h3 {
    padding-right: 16px;
    font-size: 1.6rem;
}
@media (min-width: 768px) {
    .info_list_item>a::after {
        right: 12px;
    }
    .info_list_item>a:hover::after {
        right: 8px;
    }
    .info_list_item h3 {
        padding-right: 12px;
        transition: all 0.3s;
    }
    .info_list_item>a:hover h3 {
        color: var(--primary);
    }
}
@media (min-width: 960px) {
    .info_list_item>a::after {
        right: 16px;
    }
    .info_list_item>a:hover::after {
        right: 12px;
    }
    .info_list_item h3 {
        padding-right: 24px;
    }
}

/**
 * data_table
 */
.data_table {
    border-bottom: 1px solid var(--gray4);
}
.data_table_head {
    padding: 24px 16px 6px;
    border-top: 1px solid var(--gray4);
    font-weight: 700;
}
.data_table_txt {
    padding: 6px 16px 24px;
}
@media (min-width: 768px) {
    .data_table {
        display: flex;
        flex-wrap: wrap;
    }
    .data_table_head {
        width: 25%;
        padding: 24px 16px;
    }
    .data_table_txt {
        width: 75%;
        padding: 24px 16px;
        border-top: 1px solid var(--gray4);
    }
}
@media (min-width: 960px) {
    .data_table_head {
        padding: 24px 32px;
    }
    .data_table_txt {
        padding: 24px 32px;
    }
}

/**
 * 日時
 */
.time {
    min-width: 5em;
    font-weight: 500;
    line-height: 1.5;
    color: var(--gray3);
}

/**
 * Google_map
 */
.gmap {
    position: relative;
    width: 100%;
    padding-top: 75%;
}
.gmap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
@media (min-width: 768px) {
    .gmap {
        padding-top: 50%;
    }
}


/**
 * ページネーション
 */
.pagination {
    clear: both;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    gap: 8px;
    width: 100%;
}
.page-numbers {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    background: var(--white);
}
.pagination>a:hover {
    background: var(--primary);
    border-color: var(--white);
    color: var(--white);
}
.page-numbers.current {
    background: var(--gray1);
    color: var(--white);
}

/* cta_call
----------------------------------------- */
.cta_call {
    border: 1px solid var(--gray4);
    margin: 32px 0 0;
    padding: 32px 0;
}
.cta_call_number {
    font-size: 2rem;
}
.cta_call_text {
    font-size: 1.2rem;
    color: var(--gray2);
}
@media screen and (min-width: 960px){
    .cta_call {
        margin: 40px 0 0;
    }
    .cta_call_number {
        font-size: 2.4rem;
    }
}


/* ==========================================================================
   TOP
   ========================================================================== */


/**
 * TOP_浅野ファームについて
---------------------------------------------------- */
.top_section-about .section_body {
    position: relative;
}
@media (min-width: 768px) {
    .top_section-about .section_body {
        display: flex;
        justify-content: space-between;
        gap: 0 32px;
    }
    .top_section-about .section_body .section_body_col {
         width: 50%;
    }
    .top_section-about .section_body .section_body_col.col-txt {
        max-width: 350px;
    }
    .top_section-about .section_body .section_body_col.col-txt .btn {
        margin-left: 0;
    }
}
@media (min-width: 960px) {
    .top_section-about .section_body .section_body_col.col-txt {
        max-width: 450px;
    }
}

/**
 * TOP_米づくり
---------------------------------------------------- */
.top_section-cultivation .photo-1 img{
    border-radius: 30px;
}
.top_section-cultivation .section_body-2 {
    position: relative;
}
.top_section-cultivation .section_body-2 .photo-1 {
    width: 90%;
}
.top_section-cultivation .section_body-2 .photo-2 {
    width: 80%;
    margin-top: 12px;
    margin-left: auto;
}
@media (min-width: 768px) {
    .top_section-cultivation .section_body {
        display: flex;
        justify-content: space-between;
        gap: 0 24px;
    }
    .top_section-cultivation .section_body-1 {
        flex-flow: row-reverse;
    }
    .top_section-cultivation .section_body_col.col-img {
        flex-basis: 66.666%;
    }
    .top_section-cultivation .section_body_col.col-txt {
        flex-basis: 33.333%;
        min-width: 300px;
    }
}
@media (min-width: 960px) {
    .top_section-cultivation .section_body {
        gap: 0 40px;
    }
    .top_section-cultivation .section_body_col.col-txt {
        min-width: 350px;
        margin-top: 80px;
    }

}


/**
 * TOP_商品一覧
---------------------------------------------------- */

.top_section-product .product_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px 0;
}
.top_section-product .product_list_item .photo {
    width: 80%;
    max-width: 320px;
    margin: auto;
    text-align: center;
    z-index: -1;
}
.top_section-product .product_list_item .photo img,
.top_section-product .product_list_item .photo source {
    width: 250px;
    border-radius: 50%;
}
.top_section-product .product_list_item .col-txt {
    margin-top: -24px;
    padding: 0 20px;
}
@media (min-width: 600px) {
    .top_section-product .product_list_item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        max-width: 640px;
        width: 100%;
    }
    .top_section-product .product_list_item .col-txt {
        -ms-flex-preferred-size: 150%;
            flex-basis: 150%;
        margin-top: 0;
        margin-left: -40px;
        padding-left: 0;
    }
}
@media (min-width: 768px) {
    .top_section-product .product_list {
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: start;
    }
    .top_section-product .product_list_item:nth-child(2n) {
        margin-left: auto;
    }
    .top_section-product .product_list_item-2,
    .top_section-product .product_list_item-3 {
        margin-top: -24px;
    }
    .top_section-product .product_list_item-2 {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-flow: row-reverse;
                flex-flow: row-reverse;
        margin-right: 0;
    }
    .top_section-product .product_list_item-2 .col-txt {
        margin-left: 0;
        margin-right: -40px;
        padding-right: 0;
        padding-left: 20px;
    }
}
@media (min-width: 960px) {
    .top_section-product .product_list_item-2,
    .top_section-product .product_list_item-3 {
        margin-top: -48px;
    }
}

/**
 * TOP_お知らせ
---------------------------------------------------- */

.top_section_info .section_body_wrapper {
    padding-top: 24px;
}
.top_section_info h3.head-sm {
    font-size: 1.4rem;
    font-weight: 700;
}
@media (min-width: 600px) {
    .top_section_info h3.head-sm {
        font-size: 1.6rem;
    }
}
@media (min-width: 768px) {
    .top_section_info .section_body_wrapper {
        padding: 48px 64px 64px;
    }
}
@media (min-width: 960px) {
    .top_section_info .section_body_wrapper {
        padding: 56px 80px 80px;
    }
    .top_section_info .info_list_item>a {
        display: flex;
        align-items: center;
        padding: 24px 32px;
    }
    .top_section_info .info_list_item>a>time {
        margin-right: 32px;
    }
    .top_section_info .info_list_item h3 {
        max-width: 620px;
        white-space: nowrap;
        overflow: hidden;
    }
}


/* ==========================================================================
   固定ページ
   ========================================================================== */

.page .entry-content h2 {
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 1.8rem;
}
.page .entry-content p {
    margin-top: 24px;
}
.page .entry-content a {
    text-decoration: underline;
}
.page .entry-content a:hover {
    color: var(--primary);
}
.page .entry-content li {
    position: relative;
    padding-left: 16px;
    margin: 4px 0;
}
.page .entry-content li:before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
    content: "";
}


/* ==========================================================================
   投稿ページ
   ========================================================================== */

.post .entry-content h2 {
    margin: 32px 0 12px;
    font-size: 1.6rem;
}
.post .entry-content p,
.post .entry-content ul,
.post .entry-content ol,
.post .entry-content dl,
.post .entry-content pre,
.post .entry-content figure {
    margin: 24px 0 0;
}
.post .entry-content a {
    text-decoration: underline;
}
.post .entry-content a:hover {
    color: var(--primary);
}
.post .entry-content li {
    position: relative;
    padding-left: 16px;
    margin: 4px 0;
}
.post .entry-content li:before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
    content: "";
}
/* キャプション */
.post .entry-content figcaption {
    margin: 4px 0;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: center;
    color: var(--gray2);
}
@media (min-width: 600px) {
    .post .entry-content h2 {
        font-size: 1.8rem;
    }
}
@media (min-width: 960px) {
    .post .entry-content h2 {
        font-size: 2rem;
    }
}


/* ==========================================================================
   お知らせ
   ========================================================================== */

.info .section_body {
    display: -ms-grid;
    display: grid;
    gap: 40px 24px;
}
.info .section_body .btn {
    margin: 0 auto;
}
.info_thumbnail {
    margin: 16px 0 0 ;
}
/**
 * サイドバー
 */
#sidebar .sidebar_head{
    font-size: 1.8rem;
}
#aside {
    padding:40px 20px;
    border-radius: 20px;
    background: var(--white);
}
.sidebar_head {
    font-size: 1.8rem;
    text-align: center;
}
.sidebar_body {
    margin-top: 24px;
}
.archives_list_item + .archives_list_item {
    margin-top: 16px;
}
.archives_list_item a {
    display: inline-block;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    background-color: var(--primary);
    font-weight: 700;
    text-align: center;
    color: var(--white);
}
.archives_list_item a::after {
    content: "年";
}
@media (min-width: 768px) {
    .info .section_body {
        -ms-grid-rows:1fr 24px;
        -ms-grid-columns: 1fr 40px minmax(200px, 30%);
        grid-template-columns: 1fr minmax(200px, 30%);
    }
    .info .section_body .section_body_wrapper {
        -ms-grid-row: 1;
        grid-row: 1;
        -ms-grid-column: 1;
        grid-column: 1;
    }
    .info .section_body .pagination {
        -ms-grid-row: 3;
        grid-row: 2;
        -ms-grid-column: 1;
        grid-column: 1;
    }
    .info .section_body .btn{
        -ms-grid-row: 3;
        grid-row: 2;
        -ms-grid-column: 1;
        grid-column: 1;
    }
    .info .section_body .sidebar {
        -ms-grid-row: 1;
        grid-row: 1;
        -ms-grid-column: 3;
        grid-column: 2;
    }
}
@media (min-width: 960px) {
    .info .section_body {
        -ms-grid-rows:1fr 80px;
        -ms-grid-columns: 1fr 40px minmax(200px, 30%);
        gap: 80px 40px;
    }
    .info .section_body .section_body_wrapper {
        padding: 40px;
    }
}


/* ==========================================================================
   商品一覧
   ========================================================================== */

.list.product_list {
    display: flex;
    flex-wrap: wrap;
}
.list_item.product_item {
    width: 100%;
    margin-bottom: 24px;
}
.entry_card_thumbnail {
    position: relative;
    overflow: hidden;
    padding-top: 66.666%;
}
.entry_card_thumbnail img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .3s;
    width: 100%;
    height: 100%;
}
.object-fit-image {
    object-fit: cover;
    font-family: 'object-fit: cover;';
}
.entry_card_title {
    padding: 8px 12px;
    line-height: 1.2;
}
.entry_card_title.head-md {
    font-size: 1.4rem;
}
/*
* カードホバー時
 */
.product_item:hover {
    color: var(--primary);
}
.product_item:hover .entry_card_thumbnail img {
    border-radius: 30px;
}
@media (min-width: 600px) {
    .list_item.product_item {
        width: 50%;
        padding: 0 8px;
    }
}
@media (min-width: 960px) {
    .product .list_item.product_item {
        width: 33.333%;
    }
}


/* ==========================================================================
   商品ページ
   ========================================================================== */

.product_detail {
    display: -ms-grid;
    display: grid;
    gap: 32px 0;
}
.product_title {
    margin-bottom: 16px;
    line-height: 1.2;
}
.product_detail .entry-content .label {
    display: inline-block;
    min-width: 4em;
    margin-right: 1em;
}
@media (min-width: 600px) {
    .product_detail {
        -ms-grid-columns: 1fr 24px 1fr;
        grid-template-columns: 1fr 1fr;
        gap: 24px ;
    }
    .product_detail_col {

    }
    .product_detail_col.col-txt {
        -ms-grid-column: 3;
        grid-column: 2;
        margin-top: 16px;
    }
}
@media (min-width: 768px) {

}
@media (min-width: 960px) {
    .product_detail {
        -ms-grid-columns: 1fr 40px 1fr;
        gap: 0 40px;
    }
}

/**
 * 注文/戻るボタン
---------------------------------------------------- */
.product_checkout {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-grid-rows:1fr 16px 1fr;
    gap: 16px 0;
    margin-top: 32px;
}
.product_checkout>.btn {
    margin: 0;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: center;
    justify-self: center;
    -ms-grid-column: 1;
}
.product_checkout>.btn.return {
    -ms-grid-row: 3;
    grid-row: 2;
}
@media (min-width: 768px) {
    .product_checkout {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 40px 1fr;
        grid-template-columns: 1fr 1fr;
        gap: 0 40px;
        margin-top: 40px;
    }
    .product_checkout>.btn {
        -ms-grid-column: 3;
        -ms-flex-item-align: auto;
            -ms-grid-row-align: auto;
            align-self: auto;
        -ms-grid-column-align: auto;
            justify-self: auto;
    }
    .product_checkout>.btn.return {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 1;
        grid-row: 1;
        -ms-grid-row-align: right;
            align-self: right;
        -ms-grid-column-align: right;
            justify-self: right;
    }
}
@media (min-width: 960px) {
    .product_checkout {
        -ms-grid-columns: 1fr 80px 1fr;
        gap: 0 80px;
    }

}

/**
 * ご注文・お支払いについて
---------------------------------------------------- */
.product_notes {
    max-width: 950px;
    margin-right: auto;
    margin-left: auto;
}
.product_notes_head {
    margin-top: 32px;
    margin-bottom: 12px;
}
.product_notes_txt + .product_notes_txt {
    margin-top: 24px;
}


/* ==========================================================================
   会社情報
   ========================================================================== */
.about_section .section_body_wrapper {
    display: -ms-grid;
    display: grid;
    gap: 24px 0;
}
.about_section .section_body .photo-1 img {
    width: 100%;
    border-radius: 20px;
}
.about_section .section_body .photo-2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 8px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 0 8px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
}
.about_section .section_body .col-txt {
    margin: 0;
}
.about_section .section_body .photo-2 img{
    border-radius: 20px;
}
@media (min-width: 768px) {
    .about_section .section_body_wrapper {
        -ms-grid-columns: minmax(300px, 1fr) 32px 1fr;
        grid-template-columns: minmax(300px, 1fr) 1fr;
        -ms-grid-rows:1fr 24px;
        gap: 24px 32px;
        padding: 40px;
    }
    .about_section .photo-1 {
        -ms-grid-column: 3;
        -ms-grid-column-span: 1;
        grid-column: 2 / 3;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1 / 2;
    }
    .about_section .photo-2 {
        -ms-grid-column: 3;
        -ms-grid-column-span: 1;
        grid-column: 2 / 3;
        -ms-grid-row: 3;
        grid-row: 2 / 2;
        gap: 0 24px;
    }
    .about_section .photo-2 .photo-2-1 {
        -ms-grid-column: 1;
    }
    .about_section .photo-2 .photo-2-2 {
        -ms-grid-column: 3;
    }
    .about_section .col-txt {
        -ms-grid-column: 1;
        grid-column: 1 / 1;
        -ms-grid-row: 1;
        -ms-grid-row-span: 3;
        grid-row: 1 / 4;
    }
}
@media (min-width: 960px) {
    .about_section .section_body_wrapper {
        padding: 80px;
    }
}


/*--------------------------------------------------------------------------
   CONTACT / ORDER
---------------------------------------------------------------------------*/

.contact .entry-content .contact_lead,
.order .entry-content .contact_lead {
    line-height: 1.5;
    margin: 0;
}
.contact_lead.center>a {
    text-decoration: underline;
}
.contact_lead.center + .contact_lead.center {
    margin-top: 24px;
}
.contact_table {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 32px 0 0 ;
}
.contact_table_head + .contact_table_input {
    padding-top: 16px;
}
.contact_table_input + .contact_table_head,
.p-country-name + .contact_table_head {
    padding-top: 24px;
}
.contact_table_head,
.contact_table_input {
    width: 100%;
}
.contact_table_head {
    border-bottom: none;
    line-height: 1;
    font-weight: 700;
}
.contact_table_input {
    padding-top: 8px;
}
.contact_table_input input,
.contact_table_input select,
.contact_table_txtarea {
    outline: 1px solid var(--gray4);
}
.contact_table_input input,
.contact_table_input select {
    width: 100%;
    height: 56px;
    padding: 0 16px;
    box-sizing: border-box;
}
.contact_table_input .is-empty { /*セレクトボックス初期値*/
    color: var(--gray4);
}
.contact_table_txtarea {
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
}
.contact_table_input input:focus,
.contact_table_input select:focus,
.contact_table_txtarea:focus {
    outline: 1px solid var(--primary);
    color: var(--gray1);
}
.contact_table_input input.number,
.contact_table_input select.number {
    width: auto;
    padding: 0 16px;
}
.contact_table_input_summary {
    margin-bottom: 16px;
}
.label_require {
    display: inline-block;
    margin-left: 8px;
    padding: 0 8px;
    background-color: var(--secondary);
    font-size: 12px;
    line-height: 20px;
    text-align: center;
}
/* 同意check */
.contact_check {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 32px 0 0;
    line-height: 1.5;
}
.contact_check a {
    text-decoration: underline;
}
.contact_check input[type=checkbox] {
    display: none;
}
.contact_check .wpcf7-list-item-label {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 12px 5px 36px;
    position: relative;
    width: auto;
}
.contact_check .wpcf7-list-item-label::before {
    border: 1px solid var(--gray4);
    content: '';
    display: block;
    height: 24px;
    left: 0px;
    margin-top: -12px;
    position: absolute;
    top: 50%;
    width: 24px;
}
.contact_check .wpcf7-list-item-label::after {
    border-right: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
    content: '';
    display: block;
    height: 14px;
    left: 9px;
    margin-top: -9px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 8px;
}
input[type=checkbox]:checked + .wpcf7-list-item-label::after {
    opacity: 1;
}
.google_contact_policy {
    margin-top: 32px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0;
    color: var(--gray3);
}

/* 送信ボタン */
.contact_btn  {
    display: block;
    margin-top: 24px;
    outline: 0;
}
.contact_btn .wpcf7-submit:disabled,
.contact_btn .wpcf7-submit:disabled:hover {
    background: var(--gray4);
    border: 1px solid var(--gray4);
    color: var(--white);
}
.contact_btn .wpcf7-submit {
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 1px solid var(--primary);
    background: var(--primary);
    color: var(--white);
    transition: all 0.3s;
}
.contact_btn .wpcf7-submit:hover {
    border: 1px solid var(--primary);
    background: var(--white);
    color: var(--primary);
}
.contact_btn>.contact_btn_inner.btn-black {
    border-color: : var(--gray1);
    background: var(--gray1);
}
.contact_btn>.contact_btn_inner>input {
    width: 100%;
    height: 100%;
    margin: auto;
    transition: .2s;
}
/* 注文フォーム 商品選択 */
.contact_table_input .form_order1_quantity input {
    width: 4em;
}
.contact_table_input_product {
    display: flex;
    flex-flow: column;
    gap: 12px 0;
}
.form_productgroup {
    display: flex;
    flex-flow: column;
    gap: 8px 0;
}
.contact_table_input .label {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.form_productgroup .row {
    display: flex;
    align-items: center;
    gap: 0 8px;
}
.form_productgroup .row .label {
    margin-left: 8px;
}
.form_productgroup .row > div:first-child {
    min-width: 6em;
}
.form_productgroup .row > div {
    display: flex;
}
/* CF7のバリデートMSG
----------------------------------------- */
.screen-reader-response { /*ページ上部*/
    display: none;
}
.wpcf7-not-valid-tip { /*各綱目下*/
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #F00;
}
.wpcf7 form .wpcf7-response-output {
    border: none !important;*/
}
.wpcf7 form .wpcf7-response-output { /*ページ下部*/
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    color: #F00;
}
/* CF7のデフォルトAjaxローダーを非表示
----------------------------------------- */
.wpcf7 .ajax-loader {
    display: none !important;
}
/* reCAPTCHA v3のロゴを非表示
----------------------------------------- */
.grecaptcha-badge { 
    visibility: hidden; 
}

@media (min-width: 600px) {
    .contact_table_head + .contact_table_input {
        padding-top: 24px;
    }
    .contact_table_input + .contact_table_head {
        padding-top: 32px;
    }
    .contact_table_input input,
    .contact_table_input select {
        padding: 0 24px;
    }
    .google_contact_policy {
        font-size: 1.2rem;
    }
}
@media (min-width: 768px) {
    .contact_btn {
        width: 255px;
        height: 56px;
        margin-top: 32px;
    }
    .contact_btn>a {
        font-size: 1.6rem;
    }
}
@media (min-width: 960px) {
    .contact_table {
        justify-content: space-between;
        margin: 40px 0 0 ;
    }
    .contact_table_head + .contact_table_input,
    .contact_table_input + .contact_table_head {
        padding-top: 16px;
    }
    .contact_table_head,
    .contact_table_input {
        padding: 16px 0;
    }
    .contact_table_head {
        width: 28%;
        line-height: 60px;
    }
    .contact_table_input {
        width: calc(100% - 30%);
    }
    .contact_table_input:last-child {
        padding-bottom: 0;
    }
    .contact_table_input input,
    .contact_table_input select {
        height: 64px;
    }
    .contact_table_txtarea {
        padding: 24px;
    }
    .contact_check {
        margin-top: 40px;
        text-align: center;
    }
    .google_contact_policy {
        margin-top: 80px;
    }
    .contact_btn {
        margin-top: 40px;
    }
}