.lp {
    background-color: #FFFAF0;
}

/* 背景の明朝体 */
.fixed-mincho {
    font-family: var(--font-shippori-mincho);
    font-weight: 700;
    /* font-size: 19.4375vw; */
    font-size: clamp(5rem, 0.601rem + 18.77vw, 17.494rem);
    writing-mode: vertical-rl;
    color: #E0CFAE;
    position: absolute;
    right: 0;
    top: 0;
    line-height: 1.1;
    letter-spacing: 0.02em;
    opacity: .2;
}
/* 背景の明朝体 */
.fixed-mincho.left {
    right: auto;
    left: 0;
}

/* 共通スライド CSSのみ */
.fv__slider {
    overflow-x: hidden;
    margin-top: 16px;
}
.slide__contain {
    align-items: center;
    display: flex;
    overflow-x: hidden;
    width: 100%;
}
.slideItems {
    align-items: center;
    animation: infinite-scroll-right 30s infinite linear 0s both;
    display: flex;
    gap: 50px;
    /* gapの半分のpaddingで */
    padding: 0 calc(50px / 2);
    width: max-content;
}
.slideItem {
    width: calc(100vw / 3);
}
.fv__slideItems .slideItem {
    margin: 0 10px 10px 0;
    overflow: hidden;
    border-radius: 40px;
    box-shadow: 10px 10px 0 rgba(216 203 190 / .3);
    width: calc(100vw / 2.765);
}
.slideItem img {
    width: 100%;
}

@keyframes infinite-scroll-right {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

@media (max-width:600px) {
    .slideItem {
        width: calc(100vw / 1.2);
    }
}

/* ==================
fv
================== */
.fv {
    overflow-x: hidden;
    position: relative;
}
.fv__titles {
    position: absolute;
    left: 2.0833vw;
    top: 48%;
    transform: translateY(-50%);
}
.fv__title {
    background-color: var(--colorRead-theme);
    padding: 14px 24px;
    width: fit-content;
}
.fv__title + .fv__title {
    margin-top: 24px;
}
.fv__title-2 img {
    width: 39.775vw;
}

.fv__bottom {
    margin-top: -15.7vw;
    position: relative;
    z-index: 2;
    padding-bottom: 42px;
}
.fv-bottom__contents {
    margin-top: 20px;
}
.fv-bottom__ramen {
    max-width: 752px;
    margin-right: auto;
    margin-left: auto;
    width: 60vw;
}
.fv-bottom__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}
.fv-bottom__logo {
    max-width: 262px;
}
.fv-bottom__text {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}
.fv-bottom__logo-company {
    width: 318px;
    margin: 20px auto 0;
}
@media (max-width:767px) {
    .fv__slider {
        margin-top: 80px;
    }
    .fv__titles {
        left: 0;
        width: 96%;
        transform: none;
        top: 24px;
    }
    .fv__title {
        padding: 2px 16px 6px 16px;
    }
    .fv__title-2 img {
        width: 100%;
    }
    .fv__title + .fv__title {
        margin-top: 12px;
    }
    .fv__slider {
        margin-top: 80px;
    }
    .fv-bottom__logos {
        flex-direction: column;
        gap: 2px;
    }
    .fv-bottom__text {
        font-size: 18px;
    }
    .fv-bottom__ramen {
        width: 70vw;
    }
    .fv-bottom__logo-company {
        width: 264px;
    }
}
@media (max-width:600px) {
    .fv__slideItems .slideItem {
        width: calc(100vw / 1.5);
    }
    .fv__bottom {
        margin-top: -26.7vw;
    }
    .fv-bottom__ramen {
        width: 90vw;
    }

}

/* ==================
CTA 問い合わせ
================== */
.cta {
    background-color: var(--colorRead-theme);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}
.cta::before {
    content: "";
    background: url(../images/bg-cta-round.svg) no-repeat center center / contain;
    width: 71.6vw;
    height: 71.6vw;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: .2;
    animation: spinAnimation 30s linear infinite;
}
.cta__text {
    font-weight: 700;
    font-size: 40px;
    color: #fff;
    letter-spacing: 4px;
    text-align: center;
}
.cta__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

