@charset "UTF-8";
/* SCSSの読み込み */
@import url(all.css);
/* font-weight */
@font-face {
  font-family: "Malina";
  font-weight: 400;
  src: url(/css/fonts/Malina.otf) format("opentype");
}
:root {
  /* カラー */
  --color-text: #333;
  --color-rose: #99594d;
  --color-pink: #e3bdb6;
  --color-baby-pink: #f7ebe9;
  --color-beige: #e9e3dd;
  --color-gray: #999;
  /* font-family */
  --font-family-noto: "Noto Sans JP", sans-serif;
  --font-family-mincho: "Noto Serif JP", serif;
  --font-family-maru: "Zen Maru Gothic", sans-serif;
  --font-family-malina: "Malina", cursive;
  /* font-weight */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-SemiBold: 600;
  --font-weight-bold: 700;
}

@media screen and (min-width: 768px) {
  :root {
    /* フォントサイズ */
    --font-size-h1: 5.4rem;
    --font-size-h2: 5rem;
    --font-size-h3: 4.2rem;
    --font-size-h4: 3rem;
    --font-size-h5: 2rem;
    --font-size-h6: 1.8rem;
    --font-size-base: 1.6rem;
    --font-size-sm: 1.4rem;
    --font-size-xs: 1.2rem;
    /* line-height */
    --line-height-title: 1.5;
    --margin-height-title: -0.25em;
    --line-height-base: 2;
    --margin-height-base: -0.5em;
    --line-height-sm: 1.714286;
    --line-height-xs: 1.6666667;
    /* letter-spacing */
    --letter-spacing-base: 0.06em;
  }
}
@media screen and (max-width: 767px) {
  :root {
    /* フォントサイズ */
    --font-size-h1: 2em;
    --font-size-h2: 1.75em;
    --font-size-h3: 1.5625em;
    --font-size-h4: 1.375em;
    --font-size-h5: 1.25em;
    --font-size-h6: 1.125em;
    --font-size-base: 1em;
    --font-size-sm: 0.875em;
    --font-size-xs: 0.75em;
    /* line-height */
    --line-height-title: 1.5;
    --line-height-base: 1.875;
    --line-height-sm: 1.714286;
    --line-height-xs: 1.666667;
    /* letter-spacing */
    --letter-spacing-base: 0.06em;
  }
}
/*===============================================
  切り替え用
===============================================*/
.sp-none {
  display: none !important;
}

.com-table table,
.com-table table tbody,
.com-table table th,
.com-table table tr,
.com-table table td {
  display: block !important;
  width: 100% !important;
}

/*===============================================
  ページネーション
===============================================*/
.pagenation {
  font-size: var(--font-size-sm);
  padding-top: 2.5em;
}
.pagenation li {
  width: 2em;
  line-height: 2.15;
  margin: 0.5em 0.5em 0;
}

/*===============================================
  詳細ページ前後
===============================================*/
.paginated {
  font-size: var(--font-size-sm);
}
.paginated__list {
  padding-top: 1em;
  margin-top: 2em;
}
.paginated__link {
  line-height: var(--line-height-sm);
  letter-spacing: var(--letter-spacing-base);
}
.paginated__link--prev::before {
  margin-right: 0.5em;
}
.paginated__link--next::after {
  margin-left: 0.5em;
}

/*===============================================
  wrapper
===============================================*/
#wrapper {
  min-width: 320px;
  font-size: clamp(1.3rem, 3.5555555556vw, 1.6rem);
}

/*===============================================
  header
===============================================*/
#header {
  padding: min(30px, 6.6666666667vw) 0;
}
#header .header__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 90%;
}
#header .header__logo {
  width: clamp(104px, 28.8888888889vw, 130px);
}
#header .header__tel {
  width: 100%;
  height: 3em;
  background: #fff;
  box-shadow: 0 2px 0 0 var(--color-pink) inset;
  padding-top: 0.25em;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10;
}

