@charset "UTF-8";
@import "base.css";
@import "fonts.css";
/*==========================================================================*/
/*                                                                          */
/*    base.css  --> スタイルの初期設定を行うため、変更しないで下さい。      */
/*    fonts.css --> フォントの初期設定を行うため、変更しないで下さい。      */
/*                                                                          */
/*==========================================================================*/
/*==========================================================================*/
/*                           Common-Setting                                 */
/*==========================================================================*/
/* 基本タグのフォントサイズを指定（12px -> 120% or 1.2em ） */
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
    font-size: 200%;
    -webkit-text-size-adjust: none;
    font-weight: 400;
}
*, ::before, ::after {
    box-sizing: border-box;
    outline: none;
}
img {
    vertical-align: middle;
    max-width: 100%;
    flex-shrink: 0;
    height: auto;
}
select {
    visibility: visible !important;
}
a {
    transition: all ease 0.3s;
    text-decoration: none;
    color: var(--txt);
}
a[href^="tel:"] {
    word-break: keep-all;
}
/*==========================================================================*/
/*                               Container                                  */
/*==========================================================================*/
html {
    background: #fff
}
body {
    -webkit-text-size-adjust: none;
    min-width: 320px;
    color: var(--txt);
    font-family: var(--f-main)
}
table {
    width: 100%
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
}
p, dd, dt, li, th, td, address {
    line-height: 2em;
    letter-spacing: 0;
}
p {
    margin: 0 0 1.5em;
}
p:last-child {
    margin-bottom: 0
}
.bold {
    font-weight: bold;
}
.left {
    text-align: left
}
.right {
    text-align: right;
}
.auto {
    margin-left: auto;
    margin-right: auto;
}
.red {
    color: var(--red);
}
.txt_line {
    text-decoration: underline;
}
.f_big {
    font-size: 150%;
}
.f_sm {
    font-size: 80%;
}
.m0a {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
:root {
    --txt: #333;
    --mcolor: #7d9b2b;
    --scolor: #999999;
    --container: 1230px;
    --gray: #e9e9e9;
    --blue: #003b7d;
    --red: red;
    --f-main: "Noto Sans JP", sans-serif;
    --f-en: "Roboto", sans-serif;
}
#wrapper {
    min-width: 1260px;
    overflow: hidden;
    margin: 0 auto;
    background: #f0f6e4;
    max-width: 1920px;
}
.inner {
    width: var(--container);
    margin: 0 auto;
    position: relative;
    max-width: 100%;
    padding: 0 15px;
}
/*==========================================================
                       H E A D E R
==========================================================*/
/* HAMBUGER BUTTON */
.hamburger {
    font: inherit;
    display: block;
    overflow: visible;
    margin: 0;
    padding: 10px 8px 5px;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0
}
.hamburger-box {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 23px;
}
.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px
}
.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
    position: absolute;
    width: 35px;
    height: 1px;
    transition: all ease 0.15s;
    background-color: #fff
}
.hamburger-inner::after, .hamburger-inner::before {
    display: block;
    content: ""
}
.hamburger-inner::before {
    top: -10px
}
.hamburger-inner::after {
    bottom: -10px
}
.hamburger--3dxy .hamburger-box {
    perspective: 80px
}
.hamburger--3dxy .hamburger-inner {
    transition: transform .15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0 cubic-bezier(0.645, 0.045, 0.355, 1) .1s
}
.hamburger--3dxy .hamburger-inner::after, .hamburger--3dxy .hamburger-inner::before {
    transition: transform cubic-bezier(0.645, 0.045, 0.355, 1) .1s
}
.hamburger--3dxy.is_active .hamburger-inner {
    transform: rotateX(180deg) rotateY(180deg);
    background-color: transparent !important
}
.hamburger--3dxy.is_active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg)
}
.hamburger--3dxy.is_active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg)
}
header {
    position: relative;
    z-index: 9;
}
@-webkit-keyframes scrolltop {
    0% {
        transform: translateY(-220px);
        opacity: 0;
        transition: ease-in-out;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.h_left, .h_tel, .h_contact_tel {
    display: flex;
}
.h_left {
    padding: 25px 0 0 55px;
    margin-right: -100px;
    max-width: 312px;
}
.h_title {
    background: #607d32;
    width: 270px;
    height: 44px;
    font-size: 14px;
    border-radius: 25px;
    color: #fff;
    position: relative;
    top: 12px;
    left: -25px;
    margin-bottom: -10px;
    letter-spacing: 0.05em;
    font-weight: 500;
}
.h_center {
    align-items: flex-end;
    margin-left: auto;
    margin-right: 25px;
    margin-top: 22px;
    position: relative;
    z-index: 1;
}
#logo, .h_center, .h_contact_tel .time {
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}
.h_box {
    width: 100%;
    position: fixed;
    max-width: 1920px;
}
.h_inner {
    display: flex;
    align-items: center;
    height: 100%;
    width: calc(100% - 18px);
    padding: 0;
    margin-left: auto;
    margin-right: 0px;
    background: #fff;
    margin-top: 37px;
    border-radius: 74px 0 0 74px;
    padding-right: 10px;
    box-shadow: 3px 3px 15px 0px rgba(34, 60, 0, 0.1);
}
.h_contact {
    display: flex;
    align-items: center;
    position: relative;
    margin-top: -42px;
}
.h_contact > p {
    margin-bottom: 0;
}
.h_contact > p > a {
    width: 160px;
    height: 160px;
    color: #FFF;
    border-radius: 50%;
    position: relative;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 3px 3px 2px 0px rgba(16, 29, 0, 0.2);
    letter-spacing: 0.05em;
    overflow: hidden;
}
.h_contact > p:not(:last-child) {
    margin-right: 15px;
}
.h_contact > p > a, .h_label, .h_title {
    display: flex;
    justify-content: center;
    align-items: center;
}
.h_contact_mail a {
    text-align: center;
    background-color: #7d9b2b;
    padding-top: 10px;
}
.h_contact_mail a span {
    background: url("../images/icon_mail.png") no-repeat center top 1px/54px;
    padding-top: 45px;
    transition: all 0.3s;
}
.h_contact_tel {
    margin-bottom: 0;
}
.h_contact_line a {
    background: #06c755;
    padding-bottom: 3px;
}
.h_contact_line a span {
    background: url("../images/icon_line.png") no-repeat center top/68px;
    padding-top: 60px;
    transition: all 0.3s;
}
.h_contact_tel a {
    font-size: 40px;
    font-weight: 700;
    position: relative;
    line-height: 1;
    display: block;
    font-family: var(--f-en);
    background: url("../images/icon_tel.png") no-repeat left top 14px/28px;
    padding: 6px 0 5px 30px;
    color: #607d32;
}
.h_contact_tel .time {
    display: flex;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0.03em;
    margin-left: 18px;
}
.h_contact_tel .time .num {
    font-size: 18px;
    margin-bottom: 1px;
    letter-spacing: 0.05em;
}
.h_contact_tel .time .txt {
    font-size: 16px;
    font-weight: 600;
}
.h_label {
    background: #dce6bb;
    width: 153px;
    height: 46px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 4px;
    margin-left: 15px;
    margin-top: 2px;
    letter-spacing: 0.05em;
    padding-bottom: 2px;
}
/*==========================================================
                  M A I N    V I S U A L
==========================================================*/
main {
    position: relative;
    z-index: 2;
    padding-top: 185px;
}
.mv {
    position: relative;
    padding: 0;
    z-index: 2;
}
.mv_bg {
    position: relative;
}
.mv_bg {
    display: flex;
    justify-content: space-between;
}
.mv_img_l {
    margin-top: 90px;
    position: relative;
    left: -7px;
}
.mv_img_l:before {
    position: absolute;
    content: "";
    background: url("../images/idx_mv_back.png") no-repeat right top/423px;
    width: 423px;
    height: 441px;
    right: 100px;
    top: 55px;
    z-index: 9;
}
.mv_img_r {
    position: relative;
    margin-top: 170px;
    right: -8px;
}
.mv_txt {
    position: absolute;
    z-index: 2;
    height: 653px;
    background: url("../images/idx_box_mv.png") no-repeat center top/728px;
    width: 728px;
    left: 14px;
    right: 0;
    top: 87px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 82px;
}
.mv_txt h2 {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    margin-bottom: 19px;
    left: 9px;
    position: relative;
}
.mv_txt h2 .lg {
    color: #607d32;
    font-size: 78px;
    font-weight: 900;
    margin-right: 0px;
    letter-spacing: 0.06em;
}
.mv_logo {
    margin-bottom: 27px;
    position: relative;
    left: -7px;
}
.mv_img_r_sm {
    position: absolute;
    right: 21px;
    top: -126px;
}
.mv_tt1 {
    font-size: 62px;
    font-weight: 700;
    color: #607d32;
    margin-bottom: 39px;
    line-height: 1;
    letter-spacing: 0.05em;
    padding-left: 24px;
}
.mv_tt2 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.7;
    letter-spacing: 0.05em;
    padding-left: 26px;
}
.mv_list {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 470px;
    height: 133px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}