@keyframes spinAnimation {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media (max-width:767px) {
    .cta {
        padding: 40px 0;
    }
    .cta__text {
        font-size: 20px;
    }
    .cta__buttons {
        flex-direction: column;
        gap: 12px;
    }
}
@media (max-width:600px) {
    .cta::before {
        width: 110vw;
        height: 110vw;
    }
}
/* ==================
本気のマッチング
================== */
.serious {
    padding: 100px 0;
    position: relative;
}
.serious .fixed-mincho {
    top: 5.56vw;
    right: 5.56vw;
}
.serious__title-img {
    max-width: 568px;
    width: fit-content;
}
.serious__slider {
    margin-top: 64px;
    overflow: hidden;
}
.serious__slider .slideItems {
    align-items: flex-start;
}
.serious__slider .slideItem:nth-of-type(1) {
    width: 284px;
}
.serious__slider .slideItem:nth-of-type(2) {
    width: 324px;
}
.serious__slider .slideItem:nth-of-type(3) {
    width: 423px;
}
.serious__slider .slideItem:nth-of-type(4) {
    width: 304px;
}
.serious__slider .slideItem:nth-of-type(5) {
    width: 252px;
}

.serious__text-bottom {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-top: 40px;
}
@media (max-width:767px) {
    .serious__text-bottom {
        font-size: clamp(1rem, 0.58rem + 1.92vw, 1.5rem);
    }
    .serious__slider .slideItem:nth-of-type(1) {
        width: 227.4px;
    }
    .serious__slider .slideItem:nth-of-type(2) {
        width: 259.4px;
    }
    .serious__slider .slideItem:nth-of-type(3) {
        width: 338.4px;
    }
    .serious__slider .slideItem:nth-of-type(4) {
        width: 243.4px;
    }
    .serious__slider .slideItem:nth-of-type(5) {
        width: 201.6px;
    }
}
/* ==================
ラーメンデータバンクについて
================== */
.produce {
    background-color: #fff;
    position: relative;
    padding-bottom: 80px;
    overflow: hidden;
}
.produce__container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}
.produce .sectionTitle__img {
    max-width: 876.38px;
}
.produce__person {
    display: flex;
    padding: 40px;
    align-items: center;
    gap: 4.44%;
    background-color: #F3F3F3;
    margin: 40px 4.63% 0;
}
.produce__img {
    flex: 0 1 35.22%;
}
.produce__texts {
    flex: 1;
}
.produce__name-1 {
    font-size: 14px;
    font-weight: 700;
}
.produce__name-2 {
    margin-top: 4px;
    font-weight: 700;
    font-size: 24px;
}
.produce__text {
    font-size: 14px;
    margin-top: 40px;
}
@media (max-width:767px) {
    .produce .sectionTitle__img {
        max-width: 400px;
        padding: 16px 24px;
    }
    .produce__person {
        display: block;
        margin-right: auto;
        margin-left: auto;
        max-width: 540px;
    }
    .produce__name-1 {
        margin-top: 24px;
    }
    .produce__text {
        margin-top: 24px;
    }
}
@media (max-width:600px) {
    .produce__person {
        padding: 20px;
        margin: 40px 0 0 0;
    }
}

/* produce bottom */
.produce__event {
    display: flex;
    gap: 80px;
    justify-content: center;
    margin-top: 40px;
}
.event {
    position: relative;
    text-align: center;
    padding: 30px;
}
.event::before {
    content: "";
    background: url(../images/produce-bg-round--skin-color.png) no-repeat center center / contain;
    width: 508px;
    height: 507px;
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
}
.logo__ramen {
    max-width: 328px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}
.logo__database {
    margin: 0 auto;
    max-width: 333.04px;
    position: relative;
    z-index: 2;
    text-align: center;
}
.event__text {
    text-align: center;
    margin: 24px 0;
    position: relative;
    z-index: 2;
}
.event__img {
    position: relative;
    z-index: 2;
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
}
@media (max-width:900px) {
    .produce__event {
        flex-direction: column;
        gap: 24px;
    }
    .event::before {
        width: 100vw;
        height: 100vw;
        max-width: 540px;
        top: 60%;
        transform: translate(-50%, -50%);
    }
}
/* ==================
始動
================== */
.start {
    position: relative;
    padding-bottom: 80px;
}
.start__fixed-line {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
}
.start .fixed-mincho {
    top: 2.0833vw;
}
.start__container {
    position: relative;
    z-index: 2;
    padding-top: 8.33vw;;
}
.section.start {
    padding: 80px 0;
}
.start__text {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-top: 80px;
}
.start__text .fz-lg {
    font-size: 24px;
}
.red {
    color: var(--colorRead-theme);
}
.start__contents {
    display: flex;
    align-items: center;
    gap: 3.7%;
    justify-content: center;
}
.startContent {
    flex: 0 1 456px;
    margin-top: 40px;
    position: relative;
}
.startContent__texts {
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
}
.startContent__en {
    color: var(--colorRead-theme);
    text-align: center;
}
.startContent__text {
    text-align: center;
    width: fit-content;
    font-size: 24px;
    font-weight: 700;
}
.start__kakeru {
    width: 76.37px;
    height: 76.37px;
    display: inline-block;
}

