@charset "utf-8";

/*
 * style.css
 *
 *  version --- 1.0
 *  updated --- 2017/11/30
 */

/* !HTML5 elements
---------------------------------------------------------- */
header, 
footer, 
nav, 
section, 
aside, 
article {
    display: block;
}

/* !Reseting
---------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

fieldset {
  border: none;
}

ul,
ol,
li {
	list-style: none;
}

img {
	max-width: 100%;
    height: auto;
	vertical-align: top;
}

table {
	border-collapse: collapse;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

select::-ms-expand {
	display: none;
}

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check{
	display: none;
}

select,
input[type=radio],
input[type=checkbox],
input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=number],
input[type=reset],
input[type=button],
input[type=submit],
textarea {
	appearance: none;
	border-radius: 0;
	font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

input[type=text]::-ms-clear,
input[type=tel]::-ms-clear,
input[type=number]::-ms-clear{
	display: none;
}

input[type=reset],
input[type=button],
input[type=submit]  {
	font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	cursor: pointer;
}

*,
*:before,
*::after {
	box-sizing: border-box;
}
/* !Clearfix
---------------------------------------------------------- */
.clearfix {
    display: block;
    min-height: 1%;
}

.clearfix:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}

* html .clearfix {
    height: 1%;
}

/* !Layout
---------------------------------------------------------- */
html {
    overflow-y: scroll;
    font-size: 62.5%;
}
html.is-active{
    overflow: hidden;
}

/*** タブレット 768x ~ 1300px***/
@media screen and (min-width: 768px) and (max-width: 1320px) {
    html {
        font-size: 0.757vw;
    }
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    html {
        font-size: 62.5%;
    }
}

body {
    font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 1.6rem;
    -webkit-text-size-adjust: none;
    line-height: 1.5;
    font-weight: 400;
    color: #000;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 767px) {
	body {
		font-size: 1.4rem;
	}
}

/* !Base Fonts -------------------------------------------------------------- */
a {
    color: #000;
    text-decoration: none;
    transition: all 0.5s;
}

a:hover {
    text-decoration: underline;
    transition: all 0.5s;
}

.op img, .op input , .op button {
    transition: opacity 0.5s ease-out;
}

.op:hover img, .op:hover input , .op:hover button {
    opacity: .7;
    transition: opacity 0.5s ease-out;
}

a[href^="tel:"] {
    cursor: default;
    pointer-events:none;
}
/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {

	a:hover {
	    text-decoration: none;
	}

    a[href^="tel:"] {
        cursor: pointer;
        pointer-events: inherit;
    }
}

.is-hide {
	display: none;
}

.is-pc {
    display: block;
}

.is-sp {
    display: none;
}

@media screen and (max-width: 767px) {
    .is-pc {
        display: none;
    }

    .is-sp {
        display: block;
    }

}

/* !wrapper
---------------------------------------------------------- */
#wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
}

.inner,
.inner02 {
    max-width: 132rem;
    padding: 0 2rem;
    box-sizing: border-box;
    position: relative;
    margin: 0 auto;
}

.inner02 {
    max-width: 94rem;
}

/* !header
---------------------------------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 12rem;
}

.header-logo {
    width: 16.3rem;
}

.header-links {}

.btn-menu {
    display: none;
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    header{
        background: #F8F8F6;
    }
    header .inner {
        height: 6rem;
    }
    .header-logo {
        width: 11.3rem;
    }
}

/* !global navigation
---------------------------------------------------------- */

@media screen and (min-width: 768px) {
    .header-nav ul{
        display: flex;
        align-items: center;
    }

    .header-nav li {
        margin-left: 4.5rem;
    } 

    .header-nav li a {
        font-size: 1.3rem;
        font-weight: 500;
        white-space: nowrap;
        position: relative;
    }

    .header-nav li a:hover {
        text-decoration: underline;
        color: #7B9A5E;
    }

    .header-nav li a:hover:before {
        content: '';
        width: .5rem;
        height: .5rem;
        border-radius: 50%;
        background: currentColor;
        position: absolute;
        left: -1rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
    }

    .cv-button a{
        position: fixed;
        right: 5rem;
        bottom: 5rem;
        z-index: 99;
        width: 16rem;
        height: 16rem;
        border-radius: 50%;
        box-shadow: 0 0 4rem rgba(62,62,62,.1);
    }
    .cv-button a img{
        transition: opacity .4s;
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        z-index: 1;
    }
    .cv-button a .on{
        opacity: 0;
        pointer-events: none;
    }
    .cv-button a:hover .no{
        opacity: 0;
        pointer-events: none;
    }
    .cv-button a:hover .on{
        opacity: 1;
        pointer-events: auto;
    }

    .pc-menu {
        position: fixed;
        right: 25rem;
        bottom: -1.5rem;
        bottom: 0;
        z-index: 99;
        width: 42rem;
        border: .15rem solid #7B9A5E;
        border-bottom: 0;
        border-radius: .9rem .9rem 0 0;
        background: #fff;
    }
    .pc-menu a:hover{
        text-decoration: none;
        opacity: .7;
    }
    .pc-menu-header{
        display: flex;
        align-items: center;
        height: 7.4rem;
        padding: 0 2rem;
        color: #7B9A5E;
        font-size: 2.4rem;
        font-weight: 500;
        letter-spacing: .12em;
        background: url(../img/top/menu_open.svg)no-repeat right 3rem center;
        background-size: 1.8rem auto;
        cursor: pointer;
    }
    .pc-menu-header.is-active {
        background: url(../img/top/menu_close.svg)no-repeat right 3rem center;
        background-size: 1.8rem auto;
    }
    .pc-menu-header span{
        width: 3.7rem;
        text-align: center;
    }
    .pc-menu-cont{
        border-top: 1px solid #F8F8F6;
        margin: 0 2rem;
        padding: 1.55rem 0 3rem;
        display: none;
    }
    .pc-menu-items{
        border-bottom: 1px solid #F8F8F6;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .pc-menu-items a{
        height: 6rem;
        display: flex;
        align-items: center;
        padding: 0 3rem 0 2rem;
        font-size: 1.4rem;
        font-weight: 500;
        letter-spacing: .12em;
        border-radius: .5rem;
        background: url(../img/top/arrow_menu.svg)no-repeat right 2rem center;
        background-size: 1.2rem auto;
    }
    .pc-menu-items li:nth-of-type(odd) a{
        background-color: #C4D9AE;
    }

    .pc-menu-button{
        display: flex;
        margin: 0 -.25rem;
    }
    .pc-menu-button li{
        width: 100%;
        margin: 0 .25rem;
    }

    .pc-menu-button a{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 5rem;
        border-radius: 7rem;
        border: .15rem solid #7B9A5E;
        font-size: 1.2rem;
        font-weight: bold;
        letter-spacing: .12em;
        white-space: nowrap;
    }
}
/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    .btn-menu {
        width: 10.5rem;
        height: 6rem;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 2;
        cursor: pointer;
        background: url(../img/common/btn_menu.svg)no-repeat center center;
        background-size: 6.3rem auto;
    }

    .btn-menu.is-active{
        background: url(../img/common/btn_menu_close.svg)no-repeat center center;
        background-size: 6.3rem auto;
    }

    #g-navi {
        position: absolute;
        left: 0;
        top: 6rem;
        width: 100%;
        height: calc(100vh - 6rem);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 1.65rem 2rem 4rem;

        background: url(../img/top/flower_nav.png)no-repeat right bottom #F8F8F6;
        background-size: 13.6rem auto;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s;
    }

    #g-navi.is-active{
        opacity: 1;
        pointer-events: auto;
    }

    .header-copy{
        text-align: center;
        font-size: 1rem;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 4rem;
    }

    .header-nav-item a{
        display: block;
        margin-bottom: 3rem;
        font-size: 2.7rem;
        color: #7B9A5E;
    }
    .header-nav-item a span{
        display: block;
        padding-left: 2rem;
        font-size: 1.2rem;
        letter-spacing: 0.04em;
        position: relative;
        color: #333;
    }
    .header-nav-item a span:before{
        content: '';
        position: absolute;
        left: 0;
        top: .9rem;
        width: 1.25rem;
        height: 1px;
        background: #7B9A5E;
    }


    .cv-button a{
        position: fixed;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 99;
        border-radius: 1.5rem 1.5rem 0 0;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 5.5rem;
        font-size: 1.7rem;
        font-weight: 500;
        letter-spacing: 0.05em;
        background: url(../img/top/arrow_cv.svg)no-repeat right 3.5rem center #7B9A5E;
        background-size: auto 1.2rem;
        color: #fff;
        box-shadow: 0 0 1rem rgba(62,62,62,.1);
    }
    .cv-button a img{
        display: none;
    }

    .pc-menu {
        padding: 2rem 2rem 0;
        background: #F8F8F6;
    }
    .pc-menu-header{
        display: none!important;
    }
    .pc-menu-cont{
        display: block!important;
    }
    .pc-menu-items{

    }
    .pc-menu-items a{
        height: 5rem;
        display: flex;
        align-items: center;
        padding: 0 2rem;
        font-size: 1.2rem;
        font-weight: 500;
        letter-spacing: .06em;
        border-radius: 1rem;
        background: url(../img/top/arrow_menu.svg)no-repeat right 1.5rem center #fff;
        background-size: 1.2rem auto;
        border: 1px solid #7B9A5E;
    }
    .pc-menu-items li+li{
        margin-top: .75rem;
    }

    .pc-menu-button{
        display: flex;
        justify-content: center;
        margin: 1.5rem -1rem 0;
    }
    .pc-menu-button li{
        margin: 0 1rem;
    }

    .pc-menu-button a{
        padding-right: 1.85rem;
        font-size: 1.3rem;
        font-weight: 500;
        letter-spacing: .06em;
        white-space: nowrap;
        background: url(../img/top/arrow_menu.svg)no-repeat right center;
        background-size: 1.2rem auto;
    }
}


