@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Hina+Mincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&display=swap');

html {
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  height: 100%;
  font-size: 0.67vw;
  font-size: 62.5%;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-style: normal;
  color: #231815;
  letter-spacing: 0.136666666rem;
  font-size: 1.6rem;
  font-feature-settings: "palt" 1;
  position: relative;
  text-align: justify;
  overflow-wrap: break-word;
  word-wrap: break-word; /* 古いブラウザ用 */
  
  /* それでも折り返せない場合に強制的に単語途中でも改行する */
  word-break: break-all;
}
@media (max-width: 743px) {
  body {
    font-size: 1.3rem;
  }
}
label {
  width: auto;
  max-width: auto;
}
p {
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: underline;
}
a:link {
  color: inherit;
  text-decoration: underline;
}
a:visited {
  color: inherit;
  text-decoration: underline;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
a:active {
  color: rgba(71, 71, 71, 1.00);
}
a img {
  transition: 0.5s;
}
a:hover img {
  opacity: 0.8;
  transition: 0.5s;
}
@media screen and (min-width:1139px) {
  a.tel_link {
    color: inherit;
    text-decoration: none;    
  }
}
.hover_img {
  overflow: hidden;
  display: block;
}
.hover_img img{
 transition:1s all;
}
.hover_img img:hover{
  transform:scale(1.04,1.04);
  transition:0.4s all;
}
a.tel-no {
  text-decoration: none;
  color: inherit;
}
/*-form
-------------------------------------------------------------------*/
.form_small {
  width: 5rem;
  height: 1.4rem;
  font-size: 1.2rem;
  background-color: rgba(247,247,247,1.00);
}
.form_middle {
  width: 1.2rem;
  height: 1.4rem;
  font-size: 1.2rem;
  background-color: rgba(255,255,255,1.00);
}
.form_long {
  width: 26rem;
  height: 1.4rem;
  font-size: 1.2rem;
  background-color: rgba(255,255,255,1.00);
}
input[type="text"],input[type="email"],input[type="tel"],textarea {
  box-shadow: none;
  border: none;
  padding: 1.5rem;
  border-radius: 1rem;
  width: 100%;
  background-color: rgba(255,255,255,1.00);
}
/*  header#globalHeader　----------------------------------------------------*/
header#globalHeader {
  position: absolute;
  z-index: 100;
  width: 100%;
}
header#globalHeader .container {
  padding: 4rem 3.9%;
  position: relative;
}
.navbar-collapse {
  width: 100%;
}
ul.navbar-nav-sub {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}
ul.navbar-nav-sub li {
  list-style: none;
  display: inline;
  padding: 0;
  margin: 0;
}
ul.navbar-nav-sub li a {
  display: block;
  background-color: #ffffff;
  border-radius: 100px;
  text-align: center;
  padding: 0.4rem 2rem 0.6rem;
  font-size: 1.4rem;
  text-decoration: none;
  color: inherit;
}
.btn-nav {
  position: absolute;
  top: 26%;
  right: 4.4%;
}
.link-nav {
  margin-top: 2rem;
  width: 100%;
}
ul.navbar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 2.8%;
}
@media (max-width: 743px) {
  ul.navbar-nav {
    gap: 0;
  }
}
ul.navbar-nav li {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
}
ul.navbar-nav li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.6rem;
  letter-spacing: 0.3rem;
  white-space: nowrap;
}
header#globalHeader.fixed {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  animation: DownAnime 1s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}
.navbar-brand {
  position: relative;
  z-index: 999;
}
.navbar-brand .fixed {
  display: none;
}
.fixed .navbar-brand .fixed {
  display: block;
}
.fixed .navbar-brand .white {
  display: none;
}
header#globalHeader.fixed .container {
  padding: 1rem 3.9% 1.5rem;
}
header#globalHeader.fixed ul.navbar-nav-sub li a {
  background-color: #000000;
  color: #fff;
}
header#globalHeader.fixed ul.navbar-nav li a {
  color: #000;
}
header#globalHeader.fixed .btn-nav {
  top: 1rem;
}

.whitePage .navbar-brand{
  display: block;
  }
.whitePage .navbar-brand .white {
  display: none;
}
.whitePage .navbar-brand .fixed {
display: block;
}
.whitePage ul.navbar-nav li a {
  color: #000;
}
.whitePage ul.navbar-nav-sub li a {
  background-color: #000000;
  color: #fff;
}
/*トグルボタン----------------------------------*/
.toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: transparent;
  border-style: none;
  z-index: 999;
}
.toggle:focus {
  outline: none;
}
.pc {
  display: none;
}
@media (min-width: 1139px) {
  .toggle {
    display: none;
  }
  .smp {
    display: none;
  }
  .pc {
    display: inline-block;
  }
}
@media (max-width: 1140px) {
  body.active {
    height: 100%;
    overflow: hidden;
  }
  .navbar-collapse {
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 998;
  }
  ul.navbar-nav {
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  ul.navbar-nav li {
    display: block;
    margin: 0;
    margin-left: 2rem;
  }
}
.navbar-toggle-anime, .navbar-toggle-anime span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.navbar-toggle-anime {
  position: relative;
  width: 30px;
  height: 15px;
}
.navbar-toggle-anime span {
  position: absolute;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  border-radius: 4px;
}
.whitePage .navbar-toggle-anime span  {
  background-color: #000;
}
.navbar-toggle-anime span:nth-of-type(1) {
  top: 0;
}
.navbar-toggle-anime span:nth-of-type(2) {
  top: 7px;
  width: 26px;
}
.navbar-toggle-anime span:nth-of-type(3) {
  bottom: 0px;
  width: 23px;
}
.navbar-toggle-anime.active span:nth-of-type(3) {
  width: 30px;
}
.navbar-toggle-anime.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.navbar-toggle-anime.active span:nth-of-type(2) {
  opacity: 0;
}
.navbar-toggle-anime.active span:nth-of-type(3) {
  -webkit-transform: translateY(-4px) rotate(315deg);
  transform: translateY(-4px) rotate(315deg);
}

/*  footer#globalFooter　----------------------------------------------------*/
footer#globalFooter {
  clear: both;
  width: 100%;
  padding: 7rem 2rem 4rem;
  color: #ffffff;
  background-image: url(../images/share/bg_footer.jpg);
  background-size: cover;
  font-style: normal;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0;
}
footer#globalFooter ul {
  list-style: none;
  padding: 0;
}
footer#globalFooter a {
  text-decoration: none;
  color: #ffffff;
}
footer#globalFooter a:hover {
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.5);
}
footer#globalFooter a.comingsoon:hover {
  text-decoration: none;
  color: #ffffff;
}
footer#globalFooter .attention {
  font-size: 2rem;
  margin-bottom: 3rem;
}
.footer {
  position: relative;
  padding-bottom: 8rem;
}
.fnav {
  display: flex;
  flex-wrap: wrap;
}
.fnav__inner {
  width: 25%;
}
.fnav__inner {
  width: 25%;
}
.fnav__inner li {
  margin-bottom: 2rem;
}
.fnav__inner li.line {
  margin-bottom: 5rem;
}
.fnav__inner li.line span {
  font-size: 2rem;
  position: relative;
  display: block;
}
.fnav__inner li.line span:before {
  content: "";
  background-color: #fff;
  width: 1rem;
  height: 0.1rem;
  position: absolute;
  top: 50%;
  left: -1.3rem;
}
.fnav__inner li.line a {
  display: inline-block;
  font-weight: 700;
  
}

.fnav__inner-ul {
  margin-top: 2rem;
}
.fnav__inner-ul li a {
  font-size: 1.6rem;
  font-weight: 400 !important;
  position: static;
}
.fnav__inner-ul li a:before {
  display: none;
}
.flogo {
  position: absolute;
  right: 0;
  bottom: 7rem;
  display: flex;
  gap: 3rem;
}
.flogo a {
  display: block;
}
.page-top {
  right: -50px;
  bottom: 50px;
  position: fixed;
  z-index: 999;
}
.page-top a {
  border-radius: 10rem;
  background-color: #000;
  background-size: 40px 40px;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  display:block;
  position: relative;
}
.page-top a:after {
  content: "";
  display: block;
  background: #ffffff;
  height: calc(tan(60deg) * 60px / 2);
  width: 10px;
  height: 10px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  position: absolute;
  top: 50%;
  left:50%;
  transform: translate(-50%,-50%);
}
footer#globalFooter p.copyright {
  text-align: center;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
}

/* common ----------------------------------------------------*/
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex-start {
  justify-content: flex-start;
}
.flex-center {
  justify-content:center;
}
.flex-end {
  justify-content:flex-end;
}
.flex-around {
  justify-content:space-around;
}
.center_center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width:743px) {
  .flex {
    display: block;
  }
  .contentSec {
    margin-bottom: 5rem;
  }
}
.col-3 {
  width: 30%;
  padding-inline: 15px;
}
.col-4 {
  width: 40%;
  padding-inline: 15px;
}
.col-5 {
  width: 50%;
  padding-inline: 15px;
}
.col-6 {
  width: 60%;
  padding-inline: 15px;
}
.col-7 {
  width: 70%;
  padding-inline: 15px;
}
.col-8 {
  width: 80%;
  padding-inline: 15px;
}
.col-10 {
  width: 100%;
  padding-inline: 15px;
}
@media (max-width: 743px){
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10 {
    width: 100%;
  }
  .order-1 {
    order: 1;
  }
  .order-2 {
    order: 2;
  }
  .order-3 {
    order: 3;
  }
  .order-4 {
    order: 4;
  }
  .order-5 {
    order: 5;
  }
}
.col-7.center {
  margin-inline: auto;
}
h2.fadein span {
  opacity: 0;
}
h2.fadein.active span:nth-child(1) {
  animation: fedein-txt 1.0s 0.5s forwards;
}
h2.fadein.active span:nth-child(2) {
  animation: fedein-txt 1.0s 0.7s forwards;
}
h2.fadein.active span:nth-child(3) {
  animation: fedein-txt 1.0s 0.9s forwards;
}
h2.fadein.active span:nth-child(4) {
  animation: fedein-txt 1.0s 1.1s forwards;
}
h2.fadein.active span:nth-child(5) {
  animation: fedein-txt 1.0s 1.3s forwards;
}
h2.fadein.active span:nth-child(6) {
  animation: fedein-txt 1.0s 1.5s forwards;
}
h2.fadein.active span:nth-child(7) {
  animation: fedein-txt 1.0s 1.7s forwards;
}
h2.fadein.active span:nth-child(8) {
  animation: fedein-txt 1.0s 1.9s forwards;
}
h2.fadein.active span:nth-child(9) {
  animation: fedein-txt 1.0s 2.1s forwards;
}
h2.fadein.active span:nth-child(10) {
  animation: fedein-txt 1.0s 2.3s forwards;
}
h2.fadein.active span:nth-child(11) {
  animation: fedein-txt 1.0s 2.5s forwards;
}
@keyframes fedein-txt {
    0% {
       opacity: 0;
       filter: blur(5px);
    }
    100% {
        opacity: 1;
        filter: blur(0px);
    }
}

ul.fadein {}
ul.fadein.active li {
  margin-top: 10px;
  filter: blur(5px);
}
ul.fadein.active li:nth-child(1) {
  animation: fedeup-img 3s 0.2s forwards;
}
ul.fadein.active li:nth-child(2) {
  animation: fedeup-img 3s 0.4s forwards;
}
ul.fadein.active li:nth-child(3) {
  animation: fedeup-img 3s 0.6s forwards;
}
ul.fadein.active li:nth-child(4) {
  animation: fedeup-img 3s 0.8s forwards;
}
ul.fadein.active li:nth-child(5) {
  animation: fedeup-img 3s 1s forwards;
}
ul.fadein.active li:nth-child(6) {
  animation: fedeup-img 3s 1.2s forwards;
}
ul.fadein.active li:nth-child(7) {
  animation: fedeup-img 3s 1.4s forwards;
}
@keyframes fedeup-img {
    0% {
       transform: translateY(0px);
       filter: blur(5px);
    }
    100% {
        transform: translateY(-60px);
        filter: blur(0px);
    }
}
.bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 0;
}
.bg img {
  width: 110%;
  height: auto;
}
a.comingsoon {
  opacity: 0.65;
  cursor: default;
}

.banner {
  position: fixed;
  right: 0;
  bottom: 9rem;
  z-index: 99;
}