@media (max-width:910px) {
    .start__contents {
        flex-direction: column;
        gap: 16px;
    }
    .startContent {
        max-width: 412px;
        flex: auto;
        margin-top: 0;
    }
    .startContent__text {
        font-size: clamp(1.25rem, 1.094rem + 0.71vw, 1.5rem);
    }
    .start__kakeru {
        width: 54px;
        height: 54px;
    }
    .start__text {
        font-size: 14px;
        line-height: 2;
        margin: 64px 0 16px 0;
    }
    .start__text .fz-lg {
        font-size: 18px;
    }
}
@media (max-width:500px) {
.startContent__texts {
    top: 16vw;
}
}
/* ==================
強み
================== */
.strengths {
    background-color: #fff;
    position: relative;
    padding-bottom: 100px;
}
.strengths__container {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}
.strengths .sectionTitle__img {
    max-width: 197.59px;
}
.strengths__contents {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    column-gap: 3.7037%;
    row-gap: 54px;
    margin-top: 80px;
}
.strangthsCard {
    background-color: #F3F3F3;
    padding: 78px 20px 20px 20px;
    position: relative;
    display: grid;
    gap: 24px;
    grid-template-rows: subgrid;
    grid-row: span 3;
}
.strangthsCard__point {
    color: #FFF;
    background-color: var(--colorRead-theme);
    writing-mode: vertical-rl;
    line-height: 1.4;
    padding: 10px;
    position: absolute;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
}
.strangthsCard__title {
    font-size: 20px;
    color: #0E1B33;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.16em;
    text-align: center;
}
.strangthsCard__text {
    text-align: center;
    height: auto;
}
.strengths__botton {
    grid-template-columns: 1fr 1fr;
    margin-top: 88px;
    display: grid;
}
.information {
    padding: 0 40px;
    text-align: center;
    color: var(--colorRead-theme);
}
.information:first-of-type {
    border-right: 1px solid var(--colorRead-theme);
}
.information__text {
    font-size: 18px;
    color: var(--colorRead-theme);
}
.information__numbers {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2.4px;
}
.information__numbers span {
    font-size: clamp(4rem, 3.648rem + 1.5vw, 5rem);
    line-height: 1.2125;

    font-weight: 600;
}
@media (max-width:767px) {
    .strengths {
        padding-bottom: 64px;
    }
    .strengths__container
    {
        padding-top: 64px;
    }
    .strengths__contents {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 40px;
    }
    .strangthsCard {
        margin: 24px;
        gap: 12px;
        padding-top: 32px;
    }
    .strangthsCard__point {
        top: 0;
        transform: translate(-50%, -50%);
        writing-mode: unset;
    }
    .strangthsCard__title {
        font-size: 18px;
        line-height: 1.4;
    }
    .strengths__botton {
        grid-template-columns: 1fr;
        margin-top: 16px;
    }
    .information {
        padding: 16px 0;
    }
    .information:first-of-type {
        border-right: none;
        border-bottom: 1px solid var(--colorRead-theme);
    }
}
/* ==================
描く将来像
================== */
.future {
    padding-bottom: 100px;
}
.future__container {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}
.future .fixed-mincho {
    top: 2.0833vw;
}
.future .sectionTitle__img{
    max-width: 220.73px;
}
.future__contents {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 3.7037%;
    margin-top: 64px;
}
.futureCard {
    background-color: #fff;
    display: grid;
    gap: 24px;
    padding: 24px;
    grid-template-rows: subgrid;
    grid-row: span 2;
}
.futureCard__head {
    display: flex;
    align-items: center;gap: 16px;
}
.futureCard__img {
    width: 100px;
    height: 100px;
    aspect-ratio: 1 / 1;
}
.futureCard__case {
    color: var(--colorRead-theme);
    line-height: 1.4;
}
.futureCard__title {
    font-size: 24px;
}
@media( max-width:767px) {
    .future__container {
        padding-top: 64px;
    }
    .future .sectionTitle__img {
        max-width: 180px;
    }
    .future__contents {
        gap: 24px;
        grid-template-columns: 1fr;
        margin-top: 40px;
    }
    .futureCard__title {
        font-size: 20px;
        line-height: 1.5;
    }
    .futureCard {
        gap: 16px;
    }
}
/* ==================
流れ
================== */
.flow {
    background-color: #fff;
}
.flow .fixed-mincho {
    writing-mode:horizontal-tb;
}
.flow__container {
    padding-top: 100px;
    position: relative;
    z-index: 2;
}
.flow .sectionTitle {
    text-align: left;
}
.flow .sectionTitle__img {
    max-width: 484.41px;
    margin: 0;
}
.flow__contents {
    background-color: #fff;
    padding: 40px 0 100px 12.5vw;
}
.flowCard__wrapper {
    display: flex;
    gap: 3.7037%;
    padding-bottom: 40px;
    max-width: 100%;
}
.swiper-scrollbar {
background: #CBCBCB;
}
.swiper-scrollbar-drag {
  background-color: #616161;
}
.swiper-horizontal>.swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
    bottom: 0;
}