/*===============================================
  footer
===============================================*/
#footer {
  padding: min(80px, 17.7777777778vw) 0 min(40px, 8.8888888889vw);
}
#footer .footer__logo img {
  width: clamp(104px, 28.8888888889vw, 130px);
}
#footer .footer__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 90%;
  row-gap: 2em;
  padding-top: min(45px, 10vw);
}
#footer .footer__info {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px 1.5em;
  line-height: 1.5;
}
#footer .footer__info-item dt {
  padding: 0 0.5em;
  margin-right: 0.5em;
}
#footer .footer__add {
  width: 100%;
  text-align: center;
  margin: -0.25em 0;
}
#footer .footer__add:has(+ .footer__info-item) {
  margin-bottom: 0;
  padding-bottom: 5px;
}
#footer .footer__links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 10px;
  width: min(420px, 100%);
}
#footer .footer__link {
  width: calc(50% - 5px);
  height: 70px;
  font-size: var(--font-size-sm);
}
#footer .footer__link a {
  width: 100%;
  height: 100%;
}
#footer .footer__link--Instagram {
  width: 100%;
}
#footer .footer__link--Instagram br {
  display: none;
}
#footer .copy {
  padding: 2.5em 0 0;
}

/*フッターナビ
-----------------------------*/
.footer-nav {
  width: 100%;
}
.footer-nav__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
.footer-nav__item {
  width: 100%;
  border-bottom: solid 1px var(--color-pink);
}
.footer-nav__item:nth-child(n+7) {
  width: 48%;
  font-size: var(--font-size-sm);
}
.footer-nav__item:nth-child(n+7) .footer-nav__link span {
  display: inline-block;
}
@media screen and (max-width: 530px) {
  .footer-nav__item:nth-child(n+7) .footer-nav__link span {
    display: block;
  }
}
.footer-nav__link {
  line-height: 2;
  padding: 1em 0.5em;
}
.footer-nav__link .en {
  margin-right: 0.5em;
}
.footer-nav__link .ja {
  color: var(--color-rose);
  font-size: var(--font-size-xs);
}
.footer-nav__link[aria-current=page] {
  color: var(--color-rose);
}

/*コピーライト
-----------------------------*/
.copy {
  font-size: var(--font-size-xs);
  padding: 5em 0 calc(2em + min(96px, 21.3333333333vw));
}
.copy p {
  line-height: var(--line-height-xs);
}

/*===============================================
  fixed固定
===============================================*/
/*ページトップ
-----------------------------*/
#pagetop {
  width: clamp(24px, 6.6666666667vw, 30px);
  right: 10px;
  bottom: 15px;
}

/*サイドボタン
-----------------------------*/
#side {
  left: 8px;
  bottom: 8px;
}

/*===============================================
  visual
===============================================*/
/*メインビジュアル
-----------------------------*/
.visual__main::before {
  content: "";
  width: 40%;
  height: 36%;
  background: var(--color-pink);
  position: absolute;
  left: 0;
  bottom: 36%;
  z-index: -2;
}
.visual__main-box {
  padding: 0 10vw min(70px, 15.5555555556vw) 5vw;
}
.visual__main-box > * {
  position: relative;
  z-index: 5;
}
.visual__main-catch {
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row-reverse;
  font-size: var(--font-size-h1);
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  margin-bottom: 2.5em;
}
.visual__main-catch > span {
  width: min(32px, 7.1111111111vw);
}
.visual__main-catch > span:nth-of-type(2) {
  width: min(56px, 12.4444444444vw);
  padding: 1em 0;
}
.visual__main-catch > span:last-of-type {
  margin-top: auto;
}
.visual__main-deco {
  width: min(200px, 44.4444444444vw);
}
.visual__main-deco::after {
  content: "";
  width: 170%;
  aspect-ratio: 667/188;
  background: url(../img/visual/mv_deco-illustration.png) no-repeat left top/contain;
  position: absolute;
  left: calc(100% - 2px);
  bottom: max(-40px, -8.8888888889vw);
}
.visual__main-text {
  font-size: min(1rem, 2.2222222222vw);
  letter-spacing: 0.025em;
  margin-right: -0.025em;
  margin-top: 3em;
}
.visual__main-images {
  width: 96%;
  height: min(540px, 120vw);
  top: 0;
  left: 0;
}
.visual__main-image {
  width: 30vw;
  height: min(135px, 30vw);
}
.visual__main-image--lb {
  bottom: 12%;
  left: 3%;
  z-index: 3;
}
.visual__main-image--lt {
  top: 42%;
  left: 18%;
  z-index: 2;
}
.visual__main-image--rb {
  bottom: -5%;
  right: 0;
  z-index: 3;
}
.visual__main-image--rt {
  width: 60%;
  height: min(200px, 44.4444444444vw);
  top: 0;
  left: 0;
  z-index: 0;
}
.visual__main-image--rt img {
  -o-object-position: 45% center;
     object-position: 45% center;
}
.visual__main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*サブビジュアル
-----------------------------*/
.visual__sub {
  height: min(300px, 66.6666666667vw);
  padding-top: min(25px, 5.5555555556vw);
  background-size: min(72px, 16vw);
}
.visual__sub::before {
  display: none;
}
.visual__sub::after {
  width: 56%;
  height: 64%;
  right: 0;
  top: 0;
}
.visual__sub-box {
  margin-left: 10%;
}
.visual__sub-box::after {
  display: none;
}
.visual__sub-catch {
  row-gap: min(8px, 1.7777777778vw);
  margin-bottom: min(30px, 6.6666666667vw);
}
.visual__sub-catch > span {
  max-width: 7em;
  font-size: min(2.8rem, 6.2222222222vw);
  line-height: var(--line-height-title);
  letter-spacing: var(--letter-spacing-base);
  -webkit-text-stroke: 1px #fff;
  paint-order: stroke;
  text-shadow: 0 0 3px #fff;
  margin: var(--margin-height-base) 0;
}
.visual__sub-catch::before {
  width: min(50px, 11.1111111111vw);
  top: max(-36px, -8vw);
  left: max(-40px, -8.8888888889vw);
}
.visual__sub-catch::after {
  height: min(64px, 14.2222222222vw);
}
.visual__sub-text {
  font-size: min(1rem, 2.2222222222vw);
  letter-spacing: 0.025em;
  margin-right: -0.025em;
}