/* !main Visual
---------------------------------------------------------- */
#main-visual {

}

.main-fv-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 12rem;
}

.main-fv-img {
    width: calc(50% + 11rem);
}

.main-fv-img .imgBox {
    border-radius: 0 4rem 4rem 0;
}

.main-fv-copy {
    width: calc(50% - 11rem);
    padding-left: 6rem;
}

.main-fv-txt {
    display: inline-block;
    font-size: 3.2rem;
    line-height: 1.875;
    letter-spacing: .2em;
    position: relative;
    z-index: 1;
}
.concept-wrap .main-fv-txt {
    display: none;
}

.main-fv-txt img {
    position: absolute;
    left: calc(100% + 4.5rem);
    top: -6.2rem;
    z-index: -1;
    width: 10rem;
}
/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    .main-fv-wrap {
        display: block;
        justify-content: center;
        align-items: center;
        padding-top: 6rem;
    }

    .main-fv-img {
        width: 100%;
    }

    .main-fv-img .imgBox {
        border-radius: 0;
    }

    .main-fv-copy {
        width: auto;
        padding-left: 0;
    }

    .main-fv-txt {
        display: none;
        font-size: 2.3rem;
        line-height: 1.54;
        letter-spacing: .2em;
        position: relative;
        z-index: 1;
    }
    .concept-wrap .main-fv-txt {
        display: block;
        text-align: left;
    }

    .main-fv-txt img {
        position: absolute;
        left: auto;
        right: 0;
        top: 9rem;
        z-index: -1;
        width: 7.4rem;
    }
}

@media screen and (max-width: 1550px) and (min-width: 768px) {
    .main-fv-txt img {
        left: calc(100% - 2.5rem);
        top: -1.2rem;
        width: 6rem;
    }
}

.imgBox {
    position: relative;
    width: 100%;
    padding-top: 66%;
    overflow: hidden;
}

.imgBox img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    object-fit: cover;
    transition: all .2s linear;
}

a:hover .imgBox img{
    transform: scale(1.05);
}


/* !teaser
---------------------------------------------------------- */
#teaser {}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {}

/* !contents
---------------------------------------------------------- */
#contents {}

#main {}

#side {}


/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {}

/* !page Top
---------------------------------------------------------- */
.pagetop {
    position: absolute;
    right: 2rem;
    top: -4.5rem;
    z-index: 1;
    width: 4rem;
}

@media screen and (max-width: 767px) {
    .pagetop {
        position: absolute;
        right: 2rem;
        top: 0rem;
        z-index: 1;
        width: 3.5rem;
    }
    .pagetop02 {
        position: fixed;
        right: 2rem;
        bottom: 6.5rem;
        z-index: 79;
        width: 5rem;
        border-radius: 50%;
        box-shadow: 0 0 1.3rem rgba(62,62,62,.1);
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s;
    }
    .pagetop02.is_fixed{
        opacity: 1;
        pointer-events: auto;
    }
}

/* !footer
---------------------------------------------------------- */
footer {
    background: #F0ECE6;
    padding: 8.5rem 0;
}

.footer-nav{
    padding-bottom: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #333333;
}
.footer-nav-items{
    display: flex;
}
.footer-nav-items li{
    margin-right: 6rem;
    font-size: 1.8rem;
    font-weight: 500;
}
.footer-info-company-logo{
    margin-bottom: 2rem;
    width: 18.1rem;
}
.footer-info-company-name{
    font-size: 1.5rem;
    margin-bottom: 4.5rem;
}
.footer-info-company-address{
    font-size: 1.3rem;
    letter-spacing: .12em;
    line-height: 1.53;
}

