@charset "UTF-8";
/* この範囲では1rem = 16px で固定 */
html {
  /* 16px / 16px = 100% */
  font-size: 100%;
}

/* --- 2. 拡大する範囲 (1920px 以上) の設定 --- */
@media screen and (min-width: 1920px) {
  html {
    /*
     * 1920pxで16pxになるようにvw値を設定
     * 計算式: 16px / 1920px * 100vw = 0.83333333vw
     */
    font-size: 0.83333333vw;
  }
}
/* --- 3. 縮小する範囲 (375px 以下) の設定 --- */
@media screen and (max-width: 375px) {
  html {
    /*
     * 375pxで16pxになるようにvw値を設定
     * 計算式: 16px / 375px * 100vw = 4.26666666vw
     */
    font-size: 4.26666666vw;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
  font-weight: 500;
  color: var(--color__black);
  background-color: var(--color__white);
}

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

:root {
  --color__white:#FEFEFE;
  --color__black:#241735;
  --color__gray:#afafaf;
  --color__gray-dark:#7a797f;
  --color__background-light:#F8F5F0;
  --color__background-dark:#E6E0DC;
  --color__secondary-light:#f5f2af;
  --color__secondary:#FFFF4D;
  --color__primary-light:#F0A58C;
  --color__primary-dark:#BC4821;
}

:root {
  --font-size__xl: clamp(1.75rem, 1.325rem + 1.812vw, 3.5rem);
  --font-size__l: clamp(1.2rem, 0.812rem + 1.657vw, 2.8rem);
  --font-size__m: clamp(1rem, 0.757rem + 1.036vw, 2rem);
  --font-size__s: clamp(0.875rem, 0.723rem + 0.647vw, 1.5rem);
  --font-size__xs: clamp(0.75rem, 0.662rem + 0.376vw, 1rem);
}

:root {
  --gap__card:clamp(0.5rem, 0.379rem + 0.518vw, 1rem);
  --space__contents-min: clamp(1rem, 0.515rem + 2.071vw, 3rem);
  --space__contents-middle: clamp(2rem, 2.485rem + -2.071vw, 0rem);
  --space__section: clamp(3rem, 2.272rem + 3.107vw, 6rem);
}

.l-section {
  padding: clamp(2rem, 1.15rem + 3.625vw, 5.5rem) 0;
}

.wrapper__inner {
  max-width: 66rem;
  margin: 0 auto;
  padding: 0 clamp(1rem, 0.449rem + 2.349vw, 2rem);
}

.l-banner-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: var(--space__contents-min);
}
@media (max-width: 28rem) {
  .l-banner-box {
    gap: 1.5rem;
  }
}

.text__title {
  font-family: "Zen Maru Gothic", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: var(--font-size__xl);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  line-height: 1.3;
}

.text__title.color-red {
  color: var(--color__primary-dark);
}

.text__title--logo {
  display: inline-block;
  vertical-align: bottom;
  width: auto;
  height: var(--font-size__xl);
  margin-bottom: 0.1em;
}

.text__middle {
  font-size: var(--font-size__m);
  font-weight: 500;
}

h3 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}

.u-spacer__section {
  width: 100%;
  height: var(--space__section);
}

.u-spacer__contents-min {
  width: 100%;
  height: var(--space__contents-min);
}

.u-spacer__contents-middle {
  width: 100%;
  height: var(--space__contents-middle);
}

.u-br__768 {
  display: none;
}
@media (max-width: 48rem) {
  .u-br__768 {
    display: block;
  }
}

.u-br__448 {
  display: none;
}
@media (max-width: 28rem) {
  .u-br__448 {
    display: block;
  }
}

.u-br__1024 {
  display: none;
}
@media (max-width: 64rem) {
  .u-br__1024 {
    display: block;
  }
}

.u-br-none__448 {
  display: block;
}
@media (max-width: 28rem) {
  .u-br-none__448 {
    display: none;
  }
}

.u-inline-block {
  display: inline-block;
}

