@charset "UTF-8";
/* ===============================
common
================================== */
:root {
    --white: #FFFFFF;
    --backgroundwhite: #F8F8ED;
    --green: #596823;
    --orange: #C98758;
    --brown: #684B23;
    --yellow: #FDE968;
    --black: #4C4637;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
    'Zen Maru Gothic',
    'Kiwi Maru',
    'Noto Sans JP',
    'Josefin Sans',
    'Jost',
    sans-serif;
    font-weight: 500;
    color: var(--black,#4C4637);
    background-color: var(--backgroundwhite,#F8F8ED);
    line-height: 1.6;
    letter-spacing: 0.05em;
}

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

.underLine {
    text-decoration-line: underline; 
    text-decoration-style: solid;
    text-decoration-color: #DFC44A;
    text-decoration-thickness: 3px;
}

.txtOrange {
    color: var(--orange,#C98758);
}

summary {
    display: block;
    list-style: none;
}

summary::-webkit-details-marker {
    display :none;
}

.section__topic {
    margin: 0 auto;
}

.section__title {
    text-align: center;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.topic_decoration {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 5px;
    margin-top: 10px;
}

.green_decoration {
    background-color: var(--green);
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

/* common pc */
@media screen and (min-width:769px) {
    .spBr {
        display: none;
    }

    .section__title {
        font-size: 4.8rem;
    }

    .btnhover {
        transition-duration: .4s;
        transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    }

    .btnhover:hover {
        transform: scale(1.1);
    }
}

/* ===============================
header
================================== */
#header {
    width: 100%;
    height: 87px;
    background-color: rgba(248, 248, 237, 0.8);
}

#header.fixed {
	position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
}

.header__topic {
    padding: 20px 5.3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    width: 140px;
    height: 47px;
}

/* #header.fixed .header__logo {
    display: none;
} */

#menu {
    width: 32px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: .5s;
    z-index: 999;
}

/* 1本目の棒 */
.menu-line1 {
    width: 100%;
    height: 2px;
    background-color: var(--green);
    transition: .6s;
}

/* 2本目の棒 */
.menu-line2 {
    width: 100%;
    height: 2px;
    margin-top: .7rem;
    background-color: var(--green);
    transition: .6s;
}
    
/* JS用のclass 棒が回転する*/
.rotate {
    transform: rotateZ(180deg)
}

.rotate1 {
    transform: rotateZ(45deg);
}
.rotate2 {
    width: 100%;
    transform:  translate(0,-0.8rem) rotateZ(-45deg);
}

.nav {
    background: var(--backgroundwhite);
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav.active {
    transform: translateX(0);
}

.nav__header {
    display: flex;
    justify-content: center;
}

.nav__logo {
    width: 182px;
    height: 61px;
    margin: 84px auto 0;
}

.nav__list {
    width: 48.5%;
    margin: 20px auto 0;
}

.nav__item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-top: 40px; */
    padding: 20px 0;
    color: var(--green);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

.nav__item a::after {
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    margin-left: 6px;
    border-top: 2px solid var(--green);
    border-right: 2px solid var(--green);
    content: '';
}

.nav__buttonGroup {
    width: 55%;
    margin: 36px auto 0;
}

.nav__webBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 46px;
    background-color: #C76D06;
    border-radius: 30px;
    color: var(--white);
    font-family: 'Noto Sans JP';
    font-size: 1.4rem;
    font-weight: 600;
    box-shadow: 0px 2px 8px 0px rgba(126, 123, 123, 0.25);
}

.nav__webBtn::after {
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    margin-left: 6px;
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    content: '';
}

.nav__lineBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 46px;
    background-color: var(--white);
    border-radius: 30px;
    border: 3px solid #00B900;
    color: #00B900;
    font-family: 'Noto Sans JP';
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0px 2px 8px 0px rgba(126, 123, 123, 0.25);
    margin-top: 20px;
}

.nav__lineIcon {
    width: 26px;
    height: 26px;   
    margin-left: 4px;
}

.nav__lineBtn::after {
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    margin-left: 6px;
    border-top: 2px solid #00B900;
    border-right: 2px solid #00B900;
    content: '';
}

.nav__cvBtn a {
    display: none;
}

/* header PC */
@media screen and (min-width:769px) { 
    #header {
        height: 120px;
        padding: 20px 4.1%;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }
    
    .header__topic {
        padding: 0;
    }
    
    .header__logo {
        width: 250px;
        height: 70px;
        object-fit: contain;
    }
    
    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: transparent;
        padding: 0;
        position: static;
        transform: translate(0);
        height: auto;
    }
    
    #menu,
    .nav__logo,
    .nav__webBtn,
    .nav__lineBtn,
    .nav__item:first-of-type,
    .nav__item a::after {
        display: none;
    }

    .nav__list {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
        gap: 0 40px;
        margin: 0;
    }

    .nav__item a {
        padding: 0;
    }

    .nav__cvBtn a {
        display: block;
        width: 168px;
        height: 42px;
        background-color: var(--brown);
        border-radius: 30px;
        text-align: center;
        color: var(--white);
        font-size: 1.8rem;
        font-weight: 600;
        padding: 6px 0;
    }

    .nav__buttonGroup {
        width: 0;
        margin: 0;
    }
}

