@charset "UTF-8";
/* mixin */
/* インデント調整 */
/* センター寄せのインデント調整 */
/* 動作の時間（1001px以上の時,1000px以下の時） */
/* 行数によるテキスト変換（501px以上の時,500px以下の時） */
/* フォルダ内の背景画像取得 */
/* 丸角(丸角のpx数,丸角を適用するカドの指定) */
/* container生成（要素の幅,余白,位置【center left right】） */
/* コンテンツの中央配置 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@100;200;300;400;500;600;700&display=swap");
/* flexのfit */
/* template color */
/* custom color */
/* font */
.mincho {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-feature-settings: "palt";
  font-weight: 500;
}

/* setting */
.list_dotted__tab {
  position: relative;
  padding-left: 1em;
}
.list_dotted__tab::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.list_count {
  counter-reset: count;
}

.list_count__tab {
  position: relative;
  padding-left: 1.5em;
}
.list_count__tab::before {
  counter-increment: count;
  content: counter(count, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
}

.list_num {
  counter-reset: num;
}

.list_num__tab {
  position: relative;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  padding-left: 1.5em;
}
.list_num__tab::before {
  counter-increment: num;
  content: counter(num);
  position: absolute;
  top: 0;
  left: 0;
}

.list_unit {
  counter-reset: unit;
}

.list_unit__tab {
  position: relative;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  padding-left: 1.5em;
}
.list_unit__tab::before {
  counter-increment: unit;
  content: counter(unit) ".";
  position: absolute;
  top: 0;
  left: 0;
}

.cm_btn {
  margin-top: clamp(32px, 4.6666666667vw, 56px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 32px;
}

.cm_btn__link {
  display: block;
  min-width: 200px;
  width: 100%;
  height: auto;
  line-height: 56px;
  text-align: center;
  flex: 1;
  border-radius: 56px;
  overflow: clip;
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  color: #fff;
  background-color: #0c1c89;
}
@media screen and (min-width: 501px) {
  .cm_btn__link {
    max-width: 320px;
  }
}
@media screen and (max-width: 500px) {
  .cm_btn__link {
    max-width: 240px;
  }
}

.item_more {
  margin-top: clamp(32px, 3.3333333333vw, 40px);
  text-align: right;
}

.item_more__link {
  font-size: clamp(1.4rem, 1.2096774194vw, 1.5rem);
  display: inline;
  text-decoration: underline;
}

* {
  margin: 0;
  padding: 0;
}
*:focus {
  outline: none !important;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "IBM Plex Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  color: #333;
  background: #fff;
  font-weight: 500;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}
@media screen and (max-width: 1200px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}
@media screen and (max-width: 1000px) {
  body #swipebox-close {
    right: auto;
    left: 0;
  }
}
@media all and (-ms-high-contrast: none) {
  body {
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
    font-weight: 500;
  }
}
@media (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

p,
th,
td,
li,
dt,
dd,
address {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  font-weight: 400;
  line-height: 1.8;
  font-style: normal;
}

div {
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}
@media screen and (max-width: 1000px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br {
    display: none;
  }
}

img,
picture,
figure {
  margin: 0;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}
a.link {
  display: inline;
  color: #0c1c89;
  text-decoration: underline;
}
a:hover {
  opacity: 0.6;
}

a[href^=tel] {
  color: inherit;
  text-decoration: none;
  cursor: default;
}
a[href^=tel]:hover {
  opacity: 1;
}
@media screen and (min-width: 1001px) {
  a[href^=tel] {
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
}

.wp-caption {
  margin: 10px;
  padding-top: 4px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background-color: #f3f3f3;
  text-align: center;
}
.wp-caption img {
  margin: 0;
  padding: 0;
  border: none;
}
.wp-caption p.wp-caption-text {
  margin: 0;
  padding: 0 4px 5px;
  font-size: 11px;
  line-height: 17px;
}

@media screen and (min-width: 1001px) {
  .text-center {
    text-align: center;
  }
  .text-left {
    text-align: left;
  }
  .text-right {
    text-align: right;
  }
}
.text_center {
  text-align: center;
}
.text_left {
  text-align: left;
}
.text_right {
  text-align: right;
}

.swipe {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .swipe {
    position: relative;
    padding: 5px 0;
    overflow: hidden;
    z-index: 1;
  }
  .swipe img {
    min-width: 1200px;
  }
  .swipe::before {
    position: absolute;
    content: "";
    z-index: 2;
    max-width: 180px;
    width: 100%;
    max-height: 56px;
    height: 100%;
    top: 60px;
    left: 20px;
    background-image: url(../images/svg_swipe.svg);
    background-position: center left;
    background-size: contain;
    background-repeat: no-repeat;
    animation: 2s ease-in-out alternate infinite please__swipe;
  }
  .swipe::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    height: 100%;
    background: #ddd;
    opacity: 0.6;
    transform: translate(-50%, -50%);
    transition: all 0.6s;
  }
  .swipe__on {
    overflow: auto;
    white-space: nowrap;
  }
  .swipe__on::after, .swipe__on::before {
    opacity: 0;
    z-index: -1;
    animation: none;
  }
  .swipe__on::-webkit-scrollbar {
    height: 5px;
  }
  .swipe__on::-webkit-scrollbar-track, .swipe__on::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }
  .swipe th,
  .swipe td {
    display: table-cell !important;
    white-space: nowrap;
  }
}

@keyframes please__swipe {
  0% {
    left: 10px;
  }
  100% {
    left: 50px;
  }
}
@media screen and (min-width: 1001px) {
  .l-following_contents {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    position: relative;
  }
  .l-following_contents .--side {
    top: 0;
    width: 200px;
  }
  .l-following_contents .--main {
    flex: 1;
  }
}
@media screen and (max-width: 1000px) {
  .l-following_contents .--side {
    bottom: 0;
  }
}
.l-following_contents .--side {
  position: sticky;
  left: 0;
}

.flickWrap {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .flickWrap {
    padding: 5px 0;
    overflow: auto;
    white-space: nowrap;
  }
  .flickWrap::before {
    margin-bottom: 20px;
    color: #f55;
    font-size: clamp(1.2rem, 1.1290322581vw, 1.4rem);
    content: "※表が見切れる場合は横スクロールでご覧ください。";
  }
  .flickWrap::-webkit-scrollbar {
    height: 5px;
  }
  .flickWrap::-webkit-scrollbar-track, .flickWrap::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }
}