.banner-smp {
  display: none;
}
@media (max-width: 743px) {
  .banner-pc {
    display: none;
  }
  .banner-smp {
    display: block;
  }
}
.pageTitle-sepa {
  padding-block: 28rem 10rem;
  display: flex;
  justify-content: space-between;
}
.pageTitle-sepa .image {
  width: 50%;
}
.pageTitle-sepa .title-txt {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pageTitle-sepa .title-txt h1 {
  margin-right: 25%;
}
.pageTitle-sepa .title-txt h2 {
  margin-right: 25%;
}
@media (max-width: 1140px) {
  .pageTitle-sepa {
    padding-block: 6rem 5rem;
    display: flex;
    justify-content: space-between;
  }
  .pageTitle-sepa .title-txt h1 {
    margin-right: 0;
    padding-inline: 15px;
  }
  .pageTitle-sepa .title-txt h2 {
    margin-right: 0;
    padding-inline: 15px;
  }
  .pageTitle-sepa .title-txt img {
    width: 100%;
    height: auto;
  }
}

/* home ------------------------------------------------------------------------------*/
.home {
  overflow-x: hidden;
}
.loading {
  position: relative;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  animation: fedeout 2s 3s forwards ;
  display: none;
  z-index: 999999;
}
@keyframes fedeout {
    0% {
       opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.loading-img {
  background-image: url(../images/home/loading-logo.jpg);
  background-size: 790px 90px;
  background-position: center center;
  background-repeat: no-repeat;
  width: 790px;
  height: 90px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: #fff;
}
@media (max-width: 743px) {
  .loading-img {
    background-size: 300px 33px;
    width: 300px;
    height: 33px;
  }
}
.home h2 small {
  display: block;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 400;
  margin-block: 1.5vw 4vw;
  width: 100%;
}
.home h3 {
  font-size: 2.6rem;
  font-size: clamp(1.6rem, 2vw, 2.6rem);
}
.home ul {
  list-style: none;
  padding: 0;
}
/* --- Loader & App gating --- */
.app {
  opacity: 0;
  transition: opacity .6s ease;
}
body.is-ready .app {
  opacity: 1;
}

.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: grid;
  place-items: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.loading.is-done {
  opacity: 0;
  visibility: hidden;
}

/* JS無効時のフォールバック */
noscript .app { opacity: 1; }
noscript .loading { display: none; }

/* --- スクロール演出: フェードイン & ぼかし --- */
.fadein {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease, filter .8s ease;
}
.fadein.active {
  opacity: 1;
  filter: blur(0);
}

/* スケール演出のパフォーマンスヒント */
.js-scale {
  will-change: transform;
  transform-origin: center center;
}
.loading.is-done {
  display: none;
}
/** mv **************************************************************/
#mv {}
.mv {
  background-color: #060807;
  position: relative;
  width: 100%;
  height: 61.3vw;
}
.mv-smp {
  display: none;
}
@media (max-width: 743px) {
  .mv-pc {
    display: none;
  }
  .mv-smp {
    display: block;
  }
}
.mv_copy {
  position: absolute;
  top: 22vw;
  left: 50vw;
  transform: translate(-50%,-50%);
  display: flex;
  writing-mode: vertical-rl;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
}
.mv_copy p {
  font-size: clamp(14px, 2vw, 27px);
  color: #fff;
  
}
.mv_copy .fadein p span  {
  opacity: 0;
}
.mv_copy .fadein.active p span:nth-child(1) {
  animation: fedein-txt 1.5s 0.2s forwards;
}
.mv_copy .fadein.active p span:nth-child(2) {
  animation: fedein-txt 1.5s 0.4s forwards;
}
.mv_copy .fadein.active p span:nth-child(3) {
  animation: fedein-txt 1.5s 0.6s forwards;
}
.mv_copy .fadein.active p span:nth-child(4) {
  animation: fedein-txt 1.5s 0.8s forwards;
}
.mv_copy .fadein.active p span:nth-child(5) {
  animation: fedein-txt 1.5s 1s forwards;
}
.mv_copy .fadein.active p span:nth-child(6) {
  animation: fedein-txt 1.5s 1.2s forwards;
}
.mv_copy .fadein.active p span:nth-child(7) {
  animation: fedein-txt 1.5s 1.4s forwards;
}
.mv_copy .fadein.active p span:nth-child(8) {
  animation: fedein-txt 1.5s 1.6s forwards;
}
.mv_copy .fadein.active p span:nth-child(9) {
  animation: fedein-txt 1.5s 1.8s forwards;
}
.mv_copy .fadein.active p span:nth-child(10) {
  animation: fedein-txt 1.5s 2s forwards;
}
.mv_copy .fadein.active p span:nth-child(11) {
  animation: fedein-txt 1.5s 2.2s forwards;
}
.mv_copy .fadein.active p span:nth-child(12) {
  animation: fedein-txt 1.5s 2.4s forwards;
}
.mv_copy .fadein.active p span:nth-child(13) {
  animation: fedein-txt 1.5s 2.6s forwards;
}
.mv_copy .fadein.active p span:nth-child(14) {
  animation: fedein-txt 1.5s 2.8s forwards;
}
.mv_copy .fadein.active p span:nth-child(15) {
  animation: fedein-txt 1.5s 3s forwards;
}
.mv_copy .fadein.active p span:nth-child(16) {
  animation: fedein-txt 1.5s 3.2s forwards;
}
.mv_copy .fadein.active p span:nth-child(17) {
  animation: fedein-txt 1.5s 3.4s forwards;
}
.mv_copy .fadein.active p span:nth-child(18) {
  animation: fedein-txt 1.5s 3.6s forwards;
}
.mv_copy .fadein.active p span:nth-child(19) {
  animation: fedein-txt 1.5s 3.8s forwards;
  margin-top: -1rem;
}
/** mc **************************************************************/
#mc {}
.mc {
  position: relative;
  width: 100%;
  height: 45.77vw;
}
.bg {}
.mc .fadein {

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 10;
  width: 100%;
}
.mc p span {
  display: block;
  font-size: clamp(1.4rem, 2vw, 2.5rem);
  color: #ffffff;
  margin-block: 1vw;
  text-align: center;
  letter-spacing: 0.5rem;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
}
.mc .fadein span  {
  opacity: 0;
}
.mc .fadein.active span:nth-child(1) {
  animation: fedein-txt 1s 0.1s forwards;
}
.mc .fadein.active span:nth-child(2) {
  animation: fedein-txt 2s 0.3s forwards;
}
.mc .fadein.active span:nth-child(3) {
  animation: fedein-txt 2s 0.6s forwards;
}
.mc .fadein.active span:nth-child(4) {
  animation: fedein-txt 2s 0.9s forwards;
}
.mc .fadein.active span:nth-child(5) {
  animation: fedein-txt 2s 1.2s forwards;
}
/** overview **************************************************************/
#overview {}
.overview {
  position: relative;
}
.overview .left.fadein {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 399px;
  transform: translateX(-399px);
}
.overview .left.fadein.active {
  animation: slideinLeft 2s 0.5s forwards;
}
@keyframes slideinLeft {
    0% {
       transform: translateX(-399px);
    }
    100% {
        transform: translateX(0);
    }
}
.overview .right {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  width: 499px;
}
.overview .right.fadein {
  transform: translateX(499px);
}
.overview .right.fadein.active {
  animation: slideinRight 2s 0.5s forwards;
}
@keyframes slideinRight {
    0% {
       transform: translateX(499px);
    }
    100% {
        transform: translateX(0);
    }
}
.overview__wrap {
  position: relative;
  padding-block: 22.3rem 24rem;
  z-index: 10;
}
.overview__wrap h2 {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: -2rem;
}
.home .overview__wrap h2 small {
  margin-block: 2rem 5rem;
}
.overview__wrap p {
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 3;
  margin-bottom: 3rem;
}
.btn {
  text-align: left;
}
.btn a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  display: block;
  position: relative;
  padding-left: 1.3rem;
  letter-spacing: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  line-height: 1;
}
.btn a:not(:last-child) {
  margin-block: 1.5rem;
}
.btn a:before {
  content: "";
  background-color: #000;
  width: 1rem;
  height: 0.1rem;
  position: absolute;
  top: 50%;
  left: 0;
}
.btn a i {
  margin-left: 0.5rem;
}
.btn a i img {
  width: 22px;
  height: 22px;
}
.btn a:hover {
  opacity: 0.6;
  transition: 0.6s;
}
/** news **************************************************************/
#news {}
.news {
  background-color: #f5f2e9;
  width: 100%;
  padding-block: 11rem; 
  text-align: center;
}

ul.news__wrap {
  margin-inline: auto;
  width: 100%;
  max-width: 90rem;
  text-align: left;
  border-top: 1px solid #666666;
}
ul.news__wrap li {
  padding-block: 4rem;
  border-bottom: 1px solid #666666;
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  letter-spacing: 0.1rem;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
ul.news__wrap li:after {
  content: "";
  background-image: url(../images/share/icon_attow02.svg);
  background-size: 7px 13px;
  width: 7px;
  height: 13px;
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
}
ul.news__wrap li a:hover {
  opacity: 0.5;
  transition: 0.6s;
}
ul.news__wrap li .day {
  margin-right: 5rem;
}
ul.news__wrap li .ttl {}
.more {
  margin-top: 3rem;
  text-align: center;
  margin-inline: auto;
}
ul.news__wrap li a {
  text-decoration: none;
}
.more a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.more a i {
  margin-left: 0.5rem;
}
.more a:hover {
  opacity: 0.6;
  transition: 0.6s;
}
.more a i img {
  width: 22px;
  height: 22px;
}
/** quality **************************************************************/
#quality {}
.quality {
  position: relative;
  width: 100%;
  padding-block: 5% 14%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.quality .container {;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 10;
}
.quality__wrap {
  width: 100%;
  max-width: 50rem;
}
.quality__wrap h2 {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 5rem;
}
.home .quality h2 small {
  margin-top: 4rem;
}
.quality__wrap h2 span.q{
  margin-bottom: -3rem;
}
.quality__wrap h2 span.y{
  margin-bottom: -3rem;
}
.quality__wrap h3 {
  font-weight: 400;
  margin-bottom: 2rem;
}
.quality__wrap p {
  margin-bottom: 2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.quality__wrap h2.fadein {}

.quality .bg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}

@media (max-width: 1280px) {
  .quality-bg-pc {
    display: none;
  }

}
/** brand **************************************************************/
#brand {}
.brand {
  padding-block: 20rem;
}
.brand h2 {
  text-align: center;
  margin-bottom: 5rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.brand h2 span.p {
  margin-bottom: -3rem;
}
.brand h2 small {
  display: block;
  width: 100%;
}
.brand h3 {
  font-size: 2.6rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 7rem;
  line-height: 1.8;
}
.brand .link {
  text-align: center;
}
.brand .link a {
  display: inline-block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.3rem;
  background-color: #F5F2E9;
  border-radius: 10rem;
  border: 1px solid #231815;
  padding: 2rem 4.5rem;
  line-height: 1;
  margin-bottom: 8rem;
  text-decoration: none;
}
.homeBrand__wrap {
  padding-inline: 3%;
}
.homeBrand__wrap ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}
.homeBrand__wrap ul li {
  width: 31%;
} 

/** shop **************************************************************/
#shop {}
.shop {
  position: relative;
  width: 100%;
  height: 55.65vw;
  color: #fff;
}
.shop h2 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 2.8vw;
}
.shop h2 small {
  margin-top: 1.566666667vw;
  display: block;
}
.shop h2 span.p img {
  margin-bottom: -2vw;
}
.shop h3 {
  font-size: clamp(13px, 2vw, 24px);
  font-weight: 400;
  margin-bottom: 2vw;
}
.shop p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 1vw;
  width: 40vw;
  font-size: clamp(1.4rem, 1.8vw, 1.6rem);
}
.shop .btn.mg {
  margin-bottom: 3vw;
}
.shop .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.shop .container {
  position: relative;
  z-index: 10;
  height: 100%;
}
.shop .container .row {
  justify-content: center;
  height: 100%;
  flex-direction: column;
}
.shop .btn a:before {
  background-color: #fff;
}
@media (max-width: 991px) {
  .shop p {
    width: 60vw;
    line-height: 1.3;
  }
}
@media (max-width: 661px) {
  .shop p {
    width:70vw;
  }
}
/** recruit **************************************************************/
#recruit {
  display: none;
}
.recruit {
  padding-block: 13.8vw 0;
}
.recruit h2 {
  margin-bottom: 6rem;
  line-height: 1;
}
.recruit h2 small {
  margin-top: 1rem;
  display: block;
}
.recruit h3 {
  font-weight: 400;
  font-size: 2.6rem;
  line-height: 2;
  margin-bottom: 4.5rem;
}
.recruit .img {
  padding-left: 4rem;
}

/** sdgs **************************************************************/
#sdgs {}
.sdgs {
  position: relative;
  margin-block: 13.8vw 20rem;
}
.sdgs .col-10 {
  position: relative;
}
.sdgs__wrap:before {
  content: "";
  background-image: url(../images/home/sdgs_left.svg);
  background-size: 160px 308px;
  background-repeat: no-repeat;
  width: 160px;
  height: 308px;
  position: absolute;
  top: 0;
  left: 1rem;
  z-index: 0;
}
.sdgs__wrap:after {
  content: "";
  background-image: url(../images/home/sdgs_right.svg);
  background-size: 160px 308px;
  background-repeat: no-repeat;
  width: 160px;
  height: 308px;
  position: absolute;
  top: 0;
  right: 1rem;
  z-index: ;
}
.sdgs__wrap {
  width: 100%;
  max-width: 716px;
  margin-inline: auto;
  
}
.sdgs__wrap-inner {
  position: relative;
  z-index: 10;
  background-color: #fff;
  padding-inline: 1rem;
}
.sdgs__wrap img {
  width: 100%;
  height: auto;
}
.sdgs__wrap h2 {
  margin-bottom: 5rem;
}
.sdgs__wrap p {
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 3rem;
}
.sdgs__wrap .btn {
  font-size: 1.6rem;
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin-inline: auto;
}
/** read **************************************************************/
#read {}
.read {
  margin-bottom: 2rem;
}
.read h2 {
  text-align: center;
  margin-block: 8rem;
}
.read h2 small {
  display: block;
  margin-top: 0;
  font-style: normal;
}
.read__wrap {
  padding-inline: 3%;
}
.read__wrap ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.read__wrap ul li {
  width: 31%;
}

/** contact **************************************************************/
#contact {}
.contact {
  padding-block: 14rem 20rem;
  text-align: center;
}
.contact__box a {
  display: inline-block;
  width: 100%;
  max-width: 62.5rem;
  border: 1px solid #231815;
  font-size: 2.9rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-block: 13rem;
  font-style: normal;
  position: relative;
  transition: 0.6s;
  text-decoration: none;
}
.contact__box a:after {
  content: "";
  background-image: url(../images/share/icon_attow02.svg);
  background-size: 7px 13px;
  width: 7px;
  height: 13px;
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.contact__box a:hover {
  color: #fff;
  background-color: #231815;
  transition: 0.6s;
}

.contact__box a:hover:after {
  content: "";
  background-image: url(../images/share/icon_attow02_hover.svg);
}


/** 共栄製茶とは
 * ****************************************************************************************/
.pageTitle {
  position: relative;
}
.pageTitle h1 {
  padding-inline: 3.9%;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items:flex-end;
}
.pageTitle h1 .img {
  margin-right: 4rem;
}
.pageTitle h1 .name {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 2rem;
}

.about {
  .mv_copy {
    position: static;
    top: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: none;
    width: 100%;
  }
  .mv_copy p {
    font-size: 4rem;
    color: #231815;
  }
}
.aboutIntro {
  width: 100%;
  max-width: 87rem;
  margin-inline: auto;
  margin-bottom: 20rem;
}
.pageNav {
  margin-block: 19rem 17.5rem;
}
.pageNav a {
  text-decoration: none;
}
.pageNav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 15rem;
}
.pageNav ul li {
  padding-inline:0;
  font-size: 2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: block;
  width: 17.5rem;
  text-align: center;
}
.pageNav ul li span {
  border-bottom: 1px solid #000;
  display: block;
  padding-block-end: 0.6rem;
  letter-spacing: 0;
}
.pageNav ul li i {
  margin-left: 1.5rem;
}
.aboutIntro__cmt p {
  margin-top: 7rem;
  font-size: clamp(1.4rem, 1.328vw, 1.7rem);
  line-height: 2;
  margin-bottom: 8rem;
  letter-spacing: 0;
}
.aboutIntro__photo {
  width: 100%;
  max-width: 61rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-inline: auto;
}
.aboutIntro__photo .photo {
  margin-right: 3rem;
}
.aboutIntro__photo .photo p {
  text-align: center;
  margin-top: 1.5rem;
}
.mark {
  background-color: #f5f2e9;
  padding: 2rem;
}
.mark__inner {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-size: clamp(1.6rem, 1.5625vw, 2rem);
}
.mark__inner img {
  margin-right: 2rem;
}
.mark__cmt {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.company {
    display: flex;
    align-items: center;
    margin-bottom: 15.6rem;

}
.company .company_map {
  width: 61vw;
}
.company .address {
  width: 39vw;
  padding-left: 8vw;
}
.gmap {
    position: relative;
    padding-top: 38vw;
    height: 0;

}
.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.address {}
.address h2 {
  margin-bottom: 3vw;
}
.address h2 span {
  width: 26.25vw;
  display: block;
}
.address h2 span img {
  width: 100%;
  max-width: 336px;
  height: auto;
}
.address h2 small {
  font-size: clamp(1.2rem, 1.6vw, 1.8rem);
  display: block;
  margin-top: 0.5rem;
}
.conpany {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.conpany h3 {
  font-size: clamp(1.2rem, 2vw, 2.2rem);
  margin-bottom: 1.67vw;
  font-weight: 400;
}
.conpany table {
  font-size: clamp(1.2rem, 1.4vw, 1.8rem);
  letter-spacing: 0;
}
.conpany table th {
  font-weight: 400;
  vertical-align:top;
  padding-right: 2vw;
}
.conpany table th,
.conpany table td {
  padding-bottom: 1.5vw;
  white-space: nowrap;
}
.wideButton {
  display: flex;
  margin-bottom: 20rem;
}
.wideButton .banenr__inner {
  width: 50%;
}

.history__title {
  display: flex;
}
.history__title h2 {
  width: 39%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.history__title h2 div {
  width: 25vw;
}
.history__title h2 img {
  width: 100%;
  max-width: 255px;
  height: auto;
}
.history__title h2 small {
  display: block;
  font-size: clamp(1.2rem, 1.6vw, 1.8rem);
}
.history__title .history__title-img {
  width: 61%;
}
.history__contents-box {
  position: relative;
}
.history__contents {
  width: 100%;
  max-width: 1080px;
  margin: 20rem auto;
  letter-spacing: 0;
}
.history__contents-box {
  display: flex;
  flex-wrap: wrap;
}
.history__contents-box .year {
  margin-right: 2rem;
  line-height: 0;
}
.history__contents-box .year img {
    margin-top: -1rem
}
.history__contents-box .line {
  border-left: 1px solid #89a46c;
  position: relative;
  padding-right: 4rem;
}
.history__contents-box .line:before {
  content: "";
  height: 2.7rem;
  width: 2.7rem;
  background-color: #89a46c;
  border-radius:10rem ;
  position: absolute;
  top: 0;
  left: -1.42rem;
}
.history__contents-box .wrap {
  margin-bottom: 5rem;
  width: 80rem;
}
.history__contents-box .wrap.finish {
  margin-bottom: 0;
}
.history__contents-box .wrap-inner {
  display: flex;
  margin-bottom: 1.5rem;
}
.history__contents-box .date {
  color: #89a46c;
  font-size: 1.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 170px;
}
.history__contents-box .content_in .flex {
  justify-content: flex-start;
}
.history__contents-box .harf {
  width: 33rem;
  margin-right: 2rem;
}
.history__contents-box .content_in .flex img {
  margin-top: 1rem;
}
.history__contents-box .content {
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 630px;
}
.history__contents-box .content_in {
  font-size: 1.5rem;
}
.history__contents-box .content_in .photo {
  display: flex;
  width: 70rem;
}
.history__contents-box .content_in .photo span {
  display: flex;
  font-size: 1.1rem;
  align-items: flex-end;
  width: 33rem;
  margin-right: 2rem;
  margin-top: 0.6rem;
}
.history__contents-box .content_in .photo span.wide {
  width: 59rem;
}
.history__contents-box .content_in .photo span img {
  margin-right: 0.6rem;
}
.history__contents-box .content_in .photo span i {
  font-style: normal;
  white-space: nowrap;
}

.award {
  background-color: #f5f2e9;
  text-align: center;
  padding-block: 10rem 12rem;
  
}
.award h2 span {
  display: block;
  font-size: clamp(1.5rem, 1.4vw, 1.8rem);
  font-weight: 400;
  margin-bottom: 4rem;
}
.crown {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.crown div {
  width: 47%;
}
.award .col {
  width: 100%;
  max-width: 78.5rem;
  margin-inline: auto;
}
.award table {
  background-color: #fff;
  width: 100%;
  margin-bottom: 1rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.award table thead td {
  background-color: #b2a687;
  color: #ffffff;
  padding-block: 0.6rem;
}
.award table tbody tr {
  border-bottom: 1px solid #b2a687;
}
.award table tbody th {
  padding: 1rem;
}
.award table tbody td {
  padding: 1rem 2rem;
}
.award table tbody td:last-child {
  text-align: left;
}
.award table th {
  background-color: #f5f2e9;
}
.award .tR {
  font-size: 1.3rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}


/* お茶の歴史
******************************************************************************************************************/
.historyPage {
  font-size: 1.8rem;
}
.historyPage h2 {
  text-align: center;
  margin-bottom: 4rem;
}
.historyPage p.intro {
  text-align: center;
  line-height: 3;
}
.historyPage__wrap {
  padding-block: 5.5rem 15rem;
}
.historyPage__wrap dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom:0;
}
.historyPage__wrap dl:after {
  content: '';
  width: 1px;
  height: 100%;
  background-color: #89a46c;
  position: absolute;
  top: 15px;
  left: 9%;
  z-index: 0;
}
.historyPage__wrap dl:last-child:after {
  display: none;
}
.historyPage__wrap dt {
  width: 18%;
  text-align: center;
  padding-bottom: 8rem;
}
.historyPage__wrap dt img {
  position: relative;
  z-index: 10;
}
.historyPage__wrap dd {
  width: 82%;
  line-height: 2;
  letter-spacing: 0;
  padding-bottom: 8rem;
}

/* コラムセクション */
.historyPage__wrap .colum {
  margin-top: 2rem;
  background-color: #f5f2e9;
}

.historyPage__wrap .colum h3 {
  font-size: 2.6rem;
  color: #89a46c;
  margin-left: 3rem;
}

.historyPage__wrap .colum p {
  padding: 1rem 3rem 3rem;
  font-size: 1.6rem;
  line-height: 1.8;
}
.target {
  opacity: 0;
}
.target.active {
    animation: fedeinAnime 1s 0.2s forwards;
}
@keyframes fedeinAnime {
    0% {
      opacity: 0;
       transform: translateY(40px);
    }
    100% {
      opacity: 1;
        transform: translateY(0);
    }
}

/** お茶の種類
 * *********************************************************************************************/
.kindPage {}
.kindPage .txt {
  width: 100%;
  text-align: center;
  padding-block: 0rem 6rem;
}
.kindPage .txt p {
  line-height: 2.6;
}
.kindPage__wrap {
  background-color: #f5f2e9;
  padding-block: 10rem 30rem;
}

.kindPage__wrap-inner {
  width: 1280px;
  margin-inline: auto;
  text-align: center;
  position: relative;
}
.kindPage__wrap-inner .flow {
  position: relative;
  z-index: 0;
  padding-block: 22rem 10rem;
}
.kindPage__wrap-inner .ttl {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.kindPage__wrap-inner .ttl2 {
  position: absolute;
  top: 31.5%;
  left: 34.7%;
  z-index: 1;
}
.kindPage__wrap-inner .ttl3 {
  position: absolute;
  top: 32%;
  right: 0.7%;
   z-index: 1;
}
.kindPage__wrap-inner .btn-icon {
  position: absolute;
   z-index: 1;
}
.btn-icon:hover {
  transform: scale(1.1);
  transition: 0.5s;
}
.kindPage__wrap-inner {
  .tencha {
    top: 47%;
    left: 0%;
  }
  .gyokuro {
    top: 47%;
    left: 22.7%;
  }
  .kabuse {
    top: 47%;
    left: 34.1%
  }
  .sencha {
    top: 47%;
    left: 45.5%;
  }
  .gyokuryokucha {
    top: 47%;
    left: 56.8%;
  }
  .bancha {
    top: 47%;
    left: 68.2%;
  }
  .ryokuryokucha-yude {
    top: 47%;
    left: 90.8%;
  }
  .macha {
    top: 89%;
    left: 0%;
  }
  .kukicha {
    top: 89%;
    left: 22.7%;
  }
  .funmatsu {
    top: 89%;
    left: 34.1%;
  }
  .konacha {
    top: 89%;
    left: 45.5%;
  }
  .houjicha {
    top: 89%;
    left: 56.8%;
  }
  .genmai {
    top: 89%;
    left: 68.2%;
  }
}
.smp-line {
  display: none;
}
@media (max-width: 1330px) {
  .pc-line {
    display: none;
  }
  .smp-line {
    display: block;
  }
  .smp-line p {
    position: absolute;
    top: 10%;
    left: 0%;
    width: 100%;
    text-align: center;
  }
  .kindPage__wrap {
    overflow-x: scroll;
    position: relative;
  }

  .kindPage .txt {
    padding-block: 0rem 2rem;
  }
  .kindPage .txt p {
    line-height: 2;
  }
  .kindPage__wrap {
    background-color: #f5f2e9;
    padding-block: 10rem 15rem;
  }
  .kindPage__wrap-inner {
    width: 384px;
  }
  .kindPage__wrap-inner .flow {
    padding-block: 5rem 2rem;
    padding-inline: 4.5rem;
  }
  .kindPage__wrap-inner .ttl img,
  .kindPage__wrap-inner .ttl2 img,
  .kindPage__wrap-inner .ttl3 img {
    zoom: 0.325;
  }
  .kindPage__wrap-inner .ttl {
            position: absolute;
            top: -7%;
      
      }
.kindPage__wrap-inner .ttl2 {
            top: 25%;
            left: 39.5%;
      
      }
.kindPage__wrap-inner .ttl3 {
            top: 25%;
            right: 7.7%;
      
      }
.kindPage__wrap-inner .btn-icon {
  position: absolute;
   z-index: 1;
}
.btn-icon:hover {
  transform: scale(1.1);
  transition: 0.5s;
}
.kindPage__wrap-inner {
  .tencha {
    top: 41.5%;
    left: 6.5%;
  }
  .gyokuro {
    top: 41.5%;
    left: 19.5%;
  }
  .kabuse {
    top: 41.5%;
    left: 32.1%;
  }
  .sencha {
    top: 41.5%;
    left: 44.5%;
  }
  .gyokuryokucha {
    top: 41.5%;
    left: 57.5%;
  }
  .bancha {
    top: 41.5%;
    left: 70.2%;
  }
  .ryokuryokucha-yude {
    top: 41.5%;
    left: 83.2%;
  }
  .macha {
    top: 89%;
    left: 6.5%;
  }
  .kukicha {
    top: 89%;
    left: 19.5%;
  }
  .funmatsu {
    top: 89%;
    left: 32.1%
  }
  .konacha {
    top: 89%;
    left: 44.5%;
  }
  .houjicha {
    top: 89%;
    left: 57.5%;;
  }
  .genmai {
    top: 89%;
    left: 70.2%;
  }
}
.modal__container {
  width: 96%;
}
}

 /* モーダルを開くボタン */

.btn-icon {
  cursor: pointer;
}
/* モーダル本体 */
.modal__wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
  width: 100%;
  height: 100%;
}

.modal__layer {
  height: 100%;
  background: rgba(50, 50, 50, .85);

  cursor: pointer;
}

.modal__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal__inner {
  position: relative;
  overflow-y: scroll;
  background-color: #f5f2e9;

}

/* モーダルを閉じるボタン */
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: opacity .6s;
}

.modal__close:hover {
  opacity: .6;
}

.modal__close:before,
.modal__close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 1px;
  background: #000;
  content: '';
}

.modal__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* モーダル内のコンテンツ */
.modal__content {
  display: flex;
  align-items: center;
}
.ocha-img {
  padding: 8rem 4rem 8rem 13rem;
}
.ocha-content {
  width: 50rem;
  margin: 3rem 13rem 3rem 0;
  text-align: left;
}
.modal__content h3 {
  font-size: 4.6rem;
  font-weight: 400;
  color: #89a46c;
  margin-bottom: 2rem;
}
.modal__content p {
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media (max-width:743px) {
  .modal__container {
    width: 96%;
  }
  .modal__close:before,
  .modal__close:after {
    top: 10%;
    left: 100%;
    width: 30px;
  }

  .modal__content {
    flex-direction: column;
    
  }
  .ocha-img {
    width: 80%;
    padding: 2rem 2rem 2rem 2rem;
  }
  .ocha-img img {
    width: 100%;
    height: auto;
  }
  .ocha-content {
    width: 80%;
    margin: 0;
    padding-bottom: 4rem;
  }
  .modal__content h3 {
    font-size: 2.3rem;
  }
  .modal__content p {
    font-size: 1.3rem;
  }
}

/** 品質へのこだわり
 * *****************************************************************************************************************/
/* ==========================================================================
   Quality Section (品質保証)
   ========================================================================== */
.qualityPage {
  padding-block: 19rem;
}

.qualityPage .quality__inner {
  padding-left: 3.5rem;
  margin-bottom: 2rem;
}

.qualityPage .quality__inner h2 {
  font-size: clamp(2rem, 3.59vw, 4.6rem);
  font-weight: 400;
  padding-block: 2rem 6rem;
}

.qualityPage .quality__inner p {
  padding-block-end: 6rem;
  line-height: 2.5;
}

.qualityPage .quality__inner picture {
  display: block;
}

.qualityPage .quality__img {
  padding-left: 2.5rem;
}

/* ==========================================================================
   Chashi Section (茶師のこだわり)
   ========================================================================== */
.chashi {
  background-color: #f5f2e9;
  padding-block: 15rem;
}

.chashi .chashi__inner {
  padding-right: 2.5rem;
}

.chashi .chashi__inner-img {
  margin-block-end: 2.3rem;
}

.chashi .chashi__inner-kikuoka {
  padding-inline: 3.9rem 2.34vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chashi .chashi__inner-kikuoka .img {
  width: 60%;
  padding-right: 3.125vw;
}
.chashi .chashi__inner-kikuoka-profile h3 {
  font-size: clamp(2rem, 2.34vw, 3rem);
  margin-bottom: 2rem;
}

.chashi .chashi__inner-kikuoka-profile p {
  font-size: clamp(1.3rem, 1.4vw, 1.8rem);
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0;
}

.chashi .chashi__content {
  padding-left: 1.953vw;
}

.chashi .chashi__content h2 {
  margin-block: 2rem 7rem;
  font-size: clamp(2.2rem, 3.59vw, 4.6rem);
  font-weight: 400;
  line-height: 180%;
}
.chashi .chashi__content h2 small {
  font-size: clamp(1.8rem, 2.43vw, 3rem);
  display: block;
  margin-block-end: 1.953vw;
}
.chashi .chashi__content p {
  font-size: 1.8rem;
  line-height: 200%;
}

/* ==========================================================================
   Process Section (品質検査工程)
   ========================================================================== */
.process {
  padding-block: 20rem 0rem;
  letter-spacing: 0;
}

.process h2.center {
  text-align: center;
  margin-bottom: 7.5rem;
}

.process h2 + h3 {
  width: 100%;
  max-width: 36rem;
  text-align: center;
  padding-block: 0.6rem;
  color: #ffffff;
  font-size: 3rem;
  background : rgba(137, 164, 108, 1);
  border-radius : 25px;
  margin-inline: auto;
  margin-bottom: 4rem;
}

.process p.center {
  font-size: 1.8rem;
  line-height: 2.6;
  margin-bottom: 4.5rem;
}

.process h4 {
  font-size: clamp(1.6rem, 2.3vw, 3rem);
  margin-bottom: 4rem;
  text-align: center;
  font-weight: 400;
}
.process__box {
  margin-bottom: 19rem;
}
  .process__box-smp {
    display: none;
  }
  @media (max-width: 690px) {
    .process__box-smp {
      display: block;
    }
    .process__box-pc {
      display: none;
    }
  }
.process .process__inner {
  width: 100%;
  max-width: 1020px;
  margin-inline: auto;
  margin-bottom: 10rem;
  display: flex;
  justify-content: space-between;
}

.process .process__inner-content {
  width: 48%;
  padding-inline: 1.5rem;
}

.process .process__inner-content h3 {
  font-weight: 400;
  margin-bottom: 4rem;
}

.process .process__inner-content p {
  line-height: 2.2;
  margin-bottom: 2rem;
}

.process .process__inner-image {
  width: 48%;
  padding-inline: 1.5rem;
}

/* 検査項目一覧・分析機器 */
.process .process__block {
  background-color: #f5f2e9;
  padding: 10rem 13rem;
}

.process .process__block h3 {
  width: 100%;
  text-align: center;
  padding-block: 0.6rem;
  color: #ffffff;
  font-size: 2.6rem;
  background : rgba(137, 164, 108, 1);
  border-radius : 25px;
  margin-inline: auto;
  margin-bottom: 4rem;
}

.process .process__block table {
  width: 100%;
  margin-bottom: 2rem;
}

.process .process__block tr {
  border-bottom: 1px dotted #cccccc;
}

.process .process__block th {
  font-weight: 400;
  font-size: 2.3rem;
  padding-left: 6rem;
  padding-block: 2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.process .process__block td {
  padding-inline: 3rem;
  padding-block: 2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.6;
}

.process .process__block small {
  font-size: 1.8rem;
  text-align: right;
  margin-bottom: 10rem;
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.process .process__block p {
  width: 92%;
  margin-inline: auto;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
  text-align: left;
}
/* ==========================================================================
   Authentication Section (認証規格)
   ========================================================================== */
.Authentication {
  padding-block-start: 20rem;
  margin-bottom: 10rem;
}

.Authentication__head h2.center {
  margin-bottom: 9rem;
}

.Authentication__head p {
  line-height: 2.6;
  margin-bottom: 9rem;
  text-align: center;
}

.Authentication .Authentication__wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10rem  ;
}

.Authentication .Authentication__wrap-inner {
  width: 50%;
  padding-right: 2rem;
}

.Authentication .Authentication__wrap-block {
  width: 50%;
  padding-left: 4.5rem;
}

.Authentication .Authentication__wrap-block h3 {
  font-size: 3rem;
  margin-bottom: 5rem;
}

.Authentication .Authentication__wrap-block p {
  font-size: 1.8rem;
  line-height: 2.6;
}

/** 直営店・取扱店
 * ************************************************************************************************/


/* ==========================================================================
   Shop Page Common (共通設定)
   ========================================================================== */
.shopPage__wrap {
  margin-bottom: 10rem;
}

.shopPage__wrap h2 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 10rem;
  text-align: center;
}
.shopPage__wrap .mb {
  margin-bottom: 2rem;
}
.shopPage__wrap .mb30 {
  margin-bottom: 3rem;
}
.shopPage__wrap h3 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
/* 店舗情報テーブル */
.shop-info {
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  border-top: 1px solid #999;
  letter-spacing: 0;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.shop-info tr {
  border-bottom: 1px solid #999;
}

.shop-info th {
  padding-block: 1.5rem;
  font-size: 1.6rem;
  padding-right: 4rem;
}

.shop-info td {
  font-size: 1.7rem;
  padding-block: 1.5rem;
}

/* アクセス・マップ */
.access {
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: flex;
  margin-bottom: 2.5rem;
  align-items:center
}

.access h4 {
  font-size: 1.6rem;
  border:1px solid #999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  margin-right: 1rem;
  white-space: nowrap;
  letter-spacing: 0;
  height: 4.7rem;
}

.access p {
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  position: relative;
  margin-block: 0.6rem;
  padding-left: 13px;
  line-height: 1.2;
}
.access p:before {
  content: "●";
  position: absolute;
  top: 6px;
  left: 0;
  font-size: 0.9rem;
}
.map {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9のアスペクト比 */
    height: 0;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* イートインメニュー */
.menu {
  margin-top: 3rem;
  background-color: #f5f2e9;
  padding: 3rem 5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.menu h4 {
  font-size: 2.3rem;
  position: relative;
  text-align: center;
  margin-bottom: 1.5rem;
}
.menu h4:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #999999;
  position: absolute;
  left: 0;
  top: 50%;
}
.menu h4 span {
  display: inline-block;
  background-color: #f5f2e9;
  padding-block: 2px 5px;
  position: relative;
  z-index: 10;
}

.menu__inner {
  margin-bottom: 1rem;
}

.menu__inner h5 {
  background : rgba(137, 164, 108, 1);
  color: #FFFFFF;
  padding: 0.5rem;
  margin-bottom: 1.5rem;
}

.menu__inner p {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu__inner p span.name {
  position: relative;
  z-index: 1;
  background-color: #f5f2e9;
  padding-right: 3px;
}
.menu__inner p span.price {
  position: relative;
  z-index: 1;
  background-color: #f5f2e9;
  padding-left: 3px;
}
.menu__inner p:after {
  content: "";
  width: 90%;
  height: 1px;
  background-color: #999999;
  position: absolute;
  top: 50%;
  left: 5px;
  z-index: 0;
}
.menu__inner small {
  display: block;
  font-size: 1.3rem;
  text-align: right;
}

/* ==========================================================================
   Department Stores (百貨店セクション)
   ========================================================================== */
.shopPage__wrap-department {
}
.shopPage__wrap-department .col-5 {
  margin-bottom: 6rem;
}
/* 左側の画像ブロックなど */
.shopPage__wrap-department-block {
  padding-right: 1.5rem;
}

/* 各店舗のカード/インナー */
.shopPage__wrap-department-inner {
  padding-left: 1.5rem;
}

/* ==========================================================================
   ブランド紹介（トップ）
   ========================================================================== */
.brandlineup {
  padding-block-start: 18rem;
}
.brandlineup h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-block: 2rem 8rem;
}
.brandlineup h2 span {
  margin-bottom: 4rem;
}
.brandlineup__inner {
  margin-bottom: 10rem;
  position: relative;

}
.brandimage {
  position: relative;
  z-index: 0;
}
.brand__wrap {
  position: relative;
  z-index: 10;
  background-color: #f5f2e9;
  padding: 3rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0;
  width: 100%;
  max-width: 64.1rem;
}
.brand__wrap h3 {
  display: flex;
  align-items: center;
  font-size: clamp(1.3rem, 1.796vw, 2.3rem);
  margin-bottom: 3rem;
}
.brand__wrap h3 img {
  display: block;
  border-right: 1px solid #231815;
  margin-right: 3rem;
  padding-right: 3rem;
}
.brand__wrap p {
  font-size: clamp(1.6rem, 1.6666667vw, 2.2rem);
  margin-bottom: 3rem;
}
.brand__wrap .moreBtn a {
  display: block;
  text-align: right;
  text-decoration: none;
}
.brand__wrap .moreBtn a:hover {
  opacity: 0.4;
}
 .brand__wrap {
  margin-top: -5.46%;
 }
.morihan .brand__wrap {
  margin-left: 7.03%;
}
.minton .brand__wrap {
  margin-left: 46.656%;
}
.coffee .brand__wrap {
  margin-left: 7.03%;
}
.royal .brand__wrap {
  margin-left: 46.656%;
}
.kfk .brand__wrap {
  margin-left: 7.03%;
}
.mjb .brand__wrap {
  margin-left: 46.656%;
}
.kauai .brand__wrap {
  margin-left: 7.03%;
}

.buttonArea {
  margin-block: 5rem 20rem;
  display: flex;
  justify-content: space-between;
}
.buttonArea a {
  display: block;
  width: 49%;
  border: 1px solid #231815;
  font-size: clamp(1.3rem, 2.343vw, 3rem);
  padding-block: 10.5424%;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  text-decoration: none;
}
.buttonArea a:hover {
  background-color: #f5f2e9;
}
.buttonArea a i {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
/*共通バナーナビ*/
.include .logo {
  padding-block-start: 6.25vw;
}
.include .logo ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4.6875vw;
  padding: 0;
}
.include .logo ul li {
  margin-bottom: 6.25vw;
  display: block;
}
@media (max-width: 1280px) {
  .include .logo ul li img {
    zoom: 0.9;
  }
}
@media (max-width: 1180px) {
  .include .logo ul li img {
    zoom: 0.8;
  }
  .brand__wrap {
    margin-top: -5.46%;
    margin-left: 5.46% !important;
   }
}
@media (max-width: 1080px) {
  .include .logo ul li img {
    zoom: 0.7;
  }
}
@media (max-width: 980px) {
  .include .logo ul li img {
    zoom: 0.6;
  }
}
@media (max-width: 880px) {
  .include .logo ul li img {
    zoom: 0.5;
  }
}
@media (max-width: 743px) {
  .include .logo ul li img {
    zoom: 0.4;
  }
  .brandlineup {
    padding-block-start: 5rem;
  }
  .brandlineup h2 {
    font-size: 1.6rem;
    margin-block: 1rem 4rem;
  }
  .brandlineup h2 img {
    zoom: 0.5;
  }
  .brandlineup h2 span {
    margin-bottom: 2rem;
  }
  .brandlineup__inner {
    margin-bottom: 5rem;
  }
  .brand__wrap {
    width: 96%;
    padding: 1.5rem;
  }
  .brand__wrap h3 {
    margin-bottom: 1rem;
  }
  .brand__wrap h3 img {
    zoom: 0.5;
    margin-right: 1.5rem;
    padding-right: 1.5rem;
  }
  .brand__wrap p {
    margin-bottom: 0.5rem;
  }
  .brand__wrap {
    margin-top: -2.46%;
    margin-left: 2.46% !important;
   }
   .brand__wrap .button a img {
    zoom: 0.7;
   }
   .buttonArea {
    margin-block: 3rem 5rem;
  }
  .buttonArea a i {
    right: 0.5rem;
  }
  .buttonArea a i img {
    width: 5px;
    height: auto;
  }
  .brand__wrap .moreBtn a img {
    zoom: 0.7;
  }
}
@media (max-width: 690px) {
  .include .logo ul li img {
    zoom: 0.3;
  }
}

/* ==========================================================================
   ブランドページ 共通
   ========================================================================== */
.brandLogo {
  padding-block: 15.632815% 10.1156%;
  text-align: center;
  margin-inline: auto;
}

.brandInfo {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.brandInfo__content h2 {
  font-weight: 400;
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.6rem, 2.3vw, 4.6rem);
  line-height: 1.8;
  margin-bottom: 4rem;
  width: 100%;
}

.brandInfo__content p {
  font-size: clamp(1.3rem, 0.9375vw, 1.6rem);
  line-height: 2.6;
}
section.brandInfo {
  display: flex;
  justify-content: space-between;
  max-width: 1280px;
  margin: auto;
}

.reverse{
  flex-direction: row-reverse;
}

.column {
  width: 38%;
}

/*右側へ要素を広げる（2カラム）*/
.column-outside-right{
    flex: 1;
    margin-right: calc(50% - 50vw);
    margin-left: 2%;
}

/*左側へ要素を広げる（2カラム）*/
.column-outside-left{
    flex: 1;
    margin-left: calc(50% - 50vw);
    margin-right: 2%;
}

section.left-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: auto;
}
section.left-layout .content {
  display: flex;
  margin-top: -11%;
}
section.left-layout .content p {
  width: 100%;
  max-width: 31rem;
  font-size: clamp(1.3rem, 1.6vw, 1.6rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
}
section.left-layout .content .txt {
  width: 100%;
  max-width: 32.6rem;
  margin-left: 5%;
}
section.left-layout .content .txt p {
  margin-bottom: 2rem;
}
section.left-layout .content .txt a {
  display: inline-block;
  margin-bottom: 4rem;
}
section.reverse {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1280px;
  margin: auto;
}
section.reverse .content {
  display: flex;
  justify-content: center;
  margin-top: 10%;
}
section.reverse .content p {
  width: 100%;
  max-width: 32.6rem;
  font-size: clamp(1.3rem, 1.6vw, 1.6rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.brandSection {
  margin-bottom: 7.8125%;
  letter-spacing: 0;
}
.brandSection .container {
    position: relative;
}
.ksnr {
  margin-top: -9.375vw;
}
.ksnr p {
  margin-top: 0.5vw;
  font-size: clamp(1.3rem, 1.6vw, 1.6rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.right-column .ksnr {

}
.brandSection .col-4 {
  width: 45%;
}
.brandSection .offset-6 {
  margin-left: 50.555555%;
}
.offset-1 {
  margin-left: 9.555555%;
}
.vertical {
  font-weight: 400;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  font-size: 2.8vw;
  line-height: 2;
  font-weight: 400;
  z-index: 90;
}
@media (min-width: 1920px) {
  .vertical {
    font-size: 5rem;
  }
}
.under-content {
  width: 93%;
  margin-inline: auto;
}
.under-content .txt {
  padding-top: 1.5rem;
  padding-inline: 4% 0;
}
.under-content .button {
  display: none;
  margin-block: 1.5rem 3rem;
}
.button a {
  position: relative;
  display: inline-block;
  background-color: #f5f2e9;
  border: 1px solid #231815;
  padding: 0.5rem 4rem 1rem;
  border-radius: 10rem;
  font-size: clamp(1.2rem, 1.5625vw, 3rem);
  text-decoration: none;
}
.button a:hover {
  background-color: #e1d8bd;
}
.button a:after {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 1px solid #231815;
  border-bottom: 1px solid #231815;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: rotate(-135deg)  translateY(50%);
}
.button.small a {
  padding: 0.5rem 3rem 0.7rem;
   font-size: clamp(1rem, 1.041667vw, 2rem);
}
.button.small a:after {
  width: 8px;
  height: 8px;
}
.txt p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(1.3rem, 1.6vw, 1.6rem);
}
.kindPage .txt p {
  font-family: "Hina Mincho", serif;
}
@media (max-width: 1280px) {
  .brandInfo__content p {
    line-height: 2;
  }
  .brandInfo__content {
    padding-left: 0;
    width: 96%;
    margin-inline: auto;
  }
}
@media (max-width: 1024px) {
  section.brandInfo {
    flex-direction: column-reverse;
  }
  .column {
    width: 96%;
  }
  .brandInfo__content {
    margin-bottom: 3rem;
  }
  .column-outside-left {
    flex: 120%;
  }
  section.left-layout .content {
    margin-top: 0;
  }
  section.left-layout .content {
    align-items: flex-start;
  }
  .ksnr {
    margin-top: 0;
  }
  .ksnr p br {
    display: none;
  }
  .column-outside-right {
    flex: 120%;
  }
}
@media (max-width: 743px) {
  .brandInfo__content h2 {
    font-size: 4.8vw;
  }
  .brandInfo__content {
    margin-left: auto;
    margin-right: auto;
  }
  .column {
    width: 96%;
    margin-inline: auto;
  }
  section.left-layout {
    display: block;
  }
  section.left-layout .content .txt {
    max-width: 90%;
    margin-left: 5%;
  }
  section.left-layout .content p {
    max-width: 100%;
    margin-block: 2rem 4rem;
  }
  .brandSection .col-4 {
    width: 70%;
    margin-inline: auto;
    padding-inline: 0;
  }
  .brandSection .offset-6 {
    margin-left: auto;
  }
  .under-content {
    width: 100%;
    margin-inline: auto;
  }
  .button {
    text-align: center;
  }
  .button a {
    font-size: 1.2rem;
    margin-inline: auto;
    padding: 0.4rem 4rem 0.6rem;
  }
  .button a:after {
    width: 6px;
    height: 6px;
  }
  section.right-column .content {
    margin-top: 0;
  }
  section.right-column .content p {
    margin-bottom: 2rem;
  }
  section.right-column {
  display: block;
  }
  section.right-column .content p {
  max-width: 80%;
  margin-block: 2rem 4rem;
  }

}
/* ==========================================================================
   ブランド紹介（森半）
   ========================================================================== */
.morihan .brandLogo {
  width: 32.578125%;
}
.morihanMark {
  margin-block: 6.64% 12.5%;
  border-top: 1px solid #231815;
  border-bottom: 1px solid #231815;
  width: 100%;
}
.morihanMark__inner {
  padding-block: 6.64%;
  width: 100%;
  max-width: 61.5rem;
  display: flex;
  align-items: center;
  margin-inline: auto;
}
.morihanMark__inner picture {
  display: block;
  margin-right: 2rem;
}
.morihanMark__inner-box h3 {
  font-size: clamp(1.6rem, 1.5625vw, 2rem);
  margin-bottom: 1rem;
  font-weight: 400;
}
.morihan .vertical {
  position: absolute;
  top: -40%;
  left: 15%;
}

@media (max-width: 743px) {
  .morihan .vertical {
    position: static;
    top: auto;
    left: auto;
    font-size: 4.8vw;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-inline: 2rem;
  }
  .morihanMark__inner picture {
    margin-right: 1rem;
  }
  .morihanMark__inner picture img {
     width: 60px;
    height: auto;
  }
  .morihanMark__inner-box p {
    letter-spacing: 0;
  }
}

/* ==========================================================================
   ブランド紹介（MINTON）
   ========================================================================== */
.minton .brandLogo {
  width: 20%;
}
.minton .brandInfo {
  margin-bottom: 15.104vw;
}
.onlineshop_info {
  text-align: center;
  margin-bottom: 4rem;
}
.onlineshop_info p {
  font-size: clamp(1.6rem, calc(1.6rem + 0.5vw), 3rem);
  margin-bottom: 3rem;
}
.minton .vertical {
  position: absolute;
  top: -32%;
  left: 12%;
  z-index: 10;
}
.minton .under-content {
  width: 100%;
}

@media (max-width: 743px) {
  .minton .vertical {
    position: static;
    top: auto;
    left: auto;
    font-size: 4.8vw;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-inline: 2rem;
  }
}
/* ==========================================================================
   ブランド紹介（行列のできる珈琲屋さん）
   ========================================================================== */
.coffee .brandLogo {
  width: 40.15625%;
}
.coffee .brandInfo {
  margin-bottom: 14.0625vw;
}
.brandProduct {
  margin-bottom: 10.41666666vw;
}
.brandProduct .row {
  justify-content: center;
}
.brandProduct__inner {
  text-align: center;
  margin-bottom: 5rem;
}
.brandProduct__inner h3 {
  font-size: clamp(1.6rem, calc(1.2rem + 1vw), 3rem);
  font-weight: 400;
  margin-bottom: 5rem;
  line-height: 2;
}
.brandProduct__inner p {
  margin-top: 3rem;
  text-align: left;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(1.3rem, 1.6rem, 1.8rem);
  letter-spacing: 0;
}

@media (max-width: 1024px) {
  .brandProduct__inner img {
    zoom: 0.7;
  }
  .brandProduct__inner h3 {
    margin-bottom: 2rem;
    line-height: 1.5;
  }
  .coffee .brandInfo__content p br {
    display: none;
  }
}

/* ==========================================================================
   ブランド紹介（MJB）
   ========================================================================== */
.mjb .brandLogo {
  width: 22.97875%;
}
.mjb .column {
  width: 40%;
}
.mjb .brandInfo {
  margin-bottom: 8.854167vw;
}
.mjb .brandInfo__content p {
  letter-spacing: 0;
}
.mjb .brandProduct__inner h3 {
  height: 9rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.plate {
  text-align: center;
  padding-block-end: 5.208vw;
  padding-inline: 15px;
}
.plate img {
  width: 100%;
  height: auto;
  max-width: 43rem;
}
@media (max-width: 1024px) {
  .mjb .column {
    width: 96%;
  }
  .mjb .brandInfo__content p br {
    display: none;
  }
}
@media (max-width: 768px) {
  .plate img {
    width: 100%;
    height: auto;
    max-width: 70%;
  }
}
/* ==========================================================================
   ブランド紹介（KAUAI COFFEE）
   ========================================================================== */
.kauai .brandLogo {
  width: 26.71875%;
}
.kauai .brandInfo {
  margin-bottom: 14.0625vw;
}
.kauai .brandProduct .row {
  gap: 6.25vw;
}
/* ==========================================================================
   ブランド紹介（ROYAL）
   ========================================================================== */
.royal .brandLogo {
  width: 39.0625%;
}
.royal .brandInfo {
  margin-bottom: 14.0625vw;
}
.royal .brandSection {
  margin-bottom: 12.5vw;
}
/* ==========================================================================
   ブランド紹介（CAFE KFK）
   ========================================================================== */
.kfk .brandLogo {
  width: 15.625%;
}
.kfk .brandInfo {
  margin-bottom: 14.0625vw;
}
/* ==========================================================================
   拠点・工場
   ========================================================================== */
.base {
  margin-top: 5vw;
  padding-block: 5vw 5vw;
  
}
.base h2 {
  text-align: center;
  margin-bottom: 4.1666667vw;
  font-size: 1.8rem;
}
.base h2 span {
  display: block;
  margin-bottom: 3rem;
}
.pageNav.baseNav ul li {
  width: 9.5rem;
}
.base .container {
  max-width: 1030px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.base p.center {
  margin-bottom: 4rem;
}
.base__wrap {
  padding-block: 4rem;
  border-top: 1px solid #231815;
  border-bottom: 1px solid #231815;
  display: flex;
  justify-content: space-between;
  margin-bottom: -1px;
  align-items: center;
  flex-wrap: wrap;
}
.base__wrap-gmap {
  width: 100%;
  max-width: 39.7rem;
}
.base__wrap-gmap--inner {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
  /* 16:9のアスペクト比 */
  height: 0;
}
.base__wrap-gmap--inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.base__wrap-inner {}
.base__wrap-inner h3 {
  font-size: 2.3rem;
  margin-bottom: 2rem;
  font-weight: 400;
}
.base__wrap-inner .adrs {
  margin-bottom: 2rem;
}
.base__wrap-inner .adrs p {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}
.base__wrap-inner .access div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.base__wrap-inner .button {
  margin-bottom: 2rem;
}
.factory {
  padding-top: 5vw;
  padding-bottom: 10.416667vw;
  
}
.factory h2 {
  text-align: center;
  margin-bottom: 4.1666667vw;
  font-size: 1.8rem;
}
.factory h2 span {
  display: block;
  margin-bottom: 3rem;
}
.factory .container {
  max-width: 1030px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.factoryImage {
  width: 100%;
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
}
.factoryImage .img {
  width: 49%;
}

@media (max-width: 743px) {
  .base h2 {
    font-size: 1.3rem;
  }
  .base h2 span {
    margin-bottom: 0;
  }
  .base h2 span img {
    zoom: 0.5;
  }
  .base p.center {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .factory h2 {
    font-size: 1.3rem;
  }
  .factory h2 span {
    margin-bottom: 0;
  }
  .factory h2 span img {
    zoom: 0.5;
  }
  .base__wrap-inner h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .base__wrap-inner .adrs {
    margin-bottom: 1rem;
  }
  .base__wrap-inner .adrs p {
    font-size: 1.3rem;
    margin-bottom: 0;
  }
}


/**　プライバシーポシリー(PC)
 * ************************************************************************************/
.otherPage {
  padding-block-start: 13.541667vw;
}
.otherPage h1 {
  margin-block-end: 3.9583333vw;
  font-size: 1.8rem;
}
.otherPage h1 span {
  display: block;
}
.otherPage__inner {
  background-color: #f5f2e9;
}
.privacy__wrap {
  padding-block: 3.9583333vw 10.4166667vw;
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0;
}
.privacy__wrap h2 {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.4;
  margin-top: 1.5625vw;
  padding-left: 16px;
  position: relative;
}
.privacy__wrap h2:before {
  content: "";
  width: 13px;
  height: 2px;
  background-color: #231815;
  position: absolute;
  top: 12px;
  left: 0;
}
.privacy__wrap p {
  
}
.privacy__wrap ul {
  padding-left: 2.5rem;
}
.privacy__wrap ul li {
  margin-bottom: 4px;
  line-height: 1.4;
}
.privacy__wrap ol {
  margin-block-start: 8px;
  padding-left: 2.5rem;
}
.privacy__wrap ol li {
  margin-bottom: 4px;
  line-height: 1.4;
}
.newsNav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 1.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
}
.newsNav ul li {
  padding-bottom: 0.5rem;
  padding-inline: 0.5rem;
}
.newsNav ul li.active {
  border-bottom: 1px solid #231815;
}

.newsNav ul li a {
  text-decoration: none;
}
/**　お知らせ(PC)
 * ************************************************************************************/
.newsPage {
  letter-spacing: 0;
  padding-block: 4.6875vw 8.854167vw;
}
.newsPage ul li {
  list-style: none;
  text-align: left;
}
.sidebar {
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.sidebar ul li {
  margin-bottom: 2rem;
}
.sidebar ul li a {
  font-size: 1.8rem;
  line-height: 1.4;
  padding-left: 14px;
  position: relative;
  text-decoration: none;
}
.sidebar ul li a:before {
  content: "";
  width: 10px;
  height: 2px;
  background-color: #231815;
  position: absolute;
  top: 12px;
  left: 0;
}
.sidebar ul li a:hover {
  color: #89a46c;
}
.sidebar ul li.active a {
  color: #89a46c;
  text-decoration: none;
}
.current-cat {
  color: #89a46c;
}
.newsList {
  width: 100%;
}
.newsList__wrap h2 {
    font-size: 2.2rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    margin-bottom: 2rem;
  }
.newsList__wrap ul {
  border-top: 1px solid #231815;
  padding: 0;
  margin-bottom: 4rem;
}
.newsList__wrap li {
  border-bottom: 1px solid #666666;
}

.newsList__wrap li a {
  padding-block: 1.5rem 2rem;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-decoration: none;
}
.newsList__wrap li a:after {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  border-bottom: 1px solid #231815;
  border-right: 1px solid #231815;
  transform: rotate(-45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 4rem;
}

.newsList__wrap li a .date {
  margin-right: 1rem;
  letter-spacing: 0.1rem;
  font-size: 2rem;
}
.newsList__wrap li a .category {
  font-size: 1.3rem;
  text-align: center;
  padding: 0.5rem 1rem;
  border: 1px solid #231815;
  border-radius: 10rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.newsList__wrap li a .title {
  margin-top: 1rem;
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.4;
}


/******************************お知らせのページナビ*******************/
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 1.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
}
.wp-pagenavi span {
  padding-bottom: 0.5rem;
  padding-inline: 0.5rem;
}
.wp-pagenavi .current {
  border-bottom: 1px solid #231815;
}

.wp-pagenavi a {
  text-decoration: none;
  padding-bottom: 0.5rem;
  padding-inline: 0.5rem;
}
.previouspostslink {
  font-size: 0;
  background-image: url(../images/news/prev.svg);
  background-repeat: no-repeat;
  background-position: top left;
  width: 26px;
  height: 26px;
}
.nextpostslink {
  font-size: 0;
  background-image: url(../images/news/next.svg);
  background-repeat: no-repeat;
  background-position: top left;
  width: 26px;
  height: 26px;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 1.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
}
.nav-links span {
  padding-bottom: 0.5rem;
  padding-inline: 0.5rem;
}
.nav-links .current {
  border-bottom: 1px solid #231815;
}

.nav-links a {
  text-decoration: none;
  padding-bottom: 0.5rem;
  padding-inline: 0.5rem;
}
.nav-links .prev {
  font-size: 0;
  background-image: url(../images/news/prev.svg);
  background-repeat: no-repeat;
  background-position: top left;
  width: 26px;
  height: 26px;
}
.nav-links .next {
  font-size: 0;
  background-image: url(../images/news/next.svg);
  background-repeat: no-repeat;
  background-position: top left;
  width: 26px;
  height: 26px;
}

@media (min-width: 768px) {
  .sidebar {
    order:1;
    width: 25%;
  }
  .newsList {
    order: 2;
    width: 75%;
  }
}
.post {}
.post h2 {
  display: flex;
  flex-wrap: wrap;
  padding-inline: 5.46875%;
  border-bottom: 1px solid #231815;
  padding-block-end: 2.5rem;
  margin-bottom: 6rem;
}
.post h2 .date {
  margin-right: 1rem;
  letter-spacing: 0.1rem;
  font-size: 2rem;
}
.post h2 .category {
  font-size: 1.3rem;
  text-align: center;
  padding: 0.5rem 1rem;
  border: 1px solid #231815;
  border-radius: 10rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post h2 .title {
  margin-top: 1rem;
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.4;
}
.post .content {
  border-bottom: 1px solid #231815;
  padding-inline: 5.46875%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-block-end: 7.8125%;
}
.post .content p {
  line-height: 1.8;
  padding-bottom: 3rem;
}
.post .content p.center {
  text-align: center;
}
.newsPage .media {
  padding-inline: 5.46875%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-block: 3.125%;
  border-bottom: 1px solid #231815;
  margin-block-end:  6.25%;
}
.newsPage .media p {
  margin-bottom: 1rem;
}
.newsPage .media p .ttl {
  width: 13rem;
  display: inline-block;
}
.post-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post-nav__home {
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #231815;
}
.post-nav__list a {
  text-decoration: none;
}
.post-nav__list a:hover {
  opacity: 0.5;
}
.post-nav__list i {
  margin-inline: 0.6rem;
}

/** よくあるご質問
 * **********************************************************************************************************************/
.faq__wrap {
  padding-block: 3.052% 7.8125%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.1rem;
}
 .tabs {
  margin: 0 auto;
  overflow: hidden;
}

.tabs__nav {
  display: flex;
  padding-block-end: 4rem;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.tabs__btn {
  width: 100%;
  max-width: 12.8125%;
  appearance: none;
  border: 1px solid #231815;
  background-color: transparent;
  padding: 30px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: clamp(13px, 0.937vw, 18px);
  line-height: 1;
  color: #231815;
  transition: 0.6s;
}

.tabs__btn:hover { 
  background: #231815;
  color: #fff;
  border-color: #231815;
  transition: 0.6s;
}
.tabs__btn.is-active {
  background: #231815;
  color: #fff;
  border-color: #231815;
  position: relative;
  transition: 0.6s;
}
.tabs__btn.is-active:after {
  content: "";
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: calc(tan(60deg) * 30px) solid #231815;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.faq__item {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 3rem;
  margin-bottom: 2rem;
}
.faq__item dl {
  margin: 0;
}
.faq__item span {
  padding-top: 10px;
}
.faq__item dt {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 48px 18px 0; /* 右端に＋/−の余白 */
  cursor: pointer;
  user-select: none;
}

.faq__item dt span {
  line-height: 1.5;
}

.faq__icon {
  flex: 0 0 auto;
  display: inline-flex;
}

.faq__item dd {
  margin: 0;
  display: none; /* JSで開閉 */
  padding: 0 0 18px 0;
}

.faq__answerInner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.5;
}

/* 右端の＋/−（背景画像） */
.faq__item dt::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../images/faq/open.svg");
}

/* 開いてる状態は−に差し替え */
.faq__item.is-open dt::after {
  background-image: url("../images/faq/close.svg");
}

.faqOther {
  margin-top: 6.666667vw;
  text-align: center;
}
.faqOther h3 {
  margin-bottom: 1rem;
}
.faqOther p {
  margin-bottom: 3rem;
}
.faqOther__button {
  display: flex;
  justify-content: space-between;
  gap: 4%; /* 48% + 48% + 4% = 100% */
}

.faqOther__button a {
  width: 48%;
  height: 150px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  text-decoration: none;
  line-height: 1.6;

  background: #ffffff;
  transition: background .2s ease, transform .15s ease;
  position: relative;
  border: 1px solid #231815;
}

.faqOther__button a:hover {
  background: #231815;
  color: #ffffff;
}
.faqOther__button a:after {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 1px solid #231815;
  border-bottom: 1px solid #231815;
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: rotate(-135deg)  translateY(50%);
}
.faqOther__button a:hover:after {
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}


/*******************************************************************
 * お問い合わせ
********************************************************************/
  main.contact {
    padding-block-end: 0;
  }
.contact__wrap {
  padding-block: 12.760417vw 10.416667vw;
  
}
.contact__wrap h1 {
  margin-block-end: 3rem;
  font-size: 1.8rem;
  text-align: center;
}
.contact__wrap h1 span {
  display: block;
}
.contact__wrap p.info {
  text-align: center;
  margin-bottom: 6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.1rem;
}
.en .contact__wrap p.info {
  margin-bottom: 2.864583vw;
}
.contact__wrap-privacy {
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.1rem;
}
.contact__wrap-privacy h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
  text-align: left;
}
.contact__wrap-privacy-inner {
  margin-bottom: 4rem;
  background-color: #ffffff;
  padding: 2rem;
  font-size: 1.6rem;
  text-align: left;
  height: 15.625vw;
  overflow-y: scroll;
}
/* フォーム */
.form{
  margin: 0 auto;
  padding: 24px 22px 40px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.1rem;
}

.form dl{
  margin: 0;
}

.form dt {
  margin: 26px 0 10px;
  font-size: 18px;
  font-weight: 400;
  color: #2c2c2c;
  letter-spacing: .02em;
  display:flex;
  align-items:center;
  gap: 10px;
}
.form dt div {
  display:flex;
  align-items:center;
  gap: 10px;
}
.form dt span {
  display:inline-block;
  font-size: 12px;
  line-height: 1;
  padding: 3px 8px;
  border: 1px solid #d85b5b;
  color: #d85b5b;
  border-radius: 2px;
  background: transparent;
}

.form dd{
  margin: 0;
  text-align: left;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form select,
.form textarea{
  width: 100%;
  background: #fff;
  border: 1px solid #8e8e8e;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 16px;
  color:#222;
  font-family: inherit;
  outline: none;
}


.form input::placeholder,
.form textarea::placeholder{
  color:#b9b9b9;
}

.form input:focus,
.form select:focus,
.form textarea:focus{
  border-color:#666;
}

.form select {
  max-width: 260px;
}
.form textarea {
  margin-top: 14px;
  min-height: 280px;
  resize: vertical;
}


.form dl{
  
}

.form dt.flex {
  display: flex;
  justify-content: space-between;
}
.form dd{
  
}
.harf_wrap {
  display: flex;
  gap: 2rem;
   .is-half {
   width: 15%;
  }
}
input[type="submit"],
input[type="button"],
.button{
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.1rem;
  margin-top: 34px;
  display:flex;
  justify-content:center;
}
input[type="submit"],
input[type="button"],
.button button {
  width: min(30rem, 100%);
  height: 60px;
  border: none;
  border-radius: 8px;
  background:#8ea46c;
  color:#fff;
  font-size: 18px;
  font-weight: 700;
  cursor:pointer;
}
input[type="submit"],
input[type="button"],
.button button {
  position: relative;
}
.button button:after {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: rotate(-135deg)  translateY(50%);
}
.button button:hover:after {
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  color: #ffffff;
}
.button button:hover {
  filter: brightness(0.95);
}
/* 必須項目が空の時のボタン（グレー） */
.wpcf7 .wpcf7-submit:disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed; /* クリック不可のカーソル */
}

input[type="submit"],
input[type="button"] {
    padding-inline: 3rem;
}
.submit-wrap {
  position: relative;
  display: inline-block;
  padding-inline: 1.5rem;
}

.submit-wrap::after {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: rotate(-135deg)  translateY(50%);
}

/* ===== SP微調整 ===== */
@media (max-width: 640px){
  .button button{
    height: 66px;
    font-size: 13px;
  }
}

.checkbox_group {
  padding-block: 2.5rem;
  border-bottom: 1px solid #666666;
  border-top: 1px solid #666666
}


.confirm .form dd {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 0.6rem;
}

.page {
  margin-top: 7.2916666667vw;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.page h1,
.page h2,
.page h3,
.page h4,
.page h5,
.page h6,
.page table,
.page li,
.page p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.66666667;
}
.page h1,
.page h2,
.page h3,
.page h4,
.page h5,
.page h6　{
  margin-bottom: 3.125vw;
  font-weight: 400;
}
.page p {
   margin-bottom: 2vw;
}
.page a.button {
  position: relative;
  text-decoration: none;
  padding-block: 1rem;
  line-height: 1;
  width: 100%;
  max-width: 24rem;
  border-radius: 10rem;
  border: 1px solid #231815;
  margin-inline: auto;
}
.page a.button:after {
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #231815;
  border-right: 1px solid #231815;
  transform: rotate(-45deg);
  position: absolute;
  top: 15px;
  right: 10px;

}
/*************************************************************************************************
 * CSR・SDGs
 ************************************************************************************************/
.csr .col-10 {
  max-width: 1150px;
  margin-inline: auto;
}
.csr__chatch {
  text-align: center;
  margin-bottom: 5.20833333vw;
}
.csr__chatch h2 {
  font-size: clamp(1.8rem, 2.39553vw, 4.6rem);
  margin-bottom: 4.94795vw;
  font-weight: 400;
  letter-spacing: 0.7vw;
}
.csr__chatch p {
  font-size: 1.7rem;
  line-height: 2.4;
  letter-spacing: 0;
}
.csr__box {
  margin-bottom: 5.20833333vw
}
.csr__box:last-child {
  margin-bottom: 0;
}
.csr__box h3 {
  font-size: clamp(1.6rem, 1.5625vw, 3rem);
  font-weight: 400;
  padding-block: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #231815;
  letter-spacing: 0.35vw;
}
.csr__box p {
  font-size: 1.7rem;
  line-height: 2.4;
  letter-spacing: 0;
}
.csr__box p a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
}
.csr__box p a i {
  margin-left: 1rem;
  display: inline-block;
}
.csr__box .flex {
  justify-content: flex-start;
}
.csr__box .flex img {
  margin-right: 3rem;
}
.pageTitle-sepa.second {
  padding-top: 20rem;
}
.sdgs__box {
  padding-block: 7.8125vw;
}
.sdgs__box:nth-child(even) {
  background-color: #f5f2e9;
}
.sdgs__box h3 {
  text-align: center;
  font-size: clamp(1.8rem, 2.39553vw, 4.6rem);
  margin-bottom: 4.94795vw;
  font-weight: 400;
  letter-spacing: 0.7vw;
}
.sdgs__box-mark {
  text-align: center;
  margin-bottom: 5.208333337vw;
}
.smp-mark {
  display: none;
}
.sdgs__box-wrap {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}
.sdgs__box-wrap-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sdgs__box-wrap-row.one {
  justify-content: center;
}
.sdgs__box-wrap-inner {
  width: 48.5%;
  margin-bottom: 4rem;
}
.sdgs__box-wrap-inner:last-child {
  margin-bottom: 0;
}
.sdgs__box-wrap-inner picture {
  display: block;
  margin-bottom: 3rem;
}
.sdgs__box-wrap-inner h4 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  line-height: 1.53;
  font-weight: 400;
  letter-spacing: 0.4rem;
}
.sdgs__box-wrap-inner h4 small {
  font-size: 80%;
  letter-spacing: 0.15vw;
}
.sdgs__box-wrap-inner p {
  font-size: 1.7rem;
  line-height: 2.4;
  letter-spacing: 0;
}
.sdgs__box-wrap2 {}
.sdgs__box-wrap2 .col-3 {
  max-width: 34rem;
}
.sdgs__box-wrap2 .sdgs__box-wrap-inner h4 {
  letter-spacing: 0rem;
}
.sdgs__box-wrap2 p {}
@media (max-width: 1120px) {
  .pc-mark {
    display: none;
  }
  .smp-mark {
    display: block;
  }
  .sdgs__box-mark img {
    zoom: 0.7;
    margin-inline: auto;
  }
}
@media (max-width: 743px) {

  .csr__chatch p {
    font-size: 1.3rem;
    line-height: 2;
  }
  .csr__box h3 {
    padding-block: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.35vw;
  }
  .csr__box p {
    font-size: 1.3rem;
    line-height: 2;
    letter-spacing: 0.1rem;
  }

  .csr__box p a i {
    margin-left: 0.6rem;
  }
  .csr__box p a i img {
    zoom: 0.5;
  }
  .csr__box .flex {
    display: flex;
    flex-wrap: nowrap;
  }
  .csr__box .flex img {
    zoom: 0.5;
    margin-right: 1.5rem;
  }
  .sdgs__box h3 {
    margin-bottom: 3.5rem;
  }
  .sdgs__box-mark {
    margin-bottom: 4rem;
  }
  .pageTitle-sepa.second {
    padding-top: 5rem;
  }
  .sdgs__box-wrap-inner {
    width: 100%;
  }
  .sdgs__box-wrap2 .col-3 {
    max-width: 48%;
    padding-inline: 0px;
  }
  .sdgs__box-wrap-inner picture {
    margin-bottom: 2rem;
  }
  .sdgs__box-wrap-inner h4 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    line-height: 2;
    letter-spacing: 0.2rem;
  }
  .sdgs__box-wrap-inner h4 small {
    font-size: 70%;
    line-height: 1.4;
    display: block;
  }
  .sdgs__box-wrap2 .sdgs__box-wrap-inner h4 {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 0;
    height: 55px;
  }
  .sdgs__box-wrap-inner p {
    font-size: 1.3rem;
    line-height: 2;
    letter-spacing: 0.1rem;
  }
}
@media (max-width: 490px) {
  .sdgs__box-mark img {
    zoom: 0.5;
  }
}


/**************************************************************
 * 南山城
 * *****************************************************************/
main.minamiyamashiro {
  letter-spacing: 0;
}
 .bg-minamiyamashiro {
   background-image: url(../images/minamiyamashiro/bg.webp);
  background-size: cover;
  background-position: fixed;
  background-position: center center;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%); 
  z-index: -1;
 }
.minamiyamashiro__wrap {
  padding-top: 50vh;
  color: #ffffff;
}
.minamiyamashiro__wrap-inner {
  width: 100%;
  max-width: 100rem;
  margin-inline: auto;
  margin-bottom: 7.82125vw;
  padding-inline: 2rem;
}
.minamiyamashiro__wrap-inner-movie {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 3.5rem;
}
.minamiyamashiro__wrap-inner-movie iframe {
  width: 100%;
  height: 100%;
}
.minamiyamashiro__wrap-inner h1 {
  font-size: clamp(2.6rem, calc(3.125vw + 1vw), 4rem);
  margin-bottom: 4rem;
  font-weight: 400;
  letter-spacing: 0.8rem;
}
.minamiyamashiro__wrap-inner p {
  font-size: clamp(1.3rem, calc(1.5625vw + 1vw), 2rem);
  line-height: 2;
}
.kodawari {
  width: 100%;
  max-width: 152rem;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 12.5vw;
  padding-inline: 2rem;
}
.kodawari__img {
  width: 100%;
  max-width: 68.2rem;
}
.kodawari__content {
  width: 100%;
  max-width: 71rem;
}
.kodawari__content-inner {
  width: 100%;
  max-width: 54rem;
  padding-top:9.11458vw;
}
.kodawari__content-inner h2 {
  font-size: clamp(2.6rem, calc(3.125vw + 1vw), 4rem);
  letter-spacing: 0.8rem;
  margin-bottom: 3rem;
  font-weight: 400;
}
.kodawari__content-inner h3 {
  font-size: clamp(1.6rem, calc(2.1875vw + 1vw), 2.8rem);
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
  position: relative;
  padding-left: 3rem;
  display: inline-block;
}
.kodawari__content-inner h3:before {
  content: "";
  width: 2.7rem;
  height: 0.1rem;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 0;
}
.kodawari__content-inner p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 2rem;
}
.wide-img {
  margin-bottom: 8.177vw;
}
.minamiyamashiroInfo {
  color: #ffffff;
  margin-bottom: 9.7395vw;
}
.minamiyamashiroInfo .base__wrap {
  border-bottom: 1px solid #ffffff;
}
.yuuki {
  width: 100%;
  background-color: #ffffff;
}
.yuuki .yuuki__title {
  width: 100%;
  background-color: #89a46c;
  text-align: center;
  padding-block: 5.2083333333vw;
  color: #ffffff;
}
.yuuki__title h2 {
  font-size: clamp(2.4rem, calc(3.125vw + 1vw), 4rem);
  font-weight: 400;
  letter-spacing: 0.5rem;
}
.yuuki__title h2 small {
  font-size: clamp(1.8rem, calc(2.1875vw + 1vw), 2.8rem);
  display: block;
  font-weight: 400;
  margin-block: 3rem 4rem;
  letter-spacing: 0.5rem;
}
.yuuki__title p {
  letter-spacing: 0.5rem;
  line-height: 2
}
.yuuki__img {
  display: flex;
  margin-bottom: 4.6875vw;
}
.yuuki__img-box {
  width: 50%;
}
.yuuki__product {}
.yuuki__product01 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: -5.208333333vw;
  position: relative;
  z-index: 10;
}

.yuuki__product01 .yuuki__product-img {
  width: 50%;
  text-align: center;
}
.yuuki__product01 .yuuki__product-img img {
  width: 82.8125%;
}
.yuuki__product01 .yuuki__product-box {
  width: 50%;
}
.yuuki__product-box p {
  line-height: 2;
  margin-bottom: 4rem;
}
.yuuki__product-content {
  margin-bottom: 7.2916666666667vw;
}
.yuuki__product-content-inner {
  position: relative;
}
.yuuki__product-content-inner h3 {
  font-size: clamp(2rem, 2.34375vw, 3rem);
  color: #ffffff;
  margin-bottom: 3rem;
  font-weight: 400;
  letter-spacing: 0.3rem;
}
.yuuki__product-content-inner p {
  color: #ffffff;
  line-height: 2;
  letter-spacing: 0.2rem;
}
.yuuki__product-content-inner .inBox {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}
.yuuki__product-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 10.4166666667vw;
}
.yuuki__product-wrap-inner {
  width: 32.8125%;
  text-align: center;
}
.yuuki__product-wrap-inner p {
  width: 100%;
  line-height: 2;
  margin-bottom: 4rem;
  text-align: left;
}
.yuuki__product-wrap-inner .add {
  width: 100%;
  max-width: 44rem;
  text-align: left;
}
@media (max-width: 1560px) {
  .kodawari__img {
    max-width: 50%;
  }
  .kodawari__content {
    max-width: 50%;
    padding-left: 3rem;
  }
}
@media (max-width: 1024px) {
  .yuuki__product01 {

    margin-bottom: -5.208333333vw;

  }

  .add img {
    zoom: 0.8;
  }
  .yuuki__title p {
    padding-inline: 2.5rem;
  }
  .yuuki__title p {
    font-size: 1.5rem;
  }
  .kodawari__img {
    max-width: 100%;
  }
  .kodawari__content {
    max-width: 100%;
    padding-left: 0;
  }
  .kodawari__content-inner {
    max-width: 100%;
    padding-left: 0;
  }
}
@media (max-width: 744px) {
  .kodawari__content-inner h2 {
    font-size: 3rem;
  }
  .kodawari__content-inner h3 {
    font-size: 1.8rem;
  }
  .yuuki .yuuki__title {
    padding-block: 5.2083333333vw;
  }
  .yuuki__title h2 small {
    margin-block: 1.5rem 2rem;
  }

  .yuuki__img {
    margin-bottom: 5rem;
  }
  .yuuki__product01 {
    display: block;
    margin-bottom: 5rem;
  }
  .yuuki__product01 .yuuki__product-img {
    width: 100%;
    margin-bottom: 2rem;
  }
  .yuuki__product01 .yuuki__product-img img {
    width: auto;
    height: auto;
    zoom: 0.5;
  }

  .yuuki__product01 .yuuki__product-box {
    width: 100%;
  }
  .yuuki__product-box p {
    margin-bottom: 2rem;
    text-align: center;
  }
  .add {
    text-align: center;
  }
  .add img {
    zoom: 0.65;
  }
  .yuuki__product-wrap-inner {
   margin-bottom: 4rem;
  }

  .yuuki__product-wrap-inner p {
    text-align: center;
    margin-bottom: 2rem;
  }
  .yuuki__product-wrap-inner .add {
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
  .yuuki__title p {
    font-size: 1.3rem;
  }
}
@media (max-width: 640px) {
    .yuuki__product-wrap {
      display: block;
    }
    .yuuki__product-wrap-inner {
      width: 100%;
    }
    .yuuki__product-wrap-inner img {
      width: auto;
      height: auto;
      zoom: 0.5;
    }
    .yuuki__product-content-inner h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  .yuuki__product-content-inner p {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.1rem;
  }
  .yuuki__product-content-inner .inBox {
      left: 5%;
    }
}
@media (max-width: 392px) {
    .yuuki__product-content-inner .inBox {
      padding-right: 5%;
    }
}
#MediaQueries-----------------------------------------------------------------------------------------------------------------{}
@media (max-width:1280px) {
    header#globalHeader .container {
    padding: 1.8rem 3.9%;
  }
  .map .gmap {
    width: 50vw;
    padding-top: 40vw;
  }
  .map .address {
    width: 50vw;
  }
  .overview__wrap h2 {
    gap: 0;
  }
  .home h2 img {
    zoom: 0.9;
  }

  .btn a {
    font-size: clamp(14px, 1.3vw, 16px);
    text-decoration: none;
  }
  .btn a img {
    width: 3vw;
    height: auto;
  }
}
@media (max-width:1180px) {
  .home h2 img {
    zoom: 0.8;
  }
}
@media (max-width: 1140px) {
  .active .navbar-collapse {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .btn-nav {
    position: static;
    top: auto;
    right: auto;
    width: 100%;
    text-align: center;
    margin-block: 3rem;
    order: 2;
    }
  .navbar-nav-sub {
    flex-direction: column;
    align-items: center;
  }
  ul.navbar-nav-sub li a {
    background-color: #231815;
    color: #ffffff;
    text-decoration: none;
  }
  ul.navbar-nav {
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  ul.navbar-nav li a {
    color: #231815;
    text-decoration: none;
  }
  ul.navbar-nav li {
    margin-left: 0rem;
  }
  .active .navbar-brand .white {
    display: none;
  }
  .active .navbar-brand .fixed {
    display: block;
  }
  .fixed .toggle {
    top: 10px;
    right: 10px;
  }
  .fixed .navbar-toggle-anime span,
  .active .navbar-toggle-anime span,
  .whitePage .navbar-toggle-anime span {
    background-color: #231815;
  }
}

@media (max-width:1080px) {
  .home h2 img {
    zoom: 0.7;
  }
  .history__contents {
    padding-inline: 25px;
    width: 100%;
    max-width: 100%;
  }
  .history__contents-box {
    width: 100%;
    flex-direction: column;
  }
 .history__contents-box .line {
    display: none;
 }
 .history__contents-box .wrap {
    margin-bottom: 2rem;
    width: 100%;
    border-bottom: 2px solid #89a46c;
  }
  .history__contents-box .wrap-inner {
    display: block;
    margin-bottom: 2rem;
  }
  .history__contents-box .date {
    color: #89a46c;
    font-size: 1.3rem;
    font-weight: 700;
    width: 100%;
  }
  .history__contents-box .content {
    width: 100%;
    font-size: 1.3rem;
  }
  .history__contents-box .content_in .photo {
    width: 100%;
  }
  .history__contents-box .content_in .photo span {
    font-size: 1rem;
    width:50%;
    margin-right: 1rem;
    display: block;
  }
  .history__contents-box .content_in .photo span img {
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-bottom: 0.6rem;
  }
  .history__contents-box .content_in .photo span.wide {
    width: 50%;
  }
  .history__contents-box .harf {
    width: 100%;
    margin-right: 0;
    display: block;
    }
  .history__contents {
    margin: 5rem auto;
  }
  .history__contents-box .content_in {
   font-size: 1.3rem;
  }
}
@media (max-width:980px) {
  .home h2 img {
    zoom: 0.7;
  }

  .tabs__btn {
    max-width: 24%;
    margin-bottom: 1rem;
  }
  .tabs__nav::after {
    content: "";
    flex: auto; /* または幅を固定 */
    max-width: 24%; /* アイテムの幅と合わせる */
  }
  .tabs__btn.is-active {
    position: static;
  }
}

@media (max-width:880px) {
  .home h2 img {
    zoom: 0.6;
  }
   .homeBrand__wrap ul li {
    width: 48%;
  }
}
@media (max-width:743px) {
  body {
    letter-spacing: 0.1rem;
  }
  .active .navbar {
    height: 100vh;
  }
  .navbar-brand {
    width: 40%;
  }
  .navbar-brand img {
    width: 100%;
    height: auto;
  }

  .mv {
    height: 83vh;
    display: flex;
    flex-direction: column ;
    align-items: flex-end ;
    justify-content: flex-end ;
  }
  
  .mv_copy {
    top: 35%;
  }
  .mv_copy p {
    font-size: clamp(18px, 2vw, 27px);
  }
  .mc .fadein {
    
    width: 100%;
  }
  .mc p span {
    letter-spacing: 0.25rem;
  }
  .overview .col-5 {
    width: 50%;
  }
  .overview .left {
    width: 15rem;
  }
  .overview .left img {
    width: 100%;
    height: auto;
  }
  .overview .left.fadein {
    width: 15rem;
    transform: translateX(-149px);
  }
  @keyframes slideinLeft {
    0% {
       transform: translateX(-149px);
    }
    100% {
        transform: translateX(0);
    }
  }
  .overview .right {
    width: 15rem;
  }
  .overview .right img {
    width: 100%;
    height: auto;
  }
  .overview .right.fadein {
    transform: translateX(149px);
  }
  .overview .right.fadein.active {
    animation: slideinRight 2s 0.5s forwards;
  }
  @keyframes slideinRight {
      0% {
         transform: translateX(149px);
      }
      100% {
          transform: translateX(0);
      }
  }
  .overview__wrap {
    padding-block: 5vw;
  }
  .overview__wrap p {
    line-height: 2;
  }
  .overview__wrap .col-5:first-child {
    margin-bottom: 4rem;
  }
  .overview__wrap h2 {
    gap: 0.3rem;
  }
  .overview__wrap h2 img {
    zoom: 0.5;
  }
  .home .overview__wrap h2 small {
    margin-block: 1rem 3rem;
  }

  .btn a {
    padding-left: 1rem;
    text-decoration: none;
  }
  .btn a:before {
    width: 0.8rem;
  }
  .btn a i img {
    width: 18px;
    height: auto;
    margin-top: -5px;
  }
  .news {
    padding-block: 5rem; 
  }
  .news h2 img {
    zoom: 0.7;
  }
  .news h2 small {
    margin-top: 1rem;
  }
  ul.news__wrap li {
    padding-block: 2rem;
    font-size: 1.4rem;
    padding-right: 2rem;
  }
  ul.news__wrap li:after {
    right: 1rem;
  }
  ul.news__wrap li .day {
    margin-right: 0rem;
    font-weight: 700;
  }
  ul.news__wrap li .ttl {
    display: block;
  }
  .more {
    margin-top: 2rem;
  }
  .more a i img {
    width: 18px;
    height: auto;
    margin-top: -5px;
  }
  .quality {
    width: 100%;
  }
  .quality__wrap h2 {
    gap: 0.5rem;
    margin-bottom: 2.5rem;
  }
  .quality__wrap h2 img {
    zoom: 0.5;
  }
  .home .quality h2 small {
    margin-top: 2rem;
  }
  .quality__wrap h2 span.q{
    margin-bottom: -1.2rem;
  }
  .quality__wrap h2 span.y{
    margin-bottom: -1.2rem;
  }
  .quality__wrap h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .quality__wrap p {
    margin-bottom: 1rem;
  }
  .quality__wrap h2.fadein {}

  .quality .bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
  }
  .brand {
    padding-block: 5rem;
  }
  .brand h2 {
    margin-bottom: 2.5rem;
    gap: 0.2rem;
  }
  .brand h2 img {
    zoom: 0.4;
  }
  .brand h2 span.p {
    margin-bottom: -1.2rem;
  }
  .brand h2 small {
    display: block;
    width: 100%;
  }
  .brand h3 {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    letter-spacing: 0.3rem;
  }
  .brand .link a {
    font-size: 1.3rem;
    padding: 1rem 1.5rem;
    margin-bottom: 4rem;
    text-decoration: none;
  }
  .homeBrand__wrap {
    padding-inline: 3%;
  }
  .homeBrand__wrap ul {
    gap: 1rem;
  }

  ul.fadein.active li {
    margin-top: 10px;
  }
  .shop {
    width: 100%;
  }

  .shop h2 small {
    margin-top: 2rem;
  }
  .shop h2 span.p img {
    margin-bottom: -1.5rem;
  }
  .shop h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .shop p {
    margin-bottom: 2rem;
    width: 100%;
  }
  .shop .btn.mg {
    margin-bottom: 3rem;
  }
  .shop .bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
  .shop .container {
    position: relative;
    z-index: 10;
  }
  .shop .container .row .col-10 {
    display: flex;
    justify-content: center;
    height: 100%;
    flex-direction: column;
  }
  .recruit {
    padding-block: 6rem 8rem;
  }
  .recruit h2 {
    margin-bottom: 3rem;
  }
  .recruit h2 img {
    zoom: 0.7;
  }
  .recruit h2 small {
    margin-top: 0rem;
  }
  .recruit h3 {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  .recruit .img {
    margin-top: 5rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .sdgs {
    margin-bottom: 10rem;
  }
  .sdgs__wrap:before {
    display: none;
  }
  .sdgs__wrap:after {
    display: none;
  }
  .sdgs__wrap h2 {
    margin-bottom: 2.5rem;
  }
  .sdgs__wrap p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  .sdgs__wrap .btn {
    font-size: 1.3rem;
    display: block;
    width: 100%;
  }

  .read h2 img {
    zoom: 0.7;
  }
  .read h2 small {
    margin-top: 0;
  }
  .read__wrap ul {
    gap: 1rem;
  }
  .read__wrap ul li {
    width: 48%;
  }
  .history__contents-box .content_in .photo span {
    width: 100%;
  }
  .history__contents-box .content_in .photo span.wide {
    width: 100%;
  }
  /** contact **************************************************************/
  .contact {
    padding-block: 5rem;
    padding-inline: 3%;
  }
  .contact__box a {
    font-size: 1.3rem;
    padding-block: 5rem;
  }
  /*  footer#globalFooter　----------------------------------------------------*/
  footer#globalFooter {
    padding: 3.5rem 1rem 25%;
  }
  footer#globalFooter .attention {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    text-align: center;
  }
  .footer {
    padding-bottom: 4rem;
  }
  .fnav {
    display: flex;
    flex-wrap: wrap;
  }
  .fnav__inner {
    width: 50%;
  }

  .fnav__inner li {
    margin-bottom: 1rem;
  }
  .fnav__inner li.line {
    margin-bottom: 3rem;
  }
  .fnav__inner li.line a {
    font-size: 1.3rem;
  }
  .fnav__inner li.line span {
    font-size: 1.3rem;
  }
  .fnav__inner-ul {
    margin-top: 1rem;
  }
  .fnav__inner-ul li a {
    font-size: 1.3rem !important;
  }
  .flogo {
    position: static;
    right: 0;
    bottom: 7rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
  }
  .flogo a {
    display: block;
  }
  .flogo a img {
    zoom: 0.7;
  }
  .page-top {
    bottom: 10px;
  }
  .page-top a {
    background-size: 30px 30px;
    width: 30px;
    height: 30px;
  }
  /* copyright　----------------------------------------------------*/

  footer#globalFooter p.copyright {
    font-size: 1rem;
    margin-bottom: 2rem;
    letter-spacing: 0;
  }
  .banner {
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .history__contents-box .year {
    font-size: 2rem;
  }
  .history__contents-box .year img {
    zoom: 0.7;
    margin-top: -0.5rem;
  }
  .award {
    padding-block: 5rem 6rem;
    
  }
  .award h2 img {
    zoom: 0.55;
  }
  .award h2 span {
    margin-bottom: 2rem;
  }
  .crown {
    margin-bottom: 2rem;
  }
}
@media (max-width:743px) {
  .pageTitle img {
    zoom: 0.3;
  }
  .pageTitle h1 .img {
    margin-right: 1rem;
  }
  .pageTitle h1 .name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  .aboutIntro__photo {
    display: block;
  }
  .aboutIntro__photo .photo {
    text-align: center;
    margin-right: 0;
    margin-bottom: 2rem;
  }
  .about {
    .mv_copy p {
      font-size: 2rem;
      color: #231815;
    }
  }
  .pageNav {
    margin-block: 5rem 5rem;
  }
  .pageNav ul {
    gap: 3rem;
  }
  .pageNav ul li {
    font-size: 1.3rem;
    padding: 0 0.4rem 0.3rem;
  }
  .pageNav ul li i {
    margin-left: 0.4rem;
  }
  .pageNav ul li i img {
    zoom: 0.7;
  }
  .aboutIntro {
    margin-bottom: 5rem;
  }
  .wideButton {
    display: block;
    margin-bottom: 5rem;
  }
  .map {
    flex-direction: column;
    margin-bottom: 0;
  }
  .map .gmap {
    width: 100%;
    margin-bottom: 0rem;
    order: 2;
    padding-top: 65%;
  }
  .map .address {
    width: 100%;
    padding-left: 0;
    order: 1;
    padding-inline: 15px;
    padding-block: 3rem;
  }
  .map .address {}
  .wideButton .banenr__inner {
    width: 100%;
  }
  .history__title {
    display: block;
  }
  .history__title h2 {
    width: 100%;
    padding-block: 3rem;
  }
  .history__title .history__title-img {
    width: 100%;
  }
  .award {
    padding-inline: 15px;
  }
  .award table tbody td {
    line-height: 1.5;
    padding: 1rem 1rem;
  }
  .award table tbody td:last-child {
    white-space: nowrap;
  }
  .sideSlide {
    overflow-x: scroll;
    width: 100%;
  }
  .sideSlide table {
    width: 78rem;
  }


  /* 共栄製茶について
  ********************************************************************************************************/
  .company {
        flex-wrap: wrap;
        margin-bottom: 3rem;
    
    }

  .company .company_map {
    order: 2;
    width: 100vw;
  }
  .company .address {
    order: 1;
    width: 100vw;
    padding-inline: 2rem;
    margin-bottom: 3rem;
  }
  .address h2 span {
    font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  }
  .conpany h3 {
    font-size: clamp(1.6rem, 2vw, 2.2rem);
  }
  .conpany table {
    font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  }
  .conpany table td br {
    display: none;
  }
  /* お茶の歴史
  ******************************************************************************************************************/
  .historyPage {
    font-size: 1.3rem;
  }
  .historyPage h2 {
    margin-bottom: 2rem;
  }
  .historyPage h2 img {
    width: 70%;
    height: auto;
  }
  .historyPage p.intro {
    line-height: 2;
    padding-inline: 15px;
  }

  .historyPage__wrap {
    padding-block: 3rem 7rem;
    padding-inline: 15px;
  }
  .historyPage__wrap dt {
    width: 18%;
    padding-bottom: 4rem;
  }
  .historyPage__wrap dl {
    align-items: flex-start;
  }
  .historyPage__wrap dt img {
    width: 100%;
    height: auto;
  }
  .historyPage__wrap dd {
    width: 82%;
    line-height: 1.5;
    padding-bottom: 4rem;
    padding-left: 10px;
  }

  /* コラムセクション */
  .historyPage__wrap .colum {
    margin-top: 1rem;
  }

  .historyPage__wrap .colum h3 {
    font-size: 1.5rem;
    margin-left: 1.5rem;
  }
  .historyPage__wrap .colum h3 i img {
    zoom: 0.5;
  }
  .historyPage__wrap .colum p {
    padding: 1rem 1.5rem 1.5rem;
    font-size: 1.2rem;
    line-height: 1.4;
  }

/** 品質へのこだわり
 * *****************************************************************************************************************/
  /* ==========================================================================
     Quality Section (品質保証)
     ========================================================================== */
  .qualityPage {
    padding-block: 5rem;
  }

  .qualityPage .quality__inner {
    padding-left: 0;
    margin-bottom: 1rem;
  }

  .qualityPage .quality__inner h2 {
    padding-block: 1rem 3rem;
  }
  .qualityPage .quality__inner h2 img {
    width: 100%;
    height: auto;
  }
  .qualityPage .quality__inner p {
    padding-block-end: 3rem;
    line-height: 2;
  }
  .qualityPage .quality__img {
    padding-left: 0;
  }

  /* ==========================================================================
     Chashi Section (茶師のこだわり)
     ========================================================================== */
  .chashi {
    padding-block: 3rem;
  }

  .chashi .chashi__inner {
    padding-right: 0;
  }

  .chashi .chashi__inner-img {
    margin-block-end: 1rem;
  }

  .chashi .chashi__inner-kikuoka {
    padding-inline: 0rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .chashi .chashi__inner-kikuoka-profile {

  }

  .chashi .chashi__inner-kikuoka-profile h3 {
    margin-bottom: 1rem;
  }

  .chashi .chashi__inner-kikuoka-profile p {
    line-height: 1.6;
  }

  .chashi .chashi__content {
    padding-left: 0;
  }

  .chashi .chashi__content h2 {
    margin-block: 1rem 3rem;
  }
  .chashi .chashi__content h2 img {
    width: 100%;
    height: auto;
  }
  .chashi .chashi__content p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 3rem;
  }

/* ==========================================================================
   Process Section (品質検査工程)
   ========================================================================== */
  .process {
    padding-block: 10rem 0rem;
  }
  .process h2.center {
    margin-bottom: 1.2rem;
  }
  .process h2.center img {
    zoom: 0.5;
  }
  .process p.center {
    padding-block: 0.6rem;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    line-height: 2;
  }

  .process h3 + p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: left;
  }

  .process h4 {
    margin-bottom: 2rem;
    letter-spacing: 1vw;
  }
  .process__box {
    margin-bottom: 5rem;
  }

  .process .process__inner {
    margin-bottom: 4rem;
  }

  .process .process__inner-content {
    width: 100%;
  }

  .process .process__inner-content h3 {
    margin-bottom: 2rem;
  }

  .process .process__inner-content p {
    line-height: 1.6;
  }

  .process .process__inner-image {
    width: 100%;
  }

  /* 検査項目一覧・分析機器 */
  .process .process__block {
    padding: 2rem;
  }

  .process .process__block h3 {
    padding-block: 0.8rem;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    line-height: 1.3;
  }
  .process .process__block table {
    margin-bottom: 1rem;
  }
  .process .process__block th {
    font-size: 1.8rem;
    padding-left: 0;
    padding-block: 1rem;
    display: block;
    width: 100%;
  }

  .process .process__block td {
    padding-inline: 0;
    padding-block: 1rem;
    display: block;
    width: 100%;
  }

  .process .process__block small {
    font-size: 1.3rem;
    margin-bottom: 4rem;
  }
  .process .process__block p {
    width: 100%;
    line-height: 1.6;
    font-size: 1.4rem;
  }
  /* ==========================================================================
     Authentication Section (認証規格)
     ========================================================================== */
  .Authentication {
    padding-block-start: 10rem;
    margin-bottom: 2.5rem;
  }

  .Authentication__head h2.center {
    margin-bottom: 2rem;
  }
  .Authentication__head h2.center img {
    zoom: 0.5;
  }
  .Authentication__head p {
    line-height: 2;
    margin-bottom: 4rem;
    text-align: center;
  }

  .Authentication .Authentication__wrap {
    display: flex;
    flex-direction: column;
    margin-bottom: 5rem ;
  }

  .Authentication .Authentication__wrap-inner {
    width: 100%;
    padding-right: 0;
    order: 2;
  }

  .Authentication .Authentication__wrap-block {
    width: 100%;
    padding-left: 0;
    margin-bottom: 1.5rem;
    order: 1;
  }

  .Authentication .Authentication__wrap-block h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .Authentication .Authentication__wrap-block p {
    font-size: 1.3rem;
    line-height: 1.8;
  }
  /** 直営店・取扱店
   * ************************************************************************************************/


  /* ==========================================================================
     Shop Page Common (共通設定)
     ========================================================================== */
  .shopPage__wrap {
    margin-bottom: 3rem;
  }

  .shopPage__wrap h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
  .shopPage__wrap .mb {
    margin-bottom: 1rem;
  }
  .shopPage__wrap .mb30 {
    margin-bottom: 1.5rem;
  }
  .shopPage__wrap h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  /* 店舗情報テーブル */
  .shop-info {
    margin-bottom: 1.5rem;
  }
  .shop-info th {
    padding-block: 1rem;
    font-size: 1.3rem;
    padding-right: 2rem;
  }

  .shop-info td {
    font-size: 1.4rem;
    padding-block: 1rem;
  }

  /* アクセス・マップ */
  .access {
    margin-bottom: 1.5rem;
  }

  .access h4 {
    font-size: 1.4rem;
    padding: 1rem;
    height: 34px;
  }

  .access p {
    font-size: 1.2rem;
    padding-left: 8px;
    margin-block: 0.4rem;
  }
  .access p:before {
    top: 5px;
    font-size: 0.5rem;
  }
  /* イートインメニュー */
  .menu {
    margin-bottom: 1.5rem;
    padding: 1.5rem 2rem;
    margin-top: 2rem;
  }

  .menu h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .menu__inner h5 {
    margin-bottom: 1rem;
  }
  .menu__inner p {
    font-size: 1.3rem;
  }

  .menu__inner small {
    font-size: 1.1rem;
  }
  .shop-map {
    margin-bottom: 1.5rem;
  }
  /* ==========================================================================
     Department Stores (百貨店セクション)
     ========================================================================== */
  .shopPage__wrap-department {
  }
  .shopPage__wrap-department .col-5 {
    margin-bottom: 3rem;
  }
  /* 左側の画像ブロックなど */
  .shopPage__wrap-department-block {
    padding-right: 0;
  }

  /* 各店舗のカード/インナー */
  .shopPage__wrap-department-inner {
    padding-left: 0;
  }

  /** プライバシーポリシー
   * ********************************************************************/
  .otherPage h1 {
    font-size: 1rem;
  }
  .otherPage h1 span img {
    zoom: 0.5;
  }
  .privacy__wrap {
    padding-block: 30px 60px;
    padding-inline: 15px;
  }
  .privacy__wrap {
    font-size: 1.3rem;
  }
  .privacy__wrap h2 {
    margin-top: 20px;
    padding-left: 10px;
    font-size: 1.3rem;
  }
  .privacy__wrap h2:before {
    content: "";
    width: 6px;
    top: 8px;
  }
  .privacy__wrap p {
    
  }
  .privacy__wrap ul {
    padding-left: 1.8rem;
  }
  .privacy__wrap ul li {
    margin-bottom: 2px;
  }
  .privacy__wrap ol {
    margin-block-start: 8px;
    padding-left: 2rem;
  }
  .privacy__wrap ol li {
    margin-bottom: 2px;
  }
  /**　お知らせ(SMP)
 * ************************************************************************************/
  .newsPage {
    padding-inline: 2rem;
  }
  .newsPage ul li {
    list-style: none;
    text-align: left;
  }
  .sidebar {
    width: 100%;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }
  .sidebar ul {
    margin-top: 4rem;
    padding: 0;
  }
  .sidebar ul li a {
    font-size: 1.3rem;
    padding-left: 12px;
  }
  .sidebar ul li a:before {
    width: 8px;
    height: 1px;
    top: 9px;
  }
  .newsList__wrap ul {
    margin-bottom: 2rem;
  }
  .newsList__wrap li a:after {
    width: 0.7rem;
    height: 0.7rem;
    right: 0rem;
  }
  .newsList__wrap li a .date {
    font-size: 1.5rem;
  }
  .newsList__wrap li a .category {
    font-size: 1rem;
  }
  .newsNav ul {
    font-size: 1.3rem;
  }
  .post {}
  .post h2 {
    padding-inline: 2%;
    padding-block-end: 1rem;
    margin-bottom: 3rem;
  }
  .post h2 .date {
    font-size: 1.5rem;
  }
  .post h2 .category {
    font-size: 1rem;
  }
  .post h2 .title {
    margin-top: 1rem;
    line-height: 1.3;
    font-size: 1.5rem;
  }
  .post .content {
    padding-inline: 2%;
    padding-block-end: 3rem;
  }
  .post .content p {
    line-height: 1.4;
    padding-bottom: 1.5rem;
  }
  .post .content img {
    max-width: 100%;
    height: auto;
  }
  .newsPage .media {
    padding-inline: 2%;
    padding-block: 2rem%;
    margin-block-end:  3%;
  }
  .newsPage .media p {
    margin-bottom: 0.5rem;
  }
  .newsPage .media p .ttl {
    width: 8rem;
  }
  .postNav {
    gap: 1.5rem;
    margin-bottom: 4rem;
  }
  .postNav a {
    display: flex;
    align-items: center;
  }
  .postNav a:nth-child(2) {
    padding-bottom: 0.3rem;
    border-bottom: 1px solid #231815;
    padding-top: 2px;
  }
  .postNav a:hover {
    opacity: 0.5;
  }
  .postNav i {
    margin-inline: 0.6rem;
  }
  .postNav i img {
    zoom: 0.7;
  }
  /** よくあるご質問
   * **********************************************************************************************************************/
  .faq__wrap {
    padding-block: 4.5rem;
    padding-inline: 1rem;
  }
  .tabs__nav {
    padding-block-end: 2rem;
  }

  .tabs__btn {
    max-width: 48%;
    padding: 10px 14px;
    font-size: 13px;
    margin-bottom: 1rem;
    color: #231815;
  }
  .tabs__btn.is-active {
    position: static;
  }
  
  .faq__item {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  .faq__item span {
    padding-top: 5px;
  }
  .faq__item dt {
    gap: 12px;
    padding: 10px 24px 10px 0;
    user-select: none;
  }

  .faq__item dt span {
    line-height: 1.5;
  }
  .faq__item i img {
    zoom: 0.5;
  }
  .faq__icon {
    flex: 0 0 auto;
    display: inline-flex;
    margin-top: 2px;
  }

  .faq__item dd {
    padding: 0 0 18px 0;
  }

  .faq__item dt::after {
    width: 15px;
    height: 15px;
    background-size: 15px 15px;
  }
  .faqOther h3 {
    font-size: 1.4rem;
  }
  .faqOther p {
    margin-bottom: 1.5rem;
  }
  .faqOther__button {
    display: block;
  }

  .faqOther__button a {
    width: 100%;
    height: auto;
    padding-block: 2rem;
    margin-bottom: 2rem;
    line-height: 1.2;
  }
  .faqOther__button a:after {
    content: "";
    width: 6px;
    height: 6px;
    right: 1.5rem;
  }

  /*******************************************************************
   * お問い合わせ
  ********************************************************************/
 main.contact {
  padding-inline: 0%;
 }
  .contact__wrap {
    padding-block: 3rem 5rem;
  }
  .contact__wrap h1 {
    margin-block-end: 1.5rem;
    font-size: 1rem;
    text-align: center;
  }
  .contact__wrap h1 span {
    display: block;
  }
 .contact__wrap h1 img {
  zoom: 0.5;
 }
  .contact__wrap p.info {
    margin-bottom: 3rem;
  }
  .contact__wrap-privacy h2 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
  }
  .contact__wrap-privacy-inner {
    margin-bottom: 2rem;
    background-color: #ffffff;
    padding: 1rem;
    font-size: 1.2rem;
    height: 20rem;
  }
  /* フォーム */
  .form {
    margin: 0 auto;
    padding: 1rem 0 1.5rem;
  }

  .form dt {
    margin: 13px 0 5px;
    font-size: 13px;
  }

  .form dt span{
    font-size: 10px;
  }

  .form input[type="text"],
  .form input[type="email"],
  .form input[type="tel"],
  .form select,
  .form textarea{
    padding: 10px 8px;
    font-size: 13px;
  }
  .form select {
    max-width: 100%;
  }
  .form textarea {
    margin-top: 10px;
    min-height: 280px;
  }
  .button{
    margin-top: 15px;
    display:flex;
    justify-content:center;
  }

  .button button{
    height: 40px;
    font-size: 13px;
  }
  .button .submit:after {
    content: "";
    width: 6px;
    height: 6px;
    right: 1.5rem;
  }
  .checkbox_group {
  padding-block: 0rem;
  }
  .checkbox_group label {
    display: block;
    margin-block: 0.6rem;
  }
  .checkbox_group br {
    display: none;
  }
  .form dt.flex {
    font-size: 0.8rem;
  }
  .form dt.flex div {
    font-size: 1.3rem;
  }
}

@media (max-width: 1280px ) {
  .quality {
    background-image: url(../images/home/quality_bg_smp.jpg);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: bottom left;
    padding-block-end: 57%;
  }
  .quality__wrap {
    max-width: 100%;
  }
}
@media (max-width: 768px ) {
  .shop {
    background-image: url(../images/home/shop_bg_smp.jpg);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: bottom left;
    height: auto;
    padding-block: 6.5555555%;
    background-color: #544741;
    padding-block-end: 67%;
  }
  .shop .bg {
    display: none;
  }
}

@media (max-width: 661px) {
  .overview .col-5 {
    width: 100%;
  }
  .shop h2 {
    margin-bottom: 9vw;
  }
  .address h2 span {
  width: 52.25vw;
  }
  .history__title h2 div {
  width: 43vw;
  }
  .company_map .gmap {
    padding-top: 76vw;
  }
}

@media (max-width:414px) {
    .sideSlide table {
      width: 78rem;
    }
    .mv_copy p {
      font-size: 6vw;
    }
    .conpany table td br {
    display: block;
  }
}
@media (max-width:374px) {
  .quality {
    padding-block: 100%;
  }
  .home h2 img {
    zoom: 0.3 !important;
  }
}