.u-bg__gray {
  background-color: var(--color__background-dark);
}

.u-padding-left__1em {
  padding-left: 1em;
}

.u-padding-top__1em {
  padding-top: 1em;
}

.u-padding-top__2em {
  padding-top: 2em;
}

.u-place__center {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

/*
=====================
ななめ吹き出し
======================
*/
.c-deco__fukidashi {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  align-items: center;
  display: flex;
  justify-content: center;
}

.c-deco__fukidashi::before,
.c-deco__fukidashi::after {
  background-color: var(--color__black);
  border-radius: clamp(0.125rem, 0.11rem + 0.065vw, 0.188rem);
  content: "";
  height: clamp(0.125rem, 0.11rem + 0.065vw, 0.188rem);
  width: 7rem;
}

.c-deco__fukidashi::before {
  transform: rotate(60deg);
}

.c-deco__fukidashi::after {
  transform: rotate(-60deg);
}

.c-deco__fukidashi--inner {
  display: flex;
  flex-direction: column;
  gap: clamp(0.3rem, 0.13rem + 0.725vw, 1rem);
  text-align: center;
}

/*
=====================
タイトル吹き出し
======================
*/
.c-deco__title--box-fukidashi {
  background-color: var(--color__primary-dark);
  padding: calc(var(--space__contents-min) * 0.7) 0;
}

.c-deco__title--box-fukidashi--polygon {
  width: clamp(1rem, 0.515rem + 2.071vw, 3rem);
  height: calc(clamp(1rem, 0.515rem + 2.071vw, 3rem) * 0.85);
  background-color: var(--color__primary-dark);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  margin: 0 auto;
  margin-top: -1px;
}

.c-deco__title--box-fukidashi .logo_taiyosha-ha {
  width: calc(clamp(11.25rem, 7.913rem + 14.239vw, 25rem) * 0.8);
}

.c-deco__title--box-fukidashi .text__title {
  font-size: var(--font-size__l);
  color: var(--color__white);
}

.c-deco__title--box-fukidashi .text__title span {
  color: var(--color__secondary);
}

/*
=====================
マーカー
======================
*/
.c-deco__marker {
  background: linear-gradient(transparent 60%, var(--color__secondary) 60%);
}

/*
=====================
折れた紙風
======================
*/
.u-deco__paper {
  --fold: clamp(1rem, 0.879rem + 0.518vw, 1.5rem);
  --b: 1.5px; /* 線の太さ */
  --c: var(--color__black); /* 線色 */
  position: relative;
  padding: 1em 3em;
  overflow: hidden;
  border: 0;
  background: #fff;
}
@media (max-width: 48rem) {
  .u-deco__paper {
    padding: 1em;
  }
}

/* 枠線（上・左・右(欠けまで)・下(欠けまで)・斜め線） */
.u-deco__paper::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(var(--c), var(--c)) 0 0/100% var(--b) no-repeat, linear-gradient(var(--c), var(--c)) 0 0/var(--b) 100% no-repeat, linear-gradient(var(--c), var(--c)) 100% 0/var(--b) calc(100% - var(--fold)) no-repeat, linear-gradient(var(--c), var(--c)) 0 100%/calc(100% - var(--fold)) var(--b) no-repeat, linear-gradient(135deg, transparent calc(50% - 0.75px), var(--c) 0 calc(50% + 0.75px), transparent 0) 100% 100%/var(--fold) var(--fold) no-repeat;
}

/* 折り返しのL字（画像の右下にある短い線） */
.u-deco__paper::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: var(--fold);
  height: var(--fold);
  border-left: var(--b) solid var(--c);
  border-top: var(--b) solid var(--c);
  pointer-events: none;
}

.fukidashi--polygon {
  width: clamp(1rem, -0.143rem + 2.381vw, 2rem);
  height: calc(clamp(1rem, -0.143rem + 2.381vw, 2rem) * 1.7);
  background-color: var(--color__background-dark);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  margin: 0 auto;
  margin-top: -1px;
}