.footer-info-copyright {
    font-size: 1rem;
    letter-spacing: 0.06em;
    position: absolute;
    right: 2rem;
    bottom: 0;
}

.footer-pict-copyright {
    font-size: 1rem;
    letter-spacing: 0.06em;
    position: ;
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    footer {
        background: #F0ECE6;
        padding: 5rem 0 7.5rem;
        position: relative;
        z-index: 88;
    }

    .footer-nav{
        padding-bottom: 3rem;
        margin-bottom: 2.5rem;
        border-bottom: 1px solid #333333;
    }
    .footer-nav-items{
        max-width: 60%;
        display: flex;
        flex-wrap: wrap;
    }
    .footer-nav-items li{
        margin-bottom: 1.5rem;
        margin-right: 3rem;
        font-size: 1.8rem;
        font-weight: 500;
    }
    .footer-info-company-logo{
        margin-bottom: 1.75rem;
        width: 16.8rem;
    }
    .footer-info-company-name{
        font-size: 1.5rem;
        margin-bottom: 1.4rem;
    }
    .footer-info-company-address{
        font-size: 1.3rem;
        letter-spacing: 0;
        line-height: 1.73;
    }
    .footer-info-company-address a{
        display: block;
    }

    .footer-info-copyright {
        font-size: 1rem;
        margin-top: 3.9rem;
        letter-spacing: 0.06em;
        text-align: center;
        position: static;
        right: 2rem;
        bottom: 0;
    }
}


/*common*/
.bg-gray {
    background: #F8F8F6;
}

.hd01 {
    font-weight: 100;
    font-size: 7rem;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: #7B9A5E;
    margin-bottom: 4rem;
}

.hd-large {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: .1em;
    margin-bottom: 3rem;
}

.hd-medium {
    font-size: 2.2rem;
    letter-spacing: .12em;
    font-weight: 400;
}

.hd-small {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.08em;
}
.hd-small span{
    display: inline-block;
    position: relative;
    padding-left: 2rem;
}
.hd-small span:before{
    content: '';
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #7B9A5E;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    .hd01 {
        font-weight: 100;
        font-size: 6.5rem;
        line-height: 1.5;
        letter-spacing: 0.03em;
        color: #7B9A5E;
        margin-bottom: 1.5rem;
    }

    .hd-large {
        font-size: 2.3rem;
        font-weight: 400;
        letter-spacing: .1em;
        margin-bottom: 2rem;
    }

    .hd-medium {
        font-size: 1.8rem;
        letter-spacing: .12em;
        font-weight: 400;
    }

    .hd-small {
        text-align: center;
        font-size: 1.3rem;
        font-weight: 400;
        letter-spacing: 0.08em;
    }
    .hd-small span{
        display: inline-block;
        position: relative;
        padding-left: 1.8rem;
    }
    .hd-small span:before{
        content: '';
        width: .8rem;
        height: .8rem;
        border-radius: 50%;
        background: #7B9A5E;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
    }
}

/*top*/
.concept-wrap {
    padding: 6rem 0 10rem;
    text-align: center;
}
.concept-txt p {
    font-size: 1.6rem;
    line-height: 2.375;
    letter-spacing: .18em;
}
.concept-txt p+p {
    margin-top: 3.8rem;
}
.concept-img01,
.concept-img02{
    position: absolute;
    z-index: 1;
    border-radius: 1.5rem;
    overflow: hidden;
}
.concept-img01{
    right: -17rem;
    bottom: 14.7rem;
    width: 30rem;
}
.concept-img02{
    left: -7rem;
    bottom: 0;
    width: 17rem;
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    .concept-wrap {
        padding: 4rem 0 12rem;
        text-align: left;
    }
    .concept-txt{
        position: relative;
        z-index: 9;
        margin-top: 4.5rem;
    }
    .concept-txt p {
        font-size: 1.4rem;
        line-height: 1.92;
        letter-spacing: .08em;
    }
    .concept-txt p+p {
        margin-top: 2.7rem;
    }
    .concept-img01,
    .concept-img02{
        position: static;
        z-index: 1;
        border-radius: 1.5rem;
        overflow: hidden;
    }
    .concept-img01{
        right: -17rem;
        bottom: 14.7rem;
        width: 25rem;
        margin: 2rem 0 0 auto;
    }
    .concept-img02{
        position: absolute;
        left: 2rem;
        bottom: -12rem;
        width: 15rem;
        transform: translateY(50%);
    }

}

.raw-wrap {
    padding: 14rem 0 6rem;
}
.raw-cont {
    background: #F8F8F6;
    border-radius: 0 5rem 5rem 0;
    margin-right: 14rem;
    padding: 5.5rem 5rem 10rem 19rem;

    font-size: 1.6rem;
    line-height: 1.8125;
    letter-spacing: .12em;
    position: relative;
    z-index: 1;
}
.raw-cont p+p{
    margin-top: 2.9rem;
}
.raw-cont:before {
    content: '';
    position: absolute;
    right: 99%;
    top: 0;
    z-index: -1;
    width: 200vw;
    height: 100%;
    background: #F8F8F6;
}
.raw-flower{
    position: absolute;
    z-index: 2;
    right: -4.2rem;
    top: -10.9rem;
    width: 15.3rem;
}
.raw-img{
    margin: -15.5rem 0 0 auto;
    position: relative;
    z-index: 2;
    width: 60rem;
}
.raw-img img{
    border-radius: 4rem;
}
/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    .raw-wrap {
        padding: 18.4rem 0 3.2rem;
    }
    .raw-cont {
        background: #F8F8F6;
        border-radius: 0 2.5rem 0 0;
        margin-right: -2rem;
        padding: 4rem 5rem 11.5rem 0;

        font-size: 1.3rem;
        line-height: 1.53;
        letter-spacing: .12em;
        position: relative;
        z-index: 1;
    }
    .raw-cont p+p{
        margin-top: 2rem;
    }
    .raw-cont:before {
        content: '';
        position: absolute;
        right: 99%;
        top: 0;
        z-index: -1;
        width: 200vw;
        height: 100%;
        background: #F8F8F6;
    }
    .raw-flower{
        position: absolute;
        z-index: 2;
        right: 0;
        top: -16.2rem;
        width: 12.5rem;
    }
    .raw-img{
        margin: -7.5rem -2rem 0 auto;
        position: relative;
        z-index: 2;
        width: calc(100% + 2rem);
    }
    .raw-img img{
        border-radius: 4rem 0 0 4rem;
    }
}

