@charset "UTF-8";
/* --------------------
 Front
-------------------- */
.front-header {
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 99;
}

@media (min-width: 768px) {
    .front-header {
        display: none;
    }
}

.front-header__burger {
    -webkit-appearance: none;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    display: block;
    height: 36px;
    left: 20px;
    margin: auto;
    padding: 0;
    position: absolute;
    right: auto;
    top: 15px;
    width: 26px;
    z-index: 100;
}

.front-header__burger__box {
    display: block;
    height: 18px;
    margin: 0 auto 8px;
    position: relative;
    width: 26px;
}

.front-header__burger__box__line {
    display: block;
    margin: -1px 0 0;
    top: 50%;
    transition: transform .075s cubic-bezier(.55, .055, .675, .19), background-color .3s ease;
}

.front-header__burger__box__line, .front-header__burger__box__line:before, .front-header__burger__box__line:after {
    background-color: #ffffff;
    height: 2px;
    position: absolute;
    width: 26px;
}

.front-header__burger__box__line:before, .front-header__burger__box__line:after {
    content: "";
    display: block;
}

.front-header__burger__box__line:before {
    top: -8px;
    transition: top .075s .12s ease, opacity .075s ease, background-color .3s ease;
}

.front-header__burger__box__line:after {
    bottom: -8px;
    transition: bottom .075s .12s ease, transform .075s cubic-bezier(.55, .055, .675, .19), background-color .3s ease;
}

.front-header__burger.is-active .front-header__burger__box__line {
    background-color: #595757;
    transform: rotate(45deg);
    transition: transform .075s cubic-bezier(.215, .61, .355, 1) .12s, background-color .3s ease;
}

.front-header__burger.is-active .front-header__burger__box__line:before {
    background-color: #595757;
    opacity: 0;
    top: 0;
    transition: top .075s ease, opacity .075s .12s ease, background-color .3s ease;
}

.front-header__burger.is-active .front-header__burger__box__line:after {
    background-color: #595757;
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom .075s ease, transform .075s .12s cubic-bezier(.215, .61, .355, 1), background-color .3s ease;
}

.front-header__burger__label {
    color: #ffffff;
    display: block;
    font-size: .8rem;
    line-height: 1;
    text-align: center;
    transition: color .25s ease;
}

.front-header__burger.is-active .front-header__burger__label {
    color: #595757;
}

.front-header__menu {
    background-color: rgba(255, 255, 255, .9);
    display: none;
    left: 0;
    padding: 60px 0 0;
    position: absolute;
    right: 0;
    top: 0;
}

.front-header__menu__item {
    border-bottom: 1px solid #595757;
}

.front-header__menu__item:first-child {
    border-top: 1px solid #595757;
}

.front-header__menu__item__link {
    display: block;
    font-size: 1.4rem;
    line-height: 1.2;
    padding: 15px 15px;
    text-align: center;
}

.front__hero {
    height: calc(100vh - 60px);
    position: relative;
}

.front__hero__slider {
    height: 100%;
}

.front__hero__slider .swiper {
    height: 100%;
}