.il_ouen {
  margin: 0 auto;
  max-width: clamp(15rem, 12.33rem + 11.392vw, 26rem);
}

.logo_taiyosha-ha {
  width: clamp(11.25rem, 7.913rem + 14.239vw, 25rem);
  margin-bottom: clamp(0.2rem, 0.127rem + 0.311vw, 0.5rem);
}

.logo_taiyosha-notokucho {
  display: block;
  width: clamp(11.25rem, 7.913rem + 14.239vw, 25rem);
  margin-bottom: clamp(0.2rem, 0.127rem + 0.311vw, 0.5rem);
  margin: 0 auto;
}

.il_banner {
  display: block;
}
@media (max-width: 28rem) {
  .il_banner {
    max-width: 80%;
    margin: 0 auto;
  }
}

.il_arrow__down {
  display: block;
  width: clamp(1rem, 0.757rem + 1.036vw, 2rem);
  margin: clamp(1rem, 0.757rem + 1.036vw, 2rem) auto;
}

/* スライダー全体 */
.slider-wrapper {
  display: flex;
  overflow: hidden;
  gap: var(--gap__card);
}

/* スライド3枚のグループ */
.slider {
  animation: scroll-left 20s infinite linear 0.5s both;
  display: flex;
  list-style: none;
  gap: var(--gap__card);
}

/* スライド */
.slide {
  width: 14.2857142857vw;
}
@media (max-width: 48rem) {
  .slide {
    width: 20vw;
  }
}
@media (max-width: 28rem) {
  .slide {
    width: 33.3333333333vw;
  }
}

/* スライドの画像 */
.slide img {
  display: block;
  width: 100%;
}

/* CSSアニメーション */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.l-card__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap__card);
}
@media (max-width: 35rem) {
  .l-card__list {
    max-width: 23rem;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
  }
}

.l-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: var(--color__white);
  padding: 0 var(--gap__card);
  align-items: center;
}

.l-card.no-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.l-card--textbox {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.l-card p {
  font-size: var(--font-size__s);
  line-height: 1.4;
}

:root {
  --article--padding: clamp(1rem, 0.648rem + 1.502vw, 2rem);
}

.l-article__list {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 0.148rem + 1.502vw, 1.5rem);
  list-style: none;
}

.l-article__item {
  border: 1.4px solid var(--color__background-dark);
  border-radius: 0.5rem;
}

.l-article__title {
  display: grid;
  grid-template-columns: auto 1fr;
  padding: calc(var(--article--padding) * 0.5);
  padding-left: 1.5em;
  background-color: var(--color__background-dark);
  font-size: var(--font-size__m);
  font-weight: 600;
  border-radius: 0.45rem 0.45rem 0 0;
}

.l-article__title .num {
  display: block;
  transform: scale(1.2);
  margin-right: 1em;
}

.l-article__inner {
  padding: var(--article--padding);
}

.l-article__item-flex {
  display: flex;
  gap: 0;
}
@media (max-width: 48rem) {
  .l-article__item-flex {
    flex-direction: column;
    gap: 1rem;
  }
}

.l-article__item .text__title {
  font-size: calc(var(--font-size__m) * 1.2);
  width: 100%;
  text-align: left;
}

.l-article__inner .l-list__checklist {
  width: 100%;
  margin-right: auto;
  margin-top: 1em;
}

.l-article__illust {
  width: clamp(22rem, 15.143rem + 14.286vw, 28rem);
  height: auto;
}
@media (max-width: 48rem) {
  .l-article__illust {
    width: 70%;
    max-width: 22rem;
    margin: 0 auto;
  }
}

.l-article__illust.minus-margin {
  margin-top: -5rem;
}
@media (max-width: 48rem) {
  .l-article__illust.minus-margin {
    margin-top: 0;
  }
}

.l-article__illust.small {
  width: calc(clamp(22rem, 15.143rem + 14.286vw, 28rem) * 0.8);
}
@media (max-width: 48rem) {
  .l-article__illust.small {
    width: 60%;
    max-width: 20rem;
    margin: 0 auto;
  }
}