.bg-green{
    background: url(../img/top/bg_green.png)no-repeat center center;
    background-size: 100% 100%;
    color: #fff;
}
.issue-wrap{
    padding: 7.4rem 0 9rem;
    text-align: center;
}
.issue-title{
    line-height: 1.66;
}
.top-dotted{
    position: relative;
}
.top-dotted:before{
    content: '•';
    font-size: .7em;
    position: absolute;
    left: 50%;
    bottom: 70%;
    transform: translateX(-50%);
    z-index: 1;
}
.issue-list li span{
    display: inline-block;
    padding-left: 3.1rem;
    font-size: 1.6rem;
    line-height: 1.42;
    letter-spacing: .12em;
    background: url(../img/top/icon_li.svg)no-repeat left top .2rem;
    background-size: 2.1rem auto;
}
.issue-list li+li{
    margin-top: 2rem;
}
.issue-flower{
    position: absolute;
    left: -12.8rem;
    top: 5rem;
    width: 14.8rem;
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    .issue-wrap{
        padding: 5.5rem 0 3.8rem;
        text-align: left;
    }
    .issue-title{
        line-height: 1.52;
    }
    .top-dotted{
        position: relative;
    }
    .top-dotted:before{
        content: '•';
        font-size: .6em;
        position: absolute;
        left: 50%;
        bottom: 70%;
        transform: translateX(-50%);
        z-index: 1;
    }
    .issue-list li span{
        padding: .5rem 0;
        display: inline-block;
        padding-left: 3.1rem;
        font-size: 1.3rem;
        line-height: 1.42;
        letter-spacing: .12em;
        background: url(../img/top/icon_li.svg)no-repeat left top .2rem;
        background-size: auto 2.3rem;
    }
    .issue-list li+li{
        margin-top: 1rem;
    }
    .issue-flower{
        position: absolute;
        left:auto;
        right: 0;
        top: 6rem;
        width: 9.4rem;
    }
}

.point-wrap{
    padding: 5.6rem 0 4rem;
}
.point-wrap .hd-large{
    text-align: center;
    margin-bottom: 4rem;
}
.point-list{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.5rem;
}
.point-item{
    width: calc(50% - 3rem);
    margin: 0 1.5rem 3rem;
    border-radius: 2rem;
    border: 1px solid #7B9A5E;
    padding: 3rem 3.7rem;
}
.point-item.width-100{
    width: calc(100% - 3rem);
    padding: 3rem 10rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.point-item__image{
    border-radius: 3rem;
    overflow: hidden;
    width: 21rem;
}
.point-item__left{
    width: calc(100% - 21rem - 3.8rem);
}
.point-item__left dl{
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}
.point-item__number{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6.2rem;
    height: 6.2rem;
    border-radius: 50%;
    background: #E8F0DF;
    font-size: 3rem;
    font-weight: 500;
    color: #7B9A5E;
    margin: 0 auto 1rem;
}
.point-item__left .point-item__number{
    margin: 0 1rem 0 0;
}
.point-item__header{
    font-size: 2.2rem;
    font-weight: bold;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    color: #7B9A5E;
    display: flex;
    justify-content: center;
}
.point-item__left .point-item__header{
    margin-bottom: 0;
}
.point-item__detail{
    font-size: 1.3rem;
    line-height: 1.53;
    letter-spacing: .12em;
    font-weight: 500;
}
.common-txt{
    font-size: 1.3rem;
    line-height: 1.53;
    letter-spacing: .12em;
}
.point-item__addition{
    margin-top: 1rem;
    font-size: 1rem;
    letter-spacing: 0.06em;
}
.addition-txt{
    font-size: 1rem;
    letter-spacing: 0.06em;
}
/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    .point-wrap{
        padding: 5rem 0 4rem;
    }
    .point-wrap .hd-small{
        text-align: left;
        margin-bottom: 1rem;
    }
    .point-wrap .hd-large{
        text-align: left;
        margin-bottom: 3.5rem;
    }
    .point-list{
        display: block;
        flex-wrap: wrap;
        margin: 0;
    }
    .point-item{
        width: auto;
        margin: 0;
        border-radius: 0;
        border: 0 solid #7B9A5E;
        padding: 0;
    }
    .point-item+.point-item{
        padding-top: 4rem;
        margin-top: 4rem;
        border-top: 1px solid #7B9A5E;
    }
    .point-item.width-100{
        width: auto;
        padding: 4rem 0 0;
        display: block;
        justify-content: space-between;
        align-items: center;
    }
    .point-item__image{
        border-radius: 1.5rem;
        overflow: hidden;
        margin-top: 3rem;
        width: auto;
    }
    .point-item__image img{
        width: 100%;
    }
    .point-item__left{
        width: auto;
    }
    .point-item dl,
    .point-item__left dl{
        display: flex;
        align-items: center;
        margin-bottom: 1.8rem;
    }
    .point-item__number{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 7.5rem;
        height: 7.5rem;
        border-radius: 50%;
        background: #E8F0DF;
        font-size: 3.5rem;
        font-weight: 500;
        color: #7B9A5E;
        margin: 0 1.5rem 0 0;
    }
    .point-item__left .point-item__number{
        margin: 0 1.5rem 0 0;
    }
    .point-item__header{
        font-size: 2.2rem;
        font-weight: bold;
        letter-spacing: 0.08em;
        margin-bottom: 0;
        color: #7B9A5E;
        display: flex;
        justify-content: center;
    }
    .point-item__left .point-item__header{
        margin-bottom: 0;
    }
    .point-item__detail{
        font-size: 1.3rem;
        line-height: 1.53;
        letter-spacing: .06em;
        font-weight: 400;
    }
    .common-txt{
        font-size: 1.3rem;
        line-height: 1.53;
        letter-spacing: .06em;
    }
    .point-item__addition{
        margin-top: 1rem;
        font-size: 1rem;
        letter-spacing: 0.06em;
    }
    .addition-txt{
        font-size: 1rem;
        letter-spacing: 0.06em;
    }
}

.changes-wrap{
    padding: 4.3rem 0 5rem;
    background: url(../img/top/bg_changes.png)no-repeat center center;
    background-size: 100% 100%;
}
.changes-wrap .hd-small{
    margin-bottom: 2.2rem;
}
.changes-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 7.5rem;
}
.changes-list img{
    border-radius: 1.9rem;
}
.changes-list .ttl{
    margin: 1.5rem 0;
    font-size: 1.6rem;
    font-weight: bold;
    color: #7B9A5E;
    letter-spacing: 0.08em;
    position: relative;
}
.changes-list .ttl span{
    text-decoration: underline;
    display: inline-block;
    position: relative;
    z-index: 2;
    padding-right: 2rem;
    background: #F8F8F6;
}
.changes-list li+li .ttl:before{
    content: '';
    position: absolute;
    right: calc(100% + 2rem);
    bottom: .3rem;
    z-index: 1;
    height: .7rem;
    width: 24rem;
    background: url(../img/top/arrow_changes.png)no-repeat right center;
    background-size: auto 100%;
}
.changes-list li:nth-of-type(2) .ttl:before{
    background-position: left center
}
/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    .changes-wrap{
        padding: 4rem 0 4.5rem;
        background: url(../img/top/bg_changes.png)no-repeat center center;
        background-size: 100% 100%;
    }
    .changes-wrap .hd-small{
        margin-bottom: 1.5rem;
        text-align: left;
        font-size: 2rem;
    }
    .changes-list{
        display: grid;
        grid-template-columns: repeat(1,1fr);
        grid-gap: 3.2rem;
    }
    .changes-list img{
        border-radius: 1rem;
    }
    .changes-list .ttl{
        margin: 0 0 1rem;
        font-size: 1.3rem;
        font-weight: 500;
        color: #7B9A5E;
        letter-spacing: 0;
        position: relative;
    }
    .changes-list .ttl span{
        text-decoration: underline;
        display: inline-block;
        position: relative;
        z-index: 2;
        padding-right: 2rem;
        background: none;
    }
    .changes-list li+li .ttl:before{
        content: none;
    }
    .changes-list dl{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .changes-list li:nth-of-type(odd) dl{
        flex-direction: row-reverse;
    }
    .changes-list dt{
        width: 47%;
    }
    .changes-list dd{
        width: 50%;
    }
}

