/* フォント */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* 変数設定 */
:root {
  --color-black: #000;
  --color-base: #F7F6F5;
  --color-base-secondary: #664944;
  --color-accent-primary: #F48522;
  --color-accent-secondary: #EC1C24;
}

/* お知らせバー */
.news-bar {
  background-color: #f8f8f8;
  padding: 10px 0;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  z-index: 100;
  display: none;
}

.news-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.news-bar__text {
  font-size: 14px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.news-bar__label {
  background-color: var(--color-accent-secondary);
  color: white;
  padding: 2px 12px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.news-bar__content {
  color: var(--color-black);
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .news-bar__text {
    font-size: 12px;
  }
  
  .news-bar__label {
    font-size: 11px;
    padding: 2px 8px;
  }
}

/* ベーススタイル */
html {
  font-size: 62.5%;
  line-height: 1.6;
  height: 100%;
  scroll-behavior: smooth;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 1.6rem;
  min-width: 350px;
  width: 100%;
  text-align: justify;
  scroll-behavior: smooth;
  color: var(--color-black);
  background-color: var(--color-base);
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans JP", "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

img,
video,
object {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover {
  text-decoration: underline;
  opacity: 0.6;
}

ul,
li {
  padding: 0;
  list-style: none;
}

.contentWidth {
  width: 86.111%;
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;

  @media screen and (max-width: 768px) {
    width: 89.3333%;
    max-width: 600px;
  }
}

/* 共通スタイル */
/* セクション間余白 */
body>section {
  padding: 120px 0 0;

  @media screen and (max-width: 768px) {
    padding: 50px 0;
  }
}


/* セクションタイトル */

.c-sectionHeadingWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-sectionHeading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-sectionHeading__en {
  color: var(--color-accent-primary);
  font-size: 1.6rem;
  font-size: clamp(1.4rem, calc(16 / 1440 * 100vw), 16px);
  font-weight: 700;
  line-height: 1.6;

  @media screen and (max-width: 768px) {
    font-size: 1.4rem;
    font-size: clamp(1.2rem, calc(14 / 375 * 100vw), 14px);
    font-size: max(1.4rem, calc(14 / 375 * 100vw));
  }
}

.c-sectionHeading__jp {
  color: var(--color-black);
  font-size: 3rem;
  font-size: clamp(2.4rem, calc(32 / 1440 * 100vw), 32px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;

  @media screen and (max-width: 768px) {
    font-size: 2.4rem;
    font-size: clamp(1.6rem, calc(24 / 375 * 100vw), 24px);
    font-size: max(2.4rem, calc(24 / 375 * 100vw));
    line-height: 1.4;
  }
}

/* セクションコンテンツ */
.sectionContent {
  margin-top: 40px;

  @media screen and (max-width: 768px) {
    margin-top: 30px;
  }
}

.sectionContent.--60 {
  margin-top: 60px;

  @media screen and (max-width: 768px) {
    margin-top: 30px;
  }
}

/* タイトル上のタグ */
.c-pillShapeBox {
  font-size: 1.6rem;
  font-size: clamp(1.2rem, calc(16 / 1440 * 100vw), 16px);
  font-weight: 700;
  line-height: 1.6;
  background-color: var(--color-accent-primary);
  color: #fff;
  border-radius: 100vh;
  padding: 12px 24px;
  letter-spacing: 0.0125em;

  /* @media screen and (max-width: 768px) {
    font-size: 1.4rem;
    font-size: clamp(1.2rem, calc(14 / 375 * 100vw), 14px);
    padding: 12px 24px !important;
  } */

  @media screen and (max-width: 768px) {
    font-size: 1.4rem;
    font-size: max(1.4rem, calc(14 / 375 * 100vw));
    padding: 12px 24px !important;
  }

}

.c-pillShapeBox.--large {
  margin-bottom: 40px;
  font-size: 2.4rem;
  font-size: clamp(1.6rem, calc(24 / 1440 * 100vw), 24px);
  padding: 16px 32px;
  letter-spacing: 0.0208em;
  text-align: center;

  @media screen and (max-width: 768px) {
    font-size: 1.4rem;
    font-size: clamp(1.4rem, calc(14 / 375 * 100vw), 2rem);
  }
}

/* ボタン */
.c-button {
  width: 262px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--color-base-secondary);
  border: 1px solid var(--color-base-secondary);
  color: #fff;
  border-radius: 5px;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.011em;
}


/* 各セクションのCSS */
/* ファーストビュー */
.fv {
  height: 400px;
  background-image: url(../images/fv-pc.jpg);
  background-size: cover;

  @media screen and (max-width: 768px) {
    background-image: url(../images/fv-sp.jpg);
    margin-bottom: 268px;
    margin-bottom: clamp(248px, calc(248 / 375 * 100vw), 320px);
  }
}

.fv__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;

  @media screen and (max-width: 768px) {
    padding-top: 132px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.fv__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  padding: 40px 100px;
  padding: 40px 1%;
  background-color: #fff;
  position: absolute;
  left: 8.3%;
  top: 110px;
  width: 33.33%;
  max-width: 480px;
  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  text-align: center;

  @media screen and (max-width: 768px) {
    padding: 32px 1%;
    width: 89.5%;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, -40%);
    transform: translate(-50%, -40%);
  }
}

.fv__logo {
  @media screen and (max-width: 768px) {
    width: 258px;
  }
}

.fv__cardH2 {
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 1.4rem;
  font-size: clamp(1.6rem, calc(20 / 1440 * 100vw), 20px);
  font-weight: 700;
  line-height: 1.21;
  letter-spacing: .02em;
  color: var(--color-base-secondary);
  border-bottom: 1px solid var(--color-accent-primary);

  @media screen and (max-width: 768px) {
    padding-bottom: 4px;
    font-size: clamp(1.6rem, calc(16 / 375 * 100vw), 2.2rem);
  }
}

.fv____cardDesc {
  font-size: 1.6rem;
  font-size: clamp(1.2rem, calc(16 / 1440 * 100vw), 16px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .005em;

  @media screen and (max-width: 768px) {
    white-space: nowrap;
    font-size: 1.6rem;
    font-size: max(1.6rem, calc(16 / 375 * 100vw));
    font-size: clamp(1.6rem, calc(16 / 375 * 100vw), 2.4rem);
  }

}

.fv__cvButton a {
  @media screen and (max-width: 768px) {
    width: 247px;
  }
}

.fv__mainCopy {
  padding-left: 50%;
  padding-right: 16%;
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.35));
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.35));

  @media screen and (max-width: 768px) {
    width: max(334px, calc(334 / 375 * 100vw));
    padding-left: 0;
    padding-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

}


/* もぐレコRestaurantサービスの特徴 */
.feature {
  padding-top: 0;
  margin-top: 80px;
}

.feature__content {}

.sectionContent {}

.--60 {}

.feature__list {}

.feature__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;

  @media screen and (max-width: 768px) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.feature__item+.feature__item {
  margin-top: 80px;

  @media screen and (max-width: 768px) {
    margin-top: 50px;
  }
}

.feature__item>* {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  min-width: 0;
}

.feature__item.--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;

  @media screen and (max-width: 768px) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.feature__itemImageBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.feature__itemImageBlockInner {
  padding: 54px 62px;
  padding: 8.9% 10.2%;
  width: 100%;
  height: 500px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 40px;
  background-color: #fff;
  border-radius: 27px;

  @media screen and (max-width: 768px) {
    padding: 20px;
    height: auto;
    gap: 18px;
  }
}


/* ３つのアイテムの余白、gap調整など */
.feature__item.--analysis .feature__itemImageBlockInner {
  padding: 24px 132px;
  padding: 4% 12%;

  @media screen and (max-width: 768px) {
    padding: 30px 32.5px;
  }
}

.feature__item.--outgoing .feature__itemImageBlockInner {
  padding: 32px 86px;
  padding: 5.2% 14.2%;
  gap: 22px;
  gap: 3.5%;

  @media screen and (max-width: 768px) {
    padding: 5px;
    gap: 0px;
  }
}

.feature__item.--reverse .feature__itemImageBlockInner {
  /* border-radius: 0; */
}

.feature__itemImage {
  margin: auto;
  height: auto;
  border: 4.4335px solid #FFFFFF;
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.45);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.45);
  border-radius: 7.38916px;
}