/*===============================================
  main#container
===============================================*/
#container {
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
}

/*===============================================
  パンくずリスト
===============================================*/
.breadcrumb {
  padding-top: 0.5em;
}
.breadcrumb__list {
  width: 90%;
}
.breadcrumb__item {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
}

/*===============================================
  main共通
===============================================*/
.section {
  padding: min(120px, 26.6666666667vw) 0;
}

.inbox {
  width: 90%;
}

/*電話番号
-----------------------------*/
.com-tel {
  font-size: var(--font-size-h1);
}
.com-tel-num::before {
  width: 0.75em;
  margin-right: 0.25em;
}
.com-tel-num span {
  margin: -0.2em 0 -0.15em;
}
.com-tel .com-replace {
  height: 0.375em;
  margin-top: 0.5em;
}

/*ボタン
-----------------------------*/
.com-btn {
  width: min(360px, 75vw);
  max-width: 100%;
  height: clamp(50px, 13.3333333333vw, 60px);
  letter-spacing: var(--letter-spacing-base);
}
.com-btn--mail {
  padding-right: 0.875em;
}
.com-btn--mail::before {
  width: 1.625em;
  margin-right: 1.25em;
}
.com-btn--window {
  height: 60px;
}
.com-btn--window::before {
  width: 1.25em;
  margin-right: 1em;
}
.com-btn--ig {
  height: 60px;
}
.com-btn--ig::before {
  width: 30px;
  margin-right: 15px;
}

/*テーブル
-----------------------------*/
.com-table {
  line-height: 1.875;
}
.com-table tr {
  font-weight: var(--font-weight-SemiBold);
  padding: 0 1em 1.5em;
  margin-bottom: 1.5em;
}
.com-table tr:last-of-type {
  margin-bottom: 0;
}
.com-table tr th {
  margin-bottom: 1em;
}
/*テキストボックス
-----------------------------*/
.com-text strong {
  font-size: var(--font-size-h6);
}
.com-text .mb {
  margin-bottom: 1.5em;
}
.com-text br {
  display: none;
}

/*SB未記入テキスト
-----------------------------*/
.com-empty {
  font-size: var(--font-size-h4);
  line-height: var(--line-height-title);
  padding: 2.5em 0;
}