.flowCard {
    background-color: #FFFAF0;
    max-width: 100%;
}
.swiper {
    height: 100%;
    width: 100%;
}
.swiper-slide {
    height: auto;
    width: 100%;
}
.flowCard__img {
    width: inherit;
}
.flowCard__head{
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;

}
.flowCard__red {
    color: var(--colorRead-theme);
}
.flowCard__red-1 {
    text-align: center;
    display: block;
    line-height: 140%;
}
.flowCard__red-2 {
    display: block;
    font-size: 48px;
    line-height: 1;
}
.flowCard__title {
    font-size: 24px;
    font-weight: 700;
    display: grid;
    place-content: center;
    line-height: 1.4;
}
.flowCard__text {
    height: auto;
    padding: 0 24px 24px 24px;
}
.for-1200 {
    display: none;
}
@media (max-width:1200px) {
    .flow__contents {
        padding-left: 20px;
    }
    .flowCard__wrapper {
    }
    .flow__container {
        padding-top: 64px;
    }
    .flowCard__head {
        padding: 14px;
    }
    .flowCard__title {
        font-size: 20px;
    }
    .flowCard__red-2 {
        font-size: 44px;
    }
    .flowCard__text {
        padding: 0 14px 14px 14px;
    }
    .for-1200 {
        display: block;
    }
}

/* ==================
お問い合わせ
================== */
.contact {
    background-color: #fff;
    position: relative;
    padding: 100px 0;
}
.contact__container::before {
    content: "";
    background: url(../images/bg-text-contact.svg) no-repeat center center / contain;
    width: 68.768vw;
    height: 13.5284vw;
    position: absolute;
    left: 50%;
    top: 0%;
    transform: translateX(-50%);
    max-width: 1000px;
}
.contact .sectionTitle__img {
    max-width: 395.56px;
}
.contact__head-text {
    text-align: center;
    margin: 40px 0;
}

.contactForm {
    max-width: 808px;
    margin: 40px auto;
    display: flex;
    row-gap: 24px;
    flex-direction: column;
    color: var(--colorBlack);
}
@media (max-width:767px) {
    .contact {
        padding: 64px 0;
    }
    .contact .sectionTitle__img {
        max-width: 280px;
    }
}

/* formリセット */
label {
  display: block;
}
[type="text"],
[type="search"],
[type="tel"],
[type="url"],
[type="email"],
[type="password"],
[type="date"],
textarea,
select {
  background-color: #F7F7F6;
  background-image: none;
  border: 1px solid var(--color-BorderGray);
  border-radius: 4px;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  padding: 16px 20px;
  width: 100%;
  font-weight: 500;
}
input:focus,
textarea:focus,
select:focus {
  outline-color: orange;
}
::placeholder {
    color: #ADADAD;
    font-weight: 500;
}
select option[disabled][selected] {
    color: #ADADAD;
}
textarea {
    min-height: 157px;
}
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
/* ==================
フォーム調整
================== */