.feature__itemImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.feature__item.--reverse .feature__itemImage {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.feature__item:not(.--reverse) .feature__itemTextBlock>* {
  padding-left: 32px;
  padding-right: 32px;
  /* padding-left: 7.8%; */
  /* padding-right: 7.8%; */

  @media screen and (max-width: 768px) {
    padding-left: 0;
    padding-right: 0;
  }
}

.feature__item:not(.--reverse) .c-pillShapeBox {
  margin-left: 32px;

  @media screen and (max-width: 768px) {
    margin-left: 0;

  }
}

.feature__item.--reverse .feature__itemTextBlock {
  padding-left: 0;
}


.feature__itemHeading {
  margin-top: 32px;
  font-size: 2.4rem;
  font-size: clamp(1.6rem, calc(24 / 1440 * 100vw), 24px);
  font-weight: 700;
  line-height: 1.8;

  @media screen and (max-width: 768px) {
    font-size: 2rem;
    font-size: clamp(1.6rem, calc(20 / 375 * 100vw), 20px);
    font-size: max(2rem, calc(20 / 375 * 100vw));
    margin-top: 15px;
    letter-spacing: -.02em;
  }
}

.feature__itemHeading .em {
  font-size: 3.6rem;
  font-size: clamp(2.4rem, calc(36 / 1440 * 100vw), 36px);
  line-height: 1.4;

  @media screen and (max-width: 768px) {
    font-size: 2.8rem;
    font-size: clamp(2rem, calc(28 / 375 * 100vw), 28px);
    font-size: max(2.8rem, calc(28 / 375 * 100vw));
  }
}

.feature__itemText {
  margin-top: 32px;
  font-size: 1.8rem;
  font-size: clamp(1.2rem, calc(18 / 1440 * 100vw), 18px);
  font-weight: 500;
  line-height: 1.8;
  text-align: justify;

  @media screen and (max-width: 768px) {
    margin-top: 12px;
    font-size: 1.6rem;
    font-size: clamp(1.2rem, calc(16 / 375 * 100vw), 16px);
    font-size: max(1.6rem, calc(16 / 375 * 100vw));
  }
}

.feature__itemText .em {
  color: var(--color-accent-primary);
  font-weight: bold;
}

.feature__itemMemo {
  -webkit-box-flex: 2.4;
  -ms-flex: 2.4;
  flex: 2.4;
  margin-top: 12px;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 16px;
  margin-left: 32px;
  margin-right: 32px;
  background-color: #E6E3E3;
  border-radius: 6px;

  @media screen and (max-width: 768px) {
    margin-right: 0;
    margin-left: 0;
    padding-right: 24px !important;
    padding-left: 24px !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 4px;
  }
}

.feature__itemMemoTextBlock {
  /* flex: 2.4 0 0; */
  width: 63%;

  @media screen and (max-width: 768px) {
    padding-top: max(8px, calc(8 / 375 * 100vw));
    width: 100%;
    max-width: 442px;
    margin: auto;
  }
}

.feature__itemMemoHeading {
  font-size: 1.6rem;
  font-size: clamp(1.2rem, calc(16 / 1440 * 100vw), 16px);
  line-height: 1.6;
  font-weight: 700;

  @media screen and (max-width: 768px) {
    font-size: clamp(1.2rem, calc(16 / 375 * 100vw), 16px);
    font-size: max(1.2rem, calc(16 / 375 * 100vw));
  }
}

.feature__itemMemoDesc {
  font-size: 1.4rem;
  font-size: clamp(1.2rem, calc(14 / 1440 * 100vw), 14px);
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.015em;

  @media screen and (max-width: 768px) {
    font-size: clamp(1.2rem, calc(14 / 375 * 100vw), 14px);
    font-size: max(1.2rem, calc(14 / 375 * 100vw));
  }
}

.feature__itemMemoButtun {
  margin-top: 16px;
}

.featrue__itemMemoButtonLink {
  height: 40px;
  width: 166px;
  width: min(166px, calc(166 / 1440 * 100vw));
  min-width: 132px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid var(--color-base-secondary);
  border-radius: 5px;
  font-size: 1.4rem;
  font-size: clamp(1.2rem, calc(14 / 1440 * 100vw), 14px);
  font-weight: 700;
  color: var(--color-base-secondary);

  @media screen and (max-width: 768px) {
    width: max(166px, calc(166 / 375 * 100vw));
    font-size: clamp(1.2rem, calc(14 / 375 * 100vw), 14px);
    font-size: max(1.2rem, calc(14 / 375 * 100vw));
    margin: auto;
    border-width: 1px;
  }
}

.featrue__itemMemoButtonLink::before {
  content: '';
  display: inline-block;
  width: 21px;
  height: 21px;
  background-image: url(../images/ico-mogu.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 2px;
}

.feature__itemMemoImage {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;

  /* width: 25%; */
  @media screen and (max-width: 768px) {
    margin: auto;
  }
}

.feature__itemDeco {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: -9px;
  font-size: 7.8rem;
  font-size: clamp(5.2rem, calc(78 / 1440 * 100vw), 78px);
  line-height: .9;
  font-weight: bold;
  color: rgb(0 0 0 / .05);

  @media screen and (max-width: 768px) {
    margin-top: 0;
    padding-right: 0 !important;
    padding-left: 0 !important;
    font-size: clamp(5.2rem, calc(38 / 375 * 100vw), 38px);
    font-size: max(5.2rem, calc(38 / 375 * 100vw));
    text-align: right;
  }
}


/* cta */

.cta {
  height: 300px;
  height: min(300px, calc(300 / 1440 * 100vw));
  min-height: 200px;
  margin-top: min(140px, calc(140 / 1440 * 100vw));
  margin-bottom: min(96px, calc(96 / 1440 * 100vw));
  padding-top: 0;
  background-color: var(--color-base-secondary);
  color: #fff;
  background-image: url(../images/cta-bg-pc.jpg);
  background-size: 100%;
  background-repeat: no-repeat;

  @media screen and (max-width: 768px) {
    margin-top: calc(50 / 375 * 100vw);
    margin-bottom: calc(28 / 375 * 100vw);
    padding-bottom: calc(50 / 375 * 100vw);
    height: max(604px, calc(604 / 375 * 100vw));
    background-image: url(../images/cta-bg-sp.jpg);
    background-size: 100%;

  }
}



.cta__inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;

  @media screen and (max-width: 768px) {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

.cta__image {
  width: min(349px, calc(349 / 1440 * 100vw));
  position: absolute;
  top: 50%;
  left: 12.5%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-filter: drop-shadow(21.2364px 21.2364px 19.7195px rgba(0, 0, 0, 0.4));
  filter: drop-shadow(21.2364px 21.2364px 19.7195px rgba(0, 0, 0, 0.4));

  @media screen and (max-width: 768px) {
    width: max(238px, calc(238 / 375 * 100vw));
    top: 3%;
    left: 15%;
    -webkit-transform: translateY(-13%);
    transform: translateY(-13%);
  }
}

.cta__heading {
  font-size: 2.4rem;
  font-size: clamp(1.6rem, calc(24 / 1440 * 100vw), 24px);
  font-weight: 700;
  line-height: 1.8;
  text-align: center;

  @media screen and (max-width: 768px) {
    font-size: 2rem;
    font-size: max(calc(20 / 375 * 100vw), 20px);
  }
}

.cta__button {
  margin-top: 18px;
}

.cta .c-button {
  background-color: #fff;
  color: #333;
  font-weight: 700;
  letter-spacing: .01em;
}

.cta .c-button--primary {
  background-color: #fff;
  color: #333;
}



/* もぐレコRestaurantの機能 */
.function {
  padding-top: 0;
}

@media screen and (max-width: 768px) {
  .function {
    padding-top: 0;
  }
}

.function__content {}

.sectionContent {}

.function__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 32px;

  @media screen and (max-width: 768px) {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
    padding-bottom: 40px;
    max-width: unset;
  }
}

.function__item {
  width: calc((100% - 32px) /2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;

  @media screen and (max-width: 768px) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  /* container-type: inline-size;
  resize: horizontal;
  overflow: auto; */

  @media screen and (max-width: 768px) {
    width: 100%;
  }

  @media screen and (max-width: 768px) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /* padding-left: 30px;
    padding-right: 30px; */
    width: auto;
  }
}

.function__itemImage {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  border-radius: 15px;
  overflow: clip;

  @media screen and (max-width: 768px) {
    width: 100%;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
}

.function__itemImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.function__itemTextBlock {
  -webkit-box-flex: 1.352;
  -ms-flex: 1.352 0 0px;
  flex: 1.352 0 0;
}

.function__itemHeading {
  font-size: 2.4rem;
  font-size: clamp(1.6rem, calc(24 / 1440 * 100vw), 24px);
  font-weight: 700;
  line-height: 1.6;

  @media screen and (max-width: 768px) {
    font-size: 2rem;
    font-size: clamp(1.6rem, calc(20 / 375 * 100vw), 20px);
    font-size: max(2rem, calc(20 / 375 * 100vw));
  }
}

.function__itemSubHeading {
  font-size: 1.6rem;
  font-size: clamp(1.2rem, calc(16 / 1440 * 100vw), 16px);
  font-weight: 700;
  line-height: 1.8;

  @media screen and (max-width: 768px) {
    font-size: 1.6rem;
    font-size: clamp(1.2rem, calc(16 / 375 * 100vw), 16px);
    font-size: max(1.6rem, calc(16 / 375 * 100vw));
  }
}

.function__itemText {
  font-size: 1.6rem;
  font-size: clamp(1.2rem, calc(16 / 1440 * 100vw), 16px);
  font-weight: 400;
  line-height: 1.6;

  @media screen and (max-width: 768px) {
    font-size: 1.6rem;
    font-size: clamp(1.2rem, calc(16 / 375 * 100vw), 16px);
    font-size: max(1.6rem, calc(16 / 375 * 100vw));

  }
}


/* 活用事例 */
.caseStudies {
  display: none;
}

@media screen and (max-width: 768px) {
  .caseStudies {
    padding-top: 0;
  }
}

.caseStudies__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;

  @media screen and (max-width: 768px) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.caseStudies__item {}

.caseStudies__itemImage {
  border-radius: 15px;
  overflow: clip;

  @media screen and (max-width: 768px) {
    aspect-ratio: 335 / 200;
  }
}

.caseStudies__itemImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.caseStudies__itemTextBlock {
  margin-top: 32px;

  @media screen and (max-width: 768px) {
    margin-top: 20px;
  }
}

.caseStudies__itemHeading {
  font-size: 2.4rem;
  font-size: clamp(1.6rem, calc(24 / 1440 * 100vw), 24px);
  font-weight: 700;
  line-height: 1.6;

  @media screen and (max-width: 768px) {
    font-size: 2rem;
    font-size: clamp(1.6rem, calc(20 / 375 * 100vw), 20px);
    font-size: max(2rem, calc(20 / 375 * 100vw));
    line-height: 1.6;

  }

}

.caseStudies__itemText {
  margin-top: 32px;
  font-size: 1.6rem;
  font-size: clamp(1.2rem, calc(16 / 1440 * 100vw), 16px);
  font-weight: 500;
  line-height: 1.6;

  @media screen and (max-width: 768px) {
    margin-top: 20px;
    line-height: 1.8;
    font-size: 1.6rem;
    font-size: clamp(1.2rem, calc(16 / 375 * 100vw), 16px);
    font-size: max(1.6rem, calc(16 / 375 * 100vw));
  }

}

/* オプション */
.option {
  padding-top: 0;
}

@media screen and (max-width: 768px) {
  .option {
    padding-top: 0;
  }

}

.option__content {}

.sectionContent {}

.option__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;

  @media screen and (max-width: 768px) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /* max-width: 500px; */
    margin: auto;
  }
}

.option__item {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.option__itemImage {
  border-radius: 15px;
  overflow: clip;
  aspect-ratio: 392 / 261;

  @media screen and (max-width: 768px) {
    width: 100%;
  }
}

.option__itemImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.option__itemTextBlock {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;

  @media screen and (max-width: 768px) {
    gap: 0;
  }
}

.option__itemHeading {
  font-size: 2.4rem;
  font-size: clamp(1.6rem, calc(24 / 1440 * 100vw), 24px);
  font-weight: 700;
  line-height: 1.8;

  @media screen and (max-width: 768px) {
    font-size: 2rem;
    font-size: max(2rem, calc(20 / 375 * 100vw));
  }
}

.option__itemSubHeading {
  font-size: 1.6rem;
  font-size: clamp(1.2rem, calc(16 / 1440 * 100vw), 16px);
  font-weight: 700;
  line-height: 1.8;

  @media screen and (max-width: 768px) {
    font-size: 1.6rem;
    font-size: max(1.6rem, calc(16 / 375 * 100vw));
  }
}


.option__itemText {
  font-size: 1.6rem;
  font-size: clamp(1.2rem, calc(16 / 1440 * 100vw), 16px);
  font-weight: 500;
  line-height: 1.8;

  @media screen and (max-width: 768px) {
    font-size: 1.6rem;
    font-size: max(1.6rem, calc(16 / 375 * 100vw));
  }
}

.option__nav {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .option__nav {
    margin-top: max(16px, calc(16 / 375 * 100vw));
  }
}

.option__nav .c-button {
  width: unset;
  height: unset;
  display: inline-block;
  padding: 12.5px 20px;
}

.option__nav .c-button.disabled {
  opacity: .3;
  pointer-events: none;
}

/* フッター */
.footer {
  margin-top: 120px;
  background-color: #E6E3E3;
  padding-top: 48px;
  padding-bottom: 48px;
  font-size: 1.4rem;
  font-size: clamp(1.2rem, calc(14 / 1440 * 100vw), 14px);
  font-weight: 500;
  line-height: 1;

  @media screen and (max-width: 768px) {
    margin-top: 0;
    font-size: max(1.2rem, calc(14 / 375 * 100vw));
  }
}

.footer__inner {

  @media screen and (max-width: 1024px) {
    gap: 40px;
  }

  @media screen and (max-width: 768px) {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

}

.footer__nav {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.footer__navList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;

  @media screen and (max-width: 1024px) {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  @media screen and (max-width: 768px) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.footer__navItemLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__navItemLink::before {
  display: block;
  content: '';
  width: 16px;
  height: 16px;
  background-image: url('../images/ico-arrow.svg');
  background-size: 31.25%;
  background-position: center;
  background-repeat: no-repeat;
}

.footer__copyRight {
  display: block;
  margin-top: 8px;
  letter-spacing: .08em;
  line-height: 2.6;
  text-align: right;
  font-size: 1.2rem;


  @media screen and (max-width: 768px) {
    text-align: center;
    margin: 40px auto 0;
    white-space: nowrap;
    line-height: 1.6;
  }
}




/* スワイパーのスタイル */
.swiper-slide-next,
.swiper-slide-prev {
  opacity: .3;
}


/* swiperのナビゲーションの画像を変更 */
.swiper-button-next::after,
.swiper-button-prev::after {
  content: '';
  display: block;
  width: 15px;
  height: 40px;
  background-image: url('../images/swiper-nav.png');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev::after {
  -webkit-transform: translateX(8px) rotate(180deg);
  transform: translateX(8px) rotate(180deg);
}

.swiper-button-next::after {
  -webkit-transform: translateX(-8px);
  transform: translateX(-8px);
}

@media screen and (min-width: 769px) {

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

.swiper-pagination-bullet-active {
  background-color: var(--color-accent-primary);
}

/* ユーティリティクラス */
.u-font-orange {
  color: var(--color-accent-primary);
}

.u-font-red {
  color: var(--color-accent-secondary);
}

.u-inline-sp {
  display: none;

  @media screen and (max-width: 768px) {
    display: inline;
  }
}

.u-inline-pc {
  display: inline;

  @media screen and (max-width: 768px) {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .u-sp-pt0 {
    padding-top: 0;
  }
}