/* ===============================
mainVisual
================================== */
.mainVisual {
    height: 618px;
    display: flex;
    flex-direction: column;
}

.mainVisual__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mainVisual__lead {
    width: 75%;
    text-align: center;
    font-family: 'Kiwi Maru';
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.9;
    letter-spacing: 0.1em;
    text-shadow: 0 4px 8px rgba(126, 123, 123, 0.25);
    margin: 50px auto 0;
}

.catchCopy__bg {
    width: 100%;
    height: 349px;
    background-image: url(../assets/images/mv_SP.png) ;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 32px;
}

.catchCopy__wrapper {
    background-color: rgba(255, 255, 255, 0.6);
    width: 100%;
    height: 77px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.catchCopy__txt {
    text-align: center;
    font-family: 'Kiwi Maru';
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.catchCopy__txtSmall {
    font-size: 2.4rem;
}

.mainVisual__summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 2%;
    padding: 0 4%;
    margin-top: -64px;
    position: relative;
    z-index: 98;
}

.summaryImg {
    width: 32.4%;
    height: auto;
    max-width: 140px;
}

/* mainVisual PC */
@media screen and (min-width:769px) { 
    .mainVisual {
        height: 600px;
        position: relative;
    }

    .mainVisual__wrapper {
        flex-direction: column-reverse;
        height: 100%;
        background-image: url(../assets/images/mv_PC.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding-bottom: 48px;
    }
    
    .mainVisual__lead {
        font-size: 2.2rem;
        margin: 8px auto 0;
    }
    
    .catchCopy__bg {
        height: auto;
        background-image: none;
        margin-top: 0;
    }
    
    .catchCopy__wrapper {
        width: 524px;
        margin: 0 auto;
    }
    
    .catchCopy__txt {
        font-size: 5rem;
    }
    
    .catchCopy__txtSmall {
        font-size: 4rem;
    }

    .mainVisual__summary {
        justify-content: flex-end;
        padding: 0 4.1%;
        margin-top: 0;
        position: absolute;
        right: 0;
        bottom: 10%;
    }
    
    .summaryImg {
        width: 16.5%;
        height: auto;
        max-width: none;
    }
}

/* ===============================
problem
================================== */
.section--problem {
    padding: 80px 5.3% 100px;
}

.problem__headingSmall {
    text-align: center;
    color: var(--orange);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.problem__heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.problem__heading span {
    font-weight: 800;
}

.problem__wrapper {
    margin-top: 40px;
}

.problem__item {
    width: 100%;
    height: 70px;
    background-color: var(--white);
    border: 1px solid rgba(126, 123, 123, 0.25);
    border-radius: 8px;
    margin-top: 16px;
    display: flex;
    justify-content: center;
}

.problem__txtWrapper {
    width: 88%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.problem__icon {
    width: 22px;
    height: 22px;
}

.problem__icon:first-of-type {
    margin-right: 6px;
}

.problem__itemTxt {
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.7;
    margin: 0 auto;
}

.problem__underTriangle {
    display: block;
    width: 15px;
    height: 26px;
    margin: 40px auto 0;
}

.problem__txt {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.9;
    letter-spacing: 0.1em;
    margin: 40px auto 0;
}

.problem__txt span {
    font-size: 2rem;
}

/* problem PC */
@media screen and (min-width:769px) {
    .section--problem {
        padding: 120px 15.2%;
    }
    
    .problem__headingSmall {
        font-size: 2rem;
    }
    
    .problem__heading {
        font-size: 3.6rem;
    }
        
    .problem__wrapperPC {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0 16px;
    }
    
    .problem__item {
        height: auto;
        padding: 16px;
    }
    
    .problem__txtWrapper {
        width: auto;
    }
    
    .problem__icon:first-of-type {
        margin-right: 16px;
    }
    
    .problem__icon {
        width: 25px;
        height: 23px;
        margin-right: 16px;
    }
    
    .problem__itemTxt {
        font-size: 1.8rem;
    }
    
    .problem__underTriangle {
        width: 24px;
        height: 42px;
    }
    
    .problem__txt {
        font-size: 2.4rem;
    }
    
    .problem__txt span {
        font-size: 2.8rem;
    }
}

/* ===============================
feature
================================== */
.section--feature::before {
    content: '';
    display: block;
    width: 2px;
    height: 60px;
    background-color: var(--green);
    margin: 0 auto -30px;
    position: relative;
    z-index: 1;
}

.section--feature {
    padding: 0 5.3%;
    overflow: hidden;
}

.feature__bg {
    padding: 80px 300px 100px;
    background-color: var(--white);
    min-height: 300px;
    border-top-right-radius: 2000px 600px;
    border-top-left-radius: 2000px 600px;
    border-bottom-right-radius: 2000px 600px;
    border-bottom-left-radius: 2000px 600px;
    margin-left: -300px;
    margin-right: -300px;
    position: relative;
    z-index: 0;
}

.feature__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 110px;
}

.feature__itemTopics01,
.feature__itemTopics02,
.feature__itemTopics03 {
    height: 186px;
    position: relative;
}

.feature__itemTopics01::before,
.feature__itemTopics02::before,
.feature__itemTopics03::before {
    position: absolute;
    font-size: 25.3rem;
    font-family: 'Josefin Sans';
    font-weight: 300;
    color: rgba(89, 104, 35, 0.1); 
    z-index: 0;
}

.feature__itemTopics01::before {
    content: "01";
    top: -112px;
    left: 0;
}

.feature__itemTopics02::before {
    content: "02";
    top: -112px;
    left: -38px;
}

.feature__itemTopics03::before {
    content: "03";
    top: -112px;
    left: -30px;
}

.feature__itemTitle {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.feature__itemImg01 {
    display: block;
    width: 230px;
    height: 230px;
    margin: -44px auto 0;
    position: relative;
    z-index: 1;
}

.feature__itemImg02 {
    display: block;
    width: 200px;
    height: 200px;
    margin: -20px auto 0;
    position: relative;
    z-index: 1;
}

.feature__itemImg03 {
    display: block;
    width: 160px;
    height: 160px;
    margin: -16px auto 0;
    position: relative;
    z-index: 1;
}

.feature__itemTxt {
    height: 106px;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.7;
    margin-top: 16px;
}

.feature__itemTxt span {
    font-weight: 700;
}

.feature__info {
    background-color: #F4F3EF;
    border-radius: 6px;
    padding: 32px 5.3%;
    margin-top: 40px;
    position: relative;
}

.feature__infoIcon {
    background-color: var(--green);
    border-radius: 2px;
    width: 80px;
    height: 28px;
    padding: 10px 18px;
    position: absolute;
    top: 0;
    left: 0;
}

.feature__infoTitle {
    color: var(--white);
    font-family: 'Josefin Sans';
    font-size: 1.3rem;
    line-height: 1;
}

.feature__infoTxt {
    font-size: 1.4rem;
    line-height: 1.7;
    letter-spacing: 0;
    margin-top: 8px;
    text-indent: -0.9em;
    padding: 0 0 0 1em;
}

.feature__infoTxt::before {
    background-color: var(--green);
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    content: '';
    margin-right: 6px;
}

/* problem PC */
@media screen and (min-width:769px) {
    .section--feature::before {
        width: 4px;
        height: 84px;
        margin: 0 auto -42px;
    }
    
    .section--feature {
        padding: 0 12.5%;
    }

    .feature__bg {
        padding: 180px 300px 180px;
    }
    
    .feature__list {
        display: flex;
        justify-content: center;
        align-items: first baseline;
        flex-wrap: wrap;
        gap: 0 60px;
        margin-top: 24px;
    }

    .feature__item {
        margin-top: 54px;
        width: 320px;
    }
    
    .feature__itemTitle {
        font-size: 2.6rem;
    }

    .feature__info {
        height: 230px;
    }    
}

/* ===============================
price
================================== */
.section--price {
    padding: 80px 5.3% 100px;
}

.price__lead {
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.7;
    margin-top: 24px;
}

.price__lead span {
    font-weight: 700;
}

/* セミオーダーパック */
.price__semiOrder {
    background-color: #F4F3DE;
    border-radius: 20px;
    border: 1px solid rgba(126, 123, 123, 0.25);
    margin-top: 40px;
}

.price__whiteArea {
    background-color: var(--white);
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 32px;
}

.price__iconFlex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 6px;
    position: relative;
}

.price_decoration {
    position: absolute;
    top: 26px;
    left: -23px;
} 

.price__icon1 {
    background-color: var(--green);
    border-radius: 2px;
    width: 94px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
}

.price__iconTxt1 {
    color: var(--yellow);
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
}

.price__icon2 {
    background-color: var(--green);
    border-radius: 2px;
    width: 136px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
}

.price__iconTxt2 {
    color: var(--white);
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
}

.price__packDescription {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.7;
    margin-top: 4px;
}

.price__packDescription:first-of-type {
    margin-top: 8px;
}

.price__packName {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 900;
    margin-top: 16px;
}

.price__wrapper {
    padding: 0 5.3%;
}

.price__regularPrice {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.price__category1 {
    color: #86807F;
    font-family: 'Noto Sans JP';
    font-size: 1.2rem;
    font-weight: 400;
    margin-right: 6px;
}

.price__price1 {
    color: #86807F;
    font-family: 'Jost';
    font-size: 2rem;
    letter-spacing: 0;
    text-decoration: line-through;
}

.price__limitedPrice {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #86807F;
    margin-top: 6px;
}

.price__category2 {
    color: var(--green);
    font-family: 'Noto Sans JP';
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    background-color: var(--white);
    border: 2px solid var(--green);
    width: 90px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.price__price2 {
    font-family: 'Jost';
    font-size: 3.2rem;
    line-height: 1.3;
    letter-spacing: 0;
    margin-right: 8px;
}

.price__priceTax2 {
    font-family: 'Noto Sans JP';
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
    margin-top: 10px;
}

.price__packDetail {
    margin-top: 40px;
    padding: 0 5.3%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 15px;
}

.price__detailLeft,
.price__detailRight {
    width: 140px;
}

.price__item1 {
    background-color: var(--white);
    border-radius: 10px;
    width: 100%;
    height: 114px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.price__item1:nth-of-type(2) {
    margin-top: 15px;
}

.price__meetingImg {
    width: 72px;
    height: 72px;
    margin-top: -12px;
}

.price__itemTxtLeft {
    color: var(--green);
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0;
    margin-top: -12px;
}

.price__itemTxtLeft span {
    font-size: 1rem;
    margin-top: 4px;
}

.price__mobileImg {
    width: 70px;
    height: 70px;
    margin-top: -12px;
    object-fit: contain;
}

.price__item2 {
    background-color: var(--white);
    border-radius: 10px;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.price__item2:nth-of-type(2) ,
.price__item2:nth-of-type(3) {
    margin-top: 15px;
}

.price__itemTxtRight {
    color: var(--green);
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
}

.price__itemTxtTop {
    font-size: 1rem;
    line-height: 2;
}

.price__itemTxtRight span {
    font-size: 1rem;
}

.price__info {
    padding: 0 5.3%;
    font-size: 1.2rem;
    line-height: 1.5;
    margin-top: 40px;
}

.price__info:nth-of-type(2) {
    margin-top: 12px;
}

/* モーダルウィンドウ */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.modal-window {
    display: none;
    background-color: var(--white);
    border-radius: 6px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    z-index: 1100;
    padding: 5rem;
}

.modal-datail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modal-img {
    width: 270px;
}

/* 表示領域外へはスクロールさせない */
.no_scroll {
    overflow: hidden;
}

/* 閉じるボタン */
.button-close {
    width: 206px;
    height: 38px;
    background-color: var(--brown);
    border-radius: 30px;
    text-align: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 24px;
}


.price__btn {
    width: 206px;
    height: 38px;
    background-color: var(--brown);
    border-radius: 30px;
    text-align: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0px 2px 8px 0px rgba(126, 123, 123, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto 48px;
}

.price__btn::after {
    transform: rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 6px;
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    content: '';
}

/* フルオーダーパック */
.price__fullOrder {
    background-color: #F4F3DE;
    border-radius: 20px;
    border: 1px solid rgba(126, 123, 123, 0.25);
    margin-top: 60px;
    padding-bottom: 48px;
}

.price__detailFull {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 15px;
    position: relative;
}

.price__detailFull::after {
    content: '+';
    color: var(--green);
    font-size: 3rem;
    font-weight: 700;
    position: absolute;
}

.price__item3 {
    background-color: var(--white);
    border-radius: 10px;
    width: 140px;
    height: 176px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.price__screenImg {
    width: 72px;
    height: 72px;
}

.price__itemTxtFull {
    color: var(--green);
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0;
}

.price__infoList {
    background-color: var(--white);
    border-radius: 6px;
    padding: 24px 6% 20px;
    margin-top: 60px;
    position: relative;
}

.price__infoListTopic1,
.price__infoListTopic2 {
    background-color: var(--green);
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 22px;
    position: absolute;
    top: -19px;
    left: 0;
}

.price__infoListTopic2 {
    padding: 10px 9px;
}

.price__infoListIcon {
    width: 20px;
    height: 20px;
    margin-right: 6px;
}

.price__infoListTitle {
    color: var(--white);
    font-size: 1.4em;
    font-weight: 700;
    line-height: 1;
}

.price__infoListTxt {
    font-size: 1.3rem;
    line-height: 1.7;
    letter-spacing: 0;
    margin-top: 6px;
    text-indent: -0.9em;
    padding: 0 0 0 1em;
}

.price__infoListTxt::before {
    background-color: var(--green);
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    content: '';
    margin-right: 6px;
}

/* price PC */
@media screen and (min-width:769px) {
    .section--price {
        padding: 120px 15.2%;
    }

    .price__lead {
        font-size: 1.6rem;
    }

    .price__flex {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0 40px;
        flex-wrap: wrap;
    }

    .price__semiOrder {
        width: 480px;
        height: 948px;
    }

    .price__iconFlex {
        margin-left: -175px;
    }

    .price__packName {
        font-size: 3.2rem;
    }
    
    .price__wrapper {
        padding: 0 13.5%;
    }

    .price__price1 {
        font-size: 2.4rem;
    }

    .price__price2 {
        font-size: 4rem;
    }

    .price__priceTax2 {
        font-size: 1.2rem;
        margin-top: 16px;
    }

    .price__packDetail {
        padding: 0 13.5%;
        gap: 0 16px;
    }
    
    .price__detailLeft,
    .price__detailRight {
        width: 160px;
    }
    
    .price__item1:nth-of-type(2) {
        margin-top: 16px;
    }
    
    .modal-window {
        width: 60vw;
    }

    .price__meetingImg {
        width: 95px;
        height: 95px;
        margin-top: -20px;
    }
    
    .price__itemTxtLeft {
        font-size: 1.4rem;
        margin-top: -20px;
    }
    
    .price__itemTxtLeft span {
        font-size: 1.2rem;
    }
    
    .price__mobileImg {
        width: 79px;
        height: 79px;
        padding-bottom: 13px;
    }
    
    .price__item2:nth-of-type(2) ,
    .price__item2:nth-of-type(3) {
        margin-top: 16px;
    }

    .price__itemTxtRight {
        font-size: 1.4rem;
    }
    
    .price__itemTxtTop {
        font-size: 1.2rem;
    }
    

    .price__itemTxtRight span {
        font-size: 1.2rem;
    }
    
    .price__info {
        padding: 0 13.5%;
    }

    .price__infoListTopic2 {
        padding: 10px 22px;
    }
    
    /* フルオーダーパック */
    .price__fullOrder {
        width: 480px;
        height: 948px;
        padding: 0;
        margin-top: 40px;
    }

    .price__iconfull {
        margin-left: -287px;
    }

    .price__detailFull {
        gap: 0 16px;
    }

    .price__detailFull::after {
        font-size: 4rem;
    }

    .price__item3 {
        width: 160px;
        height: 244px;
    }

    .price__screenImg {
        width: 102px;
        height: 102px;
        margin-bottom: -18px;
    }

    .price__itemTxtFull {
        font-size: 1.4rem;
    }

    .price__infoWrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0 40px;
    }

    .price__infoList {
        padding: 24px 3% 20px;
        width: 480px;
    }
    
    .price__infoListTopic1,
    .price__infoListTopic2 {
        border-radius: 3px;
    }

    .price__infoListTxt {
        font-size: 1.4rem;
    }
}

/* ===============================
flow
================================== */
.section--flow {
    padding: 0 5.3%;
}

.flow__wrapper {
    background-color: var(--white);
    border-radius: 10px;
    padding: 80px 0 20px;
}

.flow__lead {
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.7;
    margin-top: 24px;
}

.flow__lead span {
    font-weight: 700;
}

.flow__list {
    margin-top: 40px;
}

.flow__item {
    padding: 48px 5.3% 40px;
    border-top: 0.5px solid var(--green);
    position: relative;
}

.flow__topic {
    display: flex;
    align-items: center;
}

.flow__stepNum {
    background-color: var(--green);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-family: 'Josefin Sans';
    font-weight: 400;
    letter-spacing: 0;
    margin-right: 8px;
}

.flow__step {
    font-size: 1.1rem;
    line-height: 1.7;
}

.flow__num {
    font-size: 1.8rem;
    line-height: 1;
}

.flow__mainTitle {
    color: var(--orange);
    font-size: 1.8rem;
    font-weight: 700;
    margin-right: 8px;
}

.flow__icon01 {
    width: 72px;
    height: 56px;
}

.flow__icon02 {
    width: 78px;
    height: 42px;
}

.flow__icon06 {
    width: 76px;
    height: 42px;
    margin-left: 10px;
}

.flow__txtArea {
    margin-top: 20px;
}

.flow__txt {
    font-size: 1.4rem;
    letter-spacing: 0;
}

.txtLink {
    text-decoration: underline;
}

.txtLink:hover {
    color: var(--green);
}

.flow__subTitle {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.flow__subTxt {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0;
    margin-top: 20px;
}

.flow__subItem {
    background-color: #F4F3DE;
    padding: 24px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.flow__subItem::after,
.flow__item:first-child::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 14px;
    background-image: url(../assets/images/flow_polygon.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -14px;
    right: 50%;
    transform: translateX(50%);
}

.flow__subTxtArea {
    width: 77.5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flow__subItemTitle {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
}

.flow__titleSmall {
    font-size: 1.3rem;
    line-height: 1.2;
    letter-spacing: 0;
}

.flow__subItemTxt {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
    margin-top: 8px;
}

/* flow PC */
@media screen and (min-width:769px) {
    .section--flow {
        padding: 0 4.8%;
    }
    
    .flow__wrapper {
        border-radius: 20px;
        padding: 120px 8.4%;
    }
    
    .flow__lead {
        font-size: 1.6rem;
    }
    
    .flow__item {
        padding: 56px 3.7%;
        border-top: 1px solid var(--green);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .flow__item:last-of-type {
        border-bottom: 1px solid var(--green);
    }
        
    .flow__topic {
        width: 50%;
        flex-wrap: wrap;
    }

    .flow__stepNum {
        width: 70px;
        height: 70px;
        margin-right: 30px;
    }
    
    .flow__step {
        font-size: 1.2rem;
        line-height: 1.7;
    }
    
    .flow__num {
        font-size: 2.4rem;
        line-height: 1;
    }
    
    .flow__mainTitle {
        font-size: 2.4rem;
        margin-right: 0;
    }
    
    .flow__icon01 {
        width: 103px;
        height: 80px;
        margin-left: 85px;
    }
    
    .flow__icon02 {
        width: 109px;
        height: 59px;
        margin-left: 25px;
    }
    
    .flow__icon06 {
        width: 112px;
        height: 64px;
        margin-left: 100px;
    }
    
    .flow__txtArea {
        margin-top: 0;
        width: 50%;
        border-left: 1px solid #D9D9D9;

    }
    
    .flow__txt {
        font-size: 1.6rem;
        margin-left: 13.5%;
    }
    
    .flow__subTitle {
        font-size: 1.6rem;
        font-weight: 500;
    }
    
    .flow__subTxt {
        font-size: 1.4rem;
        margin: 6px 0 0 13.5%;
    }
    
    .flow__subItem::after,
    .flow__item:first-child::after {
        width: 42px;
        height: 25px;
        bottom: -25px;
    }

    .flow__subTxtArea {
        width: 67.9%;
        flex-direction: row;
        justify-content: flex-end;
    }
    
    .flow__subItemTitle {
        font-size: 2rem;
        text-align: start;
    }
    
    .flow__titleSmall {
        font-size: 1.4rem;
    }

    .flow__subItemTxt {
        width: 58.3%;
        font-weight: 500;
        margin: 0 0 0 40px;
    }
}

/* ===============================
works
================================== */
.section--works {
    padding: 120px 5.3% 100px;
}

.works__heading {
    background-color: var(--brown);
    border-radius: 4px;
    padding: 8px 0;
    margin-top: 32px;
    color: var(--white);
    font-size: 1.6rem;
    letter-spacing: 0;
    text-align: center;
}

.works__lead {
    width: 95.3%;
    font-size: 1.4rem;
    line-height: 1.7;
    margin: 24px auto 0;
}

.works__list {
    margin-top: 56px;
}

.works__item:nth-of-type(2) {
    margin-top: 80px;
}

.works__topic {
    width: 185px;
    margin: 0 auto;
    position: relative;
}

.works_decoration {
    width: 37px;
    height: 33px;
    position: absolute;
    top: -34%;
    left: -12%;
}

.works__subTitle {
    text-align: center;
    color: var(--orange);
    font-family: 'Josefin Sans';
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.23em;
}

.works__mainTitle {
    text-align: center;
    color: var(--brown);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.works__imgSP {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 10px auto 0;
    box-shadow: 0px 2px 8px 0px rgba(126, 123, 123, 0.25);
}

.works__imgPC,
.works__PCQR,
.works__PCPolygon {
    display: none;
}

.works__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 206px;
    height: 46px;
    background-color: var(--brown);
    border-radius: 30px;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0px 2px 8px 0px rgba(126, 123, 123, 0.25);
    margin: 32px auto 0;
}

.works__btn::after {
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    margin-left: 12px;
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    content: '';
}

/* works PC */
@media screen and (min-width:769px) {
    .section--works {
        padding: 120px 12.5%;
    }

    .works__heading {
        width: 65.8%;
        margin: 48px auto 0;
        font-size: 2rem;
    }
    
    .works__lead {
        width: 68%;
        font-size: 1.6rem;
        line-height: 1.8;
        margin: 16px auto 0;
    }
    
    .works__list {
        margin-top: 80px;
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        align-items: flex-start;
        gap: 0 6.5%;

    }
    
    .works__item:nth-of-type(2) {
        margin-top: 0;
    }
    
    .works__topic {
        width: 230px;
    }
    
    .works_decoration {
        top: -20%;
        left: -10%;
    }
    
    .works__subTitle {
        font-size: 1.2rem;
    }
    
    .works__mainTitle {
        font-size: 1.8rem;
    }
    
    .works__mainTitle:first-of-type::before {
        top: -68%;
        left: 16%;
    }    
    
    .works__imgSP {
        display: none;
    }
    
    .works__imgPC,
    .works__PCQR,
    .works__PCPolygon {
        display: block;
    }
    
    .works__imgPC {
        margin-top: 16px;
        box-shadow: 0px 2px 8px 0px rgba(126, 123, 123, 0.25);
    }

    .works__link {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-top: 20px;
    }

    .works__btn {
        height: 37px;
        margin: 0 9% 0 0;
    }
    
    .works__btn::after {
        margin-left: 8px;
    }
    
    .works__PCQR {
        width: 98px;
        height: 98px;
    }

    .works__PCPolygon {
        width: 20px;
        height: 24.5px;
        margin: 44% 0 0 0;
    }
}

/* ===============================
question
================================== */
.section--question {
    background-color: var(--white);
    padding: 80px 5.3% 100px;
}

details {
    position: relative;
}

summary::after {
    content: '+';
    color: var(--green);
    font-size: 2rem;
    font-weight: 700;
    position: absolute;
    top: 18px;
    right: 18px;
}

details[open] summary::after {
    content: 'ー';
    color: var(--green);
    position: absolute;
    font-size: 2rem;
    font-weight: 700;
    top: 18px;
    right: 18px;
}

.question__details:first-of-type {
    margin-top: 40px;
}

.question__details {
    background-color: var(--backgroundwhite);
    border-radius: 4px;
    padding: 24px 20px;
    margin: 24px auto 0;
}

.question__summary {
    font-size: 1.4rem;
    line-height: 1.7;
    letter-spacing: 0;
    width: 81%;
    margin-left: 36px;
}

.question__summary::before {
    background-color: var(--green);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    content: 'Q';
    display: inline-block;
    color: var(--white);
    font-family: 'Josefin Sans';
    font-size: 1.4rem;
    margin: 0 4px 0 -35px;
    padding: 5px 9px;
}

.question__wrapper {
    overflow: hidden;
}

.question__answer {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0;
    margin: 16px 0 0 36px;
}

.question__answer::before {
    background-color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    content: 'A';
    display: inline-block;
    color: var(--green);
    font-family: 'Josefin Sans';
    font-size: 1.4rem;
    margin: 0 1px 0 -35px;
    padding: 5px 10.5px;
}

/* question PC */
@media screen and (min-width:769px) {
    .section--question {
        background-color: var(--white);
        padding: 120px 15.2% 120px;
    }
    
    summary::after {
        font-size: 2.4rem;
        top: 17px;
        right: 24px;    
    }
    
    details[open] summary::after {
        font-size: 2.4rem;
        top: 17px;
        right: 24px;
    }
    
    .question__details:first-of-type {
        margin-top: 56px;
    }
    
    .question__details {
        padding: 24px;
    }

    .question__summary {
        font-size: 1.8rem;
        width: 95%;
        cursor: pointer;
    }
    
    .question__summary::before {
        margin-right: 16px;
    }
    
    .question__answer {
        font-size: 1.6rem;
        width: 92%;
        margin: 24px 0 0 52px;
    }
    
    .question__answer::before {
        margin: 0 16px 0 -51px;
    }
}

/* ===============================
contact
================================== */
.section--contact {
    padding: 80px 10.6%;
    background-image: url(../assets/images/cv_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact__lead {
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.9;
    margin: 16px auto 0;
}

.contact__btnGroup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px 0;
    margin-top: 40px;
}

.contact__web,
.contact__line {
    background-color: var(--white);
    border-radius: 6px;
    width: 100%;
    height: auto;
    padding: 39px 0 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.contact__web::after,
.contact__line::after {
    background-color: var(--green);
    content: '';
    display: inline-block;
    width: 15%;
    height: 5px;
    position: absolute;
    top: 0;
}

.contact__webTopic,
.contact__lineTopic {
    text-align: center;
    font-family: 'Noto Sans JP';
    font-size: 1.4rem;
    font-weight: 700;
}

.contact__webBtn,
.contact__lineBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 260px;
    height: 56px;
    border-radius: 30px;
    font-family: 'Noto Sans JP';
    font-size: 1.6rem;
    font-weight: 600;
    box-shadow: 0px 2px 8px 0px rgba(126, 123, 123, 0.25);
    margin: 8px auto 0;
}

.contact__webBtn {
    background-color: #C76D06;
    color: var(--white);
}

.contact__lineBtn {
    border: 3px solid #00B900;
    background-color: var(--white);
    color: #00B900;
}

.contact__lineIcon {
    width: 26px;
    height: 26px;
    margin-left: 4px;
}


.contact__webBtn::after,
.contact__lineBtn::after {
    transform: rotate(45deg);
    width: 9px;
    height: 9px;
    margin-left: 12px;
    content: '';
}

.contact__webBtn::after {
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
}

.contact__lineBtn::after {
    border-top: 2px solid #00B900;
    border-right: 2px solid #00B900;
}

/* contact PC */
@media screen and (min-width:769px) {
    .section--contact {
        padding: 100px 4.7%;
        background-image: none;
    }

    .section__bg {
        background-image: url(../assets/images/cv_bg.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 50px;
        padding: 120px;
    }
    
    .contact__lead {
        text-align: center;
        font-size: 2rem;
        letter-spacing: 0.1em;
        margin: 16px auto 0;
    }
    
    .contact__btnGroup {
        flex-direction: row;
        justify-content: center;
        gap: 0 12px;
    }

    .contact__web,
    .contact__line {
        width: 380px;
    }


    .contact__web::after,
    .contact__line::after {
        height: 6px;
    }

    .contact__webTopic,
    .contact__lineTopic {
        font-size: 1.6rem;
    }

    .contact__webBtn,
    .contact__lineBtn {
        width: 285px;
        height: 60px;
        font-size: 1.8rem;
    }

    .contact__lineIcon {
        margin-left: 8px;
    }

    .contact__webBtn::after,
    .contact__lineBtn::after {
        margin-left: 16px;
    }
}

/* ===============================
profile
================================== */
.section--profile {
    background-color: var(--white);
    padding: 100px 10.6%;
}

.profile__topic {
    margin: 0 auto;
}

.profile__title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0;
}

.topic_decoration--profile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 5px;
    margin-top: 5px;
}

.orange_decoration {
    background-color: var(--orange);
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.profile__img {
    display: block;
    width: 100%;
    max-width: 321px;
    margin: 36px auto 0;
}

.profile__txtArea {
    margin-top: 24px;
}

.profile__name {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0;
}

.profile__description {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0;
    margin-top: 16px;
}

.profile__btnArea {
    margin: 32px auto 0;
}

.profile__btnTxt {
    text-align: center;
    color: var(--brown);
    font-size: 1.2rem;
    letter-spacing: 0;
}

.profile__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 206px;
    height: 46px;
    background-color: var(--brown);
    border-radius: 30px;
    color: var(--white);
    font-family: 'Noto Sans JP';
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0;
    box-shadow: 0px 2px 8px 0px rgba(126, 123, 123, 0.25);
    margin: 4px auto 0;
}

/* .profile__btn::after {
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    margin-left: 12px;
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    content: '';
} */

/* profile PC */
@media screen and (min-width:769px) {
    .section--profile {
        padding: 120px 20.6% 140px;
    }
    
    .profile__wrapper {
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        align-items: flex-start;
        margin-top: 24px;
    }

    .profile__img {
        width: 321px;
        margin: 0;
    }
    
    .profile__txtArea {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        margin-top: 0;
    }
    
    .profile__name {
        font-size: 2.4rem;
    }
    
    .profile__description {
        width: 85%;
        margin-top: 10px;
    }
    
    .profile__btnArea {
        margin: 48px 0 0 0;
    }
}

/* ===============================
footer
================================== */
.footer {
    background-color: var(--green);
    padding: 50px 10.4% 60px;
}

.fotter__logo {
    width: 187px;
    height: 63px;
    display: block;
    margin: 0 auto;
}

.nav__footerlist {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px 34px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.nav__footeritem {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 400;
}

.nav__footerBtn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 138px;
    height: 35px;
    background-color: var(--white);
    border-radius: 30px;
    color: var(--green);
    font-size: 1.3rem;
    font-weight: 700;
}

.copy {
    text-align: center;
    color: var(--white);
    font-family: 'Josefin Sans';
    font-size: 1rem;
    font-weight: 400;
    display: block;
    margin: 30px auto 0;
}

/* footer PC */
@media screen and (min-width:769px) {
    .footer {
        padding: 80px 0 60px;
    }

    .fotter__logo {
        width: 210px;
        height: 70px;
    }
    
    .nav__footerlist {
        gap: 0 40px;
        flex-wrap: wrap;
        margin-top: 24px;
    }
    
    .nav__footeritem {
        font-size: 1.4rem;
    }

    .nav__footerBtn a {
        width: 164px;
        height: 36px;
        font-size: 1.6rem;
    }
    
    .copy {
        font-size: 1rem;
        margin: 24px auto 0;
    }
}

/* ===============================
privacypolicy
================================== */
.container {
    padding: 80px 10.6%;
}

.privacypolicy__title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
}

.privacypolicy__despriction {
    margin-top: 40px;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.8;
}

.privacy__list {
    margin-top: 64px;
}

.privacy__title {
    margin-top: 32px;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.8;
    border-bottom: 1px solid var(--green);
    padding-bottom: 2px;
}

.privacy__txt {
    margin-top: 6px;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.8;
}

.txtLink {
    text-decoration: underline;
}

.txtLink:hover {
    opacity: 0.6;
}

@media screen and (min-width:769px) {
    .container {
        padding: 130px 12.5% 100px;
    }

    .privacypolicy__title {
        font-size: 3.2rem;
    }
    
    .privacypolicy__despriction {
        margin-top: 100px;
        font-size: 1.6rem;
    }
    
    .privacy__list {
        margin-top: 80px;
    }
    
    .privacy__title {
        margin-top: 56px;
        font-size: 2.2rem;
        padding-bottom: 4px;
    }
    
    .privacy__txt {
        margin-top: 8px;
        font-size: 1.6rem;
    }
}    