.items-wrap{
    padding: 10rem 0 4rem;
}
.items-wrap .raw-cont{
    position: absolute;
    z-index: -1;
    right: -3rem;
    left: 2rem;
    top: 6rem;
    height: 50rem;
}
.items-wrap .raw-flower{
    top: -14.9rem;
}

.font-green{
    color: #7B9A5E;
}
.items-wrap .hd-small{
    margin-bottom: 1rem;
    text-align: left;
}
.items-wrap .hd-large{
    margin-bottom: 2rem;
}
.items-list{
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}
.items-list li{
    width: calc(50% - 1.5rem);
}
.items-list img{
    border-radius: 3rem;
}
.items-list .hd-medium{
    margin: 1.6rem 0 1rem;
}
.items-txt{
    font-size: 1.2rem;
    letter-spacing: .12em;
    margin-bottom: 1rem;
}
.items-box{
    margin-top: 4rem;
    border: 1px solid #DDD0C2;
    background: #fff;
    border-radius: 2rem;
    padding: 3rem 5rem;
    position: relative;
}
.items-flower{
    position: absolute;
    left: -16rem;
    top: 6rem;
    z-index: -1;
    width: 20.1rem;
}
.items-box__title{
    text-align: center;
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    margin-bottom: 2.4rem;
}
.items-box__list{
    display: flex;
    justify-content: space-between;
}
.items-box__list li{
    width: calc(50% - 1.5rem);
}
.items-box__list .hd-small{
    color: #6C3400;
    margin-bottom: 2rem;
}
.items-box__list li+li .hd-small{
    color: #877059;
}

.items-box__list .hd-small span:before {
    width: .7rem;
    height: .7rem;
    background: currentColor;
}
.items-box__list img{
    border-radius: 1.5rem;
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    .items-wrap{
        padding: 4rem 0 5rem;
    }
    .items-wrap .raw-cont{
        position: absolute;
        z-index: -1;
        right: 0;
        left: 0;
        top: 6rem;
        margin-right: 0;
        height: 30rem;
    }
    .items-wrap .raw-flower{
        top: -10rem;
    }

    .font-green{
        color: #7B9A5E;
    }
    .items-wrap .hd-small{
        margin-bottom: 1rem;
        text-align: left;
    }
    .items-wrap .hd-large{
        margin-bottom: 3rem;
    }
    .items-list{
        display: block;
        justify-content: space-between;
        margin-bottom: 2.5rem;
    }
    .items-list li{
        width: auto;
    }
    .items-list li+li{
        margin-top: 3.5rem;
    }
    .items-list img{
        border-radius: 3rem;
    }
    .items-list .hd-medium{
        margin: 1.5rem 0 .5rem;
    }
    .items-txt{
        font-size: 1.2rem;
        letter-spacing: .12em;
        margin-bottom: 1rem;
    }
    .items-box{
        margin-top: 6rem;
        border: 0 solid #DDD0C2;
        background: #fff;
        border-radius: 0;
        padding: 0;
    }
    .items-bg{
        position: relative;
    }
    .items-bg:before{
        content: '';
        pointer-events: none;
        background: #F8F8F6;
        position: absolute;
        z-index: -1;
        left: -2rem;
        right: -2rem;
        bottom: -3rem;
        top: 0;
    }
    .items-flower{
        display: none;
        position: absolute;
        left: -16rem;
        top: 6rem;
        z-index: -1;
        width: 20.1rem;
    }
    .items-box__title{
        text-align: left;
        font-size: 2rem;
        line-height: 1.75;
        font-weight: 400;
        letter-spacing: 0.08em;
        margin-bottom: 1.5rem;
    }
    .items-box__list{
        display: block;
        justify-content: space-between;
    }
    .items-box__list li{
        width: auto;
    }
    .items-box__list li+li{
        margin-top: 2rem;
    }
    .items-box__list .hd-small{
        margin-bottom: 1.1rem;
        font-size: 1.8rem;
    }
    .items-box__list .hd-small span:before {
        width: .8rem;
        height: .8rem;
    }
    .items-box__list img{
        border-radius: 1.5rem;
    }
}

.shops-wrap {
    padding: 6rem 0;
}
.shops-wrap .hd-large{
    text-align: center;
    margin-bottom: 2rem;
}
.shops-txt{
    text-align: center;
    font-size: 1.6rem;
    letter-spacing: .12em;
    line-height: 1.25;    
    margin-bottom: 3rem;
}
.shops-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: .7rem;
    margin-bottom: 1rem;
}
.shops-list li a{
    height: 100%;
    border-radius: 2rem;
    background: #fff;
    padding: 3.2rem 2.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}
.shops-list img{
    max-height: 15.5rem;
}
.shops-list .tel{
    font-size: 2.2rem;
    font-weight: 500;
    margin-top: 1.2rem;
}
/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    .shops-wrap {
        padding: 4rem 0;
    }
    .shops-wrap .hd-large{
        text-align: center;
        margin-bottom: 1rem;
    }
    .shops-txt{
        text-align: left;
        font-size: 1.3rem;
        letter-spacing: .12em;
        line-height: 1.5;    
        margin-bottom: 2rem;
    }
    .shops-list{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-gap: 1rem;
        margin-bottom: 1.5rem;
    }
    .shops-list li{
        padding-top: 100%;
        position: relative;
    }
    .shops-list li a{
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        height: 100%;
        border-radius: 1rem;
        background: #fff;
        padding: 2.5rem 1.2rem;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-direction: column;
    }
    .shops-list a>img{
        width: 81.2%;
        max-height: none;
    }
    .shops-list .img img{
        max-height: 11.25rem;
    }
    .shops-list .tel{
        font-size: 1.8rem;
        font-weight: 500;
        margin-top: .6rem;
    }  
}

