@charset "UTF-8";
/* ///////////////////////////////////////////////

　common style for modern browser
　Version: 4.0

/////////////////////////////////////////////// */
/* details と summary */
/* Base
----------------------------------------------- */
/*
　各要素のスタイルを初期化し、デフォルトのスタイルを定義
*/
@import url("https://fonts.googleapis.com/css2?family=Zen+Antique&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border: none;
  background: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

:where(a) {
  text-underline-offset: 0.1ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg) {
  max-inline-size: 100%;
  block-size: auto;
  vertical-align: bottom;
}

:where(p, li, dt, dd, th, td, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(table) {
  border-collapse: collapse;
  border-spacing: 0;
}

:where(picture) {
  display: block;
}

:where(i, em) {
  font-style: normal;
}

/* Module
----------------------------------------------- */
.ul-disc > li {
  list-style: disc;
  margin-left: 1.5em;
}

.ol-decimal > li {
  list-style: decimal;
  margin-left: 1.5em;
}

/* State
----------------------------------------------- */
.hidden {
  display: none;
}

.hidden-pc {
  display: none;
}

@media (max-width: 960px) {
  .hidden-pc {
    display: block;
  }
  .hidden-pc.inline {
    display: inline-block;
  }
  .hidden-tab {
    display: none;
  }
}
@media (max-width: 520px) {
  .hidden-tab {
    display: block;
  }
  .hidden-tab.inline {
    display: inline-block;
  }
  .hidden-sp {
    display: none;
  }
}
@media (orientation: landscape) and (max-width: 960px) {
  .hidden-land {
    display: none;
  }
}
/* Utillity
----------------------------------------------- */
/* Text */
.taR {
  text-align: right;
}

.taL {
  text-align: left;
}

.taC {
  text-align: center;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

/* Image */
a img {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: all 0.2s;
}
@media (hover: hover) {
  a:hover img {
    opacity: 0.8;
  }
}

*[class|=logo] a:hover {
  text-decoration: none;
}
*[class|=logo] a:hover img {
  opacity: 1;
}

a.tel {
  text-decoration: none;
}
a.tel img {
  opacity: 1;
}

/* button */
.btn {
  display: inline-block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  text-decoration: none;
  transition: opacity 0.2s;
}
@media (hover: hover) {
  .btn:hover {
    text-decoration: none;
    opacity: 0.8;
  }
  .btn:hover img {
    opacity: 1;
  }
}

/* details と summary */
/*

  FONT
----------------------------------------------- */
:root {
  font-size: 1px;
  --color-base: #000;
  --color-gray: #E2E2E2;
  --color-brown: #250505;
  --font-serif: "Zen Antique", serif;
}
@media screen and (min-width: 961px) {
  :root {
    --dist-space: 114px;
  }
}
@media screen and (max-width: 960px) {
  :root {
    --dist-space: 57px;
    font-size: 0.75px;
  }
}

body {
  color: var(--color-base);
  font-size: 16rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-style:  normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.06em;
}

:is(p) {
  line-height: 2;
}

:is(li, dt, dd, th, td, address) {
  line-height: 1.75;
}

:is(input, textarea, select) {
  font-size: 16px;
}

:where(a) {
  color: inherit;
  text-decoration: none;
}
:where(a):hover {
  text-decoration: underline;
}

.ffS {
  font-family: var(--font-serif);
  font-weight: 400;
}

/*

  LAYOUT
----------------------------------------------- */
body {
  background: url(../img/bg.jpg) center/683px;
}
body.isOpenMenu {
  overflow: hidden;
}

/* header固定にした際の上部余白 */
.mainContents {
  padding-top: var(--dist-space);
}

/*

  HEADER
----------------------------------------------- */
.header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  height: var(--dist-space);
  background-color: #fff;
}
.header .logo {
  margin-right: auto;
}
@media screen and (min-width: 961px) {
  .header .logo {
    margin-left: 38px;
  }
}
@media screen and (max-width: 960px) {
  .header .logo {
    width: 115px;
    margin-left: 20px;
  }
}
.header .menu {
  display: flex;
  gap: 2em;
  margin-right: auto;
  margin-left: auto;
}
.header .menu a {
  display: flex;
  align-items: center;
  font-family: var(--font-serif);
  text-decoration: none;
  white-space: nowrap;
}
.header .menu a:hover {
  text-decoration: underline;
}
.header .menu .recruit {
  gap: 0.3em;
}
.header .menu .recruit::before, .header .menu .recruit::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  text-rendering: auto;
  flex-shrink: 0;
}
.header .menu .recruit::after {
  content: "\f08e";
  font-size: 75%;
}
@media screen and (max-width: 960px) {
  .header .menu {
    display: none;
  }
}

/*

  MENU
----------------------------------------------- */
.gnav {
  position: fixed;
  z-index: 10;
  top: var(--dist-space);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(63, 48, 48, 0.9);
  padding-left: calc(50% - 490px);
  padding-right: calc(50% - 490px);
  display: grid;
  justify-items: start;
  align-content: center;
  gap: 1em;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}
@media (max-width: 1040px) {
  .gnav {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.gnav a {
  position: relative;
  padding-left: 25px;
  color: #fff;
  font-family: var(--font-serif);
  text-decoration: none;
}
.gnav a:hover {
  text-decoration: underline;
}
.gnav ul {
  display: grid;
  gap: 0.8em;
}
.gnav ul a {
  font-size: 29rem;
}
.gnav ul a::before {
  position: absolute;
  left: 0;
  bottom: 2px;
  content: url(../img/ico-nav.svg);
}
.gnav .recruit {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  font-size: 18rem;
}
.gnav .recruit::before, .gnav .recruit::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  text-rendering: auto;
  flex-shrink: 0;
}
.gnav .recruit::after {
  content: "\f08e";
  font-size: 65%;
}

.isOpenMenu .gnav {
  opacity: 1;
  pointer-events: inherit;
}

/*

  BUTTON MENU
----------------------------------------------- */
.btnMenu {
  align-self: stretch;
  display: grid;
  place-items: center;
  background-color: var(--color-brown);
  aspect-ratio: 1;
  overflow: hidden;
}
.btnMenu span {
  position: relative;
  grid-area: 1/1;
  height: 1px;
  background: #fff;
  transition: 0.3s;
}
.btnMenu span:nth-child(3) {
  scale: 0.8;
  -webkit-transform-origin: right;
          transform-origin: right;
}
@media screen and (min-width: 961px) {
  .btnMenu span {
    width: 47px;
  }
  .btnMenu span:nth-child(1) {
    translate: 0 -12px;
  }
  .btnMenu span:nth-child(3) {
    translate: 0 12px;
  }
}
@media screen and (max-width: 960px) {
  .btnMenu {
    height: 57px;
  }
  .btnMenu span {
    width: 30px;
  }
  .btnMenu span:nth-child(1) {
    translate: 0 -7px;
  }
  .btnMenu span:nth-child(3) {
    translate: 0 7px;
  }
}

.isOpenMenu .btnMenu span:nth-child(1) {
  translate: 0 0px;
  rotate: 155deg;
}
.isOpenMenu .btnMenu span:nth-child(3) {
  scale: 1;
  translate: 0 0px;
  rotate: -155deg;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.isOpenMenu .btnMenu span:nth-child(2) {
  opacity: 0;
}

/*

  FOOTER
----------------------------------------------- */
.footer {
  background-color: var(--color-brown);
  padding-left: calc(50% - 550px);
  padding-right: calc(50% - 550px);
  display: grid;
  color: #fff;
}
@media (max-width: 1160px) {
  .footer {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 961px) {
  .footer {
    margin-top: 120px;
    padding-top: 100px;
    padding-bottom: 50px;
    grid-template-columns: repeat(2, 1fr);
    gap: 140px 0;
  }
}
@media screen and (max-width: 960px) {
  .footer {
    margin-top: 60px;
    padding: 55px 50px;
  }
}
@media screen and (max-width: 960px) {
  .footer .logo {
    width: 190px;
    margin-bottom: 30px;
  }
}
.footer .info {
  display: grid;
}
.footer strong {
  margin-bottom: 0.6em;
}
@media screen and (max-width: 960px) {
  .footer strong {
    font-size: 14px;
  }
}
.footer address {
  font-style: normal;
}
.footer .tel {
  margin-top: 0.5em;
  font-size: 16px;
}
.footer .tel a {
  font-size: 28px;
  text-decoration: none;
}
.footer .copyright {
  text-align: center;
}
@media screen and (min-width: 961px) {
  .footer .copyright {
    grid-area: 2/1/3/3;
  }
}
@media screen and (max-width: 960px) {
  .footer .copyright {
    margin-top: 80px;
  }
}

/*

  CONTENTS
----------------------------------------------- */
/* main visual */
.mainvisual {
  position: relative;
}
@media screen and (max-width: 960px) {
  .mainvisual {
    background-color: rgba(170, 0, 0, 0.2);
  }
}
@media screen and (max-width: 960px) {
  .mainvisual .image .item {
    aspect-ratio: 375/270;
  }
  .mainvisual .image img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: inherit;
    max-height: inherit;
  }
}
.mainvisual .catch {
  position: absolute;
  inset: 0;
  padding-left: calc(50% - 550px);
  padding-right: calc(50% - 550px);
  display: grid;
  /* span {
    padding: 1em .7em;
    background: url(../img/bg-texture.png) center top / 72px;
    font-size: 30rem;
    font-family: var(--font-serif);
    writing-mode: vertical-rl;
    font-feature-settings: 'pkna';
    &:nth-child(1) {
    }
    &:nth-child(2) {
      padding-right: 0;
    }
  } */
}
@media (max-width: 1160px) {
  .mainvisual .catch {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.mainvisual .catch p {
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (min-width: 961px) {
  .mainvisual .catch {
    align-content: center;
  }
}
@media screen and (max-width: 960px) {
  .mainvisual .catch {
    right: auto;
    top: 30px;
    /* span {
      font-size: 16px;
    } */
  }
  .mainvisual .catch img {
    width: 68px;
  }
}
.mainvisual .scroll {
  position: absolute;
  left: 0;
  right: 0;
  padding-left: calc(50% - 550px);
  padding-right: calc(50% - 550px);
}
@media (max-width: 1160px) {
  .mainvisual .scroll {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 961px) {
  .mainvisual .scroll {
    bottom: 0;
  }
}
@media screen and (max-width: 960px) {
  .mainvisual .scroll {
    bottom: -50px;
  }
}
.mainvisual .scroll span {
  margin-left: auto;
  display: grid;
  justify-items: center;
  align-items: end;
  border-left: 2px solid #fff;
  mix-blend-mode: difference;
}
@media screen and (min-width: 961px) {
  .mainvisual .scroll span {
    width: 55px;
    height: 140px;
    translate: 0 50%;
  }
}
@media screen and (max-width: 960px) {
  .mainvisual .scroll span {
    width: 20px;
    height: 100px;
    border-width: 1px;
  }
  .mainvisual .scroll span img {
    width: 11.3px;
  }
}

/* 京吉田喜について */
.about {
  padding-left: calc(50% - 550px);
  padding-right: calc(50% - 550px);
  display: grid;
}
@media (max-width: 1160px) {
  .about {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 961px) {
  .about {
    grid-template-columns: repeat(2, 1fr);
  }
  .about .text {
    padding-right: 70px;
  }
  .about .image {
    padding-left: 120px;
  }
}
@media screen and (max-width: 960px) {
  .about {
    margin-top: 30px;
    gap: 30px;
  }
}
@media screen and (max-width: 960px) {
  .about h2 img {
    width: 58%;
  }
}
.about .lead {
  margin-top: 1.8em;
  margin-bottom: 1.8em;
}
@media screen and (max-width: 960px) {
  .about .lead {
    margin-top: 1.3em;
  }
  .about .lead img {
    width: 243px;
  }
}
.about .bold {
  font-weight: 700;
}
.about a {
  display: inline-flex;
  align-items: center;
  font-size: 18rem;
  font-weight: 600;
}
.about a i {
  margin-right: 0.4em;
  font-size: 90%;
}
@media screen and (min-width: 961px) {
  .about a {
    margin-top: 4em;
  }
}
@media screen and (max-width: 960px) {
  .about a {
    margin-top: 2em;
    font-size: 13px;
  }
}
.about .image figure:nth-child(1) {
  mix-blend-mode: multiply;
}
@media screen and (min-width: 961px) {
  .about .image {
    position: relative;
  }
  .about .image figure:nth-child(1) {
    position: absolute;
    right: calc(100% - 90px);
    bottom: 0;
    width: 52%;
    translate: 0 50%;
  }
}
@media screen and (max-width: 960px) {
  .about .image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 1px solid var(--color-gray);
    padding-bottom: 40px;
    margin-bottom: -30px;
  }
  .about .image figure:nth-child(1) {
    position: relative;
    z-index: 2;
    margin-top: 105%;
    margin-right: -16%;
    margin-left: -20px;
  }
  .about .image figure:nth-child(2) {
    margin-right: -30px;
  }
}

/* 京吉田喜のこだわり */
.commitment {
  padding-left: calc(50% - 550px);
  padding-right: calc(50% - 550px);
  display: grid;
  grid-template-columns: auto auto;
}
@media (max-width: 1160px) {
  .commitment {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 961px) {
  .commitment {
    margin-top: 140px;
    gap: 240px;
  }
}
@media screen and (max-width: 960px) {
  .commitment {
    gap: 35px;
  }
}
.commitment .h2 {
  flex-direction: column;
  align-items: center;
}
.commitment .h2::before {
  -webkit-transform-origin: center;
          transform-origin: center;
  translate: none;
}
@media screen and (max-width: 960px) {
  .commitment .h2 {
    gap: 5px;
  }
  .commitment .h2 img {
    width: 58%;
  }
}
@media screen and (min-width: 961px) {
  .commitment dl {
    border-top: 1px solid var(--color-base);
  }
}
.commitment dt {
  margin-bottom: 0.7em;
  padding-top: 1.6em;
}
@media screen and (max-width: 960px) {
  .commitment dt img {
    zoom: 0.58;
    -moz-transform: scale(0.58);
  }
}
.commitment dd {
  padding-bottom: 3em;
  font-weight: 700;
  line-height: 2;
}
@media screen and (min-width: 961px) {
  .commitment dd {
    border-bottom: 1px solid var(--color-gray);
  }
}

/* 商品ラインナップ */
@media screen and (min-width: 961px) {
  .lineup {
    margin-top: 10px;
    padding-left: calc(50% - 550px);
    padding-right: calc(50% - 550px);
  }
}
@media screen and (min-width: 961px) and (max-width: 1160px) {
  .lineup {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.lineup .h2 {
  justify-content: center;
}
@media screen and (max-width: 960px) {
  .lineup .h2 img {
    width: 141px;
  }
}
.lineup .catch {
  text-align: center;
}
@media screen and (max-width: 960px) {
  .lineup .catch img {
    width: 307px;
  }
}
.lineup .lead {
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 961px) {
  .lineup .lead {
    margin-top: 1em;
    font-size: 19rem;
  }
}
@media screen and (max-width: 960px) {
  .lineup .lead {
    margin-top: 1.5em;
    font-size: 12px;
  }
}
@media screen and (min-width: 961px) {
  .lineup .products {
    margin-top: 100px;
    display: grid;
  }
}
.lineup .products .products-img{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.lineup .products .products-img div{
    width: calc(100% / 3);
}
.lineup .products a{
    margin-top: 2.25em;
    border: 1px solid #BDBDBD;
    border-radius: 50px;
    padding: 12px;
    text-align: center;
    font-size: 18px;
    font-family: "Zen Antique", serif;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 7px;
}
@media screen and (max-width: 960px) {
  .lineup .products a {
    margin-top: 1.5em;
  }
}

@media screen and (max-width: 960px) {
  .lineup .products {
    margin: 35px 30px 0;
  }
}
.lineup details {
  overflow: hidden;
}
.lineup details summary {
  list-style-type: none;
  position: relative;
  cursor: pointer;
}
.lineup details summary::-webkit-details-marker {
  display: none;
}
@media screen and (min-width: 961px) {
  .lineup details {
    grid-area: 1/1;
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .lineup details + details {
    margin-top: 60px;
  }
}
@media screen and (min-width: 961px) {
  .lineup details[open] summary {
    border-bottom-color: #ccc;
  }
  .lineup details[open] .thumb::after {
    opacity: 0;
  }
}
.lineup details[open] .more::after {
  content: "\f068";
}
.lineup details summary {
  display: grid;
  font-family: var(--font-serif);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (min-width: 961px) {
  .lineup details summary {
    padding-bottom: 65px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.8);
    justify-items: center;
    gap: 1.5em;
  }
  .lineup details summary:hover {
    border-bottom-color: #ccc;
  }
  .lineup details summary:hover .thumb::after {
    opacity: 0;
  }
}
@media screen and (max-width: 960px) {
  .lineup details summary {
    margin: 0 30px;
    padding-bottom: 12px;
    grid-template-columns: 1fr auto;
    border-bottom: 1px solid #000;
    align-items: center;
    gap: 1.2em;
  }
  .lineup details summary .thumb {
    grid-area: 1/1/2/3;
  }
  .lineup details summary .thumb::after {
    opacity: 0;
  }
}
.lineup .thumb {
  position: relative;
}
.lineup .thumb::after {
  position: absolute;
  inset: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}
@media screen and (max-width: 960px) {
  .lineup .cat-name img {
    zoom: 0.52;
    -moz-transform: scale(0.52);
  }
}
.lineup .more::before, .lineup .more::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  text-rendering: auto;
  flex-shrink: 0;
}
.lineup .more::after {
  margin-left: 0.3em;
  font-size: 90%;
  content: "+";
}
@media screen and (min-width: 961px) {
  .lineup .more {
    font-size: 18rem;
  }
}
@media screen and (max-width: 960px) {
  .lineup .more {
    font-size: 16px;
  }
  .lineup .more em {
    display: none;
  }
}
.lineup h3 {
  font-family: var(--font-serif);
  font-weight: 400;
}
@media screen and (min-width: 961px) {
  .lineup h3 {
    margin-top: 100px;
    margin-bottom: 70px;
    font-size: 28rem;
  }
}
@media screen and (max-width: 960px) {
  .lineup h3 {
    display: none;
  }
}
@media screen and (min-width: 961px) {
  .lineup .items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 960px) {
  .lineup .items {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    padding: 0 30px;
    overflow: auto;
  }
}
.lineup .item {
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (min-width: 961px) {
  .lineup .item {
    padding: 28px;
  }
}
@media screen and (max-width: 960px) {
  .lineup .item {
    padding: 24px;
  }
}
.lineup .item-name {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
}
@media screen and (min-width: 961px) {
  .lineup .item-name {
    font-size: 24rem;
  }
}
@media screen and (max-width: 960px) {
  .lineup .item-name {
    font-size: 20px;
    width: 242px;
  }
}
.lineup .item-image {
  margin: 0.5em 0;
}
.lineup .item-desc {
  font-family: var(--font-serif);
  line-height: 1.65;
}
.lineup .item-desc small {
  font-size: 87.5%;
}
@media screen and (max-width: 960px) {
  .lineup .item-desc {
    font-size: 15px;
  }
}
.lineup .item-data {
  margin-top: 1.3em;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1em;
}
.lineup .item-data dt {
  white-space: nowrap;
}
@media screen and (max-width: 960px) {
  .lineup .item-data {
    font-size: 13px;
  }
}
@media screen and (min-width: 961px) {
  .lineup .products-1 summary {
    width: calc(33.333% + 7px);
    padding-right: 20px;
    margin-right: auto;
  }
  .lineup .products-2 summary {
    width: calc(33.333% - 13px);
    margin: auto;
  }
  .lineup .products-3 summary {
    width: calc(33.333% + 7px);
    padding-left: 20px;
    margin-left: auto;
  }
}

.modaal-container {
  border-radius: 10px;
  width: 420px;
  max-width: 100%;
}
@media screen and (max-width: 520px) {
  .modaal-container {
    width: 100%;
  }
}
.modaal-container .modaal-content-container {
  padding: 50px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .modaal-container .modaal-content-container {
    padding: 30px;
  }
}
.modaal-container .modaal-close {
  position: absolute;
  top: 10px;
  width: 47px;
  height: 47px;
  background: url(../img/btn-close.svg) no-repeat center/100%;
  border-radius: 0;
}
.modaal-container .modaal-close::before, .modaal-container .modaal-close::after {
  display: none;
}
@media screen and (max-width: 960px) {
  .modaal-container .modaal-close {
    top: 18px;
    width: 35px;
    height: 35px;
  }
}
.modaal-container h3 {
  margin-bottom: 1em;
  font-size: 24rem;
}
.modaal-container figure {
  margin: 1em 0;
  text-align: center;
}
.modaal-container .desc {
  line-height: 1.75;
}
.modaal-container .data {
  margin-top: 1em;
  font-weight: 600;
}

/* 会社概要 */
.company {
  padding-left: calc(50% - 550px);
  padding-right: calc(50% - 550px);
  display: grid;
  align-items: start;
}
@media (max-width: 1160px) {
  .company {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 961px) {
  .company {
    grid-template-columns: auto auto;
  }
}
@media screen and (max-width: 960px) {
  .company .h2 img {
    width: 80px;
  }
}
.company dl {
  border-top: 1px solid var(--color-base);
  display: grid;
}
@media screen and (min-width: 961px) {
  .company dl {
    grid-template-columns: auto 1fr;
  }
  .company dl > * {
    padding: 2.1em 0;
    border-bottom: 1px solid var(--color-gray);
  }
}
.company dt {
  padding-right: 4em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .company dt {
    padding: 1.3em 0 0.8em;
    font-size: 16px;
  }
}
.company dd {
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .company dd {
    padding-bottom: 1.6em;
    border-bottom: 1px solid var(--color-gray);
    font-size: 14px;
  }
}

/* お問い合わせ */
.contact {
  padding-left: calc(50% - 550px);
  padding-right: calc(50% - 550px);
}
@media (max-width: 1160px) {
  .contact {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 961px) {
  .contact {
    margin-top: 10px;
  }
}
@media screen and (max-width: 960px) {
  .contact .h2 img {
    width: 110px;
  }
}
.contact .content {
  display: grid;
}
@media screen and (min-width: 961px) {
  .contact .content {
    grid-template-columns: 30% auto;
    gap: 55px;
  }
}
@media screen and (max-width: 960px) {
  .contact .content {
    margin-top: 40px;
    gap: 45px;
  }
}
.contact h3 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 0.8em;
  margin-bottom: 1.2em;
  border-bottom: 1px solid #BDBDBD;
  font-size: 18px;
}
.contact .tel {
  font-size: clamp(41px, max(41px, 4.0983606557vw), 50px);
  letter-spacing: 0em;
  white-space: nowrap;
}
.contact dl {
  display: grid;
  grid-template-columns: auto 1fr;
  border-top: 1px solid #BDBDBD;
}
.contact dl > * {
  border-bottom: 1px solid #BDBDBD;
  padding: 11px 0;
}
@media screen and (min-width: 961px) {
  .contact dl {
    margin-top: 3em;
  }
  .contact dl > * {
    border-bottom: 1px solid #BDBDBD;
  }
}
@media screen and (max-width: 960px) {
  .contact dl {
    margin-top: 40px;
  }
}
.contact dl dt {
  font-family: var(--font-serif);
  font-size: 14rem;
  font-weight: 600;
}
@media screen and (min-width: 961px) {
  .contact dl dt {
    padding: 0.6em 0;
    padding-right: 3.5em;
  }
}
@media screen and (max-width: 960px) {
  .contact dl dt {
    padding-right: 3.5em;
    font-size: 13px;
  }
}
.contact dl dd {
  font-size: 13rem;
  font-weight: 700;
}
@media screen and (min-width: 961px) {
  .contact dl dd {
    padding: 0.8em 0;
  }
}
@media screen and (max-width: 960px) {
  .contact dl dd {
    padding: 1em 0;
    font-size: 12px;
  }
}
.contact .mail {
  margin-top: 2em;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 18rem;
}
.contact .mail i {
  font-size: 90%;
}
@media screen and (max-width: 960px) {
  .contact .mail {
    margin-top: 30px;
    font-size: 14px;
  }
}
.contact .map {
  position: relative;
}
.contact .map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.contact .map::after {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 251, 248, 0.2);
  content: "";
  pointer-events: none;
}
@media screen and (min-width: 961px) {
  .contact .map {
    aspect-ratio: 710/433;
  }
}
@media screen and (max-width: 960px) {
  .contact .map {
    height: 420px;
  }
}

/*

  MODULES
----------------------------------------------- */
/* intersection */
.intersection.up {
  overflow: hidden;
}
.intersection.up > span {
  display: inline-block;
  opacity: 0;
  transition-duration: 2.2s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  translate: 0 100%;
}
.intersection.view.up > span {
  opacity: 1;
  translate: 0 0;
}

/* layout */
@media screen and (min-width: 961px) {
  .sec {
    padding-top: 140px;
  }
}
@media screen and (max-width: 960px) {
  .sec {
    padding-top: 70px;
  }
}

/* title */
.h2 {
  display: flex;
  margin-bottom: 1em;
  font-family: var(--font-serif);
  font-weight: 400;
}
.h2::before {
  content: url(../img/mrk-title.svg);
}
@media screen and (min-width: 961px) {
  .h2 {
    gap: 0.4em;
    font-size: 40rem;
  }
  .h2::before {
    translate: 0 -7px;
  }
}
@media screen and (max-width: 960px) {
  .h2 {
    margin-bottom: 1.3em;
    font-size: 20px;
  }
  .h2::before {
    scale: 0.6;
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}

/* font */
.bold {
  font-weight: 700;
}