html, body, div, span, a, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, address, em, img, dl, dt, dd, ol, ul, li, form, label, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figcaption, figure, footer, header, menu, nav, section, time, video {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    box-sizing: border-box;
}

:root {
    --text: #40290E;
    --brown: #573916;
    --brown2: #452C0F;
    --brown3: #C9B796;
    --brown4: #865B3D;
    --brown5: #F8E3BE;
    --red: #DB4D51;
    --red2: #ED4C50;
    --green: #137409;
    --green2: #679F20;
    --green3: #1A810C;
    --green4: #1F8915;
    --green5: #82C628;
    --orange: #E07000;
    --orange2: #EF7B48;
    --orange3: #F27E0B;
    --beige: #E3DAC6;
    --gray: #C4C4C4;
    --yellow: #EBD527;
}

.color_green {
    color: var(--green);
}

.color_orange {
    color: var(--orange);
}

body {
    background-color: #F5F1E9;
    color: var(--text);
    font-size: 15px;
    font-family: "Zen Maru Gothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    overflow-x: hidden;
}
@media screen and (max-width: 767.98px) {
    body {
        font-size: 16px;
    }
    h2 {
        font-size: ;
    }
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0px auto;
    -webkit-backface-visibility: hidden; 
    -ms-transform: translateZ(0); /* IE 9 */
    -webkit-transform: translateZ(0); /* Chrome, Safari, Opera */
    transform: translateZ(0);
}

p {
    line-height: 1.75;
}

.bw span,
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span,
figcaption span {
    display: inline-block;
}

.fwb {
    font-weight: bold;
}

.fs09em {
    font-size: 0.9em;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.slidein {
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s, opacity 0.5s, visibility 0.5s;
}
.slidein.js_active {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}

/* レイアウト */

.blk_center {
    margin-left: auto;
    margin-right: auto;
}

.mw80p {
    max-width: 80%;
}

.mw90p {
    max-width: 90%;
}

.mw600 {
    max-width: 600px;
}

.mw700 {
    max-width: 700px;
}

.mw800 {
    max-width: 800px;
}

.mt1em {
    margin-top: 1em;
}

.mt30 {
    margin-top: 30px;
}

.mt60 {
    margin-top: 60px;
}

.mt90 {
    margin-top: 90px;
}

.section {
    padding: 60px 0px;
}

.section:first-of-type {
    margin-top: 30px;
}

div[class="col"],
div[class^="col-"] {
    margin-top: 60px;
}

.row.no_mt {
    margin-top: -60px;
}

.container {
    width: 100%;
}
@media print, (min-width: 992px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }
}
@media (min-width: 576px) {
    .container {
        max-width: 100%;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 100%;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 100%;
    }
}
@media (min-width: 1100px) {
    .container {
        max-width: 1100px;
    }
}
@media (min-width: 1300px) {
    .container {
        max-width: 1200px;
    }
}

/* 共通パーツ */
.btn_link {
    display: inline-block;
    position: relative;
    padding: 1.5em 8em 1.5em 4em;
    border-radius: 3em;
    background-color: var(--green);
    color: #fff;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    transition: 0.5s;
}
.btn_link::after {
    position: absolute;
    top: 50%;
    right: 1.5em;
    width: 0.5em;
    height: 0.5em;
    transform: translateY(-50%) rotate(45deg);
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    content: "";
}
.btn_link:hover {
    background-color: var(--green4);
    color: #fff;
}
@media screen and (max-width: 767.98px) {
    .btn_link {
        padding: 1.5em 3em;
    }
}

@media screen and (max-width: 991.98px) {
    .header_cta,
    .header_menu {
        display: none;
    }
}
@media screen and (min-width: 992px) {
    .header {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0px;
        left: 50%;
        z-index: 9999;
        transform: translateX(-50%);
        padding: 30px 10px;
        width: 100%;
    }
    body {
        margin-top: 140px;
    }
}
@media screen and (min-width: 1400px) {
    .header {
        width: 1400px;
    }
}

.header_title img {
    max-height: 80px;
}

.header_menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.header_menu a {
    position: relative;
    padding: 0px 1em 1em;
    color: var(--text);
    font-weight: bold;
    text-decoration: none;
}
.header_menu a:hover::after {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2em);
    height: 2px;
    background-color: var(--yellow);
    content: "";
}