.seminar-wrap{
    padding: 6rem 0 0;
}
.seminar-wrap .hd01{
    text-align: center;
    margin-bottom: 0;
}
.seminar-wrap .hd-large{
    margin-bottom: 6rem;
    text-align: center;
}

.seminar-box{
    border: 1px solid #7B9A5E;
    border-radius: 2rem;
    padding: 6rem;
    position: relative;
}
.recommended-box.seminar-box{
    border-color: #B99E6B;
}
.recommended-before{
    position: absolute;
    right: -6.8rem;
    top: -2rem;
    z-index: 5;
    width: 11.8rem;
}
@media screen and (max-width: 1440px) and (min-width: 768px) {
    .recommended-before{
        right: -2rem;
        width: 8rem;
    }
}

.seminar-item+.seminar-item{
    padding-top: 6rem;
}
.seminar-box-purpose{
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%,-50%);
    z-index: 2;
    width: 64rem;
    height: 4rem;
    max-width: 90%;
    border-radius: 3rem;
    background: #F8F8F6;
    color: #7B9A5E;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: .12em;
    display: flex;
    justify-content: center;
    align-items: center;
}
.seminar-box-flex{
    display: flex;
    justify-content: space-between;
}
.seminar-box-left{
    width: calc(100% - 36.5rem);
}
.seminar-box-right{
    width: 34rem;
}
.seminar-box-title{
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: 0.08em;
    letter-spacing: 0.04em;
    margin-bottom: 1.6rem;
    color: #7B9A5E;
}
.seminar-box-summary{
    font-size: 1.6rem;
    letter-spacing: .12em;
    margin-bottom: 1rem;
}
.seminar-box-info{
    font-size: 1.3rem;
    letter-spacing: .12em;
    margin-bottom: 2rem;
}
.seminar-box-pricing{
    font-size: 1.3rem;
    letter-spacing: .12em;
}
.seminar-box-pricing span{
    font-size: 5rem;
    line-height: 1.4;
    letter-spacing: 0;
    font-weight: bold;
    color: #7B9A5E;
    margin: 0 1rem;
}
.seminar-box-feature__header{
    margin: 2.5rem 0 1.2rem;
    font-size: 2.2rem;
    font-weight: bold;
    letter-spacing: 0.08em;
    color: #7B9A5E;
}
.seminar-box-feature__list li span{
    padding-left: 3.1rem;
    font-size: 1.6rem;
    line-height: 1.42;
    letter-spacing: .12em;
    background: url(../img/top/icon_li_black.svg)no-repeat left top .2rem;
    background-size: 2.1rem auto;
}
.seminar-box-feature__list li+li{
    margin-top: 1.2rem;
}