.article_arrow {
  width: clamp(5rem, 3.239rem + 7.512vw, 10rem);
  margin: 0 auto;
}

.l-product__list {
  display: flex;
  flex-direction: column;
  gap: calc(clamp(0.5rem, 0.148rem + 1.502vw, 1.5rem) * 4);
  list-style: none;
  margin-top: clamp(0.5rem, 0.148rem + 1.502vw, 1.5rem);
}

.l-product__item {
  background-color: var(--color__background-dark);
  border-radius: 0.5rem;
  padding: var(--article--padding);
  padding-top: 0;
}

.l-product__title {
  background-color: var(--color__black);
  color: #fff;
  font-size: var(--font-size__m);
  font-weight: 500;
  border-radius: 100vmax;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0.4em 1.5em;
  margin-top: calc(var(--font-size__m) * -1);
}

.l-product__item .l-product__image {
  margin-top: var(--font-size__m);
}
@media (max-width: 48rem) {
  .l-product__item .l-product__image {
    max-width: 30rem;
    margin: var(--font-size__m) auto 0 auto;
  }
}

@media (max-width: 48rem) {
  .l-product__item .l-product__image.iwate {
    max-width: 23rem;
    margin: var(--font-size__m) auto 0 auto;
  }
}

.l-voice__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1em;
  margin-top: 2em;
}
@media (max-width: 48rem) {
  .l-voice__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.l-voice__item {
  display: flex;
  flex-direction: column;
}

.l-voice__fukidashi {
  display: flex;
  align-items: center;
  background-color: var(--color__background-dark);
  border-radius: 0.5rem;
  padding: 0.5em;
  height: 100%;
}

.l-voice__fukidashi p {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: var(--font-size__s);
}

.l-voice__illust {
  width: 50%;
  margin: 0 auto;
  margin-top: 0.5em;
}
@media (max-width: 48rem) {
  .l-voice__illust {
    width: 40%;
  }
}

.l-list__checklist, .l-list__num {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  list-style: none;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.l-list__checklist--item, .l-list__num--item {
  font-size: var(--font-size__m);
  padding-left: calc(var(--font-size__m) * 1.5);
  text-indent: calc(var(--font-size__m) * 1.5 * -1);
}

.l-list__checklist--item::before {
  content: "";
  display: inline-block;
  width: calc(var(--font-size__m) * 1.3);
  height: var(--font-size__m);
  background-image: url(../images/icon_check.webp);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-bottom: 0.2em;
}

.l-list__num {
  gap: 0.2em;
  margin-top: 0.5em;
}

.l-list__num--item::before {
  content: "";
  display: inline-block;
  width: calc(var(--font-size__m) * 1.3);
  height: var(--font-size__m);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-bottom: 0.2em;
}

.l-list__num--item:nth-child(1)::before {
  background-image: url(../images/num-list-1.svg);
}

.l-list__num--item:nth-child(2)::before {
  background-image: url(../images/num-list-2.svg);
}

.l-list__num--item:nth-child(3)::before {
  background-image: url(../images/num-list-3.svg);
}

.l-list-illust {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  gap: var(--space__contents-min);
  display: grid;
  align-items: center;
  grid-template-columns: clamp(5rem, 2.667rem + 4.861vw, 8.5rem) auto clamp(5rem, 2.667rem + 4.861vw, 8.5rem);
  grid-template-areas: "left center right";
}

/* 各要素にエリアを割り当てる */
.l-list-illust > :nth-child(1) {
  grid-area: left;
}

.l-list-illust > :nth-child(2) {
  grid-area: center;
}

.l-list-illust > :nth-child(3) {
  grid-area: right;
}

@media (max-width: 48rem) {
  .l-list-illust {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "center center" "left   right";
  }
  .l-list-illust > :nth-child(1) {
    margin-left: auto;
    width: clamp(5rem, 4.15rem + 3.625vw, 8.5rem);
  }
  .l-list-illust > :nth-child(2) {
    width: 100%;
  }
  .l-list-illust > :nth-child(3) {
    width: clamp(5rem, 4.15rem + 3.625vw, 8.5rem);
  }
}
.l-list-illust.happy {
  grid-template-columns: clamp(10rem, 5rem + 10.417vw, 17.5rem) 1fr clamp(10rem, 5rem + 10.417vw, 17.5rem);
  gap: 0;
}

/* 左：中央方向に 2em だけ食い込ませる */
.l-list-illust.happy > :nth-child(1) {
  transform: translateX(2em);
  position: relative;
  z-index: 1;
}

/* 右：中央方向に 2em だけ食い込ませる */
.l-list-illust.happy > :nth-child(3) {
  transform: translateX(-2em);
  position: relative;
  z-index: 1;
}

@media (max-width: 48rem) {
  .l-list-illust.happy {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "center center" "left   right";
  }
  .l-list-illust.happy > :nth-child(1) {
    margin-left: auto;
    width: clamp(8.75rem, 2.083rem + 13.889vw, 18.75rem);
    transform: translateX(0);
    margin-right: 0.5em;
    margin-top: 1rem;
  }
  .l-list-illust.happy > :nth-child(2) {
    width: 100%;
  }
  .l-list-illust.happy > :nth-child(3) {
    width: clamp(8.75rem, 2.083rem + 13.889vw, 18.75rem);
    transform: translateX(0);
    margin-left: 0.5em;
    margin-top: 1rem;
  }
}
.l-list-illust.soudan {
  grid-template-columns: calc(clamp(5rem, 2.667rem + 4.861vw, 8.5rem) * 1.3) auto clamp(5rem, 2.667rem + 4.861vw, 8.5rem);
}

@media (max-width: 48rem) {
  .l-list-illust.soudan {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "center center" "left   right";
  }
  .l-list-illust > :nth-child(1) {
    margin-left: auto;
    width: clamp(5rem, 4.15rem + 3.625vw, 8.5rem);
  }
  .l-list-illust > :nth-child(2) {
    width: 100%;
  }
  .l-list-illust > :nth-child(3) {
    width: clamp(5rem, 4.15rem + 3.625vw, 8.5rem);
  }
}
.footer-top__link--list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--font-size__m);
}
@media (max-width: 48rem) {
  .footer-top__link--list {
    max-width: 30rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }
}