.header_cta a {
    position: relative;
    padding: 1em 2.5em 1em 3em;
    border-radius: 3em;
    background-color: var(--green);
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    transition: 0.5s;
}
.header_cta a:hover {
    background-color: var(--green3);
}
.header_cta a::before {
    position: absolute;
    top: 50%;
    left: 1.5em;
    transform: translateY(-50%);
    width: 1em;
    height: 1em;
    background-image: url(/images/common/icon_mail.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
}
@media screen and (max-width: 1100px) {
    .header_menu li:nth-of-type(1) {
        display: none;
    }
}

@media screen and (max-width: 991.98px) {
    body {
        margin-top: 10px;
    }
}
@media screen and (min-width: 992px) {
    .hamburger {
        display: none;
    }
}

.hamburger_btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    outline: none;
    appearance: none;
    background-color: var(--green);
}
.hamburger_btn::before {
    position: absolute;
    bottom: 1em;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.6em;
    font-weight: bold;
    content: "MENU";
}
.hamburger_btn.js_open::before {
    content: "閉じる";
}
.hamburger_btn span {
    display: block;
    position: absolute;
    top: 45%;
    left: 50%;
    width: 28px;
    height: 2px;
    transform: translateX(-50%) translateY(-50%);
    background-color: #fff;
    transition: 0.2s;
}
.hamburger_btn span:before,
.hamburger_btn span:after {
    display: block;
    position: absolute;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: 0.3s;
    content: "";
}
.hamburger_btn span:before {
    top: -400%;
}
.hamburger_btn span:after {
    top: 400%;
}
.hamburger_btn.js_open:after {
    content: "";
}
.hamburger_btn.js_open > span {
    background: transparent;
}
.hamburger_btn.js_open > span:before,
.hamburger_btn.js_open > span:after {
    top: 0px;
}
.hamburger_btn.js_open > span:before {
    transform: rotate(-45deg);
}
.hamburger_btn.js_open > span:after {
    transform: rotate(-135deg);
}

.hamburger_content {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 9998;
    overflow-y: auto;
    background-color: #F5F1E9;
}

.hamburger_content_menu {
    display: table;
    margin: 0px auto;
}

.hamburger_content_menu ul {
    padding: 100px 1em 1em;
    list-style: none;
}

.hamburger_content_menu li {
    position: relative;
    padding: 0px 0.75em 0.75em;
}
.hamburger_content_menu li::after {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 1em;
    background-image: url(/images/common/hamburger_underline.png);
    background-repeat: repeat-x;
    background-position: left bottom;
    background-size: contain;
    content: "";
}

.hamburger_content_menu li + li {
    margin-top: 1em;
}

.hamburger_content_menu a {
    display: block;
    position: relative;
    padding: 0px 1em 0px 0px;
    color: var(--brown);
    font-weight: bold;
    text-decoration: none;
}
.hamburger_content_menu a::after {
    position: absolute;
    top: 50%;
    right: 0px;
    width: 0.5em;
    height: 0.5em;
    transform: translateY(-50%) rotate(45deg);
    border-right: 2px solid var(--green);
    border-top: 2px solid var(--green);
    content: "";
}

.hamburger_content_tel a,
.hamburger_content_cta a {
    display: table;
    position: relative;
    padding: 1em 2.5em 1em 3em;
    margin: 2em auto 0px;
    border-radius: 3em;
    background-color: var(--green);
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    transition: 0.5s;
}
.hamburger_content_tel a {
    background-color: var(--green2);
}
.hamburger_content_tel a:hover {
    background-color: var(--green5);
}
.hamburger_content_cta a {
    background-color: var(--orange);
}
.hamburger_content_cta a:hover {
    background-color: var(--orange3);
}
.hamburger_content_tel a::before,
.hamburger_content_cta a::before {
    position: absolute;
    top: 50%;
    left: 1.5em;
    transform: translateY(-50%);
    width: 1em;
    height: 1em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
}
.hamburger_content_tel a::before {
    background-image: url(/images/common/icon_tel.png);
}
.hamburger_content_cta a::before {
    background-image: url(/images/common/icon_mail.png);
}

@media screen and (max-width: 767.98px) {
    .hamburger_content_menu ul {
        font-size: 5.5vw;
    }
    .hamburger_content_tel a,
    .hamburger_content_cta a {
        font-size: 4vw;
    }
}
@media screen and (min-width: 768px) {
    .hamburger_content_menu ul {
        font-size: 3em;
    }
    .hamburger_content_tel a,
    .hamburger_content_cta a {
        font-size: 3em;
    }
}