/*===============================================
  タイトル
===============================================*/
/*大タイトル
-----------------------------*/
.com-title01 {
  row-gap: 1.5em;
  padding-top: 3em;
  margin-bottom: 2.5em;
}
.com-title01::before {
  font-size: var(--font-size-h2);
  transform: rotate(-12deg);
  white-space: nowrap;
  padding-top: 0.2em;
  margin-bottom: -0.2em;
  top: 0;
  left: -2em;
}
.com-title01 .ja {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-title);
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1);
}
.com-title01 .en {
  font-size: var(--font-size-sm);
  letter-spacing: 0.025em;
  margin-right: -0.025em;
}

/*中タイトル
-----------------------------*/
.com-title02 {
  row-gap: 1.25em;
  margin-bottom: 2em;
}
.com-title02 .sub {
  font-size: var(--font-size-h6);
  letter-spacing: 0.025em;
  padding-bottom: 0.5em;
  margin: -2px -0.025em 0 0;
}
.com-title02 .main {
  font-size: var(--font-size-h4);
  line-height: var(--line-height-title);
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1);
}

/*小タイトル
-----------------------------*/
.com-title03 {
  font-size: var(--font-size-h5);
}
.com-title03 > span {
  line-height: var(--line-height-title);
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1);
}

/*===============================================
  共通セクション
===============================================*/
/*お問い合わせ
-----------------------------*/
.com-contact {
  padding: min(80px, 17.7777777778vw) 0;
}
.com-contact__box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 2em;
  width: 100%;
  padding: min(88px, 19.5555555556vw) 5% min(100px, 22.2222222222vw);
}
.com-contact__box::after {
  width: 102%;
  max-width: 624px;
  height: min(120px, 26.6666666667vw);
  bottom: 0;
}
.com-contact__title {
  margin-bottom: 0;
}
.com-contact__text {
  word-break: keep-all;
}
.com-contact__item {
  width: min(360px, 75vw);
  margin-bottom: 15px;
}
.com-contact__item:last-of-type {
  margin-bottom: 0;
}
.com-contact__item--tel {
  height: 3em;
  background: #fff;
}
.com-contact--top {
  padding-bottom: 0;
}
.com-contact--development, .com-contact--works {
  padding-top: 0;
}

/*バナーリンクセクション
-----------------------------*/
.com-bnr {
  padding: min(80px, 17.7777777778vw) 0;
}
.com-bnr__link {
  padding: 1.25em;
}
.com-bnr__inner {
  padding: 0 1em 1em;
}
.com-bnr__title {
  align-items: flex-start;
  margin-bottom: 1.5em;
}
.com-bnr__title::before {
  left: inherit;
  right: 1em;
}

/*お知らせ
-----------------------------*/
.com-news::before {
  width: 100%;
  height: min(88px, 19.5555555556vw);
  bottom: 0;
}
.com-news:has(+ .com-contact)::after {
  height: 100%;
}
.com-news__item {
  margin-bottom: 2em;
}
.com-news__item-link {
  grid-template-columns: min(150px, 33.3333333333vw) 1fr;
  -moz-column-gap: min(30px, 6.6666666667vw);
       column-gap: min(30px, 6.6666666667vw);
}
.com-news__item-inner {
  row-gap: 0.5em;
  padding: 1em 0;
}
.com-news__item-tags {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  gap: 10px;
}
.com-news__item-tag {
  padding: 0 0.5em;
}
.com-news__item-date {
  line-height: 1;
}
.com-news__btn {
  margin: 2.5em auto 0;
}
.com-news--entrance {
  padding: min(80px, 17.7777777778vw) 0 0;
}

/*===============================================
  エントランスページ
===============================================*/
/*エントランスリンク
-----------------------------*/
.entrance-area {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: min(25px, 5.5555555556vw);
  padding: 0 5%;
}
.entrance-area__list--top .entrance-area__link {
  padding: 2em 1.5em;
}
.entrance-area__item {
  outline-width: clamp(3px, 0.8888888889vw, 4px);
  outline-offset: clamp(-4px, -0.8888888889vw, -3px);
  margin-bottom: min(25px, 5.5555555556vw);
}
.entrance-area__item:last-of-type {
  margin-bottom: 0;
}
.entrance-area__link {
  padding: 1.5em;
}
.entrance-area__title {
  row-gap: 0.75em;
  padding-top: 2em;
  margin-bottom: 1em;
}
.entrance-area__title::before {
  transform: rotate(-8deg);
}
.entrance-area__text {
  padding: 1em;
}
.entrance-area__text br {
  display: none;
}