.seminar-box-btn{
    text-align: center;
    margin-top: 5rem;
}
.seminar-box-btn a{
    width: 60rem;
    max-width: 100%;
    height: 7rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    background: #7B9A5E;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-decoration: none;
}
.recommended-box .seminar-box-btn a{
    background: #B99D6C;
}
.seminar-box-btn a span{
    background: url(../img/top/arrow_btn.svg)no-repeat right center;
    background-size: 3rem auto;
    padding-right: 5.7rem;
}
.seminar-box-btn a:hover{
    opacity: .7;
}
.seminar-box-flows li{
    position: relative;
    background: #E8F0DF;
    color: #7B9A5E;
    border-radius: 3.5rem;
    padding: 1rem 2rem 1rem 1rem;
}
.recommended-box .seminar-box-flows li{
    background: #F8F5EC;
}
.recommended-box .seminar-box-flows li,
.recommended-box .seminar-box-feature__header,
.recommended-box .seminar-box-pricing span,
.recommended-box .seminar-box-purpose,
.recommended-box .seminar-box-title{
    color: #B99E6B;
}
.seminar-box-flows li+li{
    margin-top: 1rem;
}
.seminar-box-flows li+li:before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 100%;
    z-index: 1;
    width: .15rem;
    height: 2rem;
    background: currentColor;
}
.seminar-box-flows dl{
    display: flex;
    align-items: center;
    font-weight: bold;
}
.seminar-box-flows dt{
    background: #fff;
    width: 5rem;
    height: 5rem;
    margin-right: 1rem;
    font-size: 1.7rem;
    letter-spacing: 0.08em;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.seminar-box-flows dd{
    width: calc(100% - 6rem);
    font-size: 1.6rem;
    letter-spacing: 0.08em;
}
.seminar-box-flows dd span{
    display: block;
    font-size: 1.2rem;
    line-height: 1.5;
}

.seminar-slider{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 3.5rem;
    margin-top: 5rem;
}
.seminar-slider img{
    border-radius: 4rem;
}

.recommended-box__gift{
    background: #F8F8F6;
    border-radius: 1rem;
    padding: 1.5rem 2rem 2.5rem;
    margin-top: 3rem;
}
.recommended-box__gift .hd-small{
    color: #B99E6B;
    margin-bottom: .5rem;
    text-align: left;
    font-weight: bold;
}
.recommended-box__gift .hd-small span:before {
    width: .8rem;
    height: .8rem;
    background: #B99E6B;
}
/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    .seminar-wrap{
        padding: 3.4rem 0 4rem;
    }
    .seminar-wrap .hd01{
        text-align: left;
        margin-bottom: 1.5rem;
    }
    .seminar-wrap .hd-large{
        margin-bottom: 4rem;
        text-align: left;
    }

    .seminar-box{
        border: 0px solid #7B9A5E;
        border-radius: 0;
        padding: 0;
        position: relative;
    }
    .recommended-before{
        position: static;
        width: 11.9rem;
        margin: 0 auto .5rem;
    }

    .seminar-item+.seminar-item{
        padding-top: 3rem;
        margin-top: 3rem;
        border-top: 1px solid #7B9A5E;
    }
    .recommended-box.seminar-box{
        border-color: #B99E6B;
    }
    .seminar-box-purpose{
        position: static;
        left: 50%;
        top: 0;
        transform: translate(0);
        z-index: 2;
        width: auto;
        height: auto;
        max-width: 100%;
        border-radius: 2.5rem;
        background: #F8F8F6;
        color: #7B9A5E;
        font-size: 1.3rem;
        font-weight: 500;
        letter-spacing: .08em;
        padding: 1.4rem;
        display: block;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-bottom: 1rem;
    }
    .seminar-box-flex{
        display: block;
        justify-content: space-between;
    }
    .seminar-box-left{
        width: auto;
    }
    .seminar-box-right{
        width: auto;
        margin-top: 2.7rem;
    }
    .seminar-box-title{
        font-size: 2.2rem;
        font-weight: bold;
        letter-spacing: 0.08em;
        letter-spacing: 0.04em;
        margin-bottom: 1.6rem;
        color: #7B9A5E;
    }
    .seminar-box-summary{
        font-size: 1.3rem;
        letter-spacing: .12em;
        margin-bottom: 1.5rem;
    }
    .seminar-box-info{
        font-size: 1.3rem;
        letter-spacing: .12em;
        margin-bottom: .4rem;
        font-weight: 500;
    }
    .seminar-box-info__place{
        display: block;
    }
    .seminar-box-info__place font{
        display: none;
    }
    .seminar-box-pricing{
        font-size: 1.3rem;
        letter-spacing: .12em;
        font-weight: 500;
    }
    .seminar-box-pricing span{
        font-size: 3rem;
        line-height: 1.4;
        letter-spacing: 0;
        font-weight: bold;
        color: #7B9A5E;
        margin: 0 1rem;
    }
    .seminar-box-feature__header{
        margin: 2.5rem 0 1rem;
        font-size: 1.7rem;
        font-weight: bold;
        letter-spacing: 0.08em;
        color: #7B9A5E;
    }
    .seminar-box-feature__list li span{
        padding: .5rem 0;
        display: inline-block;
        padding-left: 3.1rem;
        font-size: 1.3rem;
        line-height: 1.42;
        letter-spacing: .08em;
        background: url(../img/top/icon_li_black.svg)no-repeat left top .2rem;
        background-size: auto 2.3rem;
    }
    .seminar-box-feature__list li+li{
        margin-top: 1rem;
    }

    .seminar-box-btn{
        text-align: center;
        margin-top: 2.5rem;
    }
    .seminar-box-btn a{
        width: 60rem;
        max-width: 100%;
        height: 5.5rem;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border-radius: 1rem;
        background: #7B9A5E;
        color: #fff;
        font-size: 1.3rem;
        font-weight: bold;
        letter-spacing: 0.08em;
        text-decoration: none;
    }
    .recommended-box .seminar-box-btn a{
        background: #B99D6C;
    }
    .seminar-box-btn a span{
        background: url(../img/top/arrow_btn.svg)no-repeat right center;
        background-size: 2.5rem auto;
        padding-right: 4rem;
    }
    .seminar-box-flows li{
        position: relative;
        background: #E8F0DF;
        color: #7B9A5E;
        border-radius: 1.5rem;
        padding: 1rem 2rem 1rem 1.5rem;
    }
    .recommended-box .seminar-box-flows li{
        background: #F8F5EC;
    }
    .recommended-box .seminar-box-flows li,
    .recommended-box .seminar-box-feature__header,
    .recommended-box .seminar-box-pricing span,
    .recommended-box .seminar-box-purpose,
    .recommended-box .seminar-box-title{
        color: #B99E6B;
    }
    .seminar-box-flows li+li{
        margin-top: 1rem;
    }
    .seminar-box-flows li+li:before{
        content: '';
        position: absolute;
        left: 50%;
        bottom: 100%;
        z-index: 1;
        width: .15rem;
        height: 1.5rem;
        background: currentColor;
    }
    .seminar-box-flows dl{
        display: flex;
        align-items: center;
        font-weight: bold;
    }
    .seminar-box-flows dt{
        background: #fff;
        width: 3.5rem;
        height: 3.5rem;
        margin-right: 1rem;
        font-size: 1.7rem;
        letter-spacing: 0.08em;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
    }
    .seminar-box-flows dd{
        width: calc(100% - 4.5rem);
        font-size: 1.4rem;
        line-height: 1.42;
        letter-spacing: 0.08em;
    }
    .seminar-box-flows dd span{
        display: block;
        font-size: 1.4rem;
        line-height: 1.42;
    }

    .seminar-slider{
        display: block;
        margin: 3rem 0 5.5rem!important;
    }
    .seminar-slider img{
        border-radius: 2rem;
    }

    .recommended-box__gift{
        background: #F8F8F6;
        border-radius: 1.5rem;
        padding: 1.5rem;
        margin-top: 2rem;
    }
    .recommended-box__gift .hd-small{
        color: #B99E6B;
        margin-bottom: .5rem;
        text-align: left;
        font-weight: bold;
    }
    .recommended-box__gift .hd-small span:before {
        width: .8rem;
        height: .8rem;
        background: #B99E6B;
    }
}