.lazy {
  opacity: 0;
  position: relative;
  transform: translate(0%, 50px);
}

.lazy-show {
  opacity: 1;
  transform: translate(0, 0);
  transition: all 1s;
}

.container {
  position: relative;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1221px) {
  .container {
    max-width: 1240px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1220px) {
  .container {
    max-width: 1240px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1024px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.over-right {
  position: relative;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1221px) {
  .over-right {
    margin-left: calc((100vw - 1210px) / 2);
  }
}
@media screen and (max-width: 1220px) {
  .over-right {
    max-width: 1240px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1024px) {
  .over-right {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.over-left {
  position: relative;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1221px) {
  .over-left {
    margin-right: calc((100vw - 1210px) / 2);
  }
}
@media screen and (max-width: 1220px) {
  .over-left {
    max-width: 1240px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1024px) {
  .over-left {
    padding-left: 40px;
    padding-right: 40px;
  }
}

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

.image {
  display: block;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  height: auto !important;
  border: none;
  box-sizing: border-box;
}

tbody,
tr {
  width: 100%;
  height: auto !important;
  border: none;
  box-sizing: border-box;
}

th,
td {
  text-align: left;
  vertical-align: top;
  box-sizing: border-box;
}
@media screen and (min-width: 1001px) {
  th,
  td {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}
@media screen and (max-width: 1000px) {
  th,
  td {
    display: block;
  }
}

th {
  font-weight: 700;
}
@media screen and (min-width: 1001px) {
  th {
    width: 200px;
    border-bottom: 1px solid #0171BC;
  }
}
@media screen and (max-width: 1000px) {
  th {
    padding-left: 1em;
    padding-right: 1em;
  }
  tr + tr th {
    padding-top: 1em;
  }
}

@media screen and (min-width: 1001px) {
  td {
    border-bottom: 1px solid #DBEFF4;
  }
}
@media screen and (max-width: 1000px) {
  td {
    border-bottom: 1px solid #DBEFF4;
    padding-bottom: 1em;
    padding-left: 1em;
    padding-right: 1em;
  }
}

@media screen and (min-width: 501px) {
  .--pc {
    display: block !important;
  }
}
@media screen and (max-width: 500px) {
  .--pc {
    display: none !important;
  }
}

@media screen and (min-width: 501px) {
  .--sp {
    display: none !important;
  }
}
@media screen and (max-width: 500px) {
  .--sp {
    display: block !important;
  }
}

.link-under {
  font-size: clamp(1.2rem, 1.2096774194vw, 1.5rem);
  color: #0171BC;
  text-decoration: underline;
}

.cm-block + .cm-block {
  margin-top: clamp(60px, 6.6666666667vw, 80px);
}

@media screen and (min-width: 1001px) {
  .cm-column {
    display: flex;
    align-items: flex-start;
    gap: 60px;
  }
  .cm-rev {
    flex-direction: row-reverse;
  }
}
.cm-pic {
  width: 33.3333333333%;
  aspect-ratio: 4/3;
  background-color: #ddd;
}

.cm-fit {
  flex: 1;
}
@media screen and (max-width: 1000px) {
  .cm-pic + .cm-fit {
    margin-top: 64px;
  }
}

.cm-cards {
  display: grid;
  grid-template-rows: repeat(1, 1fr);
}
@media screen and (min-width: 501px) {
  .cm-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 40px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .cm-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .cm-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}

.front_label {
  font-size: clamp(2.2rem, 2.5806451613vw, 3.2rem);
  font-weight: 400;
  margin-bottom: clamp(24px, 2.6666666667vw, 32px);
}

.c_btn {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: clamp(32px, 4vw, 48px);
}
.front_news .c_btn {
  justify-content: center;
  margin-top: clamp(32px, 5.3333333333vw, 64px);
}
@media screen and (max-width: 768px) {
  .c_btn {
    justify-content: center;
  }
}

.c_btn--sample {
  margin-top: 24px;
}

.c_btn--center {
  justify-content: center;
}

.c_btn__link {
  display: inline-block;
  color: #fff;
  background-color: #0171BC;
  font-size: clamp(1.4rem, 1.2096774194vw, 1.5rem);
  padding-top: 0.4666666667em;
  padding-left: 1.9333333333em;
  padding-right: 1.9333333333em;
  padding-bottom: 0.4em;
  box-sizing: border-box;
  border-radius: 50px;
  overflow: clip;
}
.front_taste .c_btn__link {
  background-color: #E9AF3B;
}
.front_weave .c_btn__link {
  background-color: #3EA166;
  padding-left: 1.4em;
  padding-right: 1.4em;
}
.front_connect .c_btn__link {
  background-color: #E95757;
}

.c_btn__link--weave {
  background: #3EA166;
}

.c_btn__link--connect {
  background: #E95757;
}

.front_head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(24px, 4vw, 48px);
}

.front_head__caption {
  font-size: clamp(2.4rem, 2.5806451613vw, 3.2rem);
  font-weight: 400;
}

.front_head__label {
  font-size: clamp(1.4rem, 1.2096774194vw, 1.5rem);
}
.front_head__label::before {
  content: "／ ";
}

.front_news .front_news__inner {
  padding-bottom: 0;
  border-bottom: none;
}

.front_news__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 32px 48px;
}
@media screen and (max-width: 500px) {
  .front_news__cards {
    grid-template-columns: 1fr;
  }
}

.front_news__card {
  display: block;
}
.front_news__card:hover {
  opacity: 1;
}

.front_news__pic {
  display: block;
  aspect-ratio: 368/268;
  width: 100%;
  height: auto;
  overflow: clip;
  margin-bottom: clamp(20px, 2.0833333333vw, 25px);
}
.front_news__pic .image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  scale: 1;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .front_news__pic .image {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .front_news__pic .image {
    transition-duration: 300ms;
  }
}
.front_news__card:hover .front_news__pic .image {
  scale: 1.1;
}

.front_news__label {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 501px) {
  .front_news__label {
    -webkit-line-clamp: 2;
  }
}
@media screen and (max-width: 500px) {
  .front_news__label {
    -webkit-line-clamp: 2;
  }
}

.front_news__unit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin-bottom: 13px;
}

.front_news__time {
  font-size: clamp(1.3rem, 1.2903225806vw, 1.6rem);
  font-weight: 700;
}

.front_news__cat {
  display: inline-block;
  background-color: #fff;
  border-style: solid;
  border-width: 1px;
  box-sizing: border-box;
  font-size: clamp(1.3rem, 1.1290322581vw, 1.4rem);
  padding-left: 1.4285714286em;
  padding-right: 1.4285714286em;
  box-sizing: border-box;
  border-radius: 50px;
  overflow: clip;
}

.front_news__label {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  font-weight: 400;
}

.front_about {
  position: relative;
  margin-top: 120px;
  padding-bottom: 150px;
}
.front_about::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 568px;
  background-image: url("../../images/main/bg_front_about.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 828px) {
  .front_about {
    padding-bottom: 120px;
  }
}

.front_about__side {
  position: relative;
}
@media screen and (min-width: 1025px) {
  .front_about__side {
    display: flex;
    align-items: flex-start;
    gap: 66px;
  }
}
@media screen and (max-width: 1024px) {
  .front_about__side .c_btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

.front_about__inner {
  flex: 1;
}

.front_about__image {
  display: block;
  display: flex;
}
@media screen and (min-width: 1025px) {
  .front_about__image {
    width: 612px;
    gap: 51px;
  }
}
@media screen and (max-width: 1024px) {
  .front_about__image {
    width: 100%;
    gap: 16px;
    margin-top: 36px;
    padding-bottom: 76px;
  }
}

.front_about__caption {
  writing-mode: vertical-lr;
  font-size: clamp(1.6rem, 1.6129032258vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.12em;
}

.front_about__pic {
  display: block;
  width: 100%;
}

.front_block__list {
  display: grid;
  grid-template-rows: repeat(1, 1fr);
  gap: 135px 0;
}
@media screen and (min-width: 1025px) {
  .front_block__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  .front_block__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .front_block__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.front_block__link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding-top: clamp(80px, 7.3333333333vw, 88px);
  padding-left: clamp(20px, 2.8333333333vw, 34px);
  padding-right: clamp(20px, 2.8333333333vw, 34px);
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  .front_block__link {
    padding-bottom: 32px;
  }
}
@media screen and (max-width: 768px) {
  .front_block__link {
    padding-bottom: 40px;
  }
}
.front_block__link:hover {
  opacity: 1;
}

.front_block__buy {
  background-color: #DBEFF4;
}

.front_block__taste {
  background-color: #FFF1E1;
}

.front_block__weave {
  background-color: #EAF5E0;
}

.front_block__connect {
  background-color: #FFE1E1;
}

.front_block__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: calc(100% - 68px);
  left: 50%;
  translate: -50% 0;
  text-align: center;
}

.front_block__label {
  writing-mode: vertical-lr;
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.front_block__caption {
  font-size: 1.5rem;
  font-weight: 400;
}

.front_block__ico {
  position: absolute;
  bottom: 21px;
  left: 100%;
  display: block;
}
.front_block__buy .front_block__ico {
  width: 85px;
  left: calc(100% + 20px);
}
.front_block__taste .front_block__ico {
  width: 74px;
  left: calc(100% + 35px);
}
.front_block__weave .front_block__ico {
  width: 67px;
  left: calc(100% + 55px);
}
.front_block__connect .front_block__ico {
  width: 73px;
  left: calc(100% + 27px);
}

.front_block__catch {
  display: block;
  text-align: center;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
}

.front_block__image {
  display: block;
  aspect-ratio: 336/214;
  width: 100%;
  height: auto;
  overflow: clip;
  margin-top: clamp(16px, 2vw, 24px);
}
.front_block__image .image {
  display: block;
  width: 100%;
  height: 100%;
  scale: 1;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .front_block__image .image {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .front_block__image .image {
    transition-duration: 300ms;
  }
}
.front_block__link:hover .front_block__image .image {
  scale: 1.1;
}

.front_block__down {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 55px;
  bottom: 0;
  translate: 0 50%;
  width: 20px;
  height: 45px;
  border: 1px solid #000;
  border-radius: 50px;
  overflow: clip;
}

.front_black__arrow {
  display: block;
  width: auto;
  translate: 0 -50%;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .front_black__arrow {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .front_black__arrow {
    transition-duration: 300ms;
  }
}
.front_block__link:hover .front_black__arrow {
  translate: 0 50%;
}

.front_buy {
  position: relative;
  margin-top: clamp(157px, 17.6666666667vw, 212px);
}
.front_buy::before {
  content: "";
  position: absolute;
  left: 0;
  background-color: #DBEFF4;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .front_buy::before {
    top: 56px;
    max-width: 50%;
    max-height: 730px;
  }
}
@media screen and (max-width: 768px) {
  .front_buy::before {
    top: 116px;
    max-width: 80%;
    max-height: 275px;
  }
}

.front_media {
  position: relative;
}

.front_visual {
  display: block;
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 739px) {
  .front_visual {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 768px) {
  .front_visual {
    margin-bottom: 16px;
  }
}

@media screen and (min-width: 769px) {
  .front_buy__left {
    position: absolute;
    top: 333px;
    left: 0;
    max-width: 301px;
  }
}
@media screen and (max-width: 768px) {
  .front_buy__left {
    max-width: 42.9333333333%;
  }
}
@media screen and (max-width: 768px) and (min-width: 501px) {
  .front_buy__left {
    max-width: 30.0533333333%;
  }
}

.front_buy__right {
  position: absolute;
  max-width: 167px;
}
@media screen and (min-width: 769px) {
  .front_buy__right {
    top: 47px;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .front_buy__right {
    top: 45%;
    right: 6.6666666667%;
    max-width: 31.2%;
  }
}
@media screen and (max-width: 768px) and (min-width: 501px) {
  .front_buy__right {
    top: 48%;
    max-width: 21.84%;
  }
}

@media screen and (min-width: 769px) {
  .front_images {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 16px;
    max-width: 43.3333333333%;
  }
}
@media screen and (max-width: 768px) {
  .front_images {
    display: block;
    max-width: 400px;
    width: 57.8666666667%;
    margin-top: -50px;
  }
}
@media screen and (max-width: 768px) and (min-width: 501px) {
  .front_images {
    width: 40.5066666667%;
  }
}
@media screen and (max-width: 768px) {
  .front_taste .front_images {
    margin-top: 7px;
  }
}

@media screen and (max-width: 768px) {
  .front_images__img {
    display: block;
    max-width: 74.1935483871%;
    margin: unset;
  }
  .front_images__img + .front_images__img {
    margin-top: 20px;
  }
  .front_images__img:nth-child(odd) {
    margin-right: auto;
  }
  .front_images__img:nth-child(even) {
    margin-left: auto;
  }
}

.front_box {
  display: block;
}
@media screen and (min-width: 769px) {
  .front_box {
    max-width: 520px;
    margin-left: auto;
  }
  .front_connect .front_box {
    margin-left: unset;
  }
}
@media screen and (max-width: 768px) {
  .front_box {
    margin-top: 32px;
  }
}

.link_text {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  margin-top: clamp(24px, 2.6666666667vw, 32px);
}
@media screen and (max-width: 768px) {
  .link_text {
    text-align: center;
  }
}

.link_text__label {
  color: #0171BC;
  font-size: inherit;
  text-decoration: underline;
}

.front_taste {
  position: relative;
  margin-top: clamp(105px, 22.5vw, 270px);
}
.front_taste::before {
  content: "";
  position: absolute;
  right: 0;
  background-color: #FFF1E1;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .front_taste::before {
    top: 56px;
    max-height: 730px;
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .front_taste::before {
    top: 116px;
    max-width: 80%;
    max-height: 275px;
  }
}

.front_taste__left {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .front_taste__left {
    bottom: 0;
    left: 3.0833333333%;
    max-width: 124px;
  }
}
@media screen and (max-width: 768px) {
  .front_taste__left {
    max-width: 23.4666666667%;
    top: 60%;
    right: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 501px) {
  .front_taste__left {
    max-width: 16.4266666667%;
  }
}

.front_taste__right {
  display: block;
}
@media screen and (min-width: 769px) {
  .front_taste__right {
    position: absolute;
    top: -150px;
    right: 0;
    max-width: 287px;
  }
}
@media screen and (max-width: 768px) {
  .front_taste__right {
    max-width: 50.1333333333%;
    width: 100%;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) and (min-width: 501px) {
  .front_taste__right {
    max-width: 35.0933333333%;
  }
}

.front_weave {
  position: relative;
  margin-top: clamp(148px, 24.1666666667vw, 290px);
}
.front_weave::before {
  content: "";
  position: absolute;
  top: 56px;
  left: 50%;
  translate: -50% 0;
  background-color: #EAF5E0;
  max-width: 1200px;
  width: 100%;
  height: 100%;
  max-height: 730px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .front_weave::before {
    max-width: calc(100% - 60px);
  }
}
@media screen and (max-width: 500px) {
  .front_weave::before {
    max-height: 326px;
  }
}

.front_side {
  display: flex;
}

.front_weave__side {
  max-width: 1133px;
}
@media screen and (min-width: 769px) {
  .front_weave__side .front_box {
    margin-left: clamp(30px, 7.25vw, 87px);
    margin-right: clamp(30px, 2.5vw, 30px);
    order: 2;
  }
}
@media screen and (max-width: 768px) {
  .front_weave__side {
    position: relative;
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .front_weave__left {
    max-width: 383px;
  }
}
@media screen and (max-width: 768px) {
  .front_weave__left {
    max-width: 71.4666666667%;
  }
}
@media screen and (max-width: 768px) and (min-width: 501px) {
  .front_weave__left {
    max-width: 50.0266666667%;
  }
}

.front_weave__right {
  max-width: 113px;
}
@media screen and (min-width: 769px) {
  .front_weave__right {
    order: 3;
  }
}
@media screen and (max-width: 768px) {
  .front_weave__right {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 18.4%;
  }
}
@media screen and (max-width: 768px) and (min-width: 501px) {
  .front_weave__right {
    max-width: 12.88%;
  }
}

.front_connect {
  position: relative;
  margin-top: clamp(148px, 22.5vw, 270px);
}
.front_connect::before {
  content: "";
  position: absolute;
  right: 0;
  background-color: #FFE1E1;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .front_connect::before {
    top: 56px;
    max-width: 50%;
    max-height: 730px;
  }
}
@media screen and (max-width: 768px) {
  .front_connect::before {
    top: 116px;
    max-width: 80%;
    max-height: 275px;
  }
}

.front_connect__side {
  display: contents;
}
@media screen and (max-width: 768px) {
  .front_connect__side {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .front_connect__side .front_connect__left {
    width: 25.9701492537%;
  }
  .front_connect__side .front_connect__right {
    width: 57.6119402985%;
  }
}
@media screen and (max-width: 768px) and (min-width: 501px) {
  .front_connect__side .front_connect__left {
    width: 18.1791044776%;
  }
  .front_connect__side .front_connect__right {
    width: 40.328358209%;
  }
}

@media screen and (min-width: 769px) {
  .front_connect__left {
    position: absolute;
    bottom: 0;
    left: 2.9166666667%;
    max-width: 122px;
  }
  .front_connect__right {
    position: absolute;
    top: 83.1666666667%;
    right: 5.5%;
    max-width: 290px;
  }
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .front_connect__left {
    left: 0;
  }
}/*# sourceMappingURL=custom.css.map */