.contactForm__list {
    display: flex;
}
.contactForm__label {
    flex: 0 1 240px;
}
.contactForm__imputWrapper {
    flex: 1;
}
/* 任意 */
.optional {
    border-radius: 4px;
    border: 1px solid #545351;
    padding: 1px 9px 2px 9px;
    font-size: 12px;
    line-height: 1.8;
    margin-right: 8px;
}
/* 必須 */
.required-cat {
    font-size: 12px;
    line-height: 1.8;
    padding: 1px 9px 2px 9px;
    color: var(--colorRead-theme);
    border: 1px solid var(--colorRead-theme);
    border-radius: 4px;
    margin-right: 8px;
}
/* エラーテキスト */
.required {
    font-size: 12px;
    color: var(--colorRead-theme);
    margin-top: 4px;
}
.contactForm__button {
    margin: 0 auto;
}
.contactForm__button button {
    font-weight: 700;
    letter-spacing: .1em;
}
.contactForm__button button:hover,
.contactForm__button button:focus {
    cursor: pointer;
}
.contactForm__list.contactForm__checkbox {
    justify-content: center;
}


.contactForm__checkbox {
    align-items: center;
    justify-content: center;
    margin-top: 56px;
    gap: 16px;
    font-size: 14px;
}
/* チェックボックスreset */
.contactForm__checkbox input[type="checkbox"] {
    position: relative;
    appearance: none;
    background: #FFFFFF;
    box-shadow: 0 0 0 0 transparent;
}
/* チェックボックスdesign */
.checkbox {
    border-radius: 4px;
    width: 24px;
    height: 24px;
    border : 1px solid #DEE4EE
}
.checkbox:hover,
.checkbox:focus {
    cursor: pointer;
}
.checkbox::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    content: "";
    opacity: 0;
    background: url("../images/icon-agree-check.png") no-repeat center center / contain;
}
.checkbox:checked {
    background-color: inherit;
}
.checkbox:checked::before {
    opacity: 1;
}
.checkbox__link {
    text-decoration: underline;
}

@media (max-width:767px) {
    .contact__head-text {
        text-align: left;
    }
    .contactForm__list {
        display: block;
    }
    .contactForm__imputWrapper {
        margin-top: 8px;
    }
    .contactForm__checkbox {
        margin-top: 0;
    }
    .contactForm__list.contactForm__checkbox {
        display: flex;
    }
}

/* ラジオボタンreset */
.contactForm__list input[type="radio"] {
	/*  表示領域を消す */
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}
.radio-label {
    position: relative;
    padding-left: 32px;
}
.radio-label::before,
.radio-round {
	border-radius: 50%;
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
/* 枠 */
.radio-label::before {
	border: 1px solid #d2d2d2;
	height: 24px;
	left: 0;
	width: 24px;
    background-color: #fff;
}
/* 枠の中の丸 */
.radio-round {
    display: inline-block;
    background-color: transparent;
	height: 12px;
	left: 6px;
	width: 12px;
}
.radio-label input[type="radio"]:checked ~ .radio-round {
    background-color: #4D4949;
}
.radio-label + .radio-label {
    margin-top: 16px;
}

/* カレンダー調整 */
input.js-form-date {
  color: #a1a1a1; /* 未選択の色 */
}
input.js-form-date.js-click {
  color: #000;
}

/* =================== */
/* 会社概要 セクション */
/* =================== */
.company {
    background-color: #F7F7F6;
    padding: 100px 0;
}
.company .sectionTitle__img {
    max-width: 347.72px;
}
.company__head {
    margin-top: 40px;
}
.icon-hiryu {
    width: 100px;
    margin: 0 auto;
}
.icon-hiryu__text {
    font-size: 21px;
    font-weight: 700;
    text-align: center;
    margin-top: 16px;
}
.company-head__text {
    text-align: center;
    margin-top: 16px;
}
.company-head__link {
    color: var(--colorRead-theme);
    text-align: center;
    display: block;
    text-decoration: underline;
    margin-top: 16px;
}

.company__table {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 760px;
}
.company__list {
    border-bottom: 1px solid #DDDDDD;
    padding: 16px 0;
    display: flex;
}
.company__list dt {
    flex: 0 1 28.57%;
    max-width: 200px;
    font-size: 14px;
    font-weight: 700;
}
.company__list dd {
    flex: 1;
    font-size: 14px;
}
.company__bottom-text {
    font-size: 12px;
    text-align: center;
    margin-top: 40px;
}
@media (max-width:767px) {
    .company {
        padding: 64px 0;
    }
    .company .sectionTitle__img {
        max-width: 230px;
    }
    .company__table {
        margin-top: 40px;
    }
    .company__list {
        display: block;
    }
}
.text-center {
    text-align: center;
}