/* TOP */
.top_main {
    position: relative;
    max-width: 100%;
    width: 1500px;
    margin: 0px auto;
}

.top_main_icon_01,
.top_main_icon_02 {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    top: 0px;
    bottom: 0px;
    z-index: -1;
}
.top_main_icon_01 {
    left: 0px;
}
.top_main_icon_02 {
    right: 0px;
}

.top_main_catch h1 {
    font-weight: bold;
    text-align: center;
}
.top_main_catch h1 span:nth-of-type(1) {
    color: var(--brown);
}
.top_main_catch h1 span:nth-of-type(2) {
    color: var(--green);
}
.top_main_catch h1 span:nth-of-type(3) {
    color: var(--red);
}

.top_main_message {
    font-weight: bold;
    text-align: center;
}

.top_main_link {
    margin-top: 60px;
    text-align: center;
}

.top_main_link .btn_link {
    background-color: var(--red);
}
.top_main_link .btn_link:hover {
    background-color: var(--red2);
}

.top_main_icon_01 img:nth-of-type(odd),
.top_main_icon_02 img:nth-of-type(odd) {
    animation: anime_top_main_icon_odd 1.5s linear 0s infinite normal both;
}

@keyframes anime_top_main_icon_odd {
    0%, 100%{
        transform: rotate(20deg);
    }
    50%{
        transform: rotate(-20deg);
    }
}

.top_main_icon_01 img:nth-of-type(even),
.top_main_icon_02 img:nth-of-type(even) {
    animation: anime_top_main_icon_even 1.5s linear 0s infinite normal both;
}

@keyframes anime_top_main_icon_even {
    0%, 100%{
        transform: rotate(15deg);
    }
    50%{
        transform: rotate(-15deg);
    }
}