.mv_list li {
    font-size: 28px;
    font-weight: bold;
    position: relative;
}
.mv_list li span {
    display: block;
    letter-spacing: 0.03em;
}
.mv_list .item1 {
    background: url("../images/idx_mv_bb1.png") no-repeat center top/141px;
    width: 141px;
    height: 115px;
    top: -16px;
    left: -6px;
}
.mv_list .item1 span {
    transform: rotate(-9deg);
    padding-top: 12px;
    padding-left: 25px;
}
.mv_list .item2 {
    background: url("../images/idx_mv_bb2.png") no-repeat center top/134px;
    width: 134px;
    height: 94px;
    top: -36px;
}
.mv_list .item2 span {
    padding-left: 23px;
    padding-top: 3px;
}
.mv_list .item3 {
    background: url("../images/idx_mv_bb3.png") no-repeat center top/143px;
    width: 143px;
    height: 89px;
    top: -13px;
    left: -1px;
}
.mv_list .item3 span {
    transform: rotate(8deg);
    padding-left: 31px;
    padding-top: 9px;
}
.mv_box {
    background: #fff;
    position: absolute;
    width: 640px;
    height: 138px;
    box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.15);
    bottom: 45px;
    padding-left: 220px;
    padding-top: 35px;
    left: 75px;
    z-index: 9;
    cursor: pointer;
}
.mv_box a {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9;
}
.mv_box:before, .mv_box:after {
    position: absolute;
    content: "";
}
.mv_box:before {
    border: 1px #dce6bb solid;
    top: 6px;
    left: 5px;
    bottom: 5px;
    right: 5px;
}
.mv_box:after {
    background: url("../images/mv_round.png") no-repeat center top/258px;
    width: 258px;
    height: 256px;
    left: -61px;
    top: -83px;
}
.mv_box_tt .sm {
    color: #e0ca4f;
    margin-right: 4px;
}
.mv_box_tt .num {
    font-size: 42px;
    font-family: var(--f-en);
    position: relative;
    top: 5px;
}
.mv_box_tt {
    background: url("../images/flag.png") no-repeat right top/543px;
    width: 543px;
    height: 50px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.055em;
    position: absolute;
    left: 0;
    top: -24px;
    padding-left: 190px;
    line-height: 0.85;
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.3);
}
.mv_box_txt {
    line-height: 1.55;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}