.front__hero__slider .swiper-slide img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.front__hero__main {
    align-items: center;
    bottom: 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    left: 0;
    padding: 0 30px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.front__hero__main__title {
    font-size: 1.0rem;
    line-height: 1.2;
    margin: 0;
}

.front__menu {
    border-bottom: 2px solid #bfbfbf;
    display: none;
    height: 60px;
}

@media (min-width: 768px) {
    .front__menu {
        display: block;
    }
}

.front__menu-container {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    height: 100%;
    justify-content: center;
    margin: 0;
    padding: 0 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .front__menu-container {
        margin-left: auto;
        margin-right: auto;
        max-width: 1300px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

.front__menu__item {
    padding: 0 20px;
    position: relative;
    text-align: center;
    width: auto;
}

@media (min-width: 992px) {
    .front__menu__item {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.front__menu__item:after {
    background-color: #595757;
    bottom: 0;
    content: "";
    display: block;
    height: 20px;
    left: auto;
    margin: auto 0;
    position: absolute;
    right: 0;
    top: 3px;
    width: 1px;
}

.front__menu__item:first-child {
    padding-left: 0;
}

.front__menu__item:last-child {
    padding-right: 0;
}

.front__menu__item:last-child:after {
    display: none;
}

.front__menu__item__link {
    font-size: 1.4rem;
    font-weight: 700;
}

@media (min-width: 992px) {
    .front__menu__item__link {
        font-size: 1.6rem;
    }
}

@media (min-width: 1240px) {
    .front__menu__item__link {
        font-size: 1.8rem;
    }
}

.front__news {
    padding: 80px 0 40px;
}

@media (min-width: 768px) {
    .front__news {
        padding-bottom: 120px;
        padding-top: 100px;
    }
}

.front__news-container {
    align-items: stretch;
    display: flex;
    flex-flow: column nowrap;
    gap: 30px 30px;
    justify-content: flex-start;
    margin: 0;
    padding: 0 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .front__news-container {
        flex-direction: row;
        justify-content: space-between;
        margin-left: auto;
        margin-right: auto;
        max-width: 1120px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

.front__news__title {
    flex-grow: 0;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .front__news__title {
        padding-top: 20px;
    }
}

.front__news__title__en {
    font-size: 1.0rem;
    line-height: 1.2;
    margin: 0 0 10px;
}

.front__news__title__ja {
    color: #717071;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

.front__news__list {
    flex-grow: 1;
    flex-shrink: 1;
    margin: 0;
    width: auto;
}

@media (min-width: 768px) {
    .front__news__list {
        max-width: 870px;
    }
}

.front__news__list__item {
    border-bottom: 1px solid rgba(191, 191, 191, .5);
    padding: 1px 0;
}

.front__news__list__item__link {
    align-items: stretch;
    border-radius: 1px;
    display: flex;
    flex-flow: row nowrap;
    gap: 0 10px;
    justify-content: flex-start;
    padding: 10px 3px;
    transition: background-color .35s cubic-bezier(.645, .045, .355, 1);
}

@media (min-width: 768px) {
    .front__news__list__item__link {
        column-gap: 20px;
        padding-bottom: 18px;
        padding-top: 18px;
    }
}

.front__news__list__item__link__date {
    color: #000000;
    display: block;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: 1.2rem;
    padding: 0;
}

@media (min-width: 768px) {
    .front__news__list__item__link__date {
        font-size: 1.6rem;
        padding-right: 20px;
    }
}

.front__news__list__item__link__category {
    display: block;
    flex-grow: 0;
    flex-shrink: 0;
    text-align: center;
}

.front__news__list__item__link__category span {
    background-color: #7f7f7f;
    border-radius: 3px;
    color: #ffffff;
    display: block;
    font-size: 1.0rem;
    line-height: 1.1;
    overflow: hidden;
    padding: 5px 5px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 80px;
}

@media (min-width: 768px) {
    .front__news__list__item__link__category span {
        font-size: 1.4rem;
        width: 90px;
    }
}

.front__news__list__item__link__title {
    color: #000000;
    display: block;
    flex-grow: 1;
    flex-shrink: 1;
    font-size: 1.2rem;
    padding: 0;
    word-break: break-all;
}

@media (min-width: 768px) {
    .front__news__list__item__link__title {
        font-size: 1.6rem;
        padding-top: 1px;
    }
}

/*.front__news__list__item__link:focus {
    background-color: rgba(89, 87, 87, .1);
}

@media (hover: hover) and (pointer: fine) {
    .front__news__list__item__link:hover {
        background-color: rgba(89, 87, 87, .1);
    }
}*/

.front__youtube {
    padding: 0 0 40px;
}

@media (min-width: 768px) {
    .front__youtube {
        padding-bottom: 120px;
    }
}

.front__youtube-container {
    margin: 0;
    padding: 0 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .front__youtube-container {
        margin-left: auto;
        margin-right: auto;
        max-width: 1080px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

.front__youtube__item {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.front__youtube__item iframe {
    width: 100%;
    height: 100%;
}

.front__01__title {
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .front__01__title {
        margin-bottom: 60px;
    }
}

.front__01__title__en {
    margin: 0 0 10px;
}

.front__01__title__jp {
    color: #000000;
    font-size: 1.4rem;
}

.front__01 {
    background-color: #eef0ed;
    padding: 0 0 40px;
}

@media (min-width: 768px) {
    .front__01 {
        padding-bottom: 0;
    }
}

.front__01__fst {
    margin: 0;
    overflow: hidden;
    padding: 0 0 40px;
    position: relative;
}

.front__01__fst:before {
    background-color: #ffffff;
    bottom: auto;
    content: "";
    display: none;
    height: 170px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}

@media (min-width: 768px) {
    .front__01__fst:before {
        display: block;
    }
}

.front__01__fst-container {
    margin: 0;
    padding: 0 20px;
    position: relative;
    width: 100%;
    z-index: 1;
}

@media (min-width: 768px) {
    .front__01__fst-container {
        align-items: stretch;
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        margin-left: auto;
        margin-right: auto;
        max-width: 1300px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

.front__01__fst__kw {
    bottom: auto;
    font-size: 1.0rem;
    left: 15px;
    line-height: 1.2;
    margin: 0;
    position: absolute;
    right: auto;
    text-align: left;
    top: 15px;
    width: 60px;
    z-index: 2;
}

@media (min-width: 768px) {
    .front__01__fst__kw {
        left: 53.22581%;
        top: 0;
        transform: translateX(-30px);
        width: 120px;
    }
}

.front__01__fst__photo {
    margin: 0 -20px;
}

@media (min-width: 768px) {
    .front__01__fst__photo {
        margin-left: 0;
        margin-right: 0;
        width: 53.22581%;
    }
}

@media (max-width: 767px) {
    .front__01__fst__photo img {
        width: 100%;
    }
}

.front__01__fst__main {
    position: relative;
}

@media (min-width: 768px) {
    .front__01__fst__main {
        width: 46.77419%;
    }
}

.front__01__fst__main:after {
    background-image: url(../images/front/front-main-01-number-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 120px 120px;
    bottom: auto;
    content: "";
    display: block;
    height: 120px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: -130px;
    width: 120px;
    z-index: 0;
}

@media (min-width: 768px) {
    .front__01__fst__main:after {
        background-image: url(../images/front/front-main-01-number-green.svg);
        top: 0;
    }
}

@media (min-width: 1240px) {
    .front__01__fst__main:after {
        background-size: 160px 160px;
        height: 160px;
        top: 200px;
        width: 160px;
    }
}

.front__01__fst__main-inner {
    margin: 0;
    padding: 30px 0 0;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .front__01__fst__main-inner {
        margin-right: -30px;
        padding-top: 135px;
        transform: translateX(-30px);
    }
}

.front__01__fst__main__title {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 30px;
}

.front__01__fst__main__content {
    margin: 0 0 40px;
}

.front__01__fst__main__content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 0 .75em;
}

@media (min-width: 768px) {
    .front__01__fst__main__content p {
        font-size: 1.6rem;
        line-height: 2.6;
        margin-bottom: 0;
    }
}

.front__01__fst__main__content p:last-child {
    margin-bottom: 0;
}

.front__01__fst__main__action__button {
    -webkit-appearance: none;
    background: none;
    background-color: #37552b;
    border: 1px solid #ffffff;
    border-radius: 0;
    color: #ffffff;
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 auto;
    max-width: 340px;
    padding: 10px 0;
    transition: background-color .35s cubic-bezier(.645, .045, .355, 1);
    width: 100%;
}

@media (min-width: 768px) {
    .front__01__fst__main__action__button {
        font-size: 1.8rem;
        margin-left: 0;
        margin-right: 0;
    }
}

.front__01__fst__main__action__button__text {
    padding: 0 32px 0 0;
    position: relative;
}

.front__01__fst__main__action__button__text:after {
    background-image: url(../images/icons/icon-double-angle-bottom-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 22px 18px;
    content: "";
    display: block;
    height: 18px;
    position: absolute;
    right: 0;
    top: 5px;
    transition: transform .35s cubic-bezier(.645, .045, .355, 1);
    width: 22px;
}

.front__01__fst__main__action__button:hover {
    color: #ffffff;
}

.front__01__fst__main__action__button.is-active {
    background-color: rgba(55, 85, 43, .7);
    color: #ffffff;
}

.front__01__fst__main__action__button.is-active .front__01__fst__main__action__button__text:after {
    transform: rotate(-180deg);
}

.front__01__fst__main__action__button:focus {
    background-color: rgba(55, 85, 43, .7);
    color: #ffffff;
}

@media (hover: hover) and (pointer: fine) {
    .front__01__fst__main__action__button:hover {
        background-color: rgba(55, 85, 43, .7);
        color: #ffffff;
    }
}

.front__01__sec {
    display: none;
    padding: 0 0 40px;
}

@media (min-width: 768px) {
    .front__01__sec {
        padding-bottom: 80px;
        padding-top: 40px;
    }
}

.front__01__sec-container {
    margin: 0;
    padding: 0 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .front__01__sec-container {
        align-items: stretch;
        display: flex;
        flex-flow: row-reverse nowrap;
        justify-content: space-between;
        margin-left: auto;
        margin-right: auto;
        max-width: 1300px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 768px) {
    .front__01__sec__main {
        width: 50%;
    }
}

.front__01__sec__main__title {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 20px;
}

.front__01__sec__main__content p {
    font-size: 1.2rem;
    line-height: 2.6;
    margin: 0 0 1.5em;
}

@media (min-width: 768px) {
    .front__01__sec__main__content p {
        font-size: 1.6rem;
    }
}

.front__01__sec__main__content p:last-child {
    margin-bottom: 0;
}

.front__01__sec__photo {
    margin: 0 0 30px;
    padding: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .front__01__sec__photo {
        margin-bottom: 0;
        padding-left: 30px;
        text-align: right;
        width: 50%;
    }
}

@media (max-width: 767px) {
    .front__01__sec__photo img {
        width: 100%;
    }
}

.front__02 {
    padding: 0 0 0;
    position: relative;
}

@media (min-width: 768px) {
    .front__02 {
        padding-top: 140px;
    }
}

.front__02:after {
    background-image: url(../images/front/front-02-separator.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    display: block;
    height: 80px;
    margin: 40px 0 0;
    width: 100%;
}

@media (min-width: 768px) {
    .front__02:after {
        height: 130px;
        margin-top: 60px;
    }
}

@media (min-width: 992px) {
    .front__02:after {
        height: 260px;
    }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .front__02:after {
        background-image: url(../images/front/front-02-separator@2x.jpg);
    }
}

.front__02__fst {
    margin: 0;
    overflow: hidden;
    padding: 0 0 40px;
    position: relative;
}

.front__02__fst-container {
    margin: 0;
    padding: 0 20px;
    position: relative;
    width: 100%;
    z-index: 1;
}

@media (min-width: 768px) {
    .front__02__fst-container {
        align-items: stretch;
        display: flex;
        flex-flow: row-reverse nowrap;
        gap: 0 40px;
        justify-content: space-between;
        margin-left: auto;
        margin-right: auto;
        max-width: 1300px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 992px) {
    .front__02__fst-container {
        column-gap: 80px;
    }
}

.front__02__fst__kw {
    font-size: 1.0rem;
    left: 15px;
    line-height: 1.2;
    margin: 0;
    position: absolute;
    top: 20px;
    width: 60px;
    z-index: 2;
}

@media (min-width: 768px) {
    .front__02__fst__kw {
        left: 30px;
        top: 0;
        width: auto;
    }
}

.front__02__fst__photo {
    margin: 0 -20px;
}

@media (min-width: 768px) {
    .front__02__fst__photo {
        align-items: flex-start;
        display: flex;
        flex-flow: row nowrap;
        justify-content: flex-end;
        margin-left: 0;
        margin-right: 0;
        text-align: right;
        width: calc(50% - 20px);
    }
}

@media (min-width: 992px) {
    .front__02__fst__photo {
        width: calc(50% - 40px);
    }
}

.front__02__fst__photo-inner {
    position: relative;
}

.front__02__fst__photo-inner:after {
    background-color: #eef0ed;
    bottom: 0;
    content: "";
    display: none;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(50%, 40%) scale(1, .8);
    z-index: 0;
}

@media (min-width: 768px) {
    .front__02__fst__photo-inner:after {
        display: block;
    }
}

.front__02__fst__photo-inner img {
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .front__02__fst__photo-inner img {
        width: 100%;
    }
}

.front__02__fst__main {
    padding: 30px 0 0;
    position: relative;
}

@media (min-width: 768px) {
    .front__02__fst__main {
        padding-top: 0;
        width: calc(50% - 20px);
    }
}

@media (min-width: 992px) {
    .front__02__fst__main {
        width: calc(50% - 40px);
    }
}

.front__02__fst__main:after {
    background-image: url(../images/front/front-main-02-number-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 144.3038px 120px;
    bottom: auto;
    content: "";
    display: block;
    height: 120px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: -130px;
    width: 145px;
    z-index: 2;
}

@media (min-width: 768px) {
    .front__02__fst__main:after {
        background-image: url(../images/front/front-main-02-number-green.svg);
        right: 0;
        top: 0;
    }
}

@media (min-width: 992px) {
    .front__02__fst__main:after {
        right: -40px;
    }
}

@media (min-width: 1240px) {
    .front__02__fst__main:after {
        background-size: 190px 158px;
        height: 158px;
        top: 200px;
        width: 190px;
    }
}

.front__02__fst__main-inner {
    padding: 0;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .front__02__fst__main-inner {
        padding-top: 150px;
    }
}

.front__02__fst__main__title {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 30px;
}

.front__02__fst__main__content {
    margin: 0 0 40px;
}

.front__02__fst__main__content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 0 .75em;
}

@media (min-width: 768px) {
    .front__02__fst__main__content p {
        font-size: 1.6rem;
        line-height: 2.6;
        margin-bottom: 0;
    }
}

.front__02__fst__main__content p:last-child {
    margin-bottom: 0;
}

.front__02__fst__main__action__button {
    -webkit-appearance: none;
    background: none;
    background-color: #37552b;
    border: 1px solid #ffffff;
    border-radius: 0;
    color: #ffffff;
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 auto;
    max-width: 340px;
    padding: 10px 0;
    transition: background-color .35s cubic-bezier(.645, .045, .355, 1);
    width: 100%;
}

@media (min-width: 768px) {
    .front__02__fst__main__action__button {
        font-size: 1.8rem;
        margin-left: 0;
        margin-right: 0;
    }
}

.front__02__fst__main__action__button__text {
    padding: 0 32px 0 0;
    position: relative;
}

.front__02__fst__main__action__button__text:after {
    background-image: url(../images/icons/icon-double-angle-bottom-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 22px 18px;
    content: "";
    display: block;
    height: 18px;
    position: absolute;
    right: 0;
    top: 5px;
    transition: transform .35s cubic-bezier(.645, .045, .355, 1);
    width: 22px;
}

.front__02__fst__main__action__button:hover {
    color: #ffffff;
}

.front__02__fst__main__action__button.is-active {
    background-color: rgba(55, 85, 43, .7);
    color: #ffffff;
}

.front__02__fst__main__action__button.is-active .front__02__fst__main__action__button__text:after {
    transform: rotate(-180deg);
}

.front__02__fst__main__action__button:focus {
    background-color: rgba(55, 85, 43, .7);
    color: #ffffff;
}

@media (hover: hover) and (pointer: fine) {
    .front__02__fst__main__action__button:hover {
        background-color: rgba(55, 85, 43, .7);
        color: #ffffff;
    }
}

.front__02__sec {
    display: none;
    padding: 40px 0;
}

@media (min-width: 768px) {
    .front__02__sec {
        padding-bottom: 80px;
    }
}

.front__02__sec-container {
    margin: 0;
    padding: 0 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .front__02__sec-container {
        align-items: stretch;
        display: flex;
        flex-flow: row nowrap;
        gap: 0 40px;
        justify-content: space-between;
        margin-left: auto;
        margin-right: auto;
        max-width: 1300px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 992px) {
    .front__02__sec-container {
        row-gap: 80px;
    }
}

@media (min-width: 768px) {
    .front__02__sec__main {
        width: calc(50% - 20px);
    }
}

@media (min-width: 992px) {
    .front__02__sec__main {
        width: calc(50% - 40px);
    }
}

.front__02__sec__main__title {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 20px;
}

.front__02__sec__main__content p {
    font-size: 1.2rem;
    line-height: 2.6;
    margin: 0 0 1.5em;
}

@media (min-width: 768px) {
    .front__02__sec__main__content p {
        font-size: 1.6rem;
    }
}

.front__02__sec__main__content p:last-child {
    margin-bottom: 0;
}

.front__02__sec__photo {
    margin: 0 0 30px;
}

@media (min-width: 768px) {
    .front__02__sec__photo {
        margin-bottom: 0;
        width: calc(50% - 20px);
    }
}

@media (min-width: 992px) {
    .front__02__sec__photo {
        width: calc(50% - 40px);
    }
}

@media (max-width: 767px) {
    .front__02__sec__photo img {
        width: 100%;
    }
}

.front__03 {
    margin: 0 0 40px;
    padding: 80px 0 0;
}

@media (min-width: 768px) {
    .front__03 {
        margin-bottom: 100px;
        padding-top: 140px;
    }
}

.front__03__fst {
    margin: 0;
    padding: 0 0 40px;
    position: relative;
}

@media (min-width: 992px) {
    .front__03__fst {
        padding-bottom: 80px;
    }
}

.front__03__fst-container {
    margin: 0;
    padding: 0 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .front__03__fst-container {
        align-items: stretch;
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        margin-left: auto;
        margin-right: auto;
        max-width: 1300px;
        padding-left: 30px;
        padding-right: 30px;
        position: relative;
    }
}

.front__03__fst__kw {
    font-size: 1.0rem;
    left: 15px;
    line-height: 1.2;
    margin: 0;
    position: absolute;
    top: 15px;
    width: 60px;
    z-index: 2;
}

@media (min-width: 768px) {
    .front__03__fst__kw {
        left: 53.22581%;
        top: 0;
        width: auto;
    }
}

.front__03__fst__photo {
    margin: 0 -20px;
    padding: 0;
    position: relative;
}

@media (min-width: 768px) {
    .front__03__fst__photo {
        align-items: flex-start;
        display: flex;
        flex-flow: row nowrap;
        justify-content: flex-start;
        margin-left: 0;
        margin-right: 0;
        padding-right: 30px;
        width: 53.22581%;
    }
}

.front__03__fst__photo-inner {
    position: relative;
}

.front__03__fst__photo-inner:after {
    background-color: #b7b69b;
    bottom: 0;
    content: "";
    display: none;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(-50%, 55%) scale(1, .6);
    z-index: 0;
}

@media (min-width: 768px) {
    .front__03__fst__photo-inner:after {
        display: block;
    }
}

.front__03__fst__photo-inner img {
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .front__03__fst__photo-inner img {
        width: 100%;
    }
}

.front__03__fst__main {
    padding: 30px 0 0;
    position: relative;
}

@media (min-width: 768px) {
    .front__03__fst__main {
        padding-top: 0;
        width: 46.77419%;
    }
}

.front__03__fst__main:after {
    background-image: url(../images/front/front-main-03-number-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 142.78481px 120px;
    bottom: auto;
    content: "";
    display: block;
    height: 120px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: -130px;
    width: 143px;
    z-index: 2;
}

@media (min-width: 768px) {
    .front__03__fst__main:after {
        background-image: url(../images/front/front-main-03-number-green.svg);
        top: 0;
    }
}

@media (min-width: 1240px) {
    .front__03__fst__main:after {
        background-size: 188px 158px;
        height: 158px;
        top: 220px;
        width: 188px;
    }
}

.front__03__fst__main-inner {
    padding: 0;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .front__03__fst__main-inner {
        padding-top: 140px;
    }
}

.front__03__fst__main__title {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 30px;
}

.front__03__fst__main__content {
    margin: 0 0 40px;
}

.front__03__fst__main__content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 0 .75em;
}

@media (min-width: 768px) {
    .front__03__fst__main__content p {
        font-size: 1.6rem;
        line-height: 2.6;
        margin-bottom: 0;
    }
}

.front__03__fst__main__content p:last-child {
    margin-bottom: 0;
}

.front__03__fst__main__action__button {
    -webkit-appearance: none;
    background: none;
    background-color: #37552b;
    border: 1px solid #ffffff;
    border-radius: 0;
    color: #ffffff;
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 auto;
    max-width: 340px;
    padding: 10px 0;
    transition: background-color .35s cubic-bezier(.645, .045, .355, 1), color .35s cubic-bezier(.645, .045, .355, 1);
    width: 100%;
}

@media (min-width: 768px) {
    .front__03__fst__main__action__button {
        font-size: 1.8rem;
        margin-left: 0;
        margin-right: 0;
    }
}

.front__03__fst__main__action__button__text {
    padding: 0 32px 0 0;
    position: relative;
}

.front__03__fst__main__action__button__text:after {
    background-image: url(../images/icons/icon-double-angle-bottom-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 22px 18px;
    content: "";
    display: block;
    height: 18px;
    position: absolute;
    right: 0;
    top: 5px;
    transition: transform .35s cubic-bezier(.645, .045, .355, 1);
    width: 22px;
}

.front__03__fst__main__action__button:hover {
    color: #ffffff;
}

.front__03__fst__main__action__button.is-active {
    background-color: rgba(55, 85, 43, .7);
    color: #ffffff;
}

.front__03__fst__main__action__button.is-active .front__03__fst__main__action__button__text:after {
    transform: rotate(-180deg);
}

.front__03__fst__main__action__button:focus {
    background-color: rgba(55, 85, 43, .7);
    color: #ffffff;
}

@media (hover: hover) and (pointer: fine) {
    .front__03__fst__main__action__button:hover {
        background-color: rgba(55, 85, 43, .7);
        color: #ffffff;
    }
}

.front__03__main {
    display: none;
    margin: 0 auto;
    max-width: 1300px;
    padding: 20px 20px 40px;
}

@media (min-width: 768px) {
    .front__03__main {
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 40px;
    }
}

@media (min-width: 992px) {
    .front__03__main {
        padding-top: 80px;
    }
}

.front__03__main-container {
    background-color: #e3e2de;
    -webkit-clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
            clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
    padding: 30px 20px;
}

@media (min-width: 768px) {
    .front__03__main-container {
        -webkit-clip-path: polygon(100px 0, 100% 0, 100% calc(100% - 90px), calc(100% - 100px) 100%, 0 100%, 0 90px);
                clip-path: polygon(100px 0, 100% 0, 100% calc(100% - 90px), calc(100% - 100px) 100%, 0 100%, 0 90px);
        padding: 40px 30px;
    }
}

@media (min-width: 992px) {
    .front__03__main-container {
        padding-top: 60px;
    }
}

.front__03__main-container-inner {
    margin: 0 auto;
    max-width: 1120px;
}

.front__03__main__head {
    margin: 0 0 30px;
}

.front__03__main__head__subtitle {
    color: #37552b;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .front__03__main__head__subtitle {
        font-size: 2.8rem;
    }
}

.front__03__main__head__title {
    color: #000000;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .front__03__main__head__title {
        font-size: 1.8rem;
    }
}

.front__03__main__head__title span {
    display: block;
    margin: 0 0 15px;
}

.front__03__main__head__title span:last-child {
    margin-bottom: 0;
}

.front__03__main__head__note {
    font-size: 1.2rem;
    line-height: 1.2;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .front__03__main__head__note {
        font-size: 1.4rem;
    }
}

.front__03__main__gallery {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    gap: 0 8px;
    justify-content: space-between;
    margin: 0 0 40px;
}

@media (min-width: 768px) {
    .front__03__main__gallery {
        column-gap: 20px;
    }
}

.front__03__main__gallery__item {
    width: auto;
}

.front__03__main__item {
    margin: 0 0 20px;
}

.front__03__main__item__title {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px;
}

.front__03__main__item__content {
    margin: 0 0 10px;
}

.front__03__main__item__content:last-child {
    margin-bottom: 0;
}

.front__03__main__item__content p {
    font-size: 1.2rem;
    line-height: 2.2;
    margin: 0 0 1.5em;
}

@media (min-width: 768px) {
    .front__03__main__item__content p {
        font-size: 1.6rem;
    }
}

.front__03__main__item__content p:last-child {
    margin-bottom: 0;
}

.front__03__main__item__note {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
}

.front__03__main__item__note:last-child {
    margin-bottom: 0;
}

.front__03__main__item__note p {
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 0 0 1em;
}

@media (min-width: 768px) {
    .front__03__main__item__note p {
        font-size: 1.4rem;
    }
}

.front__03__main__item__note p:last-child {
    margin-bottom: 0;
}

.front__03__main__item__note > li {
    font-size: 1.2rem;
    margin: 0 0 1em;
    padding: 0 0 0 1.75em;
    position: relative;
}

@media (min-width: 768px) {
    .front__03__main__item__note > li {
        font-size: 1.6rem;
    }
}

.front__03__main__item__note > li:before {
    content: "・";
    left: 0;
    position: absolute;
    top: 0;
}

.front__03__main__item__note > li:last-child {
    margin-bottom: 0;
}

.front__03__main__action {
    margin: 20px 0 0;
}

.front__03__main__action__button {
    background-color: #5e6b59;
    color: #ffffff;
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 auto 10px;
    max-width: 340px;
    padding: 10px 0;
    text-align: center;
    transition: color .35s cubic-bezier(.645, .045, .355, 1), background-color .35s cubic-bezier(.645, .045, .355, 1);
    width: 100%;
}

@media (min-width: 768px) {
    .front__03__main__action__button {
        font-size: 1.8rem;
        padding-bottom: 15px;
        padding-top: 15px;
    }
}

.front__03__main__action__button__text {
    padding: /*0 32px 0 0*/0;
    position: relative;
}

/*.front__03__main__action__button__text:after {
    background-image: url(../images/icons/icon-double-angle-right-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    content: "";
    display: block;
    height: 18px;
    position: absolute;
    right: 0;
    top: 5px;
    width: 18px;
}

.front__03__main__action__button:hover {
    color: #ffffff;
}

.front__03__main__action__button:focus {
    background-color: rgba(94, 107, 89, .5);
    color: #ffffff;
}

@media (hover: hover) and (pointer: fine) {
    .front__03__main__action__button:hover {
        background-color: rgba(94, 107, 89, .5);
        color: #ffffff;
    }
}*/

.front__03__main__action__note p {
    color: #bc591e;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
}

@media (min-width: 768px) {
    .front__03__main__action__note p {
        font-size: 2.0rem;
    }
}

.front__03__main__main {
    width: 50%;
}

.front__03__main__main__title {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 20px;
}

.front__03__main__main__content p {
    font-size: 1.2rem;
    line-height: 2.6;
    margin: 0 0 1.5em;
}

.front__03__main__main__content p:last-child {
    margin-bottom: 0;
}

.front__03__main__photo {
    padding: 0 0 0 30px;
    text-align: right;
    width: 50%;
}

.front__04 {
    background-color: #5e6b59;
    margin: 0 0 80px;
    padding: 0;
}

@media (min-width: 768px) {
    .front__04 {
        margin-bottom: 140px;
    }
}

.front__04__fst {
    margin: 0;
    padding: 0 0 40px;
    position: relative;
}

@media (min-width: 992px) {
    .front__04__fst {
        padding-bottom: 80px;
    }
}

.front__04__fst:before {
    background-color: #ffffff;
    bottom: auto;
    content: "";
    display: none;
    height: 125px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}

@media (min-width: 768px) {
    .front__04__fst:before {
        display: block;
    }
}

.front__04__fst-container {
    margin: 0;
    padding: 0 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .front__04__fst-container {
        align-items: stretch;
        display: flex;
        flex-flow: row-reverse nowrap;
        gap: 0;
        justify-content: space-between;
        margin-left: auto;
        margin-right: auto;
        max-width: 1300px;
        padding-left: 30px;
        padding-right: 30px;
        position: relative;
    }
}

.front__04__fst__kw {
    font-size: 1.0rem;
    left: 15px;
    line-height: 1.2;
    margin: 0;
    position: absolute;
    right: auto;
    top: 15px;
    width: 60px;
    z-index: 2;
}

@media (min-width: 768px) {
    .front__04__fst__kw {
        left: calc(50% - 385px);
        top: 0;
        width: auto;
    }
}

.front__04__fst__photo {
    margin: 0 -20px;
}

@media (min-width: 768px) {
    .front__04__fst__photo {
        align-items: flex-start;
        display: flex;
        flex-flow: row nowrap;
        justify-content: flex-end;
        margin-left: 0;
        margin-right: 0;
        text-align: right;
        width: calc(50% - 40px);
    }
}

@media (max-width: 767px) {
    .front__04__fst__photo img {
        width: 100%;
    }
}

.front__04__fst__main {
    padding: 30px 0 0;
    position: relative;
}

@media (min-width: 768px) {
    .front__04__fst__main {
        padding-top: 0;
        width: 50%;
    }
}

.front__04__fst__main:after {
    background-image: url(../images/front/front-main-04-number-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 142.65823px 115px;
    bottom: auto;
    content: "";
    display: block;
    height: 115px;
    left: auto;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: -130px;
    width: 143px;
    z-index: 0;
}

@media (min-width: 768px) {
    .front__04__fst__main:after {
        background-image: url(../images/front/front-main-04-number-green.svg);
        top: 0;
    }
}

@media (min-width: 1240px) {
    .front__04__fst__main:after {
        background-size: 196px 158px;
        height: 158px;
        left: 0;
        right: auto;
        top: 200px;
        width: 196px;
    }
}

.front__04__fst__main-inner {
    margin: 0;
    padding: 0 0 90px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .front__04__fst__main-inner {
        margin-left: auto;
        max-width: 385px;
        padding-bottom: 70px;
        padding-top: 140px;
    }
}

.front__04__fst__main__title {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 20px;
}

.front__04__fst__main__content {
    margin: 0;
}

.front__04__fst__main__content p {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 0 .75em;
}

@media (min-width: 768px) {
    .front__04__fst__main__content p {
        font-size: 1.6rem;
        line-height: 2.6;
        margin-bottom: 0;
    }
}

.front__04__fst__main__content p:last-child {
    margin-bottom: 0;
}

.front__04__fst__main__action {
    align-items: center;
    bottom: 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    left: 0;
    position: absolute;
    right: 0;
}

@media (min-width: 768px) {
    .front__04__fst__main__action {
        display: block;
        right: auto;
    }
}

.front__04__fst__main__action__button {
    -webkit-appearance: none;
    background: none;
    background-color: #ffffff;
    border: 1px solid #5e6b59;
    border-radius: 0;
    color: #5e6b59;
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    padding: 10px 15px;
    text-align: center;
    transition: background-color .35s cubic-bezier(.645, .045, .355, 1);
}

@media (min-width: 768px) {
    .front__04__fst__main__action__button {
        font-size: 1.8rem;
        white-space: nowrap;
        width: 100%;
    }
}

.front__04__fst__main__action__button__text {
    display: block;
    padding: 0 32px 0 0;
    position: relative;
}

.front__04__fst__main__action__button__text:after {
    background-image: url(../images/icons/icon-double-angle-bottom-green.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 22px 18px;
    content: "";
    display: block;
    height: 18px;
    position: absolute;
    right: 0;
    top: 15px;
    transition: transform .35s cubic-bezier(.645, .045, .355, 1);
    width: 22px;
}

@media (min-width: 768px) {
    .front__04__fst__main__action__button__text:after {
        top: 5px;
    }
}

.front__04__fst__main__action__button:hover {
    color: #5e6b59;
}

.front__04__fst__main__action__button.is-active {
    background-color: rgba(255, 255, 255, .7);
    color: #5e6b59;
}

.front__04__fst__main__action__button.is-active .front__04__fst__main__action__button__text:after {
    transform: rotate(-180deg);
}

.front__04__fst__main__action__button:focus {
    background-color: rgba(255, 255, 255, .7);
    color: #5e6b59;
}

@media (hover: hover) and (pointer: fine) {
    .front__04__fst__main__action__button:hover {
        background-color: rgba(255, 255, 255, .7);
        color: #5e6b59;
    }
}

.front__04__main {
    display: none;
    margin: 0 auto;
    max-width: 1300px;
    padding: 20px 20px 80px;
}

@media (min-width: 768px) {
    .front__04__main {
        padding: 40px 30px 120px;
    }
}

@media (min-width: 992px) {
    .front__04__main {
        padding-bottom: 270px;
        padding-top: 50px;
    }
}

.front__04__main-container {
    background-color: #e3e2de;
    -webkit-clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
            clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
    padding: 30px 20px;
}

@media (min-width: 768px) {
    .front__04__main-container {
        -webkit-clip-path: polygon(100px 0, 100% 0, 100% calc(100% - 90px), calc(100% - 100px) 100%, 0 100%, 0 90px);
                clip-path: polygon(100px 0, 100% 0, 100% calc(100% - 90px), calc(100% - 100px) 100%, 0 100%, 0 90px);
        padding: 40px 30px;
    }
}

@media (min-width: 992px) {
    .front__04__main-container {
        padding-top: 60px;
    }
}

.front__04__main-container-inner {
    margin: 0 auto;
    max-width: 1120px;
}

.front__04__main__head {
    margin: 0 0 30px;
}

.front__04__main__head__subtitle {
    color: #37552b;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .front__04__main__head__subtitle {
        font-size: 2.8rem;
    }
}

.front__04__main__head__title {
    color: #000000;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .front__04__main__head__title {
        font-size: 1.8rem;
    }
}

.front__04__main__head__title span {
    display: block;
    margin: 0 0 15px;
}

.front__04__main__head__title span:last-child {
    margin-bottom: 0;
}

.front__04__main__head__note {
    font-size: 1.2rem;
    line-height: 1.2;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .front__04__main__head__note {
        font-size: 1.4rem;
    }
}

.front__04__main__gallery {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    gap: 0 8px;
    justify-content: space-between;
    margin: 0 0 40px;
}

@media (min-width: 768px) {
    .front__04__main__gallery {
        column-gap: 20px;
    }
}

.front__04__main__gallery__item {
    width: auto;
}

.front__04__main__item {
    margin: 0 0 20px;
}

.front__04__main__item__title {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px;
}

.front__04__main__item__content {
    margin: 0 0 10px;
}

.front__04__main__item__content:last-child {
    margin-bottom: 0;
}

.front__04__main__item__content p {
    font-size: 1.2rem;
    line-height: 2.2;
    margin: 0 0 1.5em;
}

@media (min-width: 768px) {
    .front__04__main__item__content p {
        font-size: 1.6rem;
    }
}

.front__04__main__item__content p:last-child {
    margin-bottom: 0;
}

.front__04__main__item__note {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
}

.front__04__main__item__note:last-child {
    margin-bottom: 0;
}

.front__04__main__item__note p {
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 0 0 1em;
}

@media (min-width: 768px) {
    .front__04__main__item__note p {
        font-size: 1.4rem;
    }
}

.front__04__main__item__note p:last-child {
    margin-bottom: 0;
}

.front__04__main__item__note > li {
    font-size: 1.2rem;
    margin: 0 0 1em;
    padding: 0 0 0 1.75em;
    position: relative;
}

@media (min-width: 768px) {
    .front__04__main__item__note > li {
        font-size: 1.6rem;
    }
}

.front__04__main__item__note > li:before {
    content: "・";
    left: 0;
    position: absolute;
    top: 0;
}

.front__04__main__item__note > li:last-child {
    margin-bottom: 0;
}

.front__04__main__action {
    margin: 40px 0 0;
}

.front__04__main__action__button {
    background-color: #5e6b59;
    color: #ffffff;
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 auto 10px;
    max-width: 340px;
    padding: 10px 0;
    text-align: center;
    transition: color .35s cubic-bezier(.645, .045, .355, 1), background-color .35s cubic-bezier(.645, .045, .355, 1);
    width: 100%;
}

@media (min-width: 768px) {
    .front__04__main__action__button {
        font-size: 1.8rem;
        padding-bottom: 15px;
        padding-top: 15px;
    }
}

.front__04__main__action__button__text {
    padding: 0 32px 0 0;
    position: relative;
}

.front__04__main__action__button__text:after {
    background-image: url(../images/icons/icon-double-angle-right-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    content: "";
    display: block;
    height: 18px;
    position: absolute;
    right: 0;
    top: 5px;
    width: 18px;
}

.front__04__main__action__button:hover {
    color: #ffffff;
}

.front__04__main__action__button:focus {
    background-color: rgba(94, 107, 89, .5);
    color: #ffffff;
}

@media (hover: hover) and (pointer: fine) {
    .front__04__main__action__button:hover {
        background-color: rgba(94, 107, 89, .5);
        color: #ffffff;
    }
}

.front__04__main__action__note p {
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .front__04__main__action__note p {
        font-size: 1.4rem;
    }
}

.front__04__main__main {
    width: 50%;
}

.front__04__main__main__title {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 20px;
}

.front__04__main__main__content p {
    font-size: 1.2rem;
    line-height: 2.6;
    margin: 0 0 1.5em;
}

.front__04__main__main__content p:last-child {
    margin-bottom: 0;
}

.front__04__main__photo {
    padding: 0 0 0 30px;
    text-align: right;
    width: 50%;
}

.front__05 {
    padding: 15px 0 40px;
}

@media (min-width: 768px) {
    .front__05 {
        padding-bottom: 120px;
    }
}

.front__05__title {
    text-align: center;
}

.front__05__title__en {
    margin: 0 0 10px;
}

.front__05__title__jp {
    color: #000000;
    font-size: 1.4rem;
}

.front__05__main {
    background-color: #7c8e68;
}

.front__05__main-container {
    margin: 0;
    padding: 30px 20px;
}

@media (min-width: 768px) {
    .front__05__main-container {
        margin-left: auto;
        margin-right: auto;
        max-width: 1120px;
        padding: 40px 30px 50px;
    }
}

.front__05__main__item {
    margin: 0 0 40px;
}

@media (min-width: 768px) {
    .front__05__main__item {
        align-items: center;
        display: flex;
        gap: 0 45px;
        margin-bottom: 60px;
    }
}

.front__05__main__item:last-child {
    margin-bottom: 0;
}


.front__05__main__item__fig {
    margin: 0 auto 20px;
    width: 160px;
}

@media (min-width: 768px) {
    .front__05__main__item__fig {
        flex-shrink: 0;
        margin-bottom: 0;
    }
}

.front__05__main__item__fig img {
    height: auto;
    width: 100%;
}

.front__05__main__item__desc {
    color: #ffffff;
}

.front__05__main__item__desc__title {
    font-size: 1.6rem;
    line-height: 1.8;
    margin: 0 0 10px;
}

@media (min-width: 768px) {
    .front__05__main__item__desc__title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
}

.front__05__main__item__desc p {
    font-size: 1.2rem;
    line-height: 2.2;
    margin: 0 0 20px;
}

@media (min-width: 768px) {
    .front__05__main__item__desc p {
        font-size: 1.4rem;
    }
}

.front__05__main__item__action {
    text-align: center;
}

@media (min-width: 768px) {
    .front__05__main__item__action {
        display: flex;
        gap: 0 40px;
    }
}

.front__05__main__item__action__button {
    margin: 15px 0;
}

@media (min-width: 768px) {
    .front__05__main__item__action__button {
        margin: 0;
    }
}

.front__05__main__item__action__button__link {
    display: block;
    background-color: #ffffff;
    color: #7c8e68;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 5px 0;
    transition: background-color .35s cubic-bezier(.645, .045, .355, 1);
    width: 100%;
}

@media (min-width: 768px) {
    .front__05__main__item__action__button__link {
        width: 270px;
    }
}

.front__05__main__item__action__button__link:hover,.front__05__main__item__action__button__link:focus {
    background-color: rgba(255, 255, 255, .7);
    color: #7c8e68;
}

.front__contact {
    background-image: url(../images/front/front-contact-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
}

@media (min-width: 768px) {
    .front__contact {
        padding-bottom: 150px;
        padding-top: 150px;
    }
}

.front__contact-container {
    margin: 0;
    padding: 0 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .front__contact-container {
        margin-left: auto;
        margin-right: auto;
        max-width: 1300px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

.front__contact__title {
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .front__contact__title {
        font-size: 2.8rem;
        margin-bottom: 60px;
    }
}

.front__contact__main {
    background-color: #f1ede4;
    margin: 0 auto 80px;
    max-width: 680px;
    padding: 20px;
}

@media (min-width: 768px) {
    .front__contact__main {
        padding: 30px;
    }
}

.front__contact__main__content {
    margin: 0 0 10px;
}

.front__contact__main__content p {
    color: #37552b;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .front__contact__main__content p {
        font-size: 1.6rem;
    }
}

.front__contact__main__action__button {
    background-color: #5e6b59;
    color: #ffffff;
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 auto 10px;
    max-width: 360px;
    padding: 10px 0;
    text-align: center;
    transition: color .35s cubic-bezier(.645, .045, .355, 1), background-color .35s cubic-bezier(.645, .045, .355, 1);
    width: 100%;
}

@media (min-width: 768px) {
    .front__contact__main__action__button {
        font-size: 1.8rem;
        padding-bottom: 15px;
        padding-top: 15px;
    }
}

.front__contact__main__action__button__text {
    padding: 0 32px 0 0;
    position: relative;
}

.front__contact__main__action__button__text:after {
    background-image: url(../images/icons/icon-double-angle-right-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    content: "";
    display: block;
    height: 18px;
    position: absolute;
    right: 0;
    top: 5px;
    width: 18px;
}

.front__contact__main__action__button:hover {
    color: #ffffff;
}

.front__contact__main__action__button:focus {
    background-color: rgba(94, 107, 89, .5);
    color: #ffffff;
}

@media (hover: hover) and (pointer: fine) {
    .front__contact__main__action__button:hover {
        background-color: rgba(94, 107, 89, .5);
        color: #ffffff;
    }
}

.front__contact__profile__logo {
    font-size: 1.0rem;
    margin: 0 auto 30px;
    max-width: 380px;
    padding: 0 20px;
    text-align: center;
}

.front__contact__profile__table {
    border: none;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0 auto;
    max-width: 280px;
    width: 100%;
}

@media (min-width: 768px) {
    .front__contact__profile__table {
        max-width: 420px;
    }
}

.front__contact__profile__table > tbody > tr > th, .front__contact__profile__table > tbody > tr > td {
    color: #ffffff;
    font-size: 1.4rem;
    padding: 0;
    vertical-align: top;
}

@media (min-width: 768px) {
    .front__contact__profile__table > tbody > tr > th, .front__contact__profile__table > tbody > tr > td {
        font-size: 1.6rem;
    }
}

.front__contact__profile__table > tbody > tr > th {
    font-weight: 400;
    text-align: right;
    white-space: nowrap;
}

.front-footer__copyright {
    background-color: #5e6b59;
    color: #ffffff;
    display: block;
    font-size: 1.0rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    padding: 15px 10px;
    text-align: center;
}

@media (min-width: 768px) {
    .front-footer__copyright {
        font-size: 1.4rem;
        padding: 20px 15px;
    }
}
