@charset "utf-8";
/*
Theme Name: shimane-print
Theme URI: https://www.shimane-printing.co.jp/
Description: Shimane Printing sekiyu Site Template!
Version: 1.0
Author: kurokodesigns
Author URI: https://kurokodesigns.com/
*/

:root {
	--primary-color: #0058a9;
	--secondary-color: #d5b668;
	--dark-green: #213b25;
	--light-green: #169156;
	--light-gray: #f2f3f5;
	--black: #323232;
	--beige: #e5e1d1;
	--border-color: #909d92;

	--pc-top-content-width: 1060px;
	--pc-content-width: 1024px;

	--scroll-down-width: calc((100% - var(--pc-top-content-width)) / 2);
}

a:link {
	text-decoration: underline;
}

a:visited {
    text-decoration: underline;
}

a:hover {
	text-decoration: none;
}

a:hover img{
	border: none;
	opacity: 0.8;
	filter: alpha(opacity=70);
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
    scroll-padding-top: 140px;
}

strong {
	font-weight: 700;
}

i {
	font-style: italic;
}

.clear {
    clear: both;
}
	
.alignleft {
	margin: 0 30px 40px 0;
	float: left;
	display: inline;
}

.alignright {
	margin: 0 0 40px 30px;
	float: right;
	display: inline;
}

.aligncenter {
    margin: 0 0 40px 0;
    display: block;
    margin: 0 auto;
}

img{
	vertical-align:top;
}

.grecaptcha-badge { visibility: hidden; }