.voice-wrap{
    padding-top: 14rem;
}
.voice-cont {
    background: #F8F8F6;
    border-radius: 0 5rem 5rem 0;
    margin-right: -5rem;
    padding: 8rem 5rem 6rem 0;

    position: relative;
    z-index: 1;
}
.voice-cont:before {
    content: '';
    position: absolute;
    right: 99%;
    bottom: 0;
    z-index: -1;
    width: 200vw;
    height: 100%;
    background: #F8F8F6;
}
.voice-flower{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 45.1rem;
}
.voice-cont .hd01{
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-50%);
    z-index: 5;
}
.voice-txt{
    margin-bottom: 5rem;
    font-size: 1.6rem;
    letter-spacing: .12em;
}
.voice-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 6rem 10rem;
}
.voice-list .img img{
    border-radius: 2rem;
}
.voice-list .title{
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: .12em;
    margin: 2.5rem 0 1.5rem;
}
.voice-list .cont{
    margin-bottom: 1rem;
}
.voice-list .common-txt{
    padding-bottom: 1.5rem;
}
.voice-list .btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3rem;
    border-radius: 1.5rem;
    background: #7B9A5E;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.08em;
}
.voice-list .btn a span{
    padding-right: 2.3rem;
    background: url(../img/top/icon_blank.svg)no-repeat right center;
    background-size: 1.3rem auto;
}
.ins-link{
    display: block;
    text-decoration: none;
}
.ins-link dl{
    display: flex;
    align-items: flex-start;
}
.ins-link dt{
    width: 3.9rem;
    margin-right: .5rem;
}
.ins-link dd{
    min-width: 22rem;
    max-width: calc(100% - 4.4rem);
    border: 1px solid #382B46;
    background: #fff;
    border-radius: 3.5rem;
    display: flex;
    align-items: center;
    padding: .9rem 2rem;
    font-size: 1.3rem;
    letter-spacing: .12em;
    word-break: break-all;
}
.voice-list .fancybox{
    border-radius: 2rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #333333;
    padding-top: 100%;
    position: relative;
} 
.voice-list .fancybox img{
    border-radius: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    max-width: 100%;
    max-height: 100%;
    z-index: 2;
}
.voice-list .fancybox:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    background: url(../img/top/icon_play.svg)no-repeat center center;
    background-size: 7rem auto;
}
.voice-list a{
    text-decoration: none;
}
.voice-list a:hover{
    opacity: .7;
}
/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    .voice-wrap{
        padding-top: 6rem;
    }
    .voice-cont {
        background: #F8F8F6;
        border-radius: 0 2.5rem 0 0;
        margin-right: -2rem;
        padding: 6.5rem 2rem 6.5rem 0;

        position: relative;
        z-index: 1;
    }
    .voice-cont:before {
        content: '';
        position: absolute;
        right: 99%;
        bottom: 0;
        z-index: -1;
        width: 200vw;
        height: 100%;
        background: #F8F8F6;
    }
    .voice-flower02{
        position: absolute;
        z-index: 2;
        right: 2.5rem;
        top: -9.5rem;
        width: 7.2rem;
    }
    .voice-flower{
        position: absolute;
        right: auto;
        left: -2rem;
        bottom: 0;
        z-index: -1;
        width: 9.2rem;
    }
    .voice-cont .hd01{
        position: absolute;
        left: 0;
        top: 0;
        transform: translateY(-50%);
        z-index: 5;
    }
    .voice-txt{
        margin-bottom: 3rem;
        font-size: 1.3rem;
        letter-spacing: .12em;
    }
    .voice-list{
        display: block;
        grid-template-columns: repeat(3,1fr);
        grid-gap: 6rem 10rem;
        /*margin: 0 1.75rem;*/
    }
    .voice-list .img img{
        border-radius: 2rem;
    }
    .voice-list .title{
        font-size: 1.3rem;
        font-weight: 500;
        letter-spacing: .12em;
        margin: 1.5rem 0 1.5rem;
    }
    .voice-list .cont{
        margin-bottom: 1.5rem;
        height: auto!important;
    }
    .voice-list .common-txt{
        padding-bottom: 1.5rem;
    }
    .voice-list .btn a{
        display: flex;
        justify-content: flex-start;
        align-items: center;
        height: 3.5rem;
        border-radius: 2rem;
        color: #fff;
        font-size: 1.3rem;
        font-weight: 500;
        letter-spacing: 0.08em;
        padding: 0 2.5rem;
        background: url(../img/top/icon_blank.svg)no-repeat right 2rem center #7B9A5E;
        background-size: 1.4rem auto;
    }
    .voice-list .btn a span{
        padding-right: 0;
        background: none;
    }
    .ins-link{
        display: block;
        text-decoration: none;
    }
    .ins-link dl{
        display: flex;
        align-items: flex-start;
    }
    .ins-link dt{
        width: 3.9rem;
        margin-right: .5rem;
    }
    .ins-link dd{
        width: calc(100% - 4.4rem);
        min-width: auto;
        max-width: calc(100% - 4.4rem);
        border: 1px solid #382B46;
        background: #fff;
        border-radius: 3.5rem;
        display: flex;
        align-items: center;
        padding: .9rem 2rem;
        font-size: 1.3rem;
        letter-spacing: .12em;
        word-break: break-all;
    }
    .voice-list .fancybox{
        border-radius: 2rem;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #333333;
        padding-top: 100%;
        position: relative;
    } 
    .voice-list .fancybox img{
        border-radius: 0;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        max-width: 100%;
        max-height: 100%;
        z-index: 2;
    }
    .voice-list .fancybox:before{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 9;
        background: url(../img/top/icon_play.svg)no-repeat center center;
        background-size: 7rem auto;
    }
    .voice-list a{
        text-decoration: none;
    }
}

/*fancybox*/
.hide{
    display: none;
}
/*fancybox*/
.fancybox-content {
  padding: 0 !important;
  background: #000 !important;
  overflow: visible;
  color: #fff;
  border-radius: 2rem;
}
.fancybox-inner {
  /*min-width: 550px;*/
}
.compensate-for-scrollbar{
  margin-right: 0!important;
}
.fancybox-bg{
    background: rgba(255,255,255,.8);
}
.fancybox-is-open .fancybox-bg{
    opacity: 1;
}
.close_modal{
    position: absolute;
    width: 7rem;
    height: 7rem;
    z-index: 9;
    right: -2rem;
    top: -2rem;
}

.fancy-video {
  box-sizing: border-box;
  width: 90rem;
  max-width: calc(100vw - 4rem);
  border-radius: 0;
  background: none;
  color: #fff;
  position: relative;
  pointer-events: auto;
}
.iframeP {
    position: relative;
    width: 100%;
    padding-top: 65%;
    border-radius: 2rem;
}

.iframeP iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    .fancybox-content {
      border-radius: 1rem;
    }
    .close_modal{
        position: absolute;
        width: 4rem;
        height: 4rem;
        z-index: 9;
        right: -2rem;
        top: -2rem;
    }

}

.qa-wrap{
    padding: 8rem 0 12rem;
}
.qa-wrap .hd01{
    margin-bottom: 0;
}
.qa-item{
    padding: 2rem 0;
    border-bottom: 1px solid #7B9A5E;
}
.qa-title{
    display: flex;
    align-items: center;
    padding: 1rem 2.5rem 1rem 2.5rem;
    background:url(../img/top/faq_open.svg)no-repeat right center;
    background-size: 1rem auto;
    position: relative;
    z-index: 2;
    cursor: pointer;
    font-size: 1.6rem;
    line-height: 1.8125;
    letter-spacing: .12em;
}
.qa-title.is-active{
    background:url(../img/top/faq_close.svg)no-repeat right center;
    background-size: 1rem auto;
}
.qa-title:before{
    content: 'Q';
    position: absolute;
    z-index: 2;
    left: 0;
    top: 1rem;
    color: #7B9A5E;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    line-height: 2.6rem;
    font-weight: 500;
}
.qa-content{
    display: none;
    font-size: 1.3rem;
    line-height: 1.5;
    letter-spacing: .12em;
    padding: 0 2.5rem 1rem 2.5rem;
}
/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    .qa-wrap{
        padding: 4rem 0 5rem;
    }
    .qa-wrap .hd01{
        margin-bottom: 0;
    }
    .qa-item{
        padding: 1.5rem 0;
        border-bottom: 1px solid #7B9A5E;
    }
    .qa-title{
        display: flex;
        align-items: center;
        padding: .8rem 2.2rem .8rem 2.2rem;
        background:url(../img/top/faq_open.svg)no-repeat right center;
        background-size: 1rem auto;
        position: relative;
        z-index: 2;
        cursor: pointer;
        font-size: 1.3rem;
        line-height: 2rem;
        letter-spacing: .08em;
    }
    .qa-title.is-active{
        background:url(../img/top/faq_close.svg)no-repeat right center;
        background-size: 1rem auto;
    }
    .qa-title:before{
        content: 'Q';
        position: absolute;
        z-index: 2;
        left: 0;
        top: .6rem;
        color: #7B9A5E;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.6rem;
        line-height: 2rem;
        font-weight: 500;
    }
    .qa-content{
        display: none;
        font-size: 1.3rem;
        line-height: 2rem;
        letter-spacing: .06em;
        padding: .7rem 0 .7rem;
    }
}

/*0202*/

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    .slick-slide{
        margin: 0 1.75rem;
    }
}