.mv_box_txt .green {
    color: #607d32;
}
.mv_box_sm {
    font-size: 12px;
    letter-spacing: 0.05em;
    font-weight: 500;
}
/*==========================================================
                M A I N    C O N T E N T
==========================================================*/
/* DEFAULT TITLE */
.ttl_h3 {
    text-align: center;
    font-weight: bold;
}
.ttl_h3 span {
    display: block;
}
.ttl_h3 .ja {
    font-size: 32px;
}
.ttl_h3 .en {
    font-size: 16px;
}
/* DEFAUTL NAME BUTTON */
.btn a {
    width: 300px;
    height: 67px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/arrow_right_w.png') no-repeat right 15px center /10px var(--mcolor);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.15);
    position: relative;
    padding-bottom: 2px;
}
.btn.center a {
    margin-left: auto;
    margin-right: auto;
}
.btn_box:not(:last-child) {
    margin-bottom: 30px;
}
.btn_box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.btn_box .btn {
    margin: 10px;
}
/*============= SEC01 ==============*/
.sec01 {
    position: relative;
    padding-top: 117px;
    z-index: 1;
}
.sec01 .inner {
    z-index: 9;
    width: 1430px;
}
.sec01:before, .sec01:after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    height: 1309px;
    pointer-events: none;
}
.sec01:before {
    background: url("../images/idx_bg1.png") no-repeat center top 16px/1920px, url("../images/idx_bg2_bb.png") no-repeat left calc(50% + 2px) bottom;
    height: 1680px;
    top: -105px;
}
.sec01:after {
    background: url("../images/idx_bg1_bb.png") no-repeat center top/2164px;
    top: -90px;
    left: -122px;
    width: 2164px;
}
.sec01_ttl, .sec01_lg {
    display: flex;
    align-items: center;
}
.sec01_ttl {
    flex-direction: column;
    margin-bottom: 126px;
}
.sec01_item {
    position: relative;
    z-index: 9;
}
.sec01_bb_tt {
    background: url("../images/idx_bb1.png") no-repeat center top/453px;
    width: 453px;
    height: 121px;
    position: absolute;
    left: 292px;
    top: -107px;
    color: #607d32;
    padding-top: 9px;
    letter-spacing: 0.075em;
}
.sec01_bb_tt .txt {
    display: block;
    transform: rotate(-3deg);
    font-size: 32px;
    font-weight: bold;
    padding-top: 15px;
    padding-left: 25px;
}
.sec01_lg {
    background: #fff;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    justify-content: center;
    width: 1090px;
    height: 94px;
    border-radius: 47px;
    letter-spacing: 0.05em;
    padding-left: 15px;
    padding-bottom: 5px;
}
.sec01_box {
    display: flex;
    justify-content: space-between;
}
.sec01_box > div {
    position: relative;
    background: #fff;
    width: 680px;
    height: 668px;
    border-radius: 40px;
    padding-top: 59px;
    box-shadow: 6px 6px 20px 0px rgba(69, 95, 27, 0.2);
}
.sec01_box > div:before, .sec01_box > div:after {
    position: absolute;
    content: "";
}
.sec01_box > div:before {
    width: 100%;
    height: 40px;
    border-radius: 39px 39px 0 0;
    left: 0;
    top: 0;
}
.sec01_box > div:after {
    z-index: -1;
}
.sec01_box > div.item1:after {
    background: url("../images/idx_img_01.png") no-repeat left top;
    width: 374px;
    height: 711px;
    left: -217px;
    top: -248px;
}
.sec01_box > div.item2:after {
    background: url("../images/idx_img_02.png") no-repeat left top;
    width: 334px;
    height: 647px;
    right: -193px;
    top: -272px;
}
.sec01_box > div.item1:before {
    background: #c5c487;
}
.sec01_box > div.item2:before {
    background: #e2d79c;
}
.sec01_box > div:not(:last-child) {
    margin-right: 40px;
}
.sec01_bb {
    position: absolute;
    left: 27px;
    top: -78px;
    width: 319px;
    height: 187px;
    color: #fff;
    font-size: 72px;
    font-weight: bold;
}
.sec01_bb span {
    transform: rotate(-4deg);
    display: block;
    padding-left: 45px;
    position: relative;
    top: -5px;
    letter-spacing: 0.05em;
}
.sec01_bb.bb1 {
    background: url("../images/idx_bb2.png") no-repeat left top;
}
.sec01_bb.bb2 {
    background: url("../images/idx_bb3.png") no-repeat left top;
}
.sec01_box_tt {
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 1.8;
    padding-left: 5px;
    margin-bottom: -10px;
}
.item1 .sec01_box_tt {
    margin-bottom: -9px;
}
.sec01_box_tt .lg {
    font-size: 48px;
    color: #607d32;
    background: url("../images/line_cur1.png") repeat-x left bottom/301px;
    padding-bottom: 4px;
    letter-spacing: 0.04em;
}
.sec01_box_tt .sm {
    font-size: 38px;
}
.sec01_list {
    padding: 0 40px;
}
.sec01_list li {
    font-size: 24px;
    font-weight: 500;
    position: relative;
    border-bottom: 1px #607d32 solid;
    letter-spacing: 0.05em;
    padding: 30px 0 30px 45px;
    line-height: 1.5;
    background: url("../images/icon_check_pc.png") no-repeat left top 32px/32px;
}
.sec01_list li:nth-child(1) {
    padding-top: 32px;
    padding-bottom: 30px;
}
.sec01_list li:last-child {
    padding-bottom: 27px;
}
.item2 .sec01_list li:last-child {
    padding-bottom: 30px;
}
.sec01_list li:before {
    position: absolute;
    content: "";
}
.sec01_arrow {
    background: url("../images/arrow_down_lg.png") no-repeat center top;
    width: 1113px;
    height: 421px;
    margin: 0 auto;
    position: relative;
    left: 3px;
    right: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #fff;
    font-size: 42px;
    letter-spacing: 0.05em;
    font-weight: 600;
    line-height: 1.49;
    padding-top: 99px;
    padding-left: 11px;
    top: -71px;
    margin-bottom: -191px;
    z-index: 2;
}
.sec01_arrow > span:nth-child(2) {
    position: relative;
    bottom: 4px;
}
.sec01_arrow .line {
    font-size: 52px;
    position: relative;
}
.sec01_arrow .line:before {
    position: absolute;
    content: "";
    width: 96.5%;
    height: 1px;
    border-bottom: 2px #fff solid;
    left: 0;
    bottom: -1px;
}
.sec01_box_down {
    background: url("../images/idx_box_white_sec1.png") no-repeat center top;
    width: 1612px;
    height: 577px;
    position: relative;
    left: -130px;
    padding-top: 121px;
    text-align: center;
    z-index: 1;
}
.sec01_box_down .tt {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding-left: 52px;
    margin-bottom: 13px;
}
.sec01_box_down .tt .green {
    color: #607d32;
}
.sec01_box_down .tt_skew {
    font-size: 52px;
    letter-spacing: 0.05em;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 13px;
    padding-left: 77px;
    position: relative;
}
.sec01_box_down .tt_skew:before, .sec01_box_down .tt_skew:after {
    position: absolute;
    content: "";
}
.sec01_box_down .tt_skew:before {
    background: url("../images/idx_skew1_l.png") no-repeat left top;
    width: 146px;
    height: 160px;
    left: 158px;
    top: -25px;
}
.sec01_box_down .tt_skew:after {
    background: url("../images/idx_skew1_r.png") no-repeat left top;
    width: 146px;
    height: 160px;
    right: 113px;
    top: -23px;
}
.sec01_box_down .sec1_logo {
    position: relative;
    margin: 0 15px 0 13px;
    top: -12px;
}
/*============= SEC02 ==============*/
.sec02 {
    position: relative;
    top: -172px;
    z-index: 3;
    margin-bottom: -172px;
}
/*============= SEC03 ==============*/
.sec03 {
    position: relative;
    padding-top: 119px;
    height: 611px;
    cursor: pointer;
}
.sec03:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg2.png") no-repeat center top/1920px;
    width: 1920px;
    left: calc(50% - 960px);
    top: 0;
    height: 611px;
}
.sec03_box {
    background: url("../images/idx_map_pc.png")#fff no-repeat left/contain;
    width: 900px;
    height: 320px;
    border-radius: 30px;
    margin: 0 auto;
    padding-left: 299px;
    position: relative;
    padding-top: 9px;
    box-shadow: 0 6px 20px 0px rgba(69, 95, 27, 0.2);
}
.sec03_box:after, .sec03_box:before {
    position: absolute;
    content: "";
}
.sec03_box:after {
    width: 100%;
    height: 100%;
    border: 8px #dce6bb solid;
    border-radius: 30px;
    left: 0;
    top: 0;
}
.sec03_box:before {
    width: 542px;
    height: 150px;
    background: url("../images/icon_search2.png") no-repeat left top 15px/123px, url("../images/idx_icon1.png") no-repeat right top/127px;
    left: 320px;
    top: 139px;
    pointer-events: none;
}
.sec03_tt1 {
    background: url("../images/idx_bb9.png") no-repeat left top/255px;
    width: 255px;
    height: 85px;
    padding-left: 15px;
    position: relative;
    top: -32px;
    left: 27px;
    margin-bottom: -43px;
    z-index: 1;
}
.sec03_tt1 span {
    display: block;
    transform: rotate(-3.1deg);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.057em;
    padding-top: 15px;
    padding-left: 5px;
}
.sec03_tt2 {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.71;
    text-align: center;
    letter-spacing: 0.06em;
    margin-bottom: 19px;
}
.sec03_tt2 .line, .sec03_tt2 .green {
    font-size: 131.125%;
}
.sec03_tt2 .line {
    margin-right: 11px;
    position: relative;
    z-index: 1;
}
.sec03_tt2 .line:before {
    position: absolute;
    content: "";
    width: 415px;
    height: 30px;
    background: #dce6bb;
    border-radius: 15px;
    left: -12px;
    bottom: -5px;
    z-index: -1;
}
.sec03_tt2 .green {
    color: var(--mcolor);
}
.sec03_box .btn a {
    margin-left: 150px;
}
/*============= SEC04 ==============*/
.sec04 {
    position: relative;
    background: url("../images/idx_01_bb.png") no-repeat right -128px top 700px, url("../images/idx_02_bb.png") no-repeat left -267px top 1528px, url("../images/idx_03_bb.png") no-repeat right -130px top 2123px, url("../images/idx_04_bb.png") no-repeat left -268px top 2962px;
}
.sec04_an {
    position: absolute;
    left: 0;
    top: -50px;
}
.sec04 .sectxt_com p {
    font-weight: 500;
    letter-spacing: 0.053em;
}
.sec04 .inner {
    padding-top: 10px;
    width: 100%;
    padding: 0;
    z-index: 1;
}
.sec04:before {
    position: absolute;
    content: "";
    width: 184px;
    height: 184px;
    background: #f1f7e5;
    left: 0;
    right: 0;
    top: -40px;
    margin: 0 auto;
    border-radius: 50%;
}
.sec04 .ttl_h3 {
    position: relative;
    padding-top: 57px;
    z-index: 1;
    margin-top: -3px;
    margin-bottom: 26px;
}
.sec04_txt {
    text-align: center;
    margin-bottom: 61px;
}
.sec04_sub {
    position: relative;
    margin-bottom: 180px;
}
.sec04_sub:before {
    position: absolute;
    content: "";
    width: 1870px;
    height: 100%;
    top: 0;
    z-index: -1;
}
.sec04_sub.sub1 {
    height: 698px;
    padding-right: 42px;
    display: flex;
    align-items: flex-end;
}
.sec04_sub.sub2 {
    display: flex;
    padding-left: 43px;
    align-items: flex-end;
    margin-bottom: 181px;
    height: 540px;
}
.sec04_sub.sub1:before {
    background: url("../images/idx_img_03.png") no-repeat right top/1870px;
    right: 42px;
    border-radius: 0 40px 40px 0;
}
.sec04_sub.sub2:before {
    background: url("../images/idx_img_13.png") no-repeat left top/1870px;
    border-radius: 40px 0 0 40px;
    height: 540px;
}
.sec04_sub.sub3 {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    padding-right: 42px;
    margin-bottom: 180px;
    height: 540px;
}
.sec04_sub.sub3:before {
    background: url("../images/idx_img_04.png") no-repeat right top/1870px;
    border-radius: 0 40px 40px 0;
    height: 540px;
}
.sec04_sub.sub4:before {
    background: url("../images/idx_img_14.png") no-repeat left top/1870px;
    border-radius: 40px 0 0 40px;
    height: 540px;
}
.sec04_sub.sub5 {
    width: calc(100% - 42px);
    margin-bottom: 182px;
    height: 540px;
    display: flex;
    align-items: flex-end;
}
.sec04_sub.sub5:before {
    background: url("../images/idx_img_05.png") no-repeat right top/1870px;
    border-radius: 0 40px 40px 0;
    height: 540px;
    right: 0;
}
.sec04_sub.sub4 {
    padding-left: 43px;
    margin-bottom: 180px;
    height: 540px;
    display: flex;
    align-items: flex-end;
}
.sub3 .sec04_box {
    margin-right: 110px;
    padding: 50px 60px 60px 56px;
    bottom: -80px;
}
.sub5 .sec04_box {
    margin-right: 110px;
    padding: 50px 60px 65px 56px;
    margin-left: auto;
    bottom: -80px;
}
.sub4 .sec04_box {
    margin-left: 110px;
    padding: 50px 59px 61px 56px;
    bottom: -80px;
}
.sub1 .sec04_box {
    margin-right: 110px;
    margin-left: auto;
    bottom: -80px;
}
.sub2 .sec04_box {
    margin-left: 110px;
    margin-right: auto;
    padding: 52px 62px 63px 57px;
    bottom: -80px;
}
.sub2 .sec04_box .sec04_img1 {
    position: relative;
    top: -15px;
    right: 0;
}
.sec04_box {
    width: 980px;
    background: #fff;
    border-radius: 40px;
    box-shadow: 3px 6px 20px 0px rgba(69, 95, 27, 0.2);
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 50px 74px 63px 56px;
    flex-shrink: 0;
}
.sec04_sub_tt {
    text-align: center;
    color: #607d32;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.625;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    position: relative;
}
.sub1 .sec04_sub_tt {
    left: 10px;
}
.sub2 .sec04_sub_tt {
    margin-bottom: 20px;
    padding-left: 7px;
}
.sec04_img1 {
    position: relative;
    top: -98px;
    right: 67px;
}
.sec04_img2 {
    position: relative;
    top: -23px;
    right: 63px;
}
.sec04_img2 img {}
.sec04_bb {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-family: var(--f-en);
    width: 156px;
    height: 152px;
    font-weight: 600;
    padding-top: 15px;
}
.sec04_sub.sub1 .sec04_bb, .sec04_sub.sub3 .sec04_bb, .sec04_sub.sub5 .sec04_bb {
    background: url("../images/idx_bb4.png") no-repeat left top/156px;
    right: 23px;
    top: -56px;
}
.sub3 .sec04_bb .num {
    padding-left: 3px;
}
.sec04_sub.sub2 .sec04_bb, .sec04_sub.sub4 .sec04_bb {
    background: url("../images/idx_bb6.png") no-repeat left top/156px;
    left: 22px;
    top: -56px;
    padding-right: 13px;
}
.sec04_bb .en {
    font-size: 20px;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
    padding-left: 4px;
    font-weight: 500;
}
.sec04_bb .num {
    font-size: 64px;
    padding-left: 10px;
}
.sub4 .sec04_bb .num {
    padding-left: 5px;
}
.sec04_bnr {
    position: relative;
    background: url("../images/idx_bnr1.jpg") no-repeat center top;
    width: 640px;
    height: 160px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    left: 10px;
    margin-top: 35px;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.2);
    transition: all ease 0.3s;
}
.sec04_bnr a {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9;
}
.sec04_bnr:before {
    position: absolute;
    content: "";
    width: 390px;
    height: 142px;
    background: url("../images/idx_skew2_l.png") no-repeat left top/89px, url("../images/idx_skew2_r.png") no-repeat right bottom/88px;
    left: 6px;
    top: 6px;
    pointer-events: none;
    z-index: 1;
}
.sec04_bnr .tt {
    background: url("../images/idx_bb5.png") no-repeat center top/367px;
    width: 367px;
    height: 127px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0px 22px 5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.75;
    justify-content: center;
    position: relative;
    left: 19px;
}
.sec04_bnr .tt .sm {
    font-size: 14px;
}
.sec04_bnr .tt .lg {
    font-size: 24px;
}
.sec04_bnr .tt .lg .green {
    color: #607d32
}
.sec04_bnr .tt .lg .sm {
    font-size: 14px;
}
.sec04_bnr .tt .lg .mid {
    font-size: 20px;
}
/*============= SEC05 ==============*/
.sec05 {
    position: relative;
}
/*============= SEC06 ==============*/
.sec06 {
    position: relative;
    padding-top: 390px;
    margin-bottom: 143px;
}
.sec06:before {
    position: absolute;
    content: "";
    background: url("../images/idx_img_06.png") no-repeat center top/1920px;
    left: calc(50% - 960px);
    height: 480px;
    top: 0;
    width: 1920px;
}
.sec06 .inner {
    z-index: 1;
    width: 100%;
    padding: 0;
}
.sec06 .inner:before, .sec06 .inner:after {
    position: absolute;
    content: "";
    z-index: -1;
}
.sec06 .inner:before {
    width: 1000px;
    height: 168px;
    background: #fff;
    border-radius: 84px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.sec06 .inner:after {
    position: absolute;
    content: "";
    width: 184px;
    height: 184px;
    background: #fff;
    left: 0;
    right: 0;
    top: -52px;
    margin: 0 auto;
    border-radius: 50%;
}
.sec06_wrap {
    position: relative;
    margin-top: -10px;
    ;
}
.sec06_wrap .ttl_h3 {
    padding-top: 57px;
    top: -12px;
    position: relative;
    margin-bottom: 14px;
}
.sec06_txt p {
    text-align: center;
    font-weight: 500;
}
.sec06_tt1 {
    width: 296px;
    height: 44px;
    line-height: 44px;
    background: #e0ca4f;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    border-radius: 22px 22px 22px 0;
    position: absolute;
    left: 57px;
    top: -20px;
    letter-spacing: 0.05em;
}
.item2 .sec06_tt1 {
    left: 57px;
    top: -20px;
}
.sec06_tt1:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 6px;
    border-radius: 0 0 3px 3px;
    background: #e0ca4f;
    left: 0;
    bottom: -24px;
}
.sec06_tt2 {
    color: #607d32;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 9px;
}
.sec06_icon {
    top: 76px;
    right: 47px;
}
.item2 .sec06_icon {
    top: 71px;
    right: 43px;
}
.sec06_item {
    display: flex;
    justify-content: space-between;
    margin-top: 58px;
}
.sec06_item > div {
    background: #fff;
    width: calc(50% - 20px);
    position: relative;
    padding-top: 78px;
    box-shadow: 6px 6px 20px 0px rgba(69, 95, 27, 0.2);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.sec06_item > div:before {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    left: 0;
    top: 0;
}
.sec06_item > div .btn {
    margin-top: auto;
}
.sec06_item > div.item1:before {
    background: #dce6bb;
}
.sec06_item > div.item2:before {
    background: #dce6bb;
    border-radius: 28px 0 0 28px;
}
.sec06_item > div .wrap {
    display: flex;
}
.sec06_icon {
    flex-shrink: 0;
    position: absolute;
}
.sec06_item > div:not(:last-child) {
    margin-right: 40px;
}
.item2 .sec06_tt1 {
    width: 349px;
}
.sec06_item > div.item1 {
    border-radius: 0 30px 30px 0;
    padding: 45px 40px 40px 80px;
}
.sec06_item > div.item2 {
    border-radius: 30px 0 0 30px;
    padding: 47px 50px 38px 96px;
}
.sec06_sub_txt {
    padding-right: 25px;
    max-width: 565px;
    margin-bottom: 32px;
}
.sec06_sub_txt p {
    font-weight: 500;
}
.sec06_box {
    width: 1200px;
    height: 306px;
    background: #fff;
    margin: 67px auto 0;
    border-radius: 30px;
    position: relative;
    z-index: auto;
    box-shadow: 4px 4px 20px 0px rgba(69, 95, 27, 0.2);
    cursor: pointer;
}
.sec06_box .wrap {
    position: relative;
}
.sec06_box:before, .sec06_box:after, .sec06_box .wrap:before, .sec06_box .wrap:after {
    position: absolute;
    content: "";
}
.sec06_box:before {
    border-radius: 30px;
    background: #dce6bb;
    right: -18px;
    bottom: -18px;
    z-index: -1;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
}
.sec06_box:after {
    width: 1276px;
    height: 345px;
    /* pointer-events: none; */
    background: url("../images/idx_skew3_l.png") no-repeat left top, url("../images/idx_skew3_r.png") no-repeat right bottom;
    left: -50px;
    top: -26px;
    z-index: 9;
}
.sec06_tt3, .sec06_box, .sec06_box .wrap {
    display: flex;
}
.sec06_left {
    padding: 51px 0 15px 57px;
}
.sec06_right {
    width: 510px;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}
.sec06_box .wrap:after {
    position: absolute;
    content: "";
    width: 428px;
    height: 230px;
    background: rgba(96, 125, 50, 0.5);
    border-radius: 0 30px 0 0;
    right: -46px;
    top: 0;
}
.sec06_right p {
    position: absolute;
}
.sec06_right p:before {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border: 8px #fff solid;
    left: -1px;
    top: -1px;
    position: absolute;
    content: "";
}
.sec06_img1 {
    left: 54px;
    z-index: 1;
    transform: rotate(-3deg);
    top: 41px;
    width: 330px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
.sec06_img2 {
    right: -2px;
    transform: rotate(7deg);
    width: 198px;
    top: -17px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
.sec06_tt3, .sec11_ttl {
    margin-bottom: -18px;
    position: relative;
    z-index: 1;
}
.sec06_tt3:before, .sec06_tt3:after, .sec11_ttl:before, .sec11_ttl:after {
    position: absolute;
    content: "";
}
.sec06_tt3:before, .sec11_ttl:before {
    width: 575px;
    height: 25px;
    background: #dce6bb;
    border-radius: 13px;
    left: -16px;
    bottom: 46px;
    z-index: -1;
}
.sec06_tt3:after, .sec11_ttl:after {
    background: url("../images/idx_brush5.png") no-repeat left top;
    width: 109px;
    height: 153px;
    right: 15px;
    top: -70px;
}
.sec06_g, .sec11_g {
    font-weight: 700;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    letter-spacing: 0.05em;
    margin-right: 20px;
}
.sec06_g .sm {
    color: #627e34;
    font-size: 24px;
    display: block;
    margin-bottom: 2px;
}
.sec06_g .lg, .sec11_g .lg {
    font-size: 34px;
    letter-spacing: -0.02em;
}
.sec11_g .lg {
	font-size: 42px;
}
.sec11_g .lg > span {
    position: relative;
}
.sec06_tt3 .num, .sec11_ttl .num {
    font-family: var(--f-en);
    position: relative;
    width: 106px;
    height: 106px;
    font-weight: 700;
    font-size: 98px;
    line-height: 1;
    margin-bottom: 0;
    z-index: 1;
    top: -17px;
    margin-right: -12px;
}
.sec11_ttl .num {
    margin-right: 8px;
    margin-left: 13px;
    top: -25px;
    font-size: 67px;
}
.sec11_ttl .num > .mid {
	font-size: 80%;
	position: relative;
	top: -5px;
}
.sec06_tt3 .num:before, .sec11_ttl .num:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bb10.png") no-repeat center top/106px;
    width: 106px;
    height: 106px;
    z-index: -1;
    left: -20px;
    top: -6px;
}
.sec06_tt3 .mid, .sec06_tt10 .mid {
    font-size: 68px;
    font-weight: 700;
    position: relative;
    top: -24px;
}
.sec11_img {
	text-align: center;
	margin: 60px 0 100px;
}
.sec11 .inner {
	width: 100%;
}
/*============= SEC07 ==============*/
.sec07 {
    position: relative;
    height: 452px;
    padding-top: 70px;
    margin-bottom: 197px;
}
.sec07 .inner {
    width: 1430px;
}
.sec07:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg5.png") no-repeat center top/1920px;
    left: calc(50% - 960px);
    top: 0;
    width: 1920px;
    height: 100%;
}
.sec07_wrap {
    display: flex;
    padding: 0 0 0 43px;
    max-width: 1200px;
    margin: 0 auto 55px;
    position: relative;
}
.sec07_bb {
    position: absolute;
    background: url("../images/idx_bb8.png") no-repeat center top/147px;
    width: 147px;
    height: 136px;
    left: -17px;
    top: -78px;
}
.sec07_bb span {
    display: block;
    transform: rotate(-8deg);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding-left: 24px;
    padding-top: 19px;
}
.sec07_ttl {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.47;
    flex-shrink: 0;
    margin-right: 67px;
    letter-spacing: 0.05em;
    position: relative;
}
.sec07_txt {
    padding-right: 10px;
    margin-top: 6px;
}
.sec07_bnr {
    display: flex;
}
.sec07_bnr li {
    width: 448px;
    height: 272px;
    border-radius: 30px;
}
.sec07_bnr li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.71;
    text-align: center;
    position: relative;
    letter-spacing: 0.02em;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 4px 3px 20px 0px rgba(0, 0, 0, 0.2);
}
.sec07_bnr li a:before {
    position: absolute;
    content: "";
    background: url("../images/arrow_right_green.png")#fff no-repeat center right calc(50% - 1px)/10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    right: 10px;
    bottom: 10px;
}
.sec07_bnr li:not(:last-child) {
    margin-right: 28px;
}
.sec07_bnr li.bnr1 {
    background: url("../images/idx_bg6_sub1.jpg") no-repeat center top/cover;
}
.sec07_bnr li.bnr2 {
    background: url("../images/idx_bg6_sub2.jpg") no-repeat center top/cover;
}
.sec07_bnr li.bnr3 {
    background: url("../images/idx_bg6_sub3.jpg") no-repeat center top/cover;
}
/*============= SEC08 ==============*/
.sec08 {
    position: relative;
    padding-top: 30px;
}
.ttl_h3.sec08_ttl {
    padding-top: 58px;
}
.sec08_txt {
    margin-top: 41px;
    left: -6px;
    position: relative;
}
.sec08_txt p {
    font-weight: 500;
}
.sec08 .inner {
    width: 1686px;
}
.sec08:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg7.png") no-repeat right top;
    width: 1783px;
    height: 488px;
    right: calc(50% - 960px);
    top: 0;
}
.sec08_wrap {
    display: flex;
    justify-content: space-between;
    width: 1070px;
    align-items: center;
    margin: 0 auto 56px;
    position: relative;
    padding-top: 17px;
}
.sec08_wrap:before {
    position: absolute;
    content: "";
    width: 1679px;
    height: 405px;
    background: url("../images/idx_brush1.png") no-repeat left top, url("../images/idx_brush2.png") no-repeat left 290px bottom, url("../images/idx_brush3.png") no-repeat left 1254px bottom 61px, url("../images/idx_brush4.png") no-repeat right top 38px;
    left: -222px;
    top: -77px;
    pointer-events: none;
}
.sec08_item {
    display: flex;
}
.sec08_item {
    margin-bottom: 38px;
    height: 400px;
    overflow: hidden;
}
.sec08_item.slick-initialized {
    height: auto;
    overflow: inherit;
    padding: inherit;
}
.sec08_item .slick-prev, .sec08_item .slick-next {
    position: absolute;
    z-index: 9;
    margin: auto;
    border-width: 0;
    background: none;
    cursor: pointer;
    text-indent: 9999999px;
    height: 70px;
    width: 70px;
    outline: none;
    opacity: 1;
    transition: all 0.3s linear;
    top: calc(50% - 8px);
    border-radius: 50%;
}
.sec08_item .slick-next {
    right: -57px;
    background: url(../images/icon_next.png)rgba(255, 255, 255, 0.8) no-repeat center/17px;
}
.sec08_item .slick-prev {
    left: -57px;
    background: url(../images/icon_prev.png)rgba(255, 255, 255, 0.8) no-repeat center/17px;
}
.sec08_itemr .slick-slide {
    margin: 0px -4px;
    transition: all linear 0.3s;
}
.sec08_item .slick-slide {
    position: relative;
}
.sec08_item .img img {
    border-radius: 30px 30px 0 0;
}
.sec08_item .slick-slide:before {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% - 50px);
    left: 0;
    top: 0;
    background: #fff;
    z-index: -1;
    border-radius: 30px;
    box-shadow: 6px 6px 20px 0px rgba(69, 95, 27, 0.2);
}
.sec08_item .btn a {
    margin: 0 auto;
}
.sec08_item .date {
    font-size: 16px;
    color: #666666;
    font-weight: 500;
    margin-bottom: 11px;
    letter-spacing: 0.05em;
}
.sec08_item .tt {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 19px;
    letter-spacing: 0.05em;
    min-height: 72px;
}
.sec08_item .img {
    margin-bottom: 9px;
}
.sec08_item .wrap {
    padding: 5px 23px 15px;
}
.sec08_item .boxwrap {
    cursor: pointer;
}
/*============= SEC09 ==============*/
.sec09 {
    padding-top: 95px;
    margin-bottom: 162px;
}
.sec09 .inner {
    padding: 0;
    width: 100%;
}
.sec09_item {
    display: flex;
    position: relative;
}
.sec09_item:before {
    position: absolute;
    content: "";
    background: url("../images/idx_box_white_front.png") no-repeat left top/751px;
    left: -107px;
    bottom: -39px;
    width: 751px;
    height: 457px;
}
.sec09_item .item_r {
    flex-shrink: 0;
    position: relative;
    margin-right: -83px;
}
.sec09_item .item_l {
    position: relative;
    width: 1128px;
    height: 775px;
    flex-shrink: 0;
    margin-right: -167px;
    z-index: 1;
    padding: 103px 126px 120px 131px;
    right: -133px;
    margin-top: 21px;
}
.sec09_item .item_l:before, .sec09_item .item_l:after {
    position: absolute;
    content: "";
}
.sec09_item .item_l:before {
    background: url("../images/idx_box_white.png") no-repeat center top/1128px;
    width: 100%;
    height: 100%;
    z-index: -1;
    left: 0;
    top: 0;
}
.sec09_item .item_l:after {
    width: 1233px;
    height: 896px;
    position: absolute;
    content: "";
    background: url("../images/idx_skew4_l.png") no-repeat left top, url("../images/idx_skew4_r.png") no-repeat right bottom;
    left: -27px;
    top: -46px;
    pointer-events: none;
}
.sec09_ttl {
    font-size: 36px;
    font-weight: bold;
    color: #607d32;
    background: url("../images/line_2.png") no-repeat center bottom/872px;
    width: 872px;
    padding-bottom: 34px;
    letter-spacing: 0.05em;
    line-height: 1.61;
    position: relative;
    left: -13px;
    margin-bottom: 12px;
    text-indent: -17px;
    padding-left: 6px;
}
.sec09_right {
    text-align: right;
    position: relative;
    top: -4px;
    right: 7px;
}
.sec09_txt p {
    font-weight: 500;
}
.sec11_ttl {
    display: table;
    margin: 0 auto 50px;
    background: url(../images/idx_h3.png) no-repeat center top;
    padding-top: 110px;
}
.sec11_ttl:after {
    display: none;
}
.sec11_ttl:before {
    bottom: 0;
    width: 100%;
}
.sec11_ttl .num:before {
    position: absolute;
    content: "";
    background: url(../images/idx_bb10.png) no-repeat center top / 106px;
    width: 106px;
    height: 106px;
    z-index: -1;
    left: -8px;
    top: -15px;
}
.sec11_txt {
	background: #fff;
	padding: 30px 20px;
	max-width: 850px;
	margin: 0 auto;
	border-radius: 20px;
}
.sec11_txt .sec11_txt1 {
	font-size: 30px;
	text-align: center;
	
	line-height: 1.7;
	margin-bottom: 15px;
}
.sec11_txt .sec11_txt1 > span {
	color: #607d32;
	font-weight: 700;
}
.sec11_txt .note {
	text-align: center;
}
.sec11 {
	padding-bottom: 100px;
}
/*============= CTA ==============*/
.sectxt_com p {
    letter-spacing: 0.05em;
    line-height: 1.74;
}
.sec_cta {
    position: relative;
    height: 851px;
    padding-top: 56px;
}
.sec_cta .inner {
    width: 1430px;
}
.sec_cta:before {
    position: absolute;
    content: "";
    background: url("../images/cta_bg.jpg") no-repeat center top/1920px;
    width: 1920px;
    left: calc(50% - 960px);
    height: 100%;
    top: 0;
}
.box_cta_tt1, .under main p.box_cta_tt1 {
    display: flex;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.12em;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}
