@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* Reset CSS
 * --------------------------------------- */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small,
strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label,
legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, figcaption, figure, footer, header, hgroup, menu, nav,
section, summary, time, mark, audio, video {
	margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    font-weight: normal;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
    line-height: 1
}
article, aside, details, figcaption, figure, footer, header, hgroup,
menu, nav, section {
    display: block;
}
ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: none
}
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}
input, select {
    vertical-align: middle;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

/* ------------------------------
  Base
------------------------------ */
:root {
  --beige: #f5eee8;
  --green: #009100;
}
html {
	font-size: 62.5%; /* 10px */
}
body {
	min-width: 320px;
	font-family:'Roboto',"M PLUS 1p",'Noto Sans JP', "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
	color: #333;
	font-size: 1.6rem;
	line-height: 1.8;
}
img {
    width: 100%;
    display: block;
}

/* ------------------------------
  Layout
------------------------------ */
/* ===== Header ===== */
.header {
    background: #000;
    padding: 40px 0;
    color: #fff;
    text-align: center;
}
.header-logo {
	display: flex;
	justify-content: center;
	gap: 10px;
}
.header-logo .header-logo_img {
    display: block;
	width: 100px;
    height: auto;

}
.header-logo span {
	display: block;
	font-family: "Shippori Mincho", serif;
	font-size: 1.4rem;
}
.header-title {
	margin: 0;
	font-family: "Shippori Mincho", serif;
    font-size: 2.8rem;
	font-weight: 600;
}



/* ========== はじめに ========== */
.intro {
	position: relative;
	margin: 0 auto;
	padding: 80px 0;
	font-family: "Shippori Mincho", serif;
    text-align: center;
	background-image: url("../../../images/recommend_company/bg.jpg");
	background-repeat: repeat;
}
.intro-title {
	margin-bottom: 24px;
    font-size: 2.8rem;
}
.intro-text {
	margin: auto;
	padding: 20px;
	width: 100%;
    max-width: 900px;
}
.intro-text p {
    margin-bottom: 24px;
	font-size: 1.8rem;
    text-align: left;

}
.intro-text p:last-child {
	margin-bottom: 0;
}
.intro-img {
	position: absolute;
}
.intro-img_1 {
	top: 10%;
	left: 20%
}
.intro-img_2 {
	top: 30%;
	left: 10%
}
.intro-img_3 {
	bottom: 10%;
	right: 20%
}
.intro-img_4 {
	bottom: 30%;
	right: 10%
}
@media (max-width: 750px) {
    .intro-img_1 {
		top: 1%;
		left: 3%
	}
	.intro-img_2 {
		top: 12%;
		left: 10%
	}
	.intro-img_3 {
		bottom: 1%;
		right: 20%
	}
	.intro-img_4 {
		bottom: 8%;
		right: 5%
	}
}

/* ========== 画像バナー4つ ========== */
.banner-section {
	margin: 80px auto;
	width: 100%;
    max-width: 1200px;
}
.banner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.banner-item img {
    width: 100%;
    border-radius: 6px;
}

/* ======= スマホ対応 ======= */
@media (max-width: 900px) {
    .banner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 750px) {
    .banner-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== フッター ========== */
.footer {
	display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
	padding: 40px 20px;
    background-color: #000;
    color: #fff;
}
.footer-left {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.footer-logo {
	display: flex;
	justify-content: center;
	gap: 10px;
}
.footer-logo .footer-logo_img {
    display: block;
	width: 80px;
    height: auto;

}
.footer-logo span {
	display: block;
	font-family: "Shippori Mincho", serif;
	font-size: 1.4rem;
}
.footer-title {
	margin: 0;
	font-family: "Shippori Mincho", serif;
    font-size: 2.2rem;
	font-weight: 600;
}
.footer-right {
    display: flex;
    gap: 20px;
}
.footer-link {
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
}

.footer-link:hover {
    background: #fff;
    color: #000;
}

/* スマホ用フッター */
@media (max-width: 750px) {
    .footer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-right {
        flex-direction: column;
        width: 100%;
    }

    .footer-link {
        width: 100%;
        text-align: center;
    }
}