/* pc */
@media print, screen and (min-width: 768px) {
	
	.sp {
		display: none;
	}

	body {
		background: #ffffff;
		color: #333333;
		font-family: 'Noto Sans JP', sans-serif;
		font-size: 1.6rem;
		line-height: 3.2rem;
		font-weight: 400;
		font-feature-settings: "palt";
	}

    div.head_area {
        margin: 0 auto;
        width: 100%;
        height: 80px;
        background: var(--primary-color);
        position: fixed;
        z-index: 1000;
    }

    div.head {
        margin: 0 auto;
        width: 1080px;
        height: 80px;
        position: relative;
    }

    div.head_logo {
        margin: 0;
        width: 270px;
        position: absolute;
        top: 18px;
        left: 0;
        z-index: 2;
    }

    div.head_logo h1 {
        margin: 0 auto;
        width: 100%;
    }

    div.head_logo h1 img {
        width: 100%;
        height: auto;
    }

    div.head_menu {
        margin: 0;
        width: 760px;
        position: absolute;
        top: 0px;
        right: 0px;
        z-index: 1;
    }

    div.head_menu ul {
        margin: 0;
        width: 760px;
        display: flex;
        justify-content: space-between;
    }

    div.head_menu ul li {
        margin: 0;
        width: 152px;
        position: relative;
    }

    div.head_menu_sp {
        display: none;
    }

    /* サブメニューの基本スタイル */
    div.head_menu ul li ul {
        display: block;
        position: absolute;
        top: 100%; /* メインメニューの下に配置 */
        left: 50%; /* 親要素の中央を基準点にする */
        width: 240px; /* 指定の幅に変更 */
        transform: translateX(-50%) translateY(-10px); /* 中央揃え + 初期位置オフセット */
        background: rgba(0, 88, 169, 0.9); /* 背景色を半透明に */
        flex-direction: column;
        padding: 0;
        
        /* 非表示状態の初期設定 */
        opacity: 0;
        visibility: hidden;
        
        /* アニメーション設定 */
        transition: all 0.3s ease-in-out;
        z-index: 100; /* 他の要素より前面に */
    }

    /* ホバー時のサブメニュー表示 */
    div.head_menu ul li:hover > ul {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0); /* 中央揃えを維持したままY軸のみ移動 */
    }

    /* サブメニューの各項目 */
    div.head_menu ul li ul li {
        width: 100%;
        margin: 0;
    }

    div.head_menu ul li ul li a {
        line-height: 40px; /* メインメニューより低く */
        font-size: 1.4rem; /* メインメニューより小さく */
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        transition: background-color 0.2s;
    }

    div.head_menu ul li ul li a:hover {
        background-color: rgba(255, 255, 255, 0.1); /* ホバー時の背景を少し明るく */
    }

    /* メインメニューのスタイル */
    div.head_menu ul li a {
        margin: 0 auto;
        width: 100%;
        color: #ffffff;
        border-right: 1px solid #ffffff;
        border-image: linear-gradient(to bottom, #ffffff 0%, var(--primary-color) 100%);
        border-image-slice: 1;
        display: block;
        font-size: 1.6rem;
        line-height: 80px;
        font-weight: 500;
        text-align: center;
        text-decoration: none;
        transition: background-color 0.3s; /* ホバーアニメーション追加 */
    }

    div.head_menu ul li a:hover {
        background-color: rgba(255, 255, 255, 0.1); /* ホバー時の背景を少し明るく */
    }

    div.head_menu ul li.home a {
        border-left: 1px solid #ffffff;
    }

    /*TOP*/

    div.top_visual_area {
        margin: 0 auto;
        padding: 80px 0 0;
        width: 100%;
    }

    div.top_visual {
        margin: 0 auto;
        width: 100%;
        max-width: 1400px;
    }

    div.top_visual img {
        width: 100%;
        height: auto;
    }

    div.top_movie_area {
        margin: 0 auto;
        padding: 80px 0 0;
        width: 100%;
    }

    div.top_movie {
        margin: 0 auto;
        aspect-ratio: 16 / 9;
        width: 100%;
    }

    div.top_movie video {
        width: 100%;
        height: 100%;
        display: block;
    }

    div.top_intro_area {
        margin: 0 auto;
        padding: 80px 0;
        width: 100%;
    }

    div.top_intro {
        margin: 0 auto;
        width: 94%;
        max-width: 1080px;
        display: flex;
        justify-content: space-between;
    }

    div.top_intro_content {
        margin: 0;
        width: calc(100% - 480px);
    }

    div.top_intro_content h2 {
        margin: 0 auto 20px;
        color: var(--primary-color);
        font-size: 2.4rem;
        line-height: 3.2rem;
        font-weight: 500;
    }

    div.top_intro_content p {
        margin: 0 auto 30px;
    }

    div.top_intro_button {
        margin: 0;
        width: 270px;
    }

    div.top_intro_button a {
        margin: 0;
        width: 100%;
        background: var(--primary-color);
        color: #ffffff;
        font-size: 1.6rem;
        line-height: 40px;
        font-weight: 500;
        text-align: center;
        text-decoration: none;
        display: block;
        border-radius: 20px;
    }

    div.top_intro_image {
        margin: 0;
        width: 450px;
    }

    div.top_intro_image img {
        width: 100%;
        height: auto;
    }

    div.top_banner_area {
        margin: 0 auto 40px;
        width: 100%;
    }

    div.top_banner {
        margin: 0 auto;
        width: 94%;
        max-width: 1080px;
    }

    div.top_banner ul {
        margin: 0 auto;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    div.top_banner ul li {
        margin: 0;
        width: 32%;
    }

    div.top_banner ul li img {
        width: 100%;
        height: auto;
        border-radius: 20px;
    }

    div.top_news_area {
        margin: 0 auto;
        padding: 40px 0 80px;
        background: linear-gradient(to bottom, #ffffff 0%, #efefef 100%);
        width: 100%;
        border-top: 1px solid #efefef;
        border-bottom: 1px solid #efefef;
    }

    div.top_news_title {
		margin: 0 auto 40px;
	}

	div.top_news_title h2 {
		margin: 0 auto;
		padding: 0 0 12px;
		color: var(--primary-color);
		font-size: 2.7rem;
		line-height: 3.6rem;
		font-weight: 700;
		letter-spacing: 0.4rem;
		text-align: center;
		position: relative;
	}

	div.top_news_title h2::after {
		content: "News";
		color: var(--primary-color);
		font-size: 1.2rem;
		line-height: 1.2rem;
		letter-spacing: 0.1em;
		font-weight: 700;
		position: absolute;
		top: 42px;
		left: 0;
		right: 0;
		z-index: 1;
	}

    div.top_news {
        margin: 0 auto;
        width: 94%;
        max-width: 1080px;
        display: flex;
        justify-content: flex-start;
    }

    div.top_news_box {
        margin: 0 0 0 2%;
        width: 32%;
        display: flex;
        justify-content: space-between;
    }

    div.top_news_box:first-child {
        margin: 0 0 0 0;
    }

    div.top_news_thumb {
        margin: 0;
        width: 80px;
    }

    div.top_news_thumb img {
        width: 100%;
        height: auto;
        border-radius: 5px;
    }

    div.top_news_content {
        margin: 0;
        width: calc(100% - 100px);
    }

    div.top_news_content time {
        color: var(--primary-color);
        font-weight: 500;
    }

    div.top_office_area {
        margin: 0 auto;
        padding: 50px 0 80px;
        width: 100%;
    }

    div.top_office_title {
		margin: 0 auto 40px;
	}

	div.top_office_title h2 {
		margin: 0 auto;
		padding: 0 0 12px;
		color: var(--primary-color);
		font-size: 2.7rem;
		line-height: 3.6rem;
		font-weight: 700;
		letter-spacing: 0.4rem;
		text-align: center;
		position: relative;
	}

	div.top_office_title h2::after {
		content: "Offices";
		color: var(--primary-color);
		font-size: 1.2rem;
		line-height: 1.2rem;
		letter-spacing: 0.1em;
		font-weight: 700;
		position: absolute;
		top: 42px;
		left: 0;
		right: 0;
		z-index: 1;
	}

    div.top_office_content {
        margin: 0 auto;
        width: 94%;
        max-width: 1080px;
        display: flex;
        justify-content: space-between;
    }

    div.top_office {
        margin: 0;
        width: 48%;
    }

    div.top_office h3 {
        margin: 0 auto 20px;
        text-align: center;
    }

    div.top_office h3 span {
        padding: 2px 20px;
        color: var(--primary-color);
        font-size: 1.8rem;
        border: 1px solid var(--primary-color);
    }

    div.top_office_image {
        margin: 0 auto 20px;
        width: 100%;
    }

    div.top_office_image img {
        width: 100%;
        height: auto;
    }

    div.top_office p {
        margin: 0 auto 30px;
        font-size: 1.6rem;
        line-height: 2.7rem;
        text-align: center;
    }

    div.top_office_map {
        margin: 0 auto;
        aspect-ratio: 16 / 9;
        width: 100%;
    }

    div.top_office_map iframe {
        width: 100%;
        height: 100%;
    }

    /*フッター*/

    div.foot_area {
        margin: 0 auto;
        padding: 30px 0;
        width: 100%;
        background: linear-gradient(to bottom, #ffffff 0%, #ffffff 60%, #efefef 100%);
        border-top: 1px solid #efefef;
    }

    div.foot {
        margin: 0 auto;
        width: 98%;
        max-width: 1080px;
        display: flex;
        justify-content: space-between;
    }

    div.foot_info {
        margin: 0;
        width: 56%;
    }

    div.foot_logo {
        margin: 0 0 20px;
        width: 270px;
    }

    div.foot_logo h3 {
        margin: 0 auto;
    }

    div.foot_logo h3 img {
        width: 100%;
        height: auto;
    }

    div.foot_office_area {
        margin: 0 auto;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    div.foot_office {
        margin: 0;
        width: 49%;
    }

    div.foot_office dl {
        margin: 0 auto 10px;
        display: flex;
        justify-content: flex-start;
    }

    div.foot_office dl dt {
        margin: 0;
        width: 120px;
    }

    div.foot_office dl dt span {
        margin: 0;
        width: 100%;
        background: #ffffff;
        color: var(--primary-color);
        font-size: 1.3rem;
        line-height: 24px;
        text-align: center;
        border: 1px solid var(--primary-color);
        display: inline-block;
    }

    div.foot_office dl dd {
        margin: 0 0 0 20px;
        width: 30px;
        text-align: left;
    }

    div.foot_office dl dd a span {
        width: 30px;
        background: #ffffff;
        color: var(--primary-color);
        font-size: 1.8rem;
        line-height: 30px;
        text-align: center;
        border: 1px solid var(--primary-color);
        border-radius: 50%;;
        display: inline-block;
    }

    div.foot_office dl dd a:hover span {
        background: var(--primary-color);
        color: #ffffff;
    }

    div.foot_office p {
        margin: 0 auto;
        font-size: 1.2rem;
        line-height: 2.1rem;
    }

    div.foot_menu {
        margin: 0;
        width: 44%;
        text-align: right;
    }

    div.foot_menu ul.menu_list {
        margin: 0 0 20px;
    }

    div.foot_menu ul.menu_list li {
        margin: 0;
        padding: 0 10px;
        font-size: 1.1rem;
        line-height: 1.4rem;
        text-align: center;
        border-right: 1px solid #333333;
        display: inline-block;
    }

    div.foot_menu ul.menu_list li:first-child {
        border-left: 1px solid #333333;
    }

    div.foot_menu ul.foot_sns {
        margin: 0;
    }

    div.foot_menu ul.foot_sns li {
        margin: 0;
        display: inline-block;
    }

    div.foot_menu ul.foot_sns li a span {
        width: 40px;
        background: var(--primary-color);
        color: #ffffff;
        font-size: 1.8rem;
        line-height: 40px;
        text-align: center;
        border: 1px solid var(--primary-color);
        border-radius: 50%;;
        display: inline-block;
    }

    div.foot_menu ul.foot_sns li a:hover span {
        background: #ffffff;
        color: var(--primary-color);
    }

    div.copyright {
        margin: 0 auto;
        width: 100%;
        background: var(--primary-color);
    }

    div.copyright p {
        margin: 0 auto;
        color: #ffffff;
        font-size: 1.2rem;
        line-height: 50px;
        text-align: center;
    }

    /*下層ページ*/

    div.page_area {
        margin: 0 auto;
        padding: 80px 0;
        width: 100%;
    }

    div.page_title_news {
        margin: 0 auto 40px;
        padding: 220px 0 0;
        width: 100%;
        height: 300px;
        background: url(./images/news/title_bg_news.jpg);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    div.page_title_services {
        margin: 0 auto 40px;
        padding: 220px 0 0;
        width: 100%;
        height: 300px;
        background: url(./images/services/title_bg_services.jpg);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    div.page_title_drr {
        margin: 0 auto 40px;
        padding: 220px 0 0;
        width: 100%;
        height: 300px;
        background: url(./images/services/title_bg_drr.jpg);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    div.page_title_philosophy {
        margin: 0 auto 40px;
        padding: 220px 0 0;
        width: 100%;
        height: 300px;
        background: url(./images/company/title_bg_philosophy.jpg);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    div.page_title_outline {
        margin: 0 auto 40px;
        padding: 220px 0 0;
        width: 100%;
        height: 300px;
        background: url(./images/company/title_bg_outline_new2.jpg);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    div.page_title_history {
        margin: 0 auto 40px;
        padding: 220px 0 0;
        width: 100%;
        height: 300px;
        background: url(./images/company/title_bg_history.jpg);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    div.page_title_equipment {
        margin: 0 auto 40px;
        padding: 220px 0 0;
        width: 100%;
        height: 300px;
        background: url(./images/company/title_bg_equipment.jpg);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    div.page_title_recruit {
        margin: 0 auto 40px;
        padding: 220px 0 0;
        width: 100%;
        height: 300px;
        background: url(./images/company/title_bg_recruit.jpg);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    div.page_title_contact {
        margin: 0 auto 40px;
        padding: 220px 0 0;
        width: 100%;
        height: 300px;
        background: url(./images/contact/title_bg_contact.jpg);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    div.page_title_privacy {
        margin: 0 auto 40px;
        padding: 220px 0 0;
        width: 100%;
        height: 300px;
        background: url(./images/privacy/title_bg_privacy.jpg);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    div.page_title {
        margin: 0 auto;
        width: 94%;
        max-width: 1080px;
    }

    div.page_title h2 {
        margin: 0;
        text-align: left;
    }

    div.page_title h2 span {
        margin: 0;
        padding: 0 60px;
        background: #ffffff;
        color: var(--primary-color);
        font-size: 2.7rem;
        line-height: 80px;
        font-weight: 200;
        letter-spacing: 0.1em;
        text-align: center;
        border-radius: 20px 20px 0 0;
        display: inline-block;
    }

    div.page_content {
        margin: 0 auto;
        width: 94%;
        max-width: 1080px;
    }

    div.page_content h3 {
        margin: 0 auto 30px;
        padding: 15px 30px;
        color: var(--primary-color);
        font-size: 2.1rem;
        line-height: 3.2rem;
        font-weight: 400;
        border: 1px solid var(--primary-color);
        border-radius: 20px;
    }

    div.page_content h4 {
        margin: 0 auto 20px;
        padding: 10px 20px;
        font-size: 1.8rem;
        line-height: 3.0rem;
        font-weight: 400;
        border-top: 1px dotted #333333;
        border-bottom: 1px dotted #333333;
    }

    div.page_content p {
        margin: 0 auto 30px;
    }

    div.page_content p.date {
        margin: 0 auto 5px;
        color: var(--primary-color);
        font-size: 1.9rem;
        line-height: 3.0rem;
        font-weight: 500;
    }

    .wp-block-image {
        margin: 0 auto 40px;
        width: 80%;
    }

    .wp-block-image img {
        width: 100%;
        height: auto;
    }

    div.page_button {
        margin: 0 auto;
        width: 270px;
    }

    div.page_button a {
        margin: 0;
        width: 100%;
        background: var(--primary-color);
        color: #ffffff;
        font-size: 1.6rem;
        line-height: 40px;
        font-weight: 500;
        text-align: center;
        text-decoration: none;
        display: block;
        border-radius: 20px;
    }

    /*サービスのご案内*/

    div.service_content {
        margin: 0 auto;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    div.page_content div.service_content h3 {
        margin: 0 auto 20px;
    }

    div.service_box {
        margin: 0 0 40px 4%;
        width: 48%;
    }

    div.service_box:nth-child(2n+1) {
        margin: 0 0 40px 0;
    }

    div.service_box_image {
        margin: 0 auto 20px;
        width: 100%;
    }

    div.service_box_image img {
        width: 100%;
        height: auto;
    }

    /*理念・方針*/

    div.philosophy_content_area {
        margin: 0 auto 50px;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    div.philosophy_content {
        margin: 0;
        width: 48%;
    }

    div.philosophy_content_image {
        margin: 0;
        width: 46%;
    }

    div.philosophy_content_image img {
        width: 100%;
        height: auto;
    }

    div.quality_intro {
        margin: 0 auto 40px;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    div.quality_intro_content {
        margin: 0;
        width: 54%;
    }

    div.quality_intro_image {
        margin: 0;
        width: 40%;
    }

    div.quality_intro_image img {
        width: 100%;
        height: auto;
    }

    div.quality_content {
        margin: 0 auto 80px;
        width: 100%;
    }

    table.quality {
		margin: 0 auto 40px;
		width: 100%;
		background: #ffffff;
	}
	
	table.quality th {
		padding: 15px;
        background: #f4f4f4;
        width: 160px;
		font-size: 1.6rem;
		line-height: 2.7rem;
		font-weight: 400;
		text-align: center;
        vertical-align: middle;
		border: 1px solid #ddd;
	}

	table.quality td {
		padding: 15px;
		font-size: 1.6rem;
		line-height: 2.7rem;
		font-weight: 400;
		text-align: left;
		border: 1px solid #ddd;
	}

    /*会社概要*/

    div.outline_content {
        margin: 0 auto 50px;
        width: 100%;
    }

    table.outline {
		margin: 0 auto;
		width: 100%;
		background: #ffffff;
	}
	
	table.outline th {
		padding: 15px;
        background: #f4f4f4;
        width: 240px;
		font-size: 1.6rem;
		line-height: 2.7rem;
		font-weight: 400;
		text-align: center;
        vertical-align: middle;
		border: 1px solid #ddd;
	}

	table.outline td {
		padding: 15px;
		font-size: 1.6rem;
		line-height: 2.7rem;
		font-weight: 400;
		text-align: left;
		border: 1px solid #ddd;
	}

    div.outline_office_area {
        margin: 0 auto 80px;
        width: 100%;
    }

    div.outline_office_title {
		margin: 0 auto 40px;
	}

	div.outline_office_title h3 {
		margin: 0 auto;
	}

    div.outline_office_content {
        margin: 0 auto;
        width: 94%;
        max-width: 1080px;
        display: flex;
        justify-content: space-between;
    }

    div.outline_office {
        margin: 0;
        width: 48%;
    }

    div.outline_office h4 {
        margin: 0 auto 20px;
        padding: 0;
        font-size: 1.8rem;
        line-height: 3.0rem;
        font-weight: 400;
        text-align: center;
        border-top: none;
        border-bottom: none;
    }

    div.outline_office h4 span {
        padding: 2px 20px;
        color: var(--primary-color);
        font-size: 1.8rem;
        border: 1px solid var(--primary-color);
    }

    div.outline_office_image {
        margin: 0 auto 20px;
        width: 100%;
    }

    div.outline_office_image img {
        width: 100%;
        height: auto;
    }

    div.outline_office p {
        margin: 0 auto 30px;
        font-size: 1.6rem;
        line-height: 2.7rem;
        text-align: center;
    }

    div.outline_office_map {
        margin: 0 auto;
        aspect-ratio: 16 / 9;
        width: 100%;
    }

    div.outline_office_map iframe {
        width: 100%;
        height: 100%;
    }

    /*沿革*/

    div.history_content {
        margin: 0 auto 80px;
        width: 100%;
    }

    table.history {
		margin: 0 auto;
		width: 100%;
		background: #ffffff;
	}
	
	table.history th {
		padding: 15px;
        background: #f4f4f4;
        width: 200px;
		font-size: 1.6rem;
		line-height: 2.7rem;
		font-weight: 400;
		text-align: center;
        vertical-align: middle;
		border: 1px solid #ddd;
	}

	table.history td {
		padding: 15px;
		font-size: 1.6rem;
		line-height: 2.7rem;
		font-weight: 400;
		text-align: left;
		border: 1px solid #ddd;
	}

    /*主要設備*/

    div.equipment_content {
        margin: 0 auto 50px;
        width: 94%;
        max-width: 1080px;
    }

    div.page_content div.equipment_content:last-child {
        margin: 0 auto;
    }

    div.page_content div.equipment_content h3 {
        margin: 0 auto;
    }

    div.equipment_content ul {
        margin: 0 auto;
        width: 100%;
    }

    div.equipment_content ul li {
        margin: 0 auto;
        padding: 15px 20px;
        font-size: 1.6rem;
        line-height: 2.7rem;
        font-weight: 400;
        border-bottom: 1px dotted var(--primary-color);
    }

    div.equipment_content ul li i {
        color: var(--primary-color);
    }

    /*採用情報*/

    div.recruit_content {
        margin: 0 auto 80px;
        width: 100%;
    }

    table.recruit {
		margin: 0 auto;
		width: 100%;
		background: #ffffff;
	}
	
	table.recruit th {
		padding: 15px;
        background: #f4f4f4;
        width: 240px;
		font-size: 1.6rem;
		line-height: 2.7rem;
		font-weight: 400;
		text-align: center;
        vertical-align: middle;
		border: 1px solid #ddd;
	}

	table.recruit td {
		padding: 15px;
		font-size: 1.6rem;
		line-height: 2.7rem;
		font-weight: 400;
		text-align: left;
		border: 1px solid #ddd;
	}

    /*新着情報*/

    div.news_list_area {
        margin: 0 auto 80px;
        width: 94%;
        max-width: 1080px;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    div.news_list {
        margin: 0 0 40px 2%;
        width: 32%;
        display: flex;
        justify-content: space-between;
    }

    div.news_list:nth-child(3n+1) {
        margin: 0 0 40px 0;
    }

    div.news_list_photo {
        margin: 0;
        width: 80px;
    }

    div.news_list_photo img {
        width: 100%;
        height: auto;
        border-radius: 5px;
    }

    div.news_list_content {
        margin: 0;
        width: calc(100% - 100px);
    }

    div.news_list_content time {
        color: var(--primary-color);
        font-weight: 500;
    }

    /*お問い合わせ*/

    div.tel_content_area {
        margin: 0 auto 80px;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    div.tel_content {
        margin: 0;
        width: 30%;
    }

    div.page_content div.tel_content h4 {
        margin: 0 auto 15px;
        padding: 10px 0;
        font-size: 1.6rem;
        line-height: 3.0rem;
        font-weight: 400;
        border-top: 1px dotted #333333;
        border-bottom: 1px dotted #333333;
    }

    div.mail_content {
        margin: 0 auto 80px;
        width: 100%;
    }

    table.contact {
		margin: 0 auto 60px;
		width: 100%;
		background: #ffffff;
	}
	
	table.contact th {
		padding: 15px;
		font-weight: 500;
		width: 320px;
		font-size: 1.6rem;
		line-height: 2.4rem;
		text-align: center;
        vertical-align: middle;
		background: #f4f4f4;
		border: 1px solid #ddd;
	}
	
	table.contact td {
		padding: 15px;
		font-size: 1.6rem;
		line-height: 2.4rem;
		font-weight: 400;
		text-align: left;
		border: 1px solid #ddd;
	}

	div.page_content table.contact td p {
		margin: 0 auto 15px;
		font-size: 1.4rem;
	}

	div.page_content table.contact td p:last-child {
		margin: 15px auto 0;
	}

	.wpcf7 input[type="text"],
	.wpcf7 input[type="email"],
	.wpcf7 input[type="tel"],
	.wpcf7 input[type="url"],
	.wpcf7 textarea {
		background-color: #fff;
		color: #333;
		width: 95%;
		border: 1px solid #ddd;
		font-size: 100%;
		padding: 0.5em;
		border-radius: 4px;
		box-shadow: 1px 1px 3px rgba(0,0,0,.1) inset;
	}
	
	input[type="text"].wpcf7c-conf,
	input[type="text"].readonly,
	input[type="tel"].wpcf7c-conf,
	input[type="email"].wpcf7c-conf,
	input[type="url"].wpcf7c-conf,
	textarea.wpcf7c-conf {
		background-color: #fff;
		color: #333;
		width: 95%;
		border: none;
		font-size: 100%;
		padding: 0.5em;
		border-radius: 4px;
		box-shadow: none;
	}
	
	div.submit {
		margin: 0 auto 30px;
		width: 360px;
	}
	
	.wpcf7 input[type="submit"].wpcf7-submit {
		margin: 0 auto;
		font-size: 1.8rem;
		line-height: 50px;
        text-align: center;
		width: 240px;
		background: var(--primary-color);
		color: #ffffff;
		border-radius: 4px;
		cursor: pointer;
		border: none;
        display: block;
	}
	
	/*
	.wpcf7 input[type="submit"].wpcf7-submit:hover {
		background: #a52424;
	}
	*/
	
	span.required {
		padding: 2px 5px;
		font-size: 1.15rem;
		text-align: center;
		background: #e83820;
		color: #ffffff;
		border-radius: 3px;
	}

    div.contact_recaptcha {
		margin: 0 auto;
		width: 100%;
	}

	div.page_content div.contact_recaptcha p {
		margin: 0 auto;
		font-size: 1.2rem;
		text-align: center;
	}

    /*個人情報保護方針*/

    div.privacy_contact {
        margin: 0 auto 80px;
        padding: 0 0 24px;
        width: 480px;
        border: 1px solid var(--primary-color);
    }

    div.page_content div.privacy_contact h3 {
        margin: 0 auto 15px;
        padding: 15px 0;
        width: 100%;
        background: var(--primary-color);
        color: #ffffff;
        font-size: 1.8rem;
        line-height: 3.0rem;
        font-weight: 500;
        text-align: center;
        border: none;
        border-radius: inherit;
    }

    div.page_content div.privacy_contact p {
        margin: 0 auto;
        text-align: center;
    }

    div.privacy_name {
        margin: 0 auto 40px;
        width: 100%;
    }

    div.page_content div.privacy_name p {
        margin: 0 auto;
        text-align: right;
    }

    div.privacy_date {
        margin: 0 auto 80px;
        width: 100%;
    }

    div.page_content div.privacy_date p {
        margin: 0 auto;
        text-align: right;
    }

    /*メニュー*/

	div#upper_menu_area {
		display: none;
	}

}