.footer-top__link--list--item {
  background-color: var(--color__white);
  padding: 0.7em 1em;
  position: relative;
}

.footer-top__link--list--item::after {
  content: "";
  position: absolute;
  display: block;
  background-color: var(--color__secondary);
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.footer-top__link--list--item--inner {
  position: relative;
  z-index: 10;
  font-size: var(--font-size__s);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-top__link--list--item .footer_link--arrow {
  width: clamp(1.5rem, 0.796rem + 3.005vw, 3.5rem);
}

@media (any-hover: hover) {
  .footer-top__link--list--item:hover::after {
    opacity: 1;
    width: 100%;
  }
}
.c-allwrap--link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.l-footer {
  background-color: var(--color__black);
  color: #fff;
  padding: calc(clamp(1rem, 0.449rem + 2.349vw, 2rem) * 0.5) clamp(1rem, 0.449rem + 2.349vw, 2rem);
}

.footer_inner {
  max-width: 66rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 48rem) {
  .footer_inner {
    flex-direction: column;
    gap: calc(clamp(1rem, 0.449rem + 2.349vw, 2rem) * 0.5);
    padding: calc(clamp(1rem, 0.449rem + 2.349vw, 2rem) * 0.5) 0;
  }
}

.footer__logo {
  max-width: 20rem;
  width: 70%;
  position: relative;
}

.l-footer__menu {
  display: flex;
  gap: 2em;
  list-style: none;
}

.l-footer__menu a {
  font-size: var(--font-size__xs);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.05em;
}/*# sourceMappingURL=common.css.map */