/*===============================================
  トップページ
===============================================*/
/*株式会社リルグとは
-----------------------------*/
.top-about {
  padding-top: min(80px, 17.7777777778vw);
  margin-bottom: min(300px, 66.6666666667vw);
}
.top-about::before, .top-about::after {
  display: none;
}
.top-about__title {
  align-items: flex-start;
  margin-left: 0;
}
.top-about__title::before {
  width: 9em;
  aspect-ratio: 229/86;
  left: inherit;
  top: -0.75em;
  right: -3em;
}
.top-about__image {
  margin-right: -5vw;
  margin-bottom: 2em;
}
.top-about__image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-about__image img {
  -o-object-position: right 5%;
     object-position: right 5%;
}

/*事業紹介
-----------------------------*/
.top-business:has(.top-business__images) {
  padding-bottom: 0;
}
.top-business:has(.top-business__images) .top-business__images {
  padding-top: min(120px, 26.6666666667vw);
}
.top-business::before {
  height: calc(100% - min(100px, 22.2222222222vw));
}
.top-business::after {
  width: 98%;
  max-width: 520px;
  height: min(200px, 44.4444444444vw);
  background-size: min(99px, 22vw);
  top: min(60px, 13.3333333333vw);
}
.top-business__list {
  padding-top: min(80px, 17.7777777778vw);
}
.top-business__item {
  margin-bottom: min(80px, 17.7777777778vw);
  position: relative;
  z-index: 0;
}
.top-business__item-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1.5em;
  row-gap: 1.25em;
}
.top-business__item-inner > * {
  width: 100%;
}
.top-business__item-images {
  padding: 0 4vw;
  margin-bottom: 1.5em;
}
.top-business__item-images::before {
  aspect-ratio: 1;
  height: 64%;
}
.top-business__item-images img {
  height: min(135px, 30vw);
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-business__item-images img:nth-of-type(2) {
  margin-bottom: -10vw;
}
.top-business__item-image {
  margin-bottom: 1.5em;
}
.top-business__item-image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-business__images {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -moz-column-gap: min(10px, 2.2222222222vw);
       column-gap: min(10px, 2.2222222222vw);
  justify-content: center;
  width: 200vw;
  max-width: 900px;
  margin-left: max(50% - 450px, -50vw);
}

/*代表デザイナー
-----------------------------*/
.top-designer::before {
  display: none;
}
.top-designer::after {
  width: 64%;
  height: min(150px, 33.3333333333vw);
}
.top-designer__title {
  align-items: flex-start;
  margin-left: 0;
  margin-bottom: 3.5em;
}
.top-designer__title::before {
  top: -0.5em;
  left: -0.75em;
}
.top-designer__profile {
  line-height: 1.5;
  margin-bottom: 2em;
}
.top-designer__profile-company {
  font-size: var(--font-size-h6);
  margin-bottom: 1em;
  word-break: keep-all;
}
.top-designer__profile-name span {
  margin-right: 0.5em;
}
.top-designer__profile-name--ja {
  font-size: var(--font-size-h5);
}
.top-designer__profile-name--en {
  font-size: var(--font-size-sm);
}
.top-designer__roles {
  border-left-width: 3px;
  padding-left: 0.75em;
}
.top-designer__image {
  width: 56vw;
  max-width: calc(100vw - min(250px, 55.5555555556vw));
  height: min(210px, 46.6666666667vw);
  position: absolute;
  top: max(-60px, -13.3333333333vw);
  right: -5vw;
}
.top-designer__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-designer__btn {
  margin: 2.5em auto 0;
}

/*会社情報
-----------------------------*/
.top-company {
  padding: 0;
}
.top-company::before {
  width: 105%;
  height: 30vw;
  top: max(-20px, -4.4444444444vw);
}
.top-company::after {
  height: 30vw;
}
.top-company .inbox {
  padding: min(120px, 26.6666666667vw) 0 min(80px, 17.7777777778vw);
}
.top-company__table td .com-replace {
  font-size: 1em;
  height: var(--font-size-sm);
  vertical-align: baseline;
}
.top-company__map {
  height: min(360px, 80vw);
  margin-top: min(45px, 10vw);
}

/*===============================================
  デザイナーについて
===============================================*/
/*代表デザイナー紹介
-----------------------------*/
.designer-about {
  margin-bottom: min(300px, 66.6666666667vw);
}
.designer-about::before {
  width: calc(50% - 320px);
  max-width: 640px;
  height: 400px;
  background-position: right 24% center;
  top: clamp(100px, 33.3333333333vw, 150px);
  left: max(50% - 960px, 0px);
}
.designer-about::after {
  width: 98%;
  max-width: 1650px;
  min-width: 1280px;
  height: clamp(280px, 30vw - 98px, 478px);
  bottom: clamp(150px, 50vw - 550px, 410px);
}
.designer-about__box {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100vw;
  margin-left: -5vw;
}
.designer-about__image {
  width: 42%;
}
.designer-about__image img {
  aspect-ratio: 0.75;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.designer-about__inner {
  width: 58%;
  min-height: 55vw;
  padding: 2em 1.5em;
  margin-top: 2.5em;
}
.designer-about__inner::before {
  width: calc(100% + 50px);
}
.designer-about__profile {
  line-height: 1.5;
  margin-bottom: 2em;
}
.designer-about__profile-company {
  font-size: var(--font-size-h6);
  margin-bottom: 1em;
  word-break: keep-all;
}
.designer-about__profile-name span {
  margin-right: 0.5em;
}
.designer-about__profile-name--ja {
  font-size: var(--font-size-h5);
}
.designer-about__profile-name--en {
  font-size: var(--font-size-sm);
}
.designer-about__roles {
  border-left-width: 3px;
  padding-left: 0.75em;
}
.designer-about__btn {
  margin-top: 2em;
}
.designer-about__list {
  padding-top: min(100px, 22.2222222222vw);
}
.designer-about__item {
  margin-bottom: min(60px, 13.3333333333vw);
}
.designer-about__item:last-of-type {
  margin-bottom: 0;
}
.designer-about__item-title {
  margin-bottom: 1.5em;
}
.designer-about__item-careers, .designer-about__item-licenses {
  row-gap: 1em;
  padding: 1.5em;
}
.designer-about__item-career--year {
  width: 5em;
}
.designer-about__item-career--content {
  width: calc(100% - 5em);
}

/*代表デザイナー　ふじた ともこの想い
-----------------------------*/
.designer-thoughts__title .ja span {
  display: block;
}
.designer-thoughts__image {
  margin-bottom: 2.5em;
}
.designer-thoughts__image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*所属デザイナー紹介
-----------------------------*/
.designer-intro__item {
  margin-bottom: 2.5em;
}
.designer-intro__item-title {
  justify-content: center;
  min-height: 7em;
  padding: 1.25em;
  margin-bottom: 0;
  row-gap: 0.75em;
}
.designer-intro__item-inner {
  padding: 1.5em;
}
.designer-intro__item-image {
  width: 64%;
  margin: 0 auto 1.5em;
}
.designer-intro__item-image img {
  aspect-ratio: 0.8;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.designer-intro__item-career {
  padding: 1.25em;
  margin-top: 1.5em;
}
.designer-intro__item-heading {
  font-size: var(--font-size-h5);
  margin-bottom: 0.75em;
}

/*===============================================
  商品開発
===============================================*/
/*商品開発について
-----------------------------*/
.development-about__image {
  margin-bottom: 2em;
}
.development-about__image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.development-about__btn {
  margin: 2.5em auto 0;
}

/*商品紹介
-----------------------------*/
.development-product__item {
  margin-bottom: 2.5em;
}
.development-product__item-title {
  justify-content: center;
  min-height: 7em;
  padding: 1.25em;
  margin-bottom: 0;
  row-gap: 0.75em;
}
.development-product__item-inner {
  padding: 1.5em;
}
.development-product__item-image {
  margin-bottom: 1.5em;
}
.development-product__item-image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.development-product__item-btn {
  margin: 2em auto 0;
}

/*===============================================
  空間デザイン
===============================================*/
/*空間デザインについて
-----------------------------*/
.space-about__image {
  margin-bottom: 2em;
}
.space-about__image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.space-about__btn {
  margin: 2.5em auto 0;
}

/*事業紹介
-----------------------------*/
.space-business__item {
  margin-bottom: 2.5em;
}
.space-business__item-title {
  justify-content: center;
  min-height: 7em;
  padding: 1.25em;
  margin-bottom: 0;
  row-gap: 0.75em;
}
.space-business__item-inner {
  padding: 1.5em;
}
.space-business__item-inner:has(+ .space-business__item-inner) {
  padding-bottom: 1em;
}
.space-business__item-inner:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.space-business__item-image {
  margin-bottom: 1em;
}
.space-business__item-image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*===============================================
  実績紹介
===============================================*/
/*実績紹介　一覧
-----------------------------*/
.works-list__title::before {
  width: 8em;
  aspect-ratio: 227/108;
  left: inherit;
  top: -0.5em;
  right: -5em;
}
.works-list__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  grid-auto-flow: row;
  gap: min(45px, 10vw) 4%;
}
.works-list__item-link > * {
  margin-bottom: min(24px, 5.3333333333vw);
}
.works-list__item-link > *:last-child {
  margin-bottom: 0;
}
.works-list__item-title {
  padding-bottom: min(24px, 5.3333333333vw);
}

/*実績紹介　詳細
-----------------------------*/
.works-detail__title {
  margin-bottom: 2.5em;
}
.works-detail__images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
  grid-auto-flow: row;
  gap: 4%;
}
.works-detail__images:has(+ .works-detail__text) {
  margin-bottom: 2em;
}
.works-detail__text {
  padding: 1.5em;
}

/*==================================================
 ニュース一覧
================================================== */
.news-archive__title {
  align-items: flex-start;
  margin-left: 0;
  margin-bottom: 0;
}
.news-archive__title::before {
  top: 0;
  left: -0.5em;
}
.news-archive .com-news__list {
  padding-top: 3em;
}
.news-archive .com-empty {
  margin-top: 2em;
}
.news-archive .tag-select {
  margin-bottom: 0;
}

/*タグリスト
-----------------------------*/
.tag-select {
  margin-bottom: 40px;
}
.tag-select__box {
  min-width: 10em;
}
.tag-select__box::after {
  right: 12px;
}
.tag-select__dropdown {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  padding: 1em 2.5em 1em 1em;
}

/*==================================================
 ニュース詳細
================================================== */
.news-detail__title {
  border-bottom: solid 2px var(--color-pink);
  padding-bottom: min(24px, 5.3333333333vw);
  margin-bottom: min(24px, 5.3333333333vw);
}
.news-detail__post {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  margin-bottom: 1em;
}
/*==================================================
 お問い合わせ
================================================== */
.contact-form__table {
  margin-bottom: 40px;
}
.contact-form__table tr {
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.contact-form__table tr th .optional-mark,
.contact-form__table tr th .required-mark {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  padding: 0 0.5em;
  margin-top: 0.25em;
}
.contact-form__table tr td select,
.contact-form__table tr td textarea,
.contact-form__table tr td input[type=tel],
.contact-form__table tr td input[type=num],
.contact-form__table tr td input[type=text],
.contact-form__table tr td input[type=email],
.contact-form__table tr td input[type=url] {
  font-size: 1em;
  line-height: 1.5;
  padding: 0.75em 1em;
}
.contact-form .contact-submits-wrap {
  padding-top: 16px;
}
.contact-form .contact-submits-wrap > * {
  width: 75vw;
  max-width: 320px;
  height: 60px;
  margin: 0 auto 20px;
}
.contact-form .contact-submits-wrap > *:last-child {
  margin-bottom: 0;
}

/*==================================================
 お問い合わせ完了
================================================== */
/*===============================================
  プライバシーポリシー
===============================================*/
.privacy-policy__box {
  margin-bottom: 3em;
}
.privacy-policy__box-title {
  border-bottom: solid 2px var(--color-pink);
  padding-bottom: min(24px, 5.3333333333vw);
  margin-bottom: min(24px, 5.3333333333vw);
}

/*==================================================
 サイトマップ
================================================== */
.sitemap-list__item {
  margin-bottom: 10px;
}
.sitemap-list__item:last-of-type {
  margin-bottom: 0;
}
.sitemap-list__link {
  padding: 1em;
}
.sitemap-list__link .en {
  font-size: var(--font-size-h6);
  margin-right: 1em;
}
.sitemap-list__link .ja {
  font-size: var(--font-size-sm);
}

/*===============================================
  404エラー
===============================================*/