@charset "UTF-8";
/* CSS Document */

/*Home Styles
────────────────────────────────────*/
.hero {
    height: 740px;
    background-image: url(../images/home/hero_image.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero .inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .catch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: nowrap;
}

.hero .catch img:first-child {
    max-width: 376px;
}

.hero .catch img:last-child {
    max-width: 504px;
}


@media (max-width: 1028px) {
    .hero {
        height: 60vh;
        min-height: 400px;
        max-height: 600px;
    }

    .hero .catch {
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero .catch img {
        max-width: 45%;
        height: auto;
    }
}

@media (max-width: 440px) {
    .hero {
        height: 50vh;
    }

    .hero .catch img:first-child {
        max-width: 75%;
    }

    .hero .catch img:last-child {
        max-width: 100%;
    }
}


/*News Section
────────────────────────────────────*/
.news {
    margin: 0 auto;
    background-color: #FDF9EE;;
}

.news>.inner {
    width: 100%;
    max-width: 1000px;
    padding: 100px 0 120px;
}

.news h2.h2_type01::after {
    background-color: #ff7f00;
}

.news .news-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.news .news-item {
    width: calc(25% - 15px);
}

.news .news-item a img {
    display: block;
    width: 100%;
    max-width: 230px;
    height: auto;
    object-fit: cover;
    object-position: center;
    margin-bottom: 10px;

    aspect-ratio: 230 / 173;
}

.news .news-item a .date {
    font-size: 1.4rem;
}

.news .news-item a h3 {
    font-size: 2rem;
    font-weight: 500;
}


@media (max-width: 1028px) {
    .news>.inner {
        padding: 100px 20px 100px;
    }

    .news .news-item>h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 820px) {
    .news .news-item {
        width: calc(50% - 10px);
    }

    .news .news-item a img {
        max-width: 100%;
    }

    .news .header-group>p {
        font-size: 2.4rem;
    }

    .news .news-item a h3 {
        font-size: 1.8rem;
    }
}


/*Concept Section
────────────────────────────────────*/
.concept {
    margin: 0 auto;
    color: white;
    background-color: #ff7f00;
    background-image: url(../images/home/concept_bg.png), url(../images/home/concept_txtbg.png);
    background-size: inherit;
    background-position: right 20px top 20px, center bottom;
    background-repeat: no-repeat, repeat-x;
}

.concept>.inner {
    width: 100%;
    max-width: 1000px;
    padding: 100px 20px 170px;
}

.concept .header-group {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}
.concept .header-group h2.h2_type01::after {
    background-color: #fff;
}

.concept .header-group p {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffef08;
    margin-bottom: 10px;
}

.concept .description p {
    font-size: 2.4rem;
    margin: 0 0 100px 70px;
    font-weight: 500;
}

.concept>.inner>.features {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
}

.concept>.inner>.lifestyle {
    display: flex;
    gap: 60px;
    flex-direction: row-reverse;
}

.concept>.inner>.features>img,
.concept>.inner>.lifestyle>img {
    display: block;
    width: 460px;
    height: 260px;
    border-radius: 20px;
}

.concept>.inner>.features>.content,
.concept>.inner>.lifestyle>.content {
    flex: 1;
    max-width: 480px;
}

.concept>.inner>.features>.content>h3,
.concept>.inner>.lifestyle>.content>h3 {
    font-size: 2.7rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.concept>.inner>.lifestyle>.content>div,
.concept>.inner>.features>.content>div {
    line-height: 32px;
    margin-bottom: 30px;
}

.concept>.inner>.features>.content>p,
.concept>.inner>.lifestyle>.content>p {
    line-height: 32px;
    margin-bottom: 20px;
}

.concept>.inner>.features>.content>.btn,
.concept>.inner>.lifestyle>.content>.btn {
    width: 280px;
}


@media (max-width: 1028px) {
    .concept>.inner {
        padding: 60px 20px 100px;
    }

    .concept .header-group>p {
        font-size: 2.4rem;
    }

    .concept>.inner>.header-group {
        margin-bottom: 20px;
    }

    .concept>.inner>.features {
        gap: 30px;
        margin-bottom: 60px;
    }

    .concept>.inner>.lifestyle {
        gap: 30px;
    }

    .concept .description p {
        font-size: 1.8rem;
        margin: 0 0 50px 50px;
    }

    .concept>.inner>.features>.content>h3,
    .concept>.inner>.lifestyle>.content>h3 {
        font-size: 2.4rem;
        margin-bottom: 10px;
    }
}
@media (max-width: 820px) {
    .concept {
        background-size: 50%, contain;
        background-position: right 20px top 20px, calc(50% + 20px) calc(100% - 10px);
        background-repeat: no-repeat;
    }

    .concept>.inner {
        padding: 40px 20px 60px;
    }

    .concept .header-group>p {
        font-size: 2.0rem;
    }

    .concept>.inner>.header-group {
        margin-bottom: 30px;
    }

    .concept .description p {
        font-size: 1.6rem;
        margin: 0 0 40px 0;
        line-height: 1.8;
    }

    .concept>.inner>.features,
    .concept>.inner>.lifestyle {
        display: block;
        margin-bottom: 50px;
        gap: 0;
    }

    .concept>.inner>.features>img,
    .concept>.inner>.lifestyle>img {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 200px;
        margin-bottom: 20px;
    }

    .concept>.inner>.features>.content,
    .concept>.inner>.lifestyle>.content {
        max-width: 100%;
    }

    .concept>.inner>.features>.content>h3,
    .concept>.inner>.lifestyle>.content>h3 {
        font-size: 2.0rem;
        margin-bottom: 15px;
    }

    .concept>.inner>.lifestyle>.content>div,
    .concept>.inner>.features>.content>div {
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .concept>.inner>.features>.content>.btn,
    .concept>.inner>.lifestyle>.content>.btn {
        margin: 0 auto;
    }
}


/* CTA Section */
.cta {
    margin: 100px auto;
}

.cta .inner {
    width: 100%;
    max-width: 718px;
}

.cta h2.h2_type01::after {
    background-color: #ff7f00;
}

.cta .description p {
    margin-bottom: 30px;
}
.cta .description p span,
.cta .description .t-20 p{
	font-size:2.0rem;
    font-weight: 700;
}

.cta .description .t-20{
	text-align:center;
	background:#FFF5D8;
	padding: 50px 50px 10px;
   margin-bottom: 50px;
}
.cta .description .t-20 p .circle{
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
	color:#fff;
	background:#FF7F00;
	text-align:center;
  line-height: 80px;
	font-weight: 400;
    margin-right: 15px;
}
.cta .description .t-20 p:first-child {
    margin-bottom: 10px;
}
.cta .description p.highlight {
    color: #ff7f00;
    font-weight: 500;
    font-size: 1.7rem;
}


.cta>.inner>.btn {
    margin: 50px auto;
}

/* Responsive - 1028px以下 */
@media (max-width: 1028px) {
    .cta {
        margin: 60px auto 0;
    }

    .cta>.inner {
        padding: 0 20px;
    }

    .cta>.inner>h2 {
        font-size: 2.4rem;
    }

    .cta>.inner>p.highlight {
        font-size: 1.6rem;
    }

    .cta>.inner>.btn {
        margin: 40px auto;
    }

    /* Footer margin adjustment */
    /*.home .footer {
        margin: 60px auto 0;
    }*/
}

/* MP Section：経営理念 */

.mp{
	  padding: 100px 0 40px;
	  background:#FFB266;
}
.mp .inner {
    width: 100%;
    max-width: 718px;
}
.mp .description{
    font-size: 2.4rem;
    margin: 30px auto 70px;
    font-weight: 500;
	  text-align:center;
    background: rgba(255,255,255,.15);
    padding: 50px;
}
.mp .description p:first-child{
	  padding-bottom:40px;
}