.box_cta_tt1:before {
    position: absolute;
    content: "";
    width: 1200px;
    height: 36px;
    background: #7d9556;
    left: auto;
    bottom: -11px;
    border-radius: 18px;
    z-index: -1;
    right: auto;
    margin: 0 auto;
}
.box_cta_tt1 .wrap {
    display: flex;
    margin-right: 10px;
}
.box_cta_tt1 .txt {
    font-size: 52px;
}
.box_cta_tt1 .txt .sm {
    font-size: 80%;
}
.box_cta_tt1 .lb {
    width: 185px;
    height: 78px;
    background: #e0ca4f;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 52px;
    font-weight: bold;
    color: #333;
    border-radius: 10px;
    letter-spacing: 0.05em;
    padding-bottom: 2px;
}
.box_cta_tt1 .lb:nth-child(1) {
    padding-right: 7px;
}
.box_cta_tt1 .lb:nth-child(2) {
    padding-right: 8px;
}
.box_cta_tt1 .lb:nth-child(3) {
    padding-right: 8px;
}
.box_cta_tt1 .lb:not(:last-child) {
    margin-right: 8px;
}
.cta_box_white {
    background: #fff;
    width: 534px;
    height: 140px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px 0 26px;
    margin-right: 16px;
}
.cta_tt, .box_cta_tt2, .box_cta_list .item_tel, .box_cta_hour_l dl dt, .box_cta_hour_r {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta_tt {
    width: 240px;
    height: 108px;
    background: #dce6bb;
    border-radius: 14px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.75;
    padding-top: 5px;
    letter-spacing: 0.05em;
}
.box_cta_tt2, .under main .box_cta_tt2 {
    position: relative;
    left: 42px;
    margin-bottom: 14px;
}
.box_cta_tt2:before {
    position: absolute;
    content: "";
    background: url("../images/icon_search.png") no-repeat left top;
    width: 173px;
    height: 153px;
    right: 64px;
    top: -8px;
}
.cta_box_white_tt {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding-top: 7px;
}
.cta_logo {
    margin-bottom: 0;
    position: relative;
    top: -5px;
}
.cta_img {
    text-align: right;
    padding-right: 116px;
    margin-bottom: 46px;
}
.box_cta_list {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.box_cta_list.full:before {
	display: none;
}
.box_cta_list.full {
	margin-top: 50px;
}
.box_cta_list.full li {
	width: 850px;
}
.box_cta_list.full li {
	margin: 0 auto;
}
.box_cta_list.full li .tt.tt2 {
	width: 480px;
}
.box_cta_list:before {
    position: absolute;
    content: "";
    background: url("../images/cta_img1.png") no-repeat left top/292px;
    width: 292px;
    height: 406px;
    left: 28px;
    top: -383px;
}
.box_cta_list li {
    width: 448px;
    height: 216px;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 6px 20px 0px rgba(0, 0, 0, 0.2);
}
.box_cta_list .item_tel {
    background: #dce6bb;
    flex-direction: column;
    padding-top: 41px;
}
.box_cta_list .item_mail {
    background: #7d9b2d;
}
.box_cta_list .item_line {
    background: #06c755;
}
.box_cta_list .item_mail, .box_cta_list .item_line {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.box_cta_list .item_line .tt5 {
    padding: 0 23px 0 22px;
}
.box_cta_list .item_mail a, .box_cta_list .item_line a {
    width: 100%;
    height: 100%;
    padding-top: 34px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.box_cta_list > li > a > .tt4 {
    color: #fff;
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 6px;
}
.box_cta_list .tt5 {
    background: #e0ca4f;
    text-align: center;
    border-radius: 10px;
    font-size: 28px;
    font-weight: 800;
    height: 53px;
    line-height: 51px;
    letter-spacing: 0.05em;
    padding: 0 22px;
}
.box_cta_list li .tt {
    width: 225px;
    height: 63px;
    background: #fff;
    border-radius: 31.5px 31.5px 31.5px 0;
    position: absolute;
    left: 0px;
    right: 0;
    margin: 0 auto;
    top: -32px;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    /* letter-spacing: 0.05em; */
    margin-bottom: 0;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
    padding-right: 13px;
}
.box_cta_list li .tt.tt2 {
    width: 261px;
    padding-right: 13px;
    letter-spacing: 0em;
}
.box_cta_list li .tt.tt3 {
    width: 244px;
    padding-right: 15px;
    left: 0px;
}
.box_cta_list li .tt.tt1 span {
    background: url("../images/icon_tel_cta.png") no-repeat left top 11px/28px;
    padding-left: 40px;
    padding-bottom: 2px;
}
.box_cta_list li .tt.tt2 span {
    background: url("../images/icon_mail_cta.png") no-repeat left center/40px;
    padding-left: 52px;
    padding-bottom: 2px;
}
.box_cta_list li .tt.tt3 span {
    background: url("../images/icon_line_cta.png") no-repeat left 2px center/40px;
    padding-left: 55px;
    letter-spacing: 0em;
    padding-bottom: 2px;
}
.box_cta_list li .tt:before {
    position: absolute;
    content: "";
    width: 4px;
    height: 24px;
    background: #fff;
    bottom: -24px;
    left: 0;
}
.box_cta_tel {
    margin-bottom: 6px;
}
.box_cta_tel a {
    font-family: var(--f-en);
    font-size: 48px;
    font-weight: bold;
}
.box_cta_hour {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 51px 0 51px;
}
.box_cta_hour_r {
    background: #e0ca4f;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
    border-radius: 4px;
    width: 102px;
    height: 75px;
}
.box_cta_hour_l dl {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}
.box_cta_hour_l dl:nth-of-type(2) dd {
    font-size: 18px;
}
.box_cta_hour_l dl dt {
    font-size: 18px;
    flex-shrink: 0;
    font-weight: 700;
    margin-right: 7px;
    width: 89px;
    height: 31px;
    border: 1px #333333 solid;
    letter-spacing: 0.05em;
    padding-left: 2px;
    padding-bottom: 3px;
}
.box_cta_hour_l dl dd {
    font-weight: 600;
    letter-spacing: 0.05em;
}
.box_cta_hour_l {
    position: relative;
    top: -2px;
}
.ttl_h3 {
    font-weight: 700;
    text-align: center;
    background: url("../images/idx_h3.png") no-repeat center top;
    padding-top: 35px;
    font-size: 42px;
    letter-spacing: 0.05em;
}
.ttl_line {
    position: relative;
    display: table;
    margin: 0 auto 34px;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.05em;
    padding: 0 20px;
}
.ttl_line:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 20px;
    background: #dce6bb;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    z-index: -1;
}
/*==========================================================
                        F O O T E R
==========================================================*/
footer {
    position: relative;
    z-index: 3;
    background: #f1f7e5;
}
footer:after {
    position: absolute;
    content: "";
    background: url("../images/bg_ft.png") no-repeat center top/1920px;
    left: calc(50% - 960px);
    bottom: 0;
    width: 1920px;
    height: 299px;
    z-index: -1;
}
.ft .inner {
    display: flex;
    width: 100%;
    padding: 0px 0px 0 65px;
}
.ft_box_cta {
    flex-direction: column;
}
.ft_box_cta.box_cta_list:before {
    display: none;
}
.ft_logo {
    width: 380px;
    height: 179px;
    margin-bottom: 17px;
}
.ft_logo_sm {
    width: 380px;
    height: 92px;
    margin-bottom: 26px;
}
.ft_logo a, .ft_logo_sm a {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: center;
}
.ft_logo a {
    padding-top: 2px;
}
.ft_ttl {
    margin-top: 20px;
}
.ft_logo, .ft_logo_sm {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}
.ft_ttl {
    width: 338px;
    height: 50px;
    background: #607d32;
    border-radius: 25px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 50px;
    letter-spacing: 0.05em;
}
.ft_left {
    width: 380px;
    margin-right: 64px;
    margin-top: 61px;
}
address {
    padding: 52px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}
.ft .box_cta_list {
    position: relative;
}
.ft .box_cta_list .item_tel {
    background: none;
    width: auto;
    height: auto;
    box-shadow: none;
    padding-top: 0;
}
.ft .box_cta_list li .tt {
    display: none;
}
.ft .box_cta_list li {
    width: 380px;
    height: 94px;
    border-radius: 10px;
}
.ft .box_cta_list li.item_bnr {
    height: auto;
    position: absolute;
    right: -550px;
    bottom: 0;
    text-align: center;
    background: #fff;
    width: 380px;
}
.ft .box_cta_list li.item_bnr a {
    padding: 6px 5px 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ft .box_cta_list li.item_bnr .txt {
    font-size: 13px;
    text-align: center;
    background: #f18d00;
    color: #fff;
    line-height: 1.3;
    display: table;
    width: 100%;
    border-radius: 25px;
    padding: 5px;
    font-weight: 500;
    margin-top: 10px;
}
.ft .box_cta_list .item_mail {
    margin-bottom: 16px;
}
.ft .box_cta_list .item_mail a, .ft .box_cta_list .item_line a {
    padding-top: 0;
    align-items: flex-start;
    padding-left: 98px;
}
.ft .box_cta_list .item_mail a {
    background: url("../images/icon_mail_ft.png") no-repeat left 32px center/41px, url("../images/icon_right_w.png") no-repeat right 15px center/10px;
}
.ft .box_cta_list .item_line a {
    background: url("../images/icon_line_ft.png") no-repeat left 20px center/60px, url("../images/icon_right_w.png") no-repeat right 15px center/10px;
}
.ft .box_cta_list > li > a > .tt4 {
    font-size: 20px;
    margin-bottom: 7px;
    line-height: 1;
}
.ft .box_cta_list .tt5 {
    font-size: 16px;
}
.ft .box_cta_list .tt5 {
    background: none;
    height: auto;
    line-height: 1.4;
    border-radius: 0;
    padding: 0;
    color: #fff;
}
.ft .box_cta_hour_l dl dt {
    width: auto;
    height: auto;
    border: none;
    margin-right: 0px;
    font-weight: 600;
}
.ft .box_cta_tel a {
    color: #607d32;
    background: url("../images/icon_tel_ft.png") no-repeat left center/30px;
    padding-left: 35px;
    font-size: 40px;
}
.ft .box_cta_hour_l dl dd, .ft .box_cta_hour_l dl dt {
    font-size: 18px;
    line-height: 1.2;
}
.ft .box_cta_hour_l dl dd {
    position: relative;
    top: -2px;
}
.ft .box_cta_hour_l dl:not(:last-child) {
    margin-bottom: 7px;
}
.ft .box_cta_hour_r {
    width: 100px;
    height: 73px;
    margin-left: 0;
    font-size: 18px;
    line-height: 1.55;
}
.ft .box_cta_hour_l {
    top: 0;
}
.ft .box_cta_hour {
    align-items: center;
    padding: 0px;
    margin-bottom: 24px;
    max-width: 325px;
}
.ft .box_cta_tel {
    margin-bottom: 4px;
}
.ft_link_box {
    width: 600px;
    background: #dce6bb;
    border-radius: 20px;
    padding: 26px 40px 18px 38px;
}
.ft_link_box:nth-of-type(1) {
    margin-bottom: 20px;
}
.ft_link_tt {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    line-height: 1.4;
}
.ft_link_list li {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin-bottom: 10px;
}
.ft_link_list li a {
    position: relative;
    background: url("../images/icon_ft.png") no-repeat left 1px top 9px;
    padding-left: 20px;
    display: inline-block;
    line-height: 1.7;
}
.ft_link {
    margin-right: 80px;
    margin-top: 61px;
}
.ft_map {
    width: 916px;
    height: 725px;
}
.ft_map iframe {
    width: 100%;
    height: 100%;
}
/* BACK TO TOP */
.to_top {
    position: fixed;
    z-index: 9;
    width: 154px;
    height: 154px;
    bottom: 0px;
    right: 0;
    cursor: pointer;
    transition: all .2s;
    opacity: 0;
    visibility: hidden
}
.to_top.show {
    transform: scale(1);
    opacity: 1;
    visibility: visible
}
/* FIREFOX ONLY */
@-moz-document url-prefix() {
    nav {
        width: 100%;
    }
    nav .inner {
        width: 100%;
    }
    .h_center {
        flex-grow: 1;
        margin-left: 85px;
    }
    .sec06_box .wrap::after {
        right: -45px;
    }
}
/* Safari 10.1+ (which is the latest version of Safari at this time) */
@media not all and (min-resolution: 0.001dpcm) {}