@media screen and (max-width: 1100px) {
    .top_main_icon_01 img:nth-of-type(4),
    .top_main_icon_01 img:nth-of-type(5),
    .top_main_icon_02 img:nth-of-type(4),
    .top_main_icon_02 img:nth-of-type(5) {
        display: none;
    }
}
@media screen and (max-width: 991.98px) {
    .top_main_catch_image img {
        max-width: 60%;
    }
}
@media screen and (max-width: 767.98px) {
    .top_main {
        padding: 0px 10px;
    }
    .top_main_catch h1 {
        font-size: 5vw;
    }
    .top_main_catch h1 span {
        font-size: 8vw;
    }
    .top_main_icon_01 img,
    .top_main_icon_02 img {
        margin: 0px;
        max-width: 40px;
    }
    .top_main_icon_01 img:nth-of-type(even) {
        margin: 0px 0px 0px 10px;
    }
    .top_main_icon_02 img:nth-of-type(odd) {
        margin: 0px 10px 0px 0px;
    }
    .top_main_message {
        margin: 0px auto;
        width: 70%;
    }
}
@media screen and (min-width: 768px) {
    .top_main {
        padding: 0px 80px;
    }
    .top_main_catch h1 {
        font-size: 2em;
    }
    .top_main_catch h1 span {
        font-size: 2.5em;
    }
    .top_main_message {
        font-size: 1.2em;
    }
    .top_main_icon_01 img,
    .top_main_icon_02 img {
        margin: 0px;
        max-width: 60px;
    }
    .top_main_icon_01 img:nth-of-type(even) {
        margin: 0px 0px 0px 10px;
    }
    .top_main_icon_02 img:nth-of-type(odd) {
        margin: 0px 10px 0px 0px;
    }
}
@media screen and (min-width: 992px) {
    .top_main_catch {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .top_main_catch {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .top_main_catch h1 {
        margin: 0px 60px 0px 0px;
    }
    .top_main_catch_image {
        width: 40%;
    }
    .top_main_icon_01 img,
    .top_main_icon_02 img {
        margin: 0px;
        max-width: 80px;
    }
}
@media screen and (min-width: 1100px) {
    .top_main_icon_01 img:nth-of-type(even) {
        margin: 0px 0px 0px 80px;
    }
    .top_main_icon_02 img:nth-of-type(odd) {
        margin: 0px 80px 0px 0px;
    }
}

.top_image {
    position: relative;
    z-index: -1;
    margin-top: -60px;
}

.top_image_keitora {
    margin-top: -30px;
    width: 50%;
}

.top_image_nouka {
    margin-top: 90px;
}

@media screen and (max-width: 991.98px) {
    .top_image_keitora,
    .top_image_nouka {
        display: none;
    }
}
@media screen and (min-width: 768px) {
    .top_image .container {
        margin-top: -120px;
    }
}

.top_provide,
.top_receive {
    position: relative;
    width: 1600px;
    max-width: 100%;
    margin: 90px auto 0px;
}

.top_provide_text_title,
.top_receive_text_title {
    padding: 0.5em 60px;
    background-color: #fff;
}

.top_provide_text_title h2 {
    color: var(--orange);
}

.top_receive_text_title {
    color: var(--green);
}

.top_provide_text_message,
.top_receive_text_message {
    padding: 2em 60px;
    margin-top: 30px;
    background-color: #fff;
}

.top_provide_text_link,
.top_receive_text_link {
    margin-top: 30px;
    text-align: center;
}

.top_provide_text_link .btn_link {
    background-color: var(--orange);
}
.top_provide_text_link .btn_link:hover {
    background-color: var(--orange2);
}

@media screen and (max-width: 991.98px) {
    .top_provide_text h2,
    .top_receive_text h2 {
        font-size: 6vw;
    }
    .top_provide_text_message,
    .top_receive_text_message {
        padding: 2em 1em;
    }
}
@media screen and (min-width: 992px) {
    .top_provide_image,
    .top_provide_text,
    .top_receive_image,
    .top_receive_text {
        width: 55%;
    }
    .top_receive_image {
        margin: 0px 0px 0px auto;
    }
    .top_provide_text,
    .top_receive_text {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    .top_provide_text {
        right: 0px;
    }
    .top_receive_text {
        left: 0px;
    }
    .top_provide_text_title h2,
    .top_receive_text_title h2 {
        font-size: 3.25em;
    }
    .top_provide_text_message p,
    .top_receive_text_message p {
        font-size: 1.25em;
    }
    .top_provide_text_title h2,
    .top_receive_text_title h2,
    .top_provide_text_message p,
    .top_receive_text_message p,
    .top_provide_text_link,
    .top_receive_text_link {
        max-width: 650px;
    }
    .top_receive_text_title h2,
    .top_receive_text_message p {
        margin: 0px 0px 0px auto;
    }
    .top_receive_text_title h2 {
        text-align: center;
    }
    .top_receive_text_link {
        margin: 30px 0px 0px auto;
    }
}

/* 個別ページ */
.box_beige,
.box_white {
    position: relative;
    padding: 4em;
    border-radius: 2em;
}
.box_beige::before,
.box_white::before {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: -2;
    content: "";
}
.box_beige::before{
    background-color: var(--beige);
}
.box_white::before {
    background-color: #fff;
}
@media screen and (max-width: 767.98px) {
    .box_beige,
    .box_white {
        padding: 1em;
    }
}

.page_title {
    position: relative;
}

.page_title h1 {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-25%);
    width: 100%;
    padding: 0.5em;
    color: #fff;
    font-size: 2em;
    text-align: center;
}

.title_bar {
    display: table;
    padding: 0px 0.5em 0.25em;
    margin: 0px auto;
    position: relative;
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
}
.title_bar::before,
.title_bar::after {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: -1;
    height: 1em;
    background-image: url(/images/common/title_underline.png);
    background-repeat: repeat-x;
    background-size: 90% 1em;
    content: "";
}
.title_bar::before {
    background-position: center left;
}
.title_bar::after {
    background-position: center right;
}

@media screen and (max-width: 767.98px) {
    .title_bar {
        font-size: 2em;
    }
}

.title_bg_green,
.title_bg_lightgreen,
.title_bg_orange {
    display: table;
    position: relative;
    padding: 0.5em;
    margin: 0px auto;
    width: 640px;
    max-width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
    font-size: 1.6em;
    text-align: center;
}
.title_bg_green {
    background-image: url(/images/common/title_bg_green.png);
}
.title_bg_lightgreen {
    background-image: url(/images/common/title_bg_lightgreen.png);
}
.title_bg_orange {
    background-image: url(/images/common/title_bg_orange.png);
}

@media screen and (max-width: 767.98px) {
    .title_bg_green,
    .title_bg_lightgreen,
    .title_bg_orange {
        font-size: 1.2em;
    }
}

.title_subset {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.title_subset span {
    padding: 0.75em 1.5em;
    margin: 0px 2em;
    border-radius: 2em;
    color: #fff;
    font-size: 0.8em;
    font-weight: bold;
    line-height: 1;
}
.title_subset.color_green span {
    background-color: var(--green);
}
.title_subset.color_orange span {
    background-color: var(--orange);
}

.title_subset h4 {
    font-size: 1.6em;
    font-weight: 700;
}

.title_tomato {
    position: relative;
    padding: 0.5em 2em;
    font-size: 1.6em;
    text-align: center;
}
.title_tomato::before {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    width: 1.5em;
    height: 1.5em;
    background-image: url(/images/common/tomato.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.title_tomato::after {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: -1;
    height: 0.5em;
    background-image: url(/images/common/title_underline_dot.png);
    background-repeat: repeat-x;
    background-position: bottom left;
    background-size: contain;
    content: "";
}

.arrow_down {
    margin: 30px auto 0px;
}

.arrow_down img {
    max-width: 60px;
}

.item_name {
    position: relative;
    padding: 0px 0.5em 0.5em;
    position: relative;
    font-size: 2.4em;
    font-weight: 700;
    text-align: center;
}
.item_name::after {
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 2em;
    height: 2px;
    transform: translateX(-50%);
    background-color: currentColor;
    content: "";
}

.item_name_green {
    color: var(--green);
}

.item_name_orange {
    color: var(--orange);
}

@media screen and (max-width: 767.98px) {
    .item_name {
        font-size: 1.8em;
    }
}

.circle_num {
    margin-top: 30px;
}

.circle_num ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -60px -10px 0px;
    list-style: none;
}

.circle_num li {
    position: relative;
    border-radius: 50%;
    margin: 60px 10px 0px;
    min-height: 100%;
}

.circle_num_image {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 5em;
}

.circle_num_content {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    padding: 0px 6%;
}

.circle_num_content h2 {
    position: relative;
    padding: 0px 0px 20px;
    color: var(--green2);
    font-size: 1.8em;
    text-align: center;
}
.circle_num_content h2::after {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5em;
    height: 3px;
    background-color: var(--green2);
    content: "";
}

.circle_num_content_text {
    margin-top: 20px;
    font-size: 1.1em;
}

.circle_num_orange .circle_num_content h2 {
    color: var(--orange);
}
.circle_num_orange .circle_num_content h2::after {
    background-color: var(--orange);
}

@media screen and (max-width: 767.98px) {
    .circle_num li {
        width: calc(100% - 20px);
    }
}
@media screen and (min-width: 768px) {
    .circle_num li {
        width: calc(50% - 20px);
    }
}
@media screen and (min-width: 992px) {
    .circle_num li {
        width: calc(33.3% - 20px);
    }
}

.circle_about {
    position: relative;
    margin-top: 30px;
}

.circle_about ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0px -10px;
    list-style: none;
}

.circle_about li {
    position: relative;
    border-radius: 50%;
    margin: 0px 10px;
    min-height: 100%;
}

.circle_about_content {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    padding: 0px 6%;
}

.circle_about_content h2 {
    position: relative;
    color: var(--green2);
    font-size: 1.8em;
    text-align: center;
}

.circle_about_content_text {
    margin-top: 20px;
    font-size: 1.1em;
}

@media screen and (max-width: 991.98px) {
    .circle_about_logo {
        display: none;
    }
    .circle_about li + li {
        margin-top: 20px;
    }
}
@media screen and (max-width: 767.98px) {
    .circle_about li {
        width: calc(100% - 20px);
    }
    .circle_about_smile {
        position: absolute;
        top: -20px;
        left: 10px;
        width: 30%;
    }
    .circle_about_family {
        position: absolute;
        bottom: -30px;
        left: 10px;
        width: 30%;
    }
    .circle_about_nouka {
        position: absolute;
        top: -20px;
        right: 10px;
        width: 30%;
    }
    .circle_about_yasai {
        position: absolute;
        bottom: -30px;
        right: 10px;
        width: 30%;
    }
}
@media screen and (min-width: 768px) {
    .circle_about li {
        width: calc(40% - 20px);
    }
    .circle_about li:nth-of-type(2) {
        margin-left: calc(20% - 20px);
    }
    .circle_about li:nth-of-type(3) {
        margin-top: 80px;
    }
    .circle_about_logo {
        position: absolute;
        top: 20%;
        left: 50%;
        transform: translateX(-50%);
        width: 30%;
    }
    .circle_about_smile {
        position: absolute;
        top: 50%;
        left: 5%;
        transform: translateY(-50%);
        width: 15%;
    }
    .circle_about_family {
        position: absolute;
        bottom: 5%;
        left: 15%;
        transform: translateX(-50%);
        width: 20%;
    }
    .circle_about_nouka {
        position: absolute;
        top: 50%;
        right: 5%;
        transform: translateY(-50%);
        width: 18%;
    }
    .circle_about_yasai {
        position: absolute;
        bottom: 5%;
        right: 8%;
        width: 25%;
    }
}
@media screen and (min-width: 992px) {
    .circle_about li {
        width: calc(33.3% - 20px);
    }
    .circle_about li:nth-of-type(2) {
        margin-left: calc(33.3% - 20px);
    }
    .circle_about li:nth-of-type(3) {
        margin-top: 80px;
    }
}

.list_box {
    margin-top: 30px;
}

.list_box ul {
    display: flex;
    flex-wrap: wrap;
    margin: -10px -5px 0px;
    list-style: none;
}

.list_box li {
    padding: 0.5em 1.5em;
    margin: 10px 5px 0px;
    background-color: var(--brown4);
    color: #fff;
    font-weight: bold;
}

.list_check ul {
    list-style: none;
}

.list_check li {
    position: relative;
    padding: 0px 0px 0px 2em;
}
.list_check li::before {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    width: 1em;
    height: 1em;
    background-image: url(/images/common/icon_check.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}

.list_case ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -20px -10px 0px;
    list-style: none;
}

.list_case li {
    margin: 20px 10px 0px;
    min-height: 100%;
}

.list_case figcaption {
    margin-top: 0.5em;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
}

@media screen and (max-width: 767.98px) {
    .list_case li {
        width: calc(50% - 20px);
    }
}
@media screen and (min-width: 768px) {
    .list_case li {
        width: calc(33.3% - 20px);
    }

}
@media screen and (min-width: 992px) {
    .list_case li {
        width: calc(25% - 20px);
    }
}

.list_between {
    list-style: none;
}

.list_between li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2em;
    font-weight: 700;
}

.list_between li + li {
    margin-top: 1em;
}

.list_between p {
    margin-top: 1em;
    text-align: right;
    font-size: 1.2em;
    font-weight: 700;
}

.list_table,
.list_table > dt,
.list_table > dd {
    box-sizing: border-box;
}

.list_table > dt,
.list_table > dd {
    padding: 1em;
    margin: 0px;
}

.list_table > dt {
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .list_table > dd {
        border-bottom: 2px dashed var(--gray);
    }
    .list_table > dt,
    .list_table > dd {
        text-align: center;
    }
    .list_table > dd > ul {
        text-align: left;
    }
}
@media print, (min-width: 768px) {
    .list_table {
        display: flex;
        flex-wrap: wrap;
    }
    .list_table > dt,
    .list_table > dd {
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-bottom: 2px dashed var(--gray);
    }
    .list_table > dt {
        width: 20%;
    }
    .list_table > dd {
        width: 80%;
    }
}

.list_sdgs ul {
    display: flex;
    flex-wrap: wrap;
    margin: -10px -5px 0px;
    list-style: none;
}

.list_sdgs li {
    margin: 10px 5px 0px;
    min-height: 100%;
}

@media screen and (max-width: 767.98px) {
    .list_sdgs li {
        width: calc(50% - 10px);
    }    
}
@media screen and (min-width: 768px) {
    .list_sdgs li {
        width: calc(33.3% - 10px);
    }    
}
@media screen and (min-width: 992px) {
    .list_sdgs li {
        width: calc(16.6% - 10px);
    }    
}

.user_voice {
    max-width: 900px;
    margin: 60px auto 0px;
}

.user_voice_image img {
    width: 70%;
    max-width: 100px;
}

.user_voice_image figcaption {
    display: table;
    padding: 0.2em 1em;
    margin: 1em auto 0px;
    border-radius: 2em;
    background-color: var(--green2);
    color: #fff;
    font-size: 0.9em;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
}

.user_voice_content {
    position: relative;
    padding: 2em 4em;
    background-image: url(/images/common/balloon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    aspect-ratio: 4 / 1;
}
.user_voice_content::before {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    content: "";
}

.user_voice_orange .user_voice_image figcaption {
    background-color: var(--orange);
}

@media screen and (max-width: 767.98px) {
    .user_voice_content {
        margin-top: 40px;
    }
    .user_voice_content::before {
        top: -14px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
    }
}
@media screen and (min-width: 768px) {
    .user_voice {
        display: flex;
        align-items: center;
    }
    .user_voice_image {
        width: 14%;
    }
    .user_voice_content {
        margin: 0px 0px 0px auto;
        width: calc(100% - 14% - 60px);
    }
    .user_voice_content::before {
        top: 50%;
        left: -14px;
        transform: translateY(-50%) rotate(-45deg);
    }
}

@media screen and (max-width: 767.98px) {
    .yasai_smile img {
        max-width: 150px;
    }
}

.receive_message {
    max-width: 600px;
    padding: 2em 2em;
    margin-left: auto;
    margin-right: auto;
    background-image: url(/images/common/balloon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media screen and (max-width: 767.98px) {
    .receive_message_image img {
        max-width: 150px;
    }
    .receive_message_text {
        margin-top: 1em;
    }
}
@media screen and (min-width: 768px) {
    .receive_message {
        display: flex;
        align-items: center;
    }
    .receive_message_image {
        width: 30%;
    }
    .receive_message_text {
        margin: 0px 0px 0px 2em;
    }
}

@media screen and (max-width: 767.98px) {
    .provide_main_pc {
        display: none;
    }
    .provide_main_mb {
        display: block;
    }
}
@media screen and (min-width: 768px) {
    .provide_main_pc {
        display: block;
    }
    .provide_main_mb {
        display: none;
    }
}

.provide_flow ul {
    list-style: none;
}

.provide_flow_image {
    position: relative;
    margin-top: 20px;
}

.provide_flow_text {
    margin-top: 20px;
}

@media screen and (max-width: 991.98px) {
    .provide_flow li {
        position: relative;
    }
    .provide_flow li + li {
        margin-top: 60px;
    }
    .provide_flow li:nth-of-type(1)::after,
    .provide_flow li:nth-of-type(2)::after {
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%) translateY(50%) rotate(90deg);
        width: 50px;
        height: 50px;
        background-image: url(/images/common/arrow_right_orange.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        content: "";
    }
    .provide_flow_text {
        text-align: center;
    }
}
@media screen and (min-width: 992px) {
    .provide_flow ul {
        display: flex;
        margin: 0px -30px;
    }
    
    .provide_flow li {
        position: relative;
        margin: 0px 30px;
        width: calc(33.3% - 60px);
        min-height: 100%;
    }
    .provide_flow li:nth-of-type(1) .provide_flow_image::after,
    .provide_flow li:nth-of-type(2) .provide_flow_image::after {
        position: absolute;
        top: 50%;
        right: -30px;
        transform: translateX(50%) translateY(-50%);
        width: 50px;
        height: 50px;
        background-image: url(/images/common/arrow_right_orange.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        content: "";
    }
}

.environment_action figcaption {
    margin-top: 20px;
    font-size: 1.6em;
    font-weight: bold;
    text-align: center;
}

/* フッター */
.footer {
    margin: 90px 0px;
}

.footer_wrapper {
    padding: 8em 1em 4em;
    border: none;
    border-radius: 30px;
    background-image: url(/images/common/contact_head.png);
    background-repeat: no-repeat;
    background-position: top -1vw center;
    background-size: contain;
    background-color: var(--brown2);
}

.footer_title {
    color: #fff;
    font-size: 1.25em;
    font-weight: bold;
    text-align: center;
}

.footer_cta {
    margin-top: 30px;
}

.footer_cta a {
    display: inline-block;
    position: relative;
    padding: 0.75em 2.5em 0.75em 3em;
    border-radius: 3em;
    background-color: var(--green);
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
}
.footer_cta a::before {
    position: absolute;
    top: 50%;
    left: 1.5em;
    transform: translateY(-50%);
    width: 1em;
    height: 1em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
}
.footer_cta_tel a {
    background-color: var(--green2);
}
.footer_cta_tel a:hover {
    background-color: var(--green5);
}
.footer_cta_tel a::before {
    background-image: url(/images/common/icon_tel.png);
}
.footer_cta_contact a {
    background-color: var(--orange);
}
.footer_cta_contact a:hover {
    background-color: var(--orange3);
}
.footer_cta_contact a::before {
    background-image: url(/images/common/icon_mail.png);
}

.footer_link {
    margin: 60px auto 0px;
}

.footer_link_logo img {
    max-width: 80px;
}

.footer_link li + li {
    margin-top: 1em;
}

.footer_link a {
    color: var(--brown3);
    text-decoration: none;
    transition: 0.5s;
}
.footer_link a:hover {
    color: var(--brown5);
    text-decoration: underline;
}

@media screen and (max-width: 767.98px) {
    .footer_cta {
        text-align: center;
    }
    .footer_cta_contact a {
        margin-top: 30px;
    }
    .footer_link {
        display: table;
    }
    .footer_link_list {
        margin-top: 1em;
    }
    .footer_link_list ul + ul {
        margin-top: 1em;
    }
}
@media screen and (min-width: 768px) {
    .footer_cta {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    .footer_cta_tel,
    .footer_cta_contact {
        margin: 0px 20px;
    }
    .footer_link {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 600px;
    }
    .footer_link_list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: calc(100% - 160px);
    }
}

/* メールフォームプロ */
/****************************************
11. メールフォームプロ用スタイル
****************************************/
form#mailformpro .mailform {
    margin: 0px;
}

form#mailformpro dl {
    box-sizing: border-box;
}

form#mailformpro dl dt {
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
    border: none;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
}

form#mailformpro dl dd {
    box-sizing: border-box;
    border: none;
}

form#mailformpro dl dt:nth-of-type(n+2),
form#mailformpro dl dd:nth-of-type(n+2) {
    border: none;
}

.mfp_colored {
    background: none;
}

.mfp_element_text,
.mfp_element_number,
.mfp_element_select-one,
.mfp_element_email,
.mfp_element_tel,
.mfp_element_textarea {
    padding: 1em;
    margin: 0px;
    width: 100% !important;
    box-sizing: border-box;
    border: 1px solid transparent;
    background-color: #fff;
    box-shadow: none;
    outline: none;
}

.mfp_element_submit,
.mfp_element_reset,
.mfp_element_button {
    padding: 0.5em 3em;
    box-sizing: border-box;
    border-radius: 3em;
    background: none;
    background-color: var(--green);
    box-shadow: none;
    color: #fff;
    font-size: 1.6em;
    text-shadow: none;
}

.mfp_element_submit:hover,
.mfp_element_reset:hover,
.mfp_element_button:hover {
    background: none;
    background-color: var(--green3);
    box-shadow: none;
}

div.mfp_err {
    padding: 0.5em 0px 0.5em 1em;
    background: none;
}

.problem {
    border: 1px solid #ffd5dc;
    background-color: #ffd5dc;
}

.must,
.no_must {
    display: block;
    padding: 0px 1em;
    border-radius: 4px;
    background: none;
    box-shadow: none;
    text-shadow: none;
    color: #fff;
    font-size: 10px;
    line-height: 1.5;
}

.must {
    border: 1px solid #c60505;
    background-color: #c60505;
}

.no_must {
    border: 1px solid #fc0;
    background-color: #fc0;
}

@media screen and (max-width: 767.98px) {
    form#mailformpro dl dt,
    form#mailformpro dl dd {
        padding: 1em;
        width: 100%;
    }
    .must,
    .no_must {
        margin: 2px 2em 0px 0px;
    }
}

@media print, (min-width: 768px) {
    form#mailformpro dl {
        display: flex;
        flex-wrap: wrap;
    }
    form#mailformpro dl dt {
        float: none;
        padding: 2em 0px;
        width: 280px;
    }
    form#mailformpro dl dd {
        padding: 2em 2em 2em 0px;
        width: calc(100% - 280px);
    }
    .mfp_element_text,
    .mfp_element_number,
    .mfp_element_select-one,
    .mfp_element_email,
    .mfp_element_tel,
    .mfp_element_textarea {
        max-width: 500px;
    }
    .must,
    .no_must {
        margin: 2px 2em 0px;
    }
}
