*:where(:not(html,iframe,canvas,img,svg,video,audio,input):not(svg *,symbol *)){all:unset;display:revert}*,*::before,*::after{box-sizing:border-box}html{-moz-text-size-adjust:none;-webkit-text-size-adjust:none;text-size-adjust:none}a,button{cursor:revert}ol,ul,menu,summary{list-style:none}ol{counter-reset:revert}img{max-inline-size:100%;max-block-size:100%}table{border-collapse:collapse}input,textarea{-webkit-user-select:auto}textarea{white-space:revert}meter{-webkit-appearance:revert;appearance:revert}:where(pre){all:revert;box-sizing:border-box}::placeholder{color:unset}:where([hidden]){display:none}:where([contenteditable]:not([contenteditable="false"])){-moz-user-modify:read-write;-webkit-user-modify:read-write;overflow-wrap:break-word;-webkit-line-break:after-white-space;-webkit-user-select:auto}:where([draggable="true"]){-webkit-user-drag:element}:where(dialog:modal){all:revert;box-sizing:border-box}::-webkit-details-marker{display:none}

@font-face {
  font-family: 'plex';
  src: url('../font/IBMPlexSansJP-Regular.woff2') format('woff');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'plex';
  src: url('../font/IBMPlexSansJP-Medium.woff2') format('woff');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'plex';
  src: url('../font/IBMPlexSansJP-SemiBold.woff2') format('woff');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'plex';
  src: url('../font/IBMPlexSansJP-Bold.woff2') format('woff');
  font-weight: bold;
  font-display: swap;
}

@font-face {
  font-family: 'Hind';
  src: url('../font/Hind-Light.woff2') format('woff');
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Hind';
  src: url('../font/Hind-Regular.woff2') format('woff');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Hind';
  src: url('../font/Hind-Medium.woff2') format('woff');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Hind';
  src: url('../font/Hind-SemiBold.woff2') format('woff');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Hind';
  src: url('../font/Hind-Bold.woff2') format('woff');
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: 'oswald';
  src: url('../font/Oswald-Bold.woff2') format('woff');
  font-display: swap;
}

@font-face {
  font-family: 'zenmin';
  src: url('../font/ZenOldMincho-Medium.woff2') format('woff');
  font-display: swap;
}

body {
  background-color: #fff;
  color: #333;
  font-family: "plex", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  font-style: normal;
  line-height: 2;
}
#load {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #fff;
  position: fixed;
  z-index: 9999;
}
a {
  text-decoration: none;
}
header {
  position: fixed;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: all .6s;
  padding-top: 15px;
}
header > * {
  transition: all .3s;
}
header h1,
header .headlogo {
  margin: 0 0 0 30px;
  width:360px;
  transition: all .2s;
}
header nav ul{
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}
header nav {
  margin-right: 2em;
}
header nav a{
  color: #000;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 1.5em 5px 2.5em;
}

header.fixed {
  background-color: #fff;
  color: #333;
  filter: drop-shadow(0 0 6px rgba(0,0,0,.1));
  margin: 0;
  padding: 15px 0;
}
header.fixed h1,
header .headlogo {
  width: 240px;
}


/* toggle menu */

#nav_toggle {
  display: none;
  position: absolute;
  right: 13px;
  top: 5px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1;
  padding: 13px 10px 0;
}

#nav_toggle div {
  position: relative;
}

#nav_toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #222;
  left: 0;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

header.fixed #nav_toggle span {
  background: #333;
}

#nav_toggle span:nth-child(1) {
  top: 0;
}

#nav_toggle span:nth-child(2) {
  top: 10px;
}

#nav_toggle span:nth-child(3) {
  top: 20px;
}


@media (max-width: 1010px) {
  header h1,
  header .headlogo {
    width: 240px;
  }

  header nav {
      display: none;
  }

  header nav {
      position: absolute;
      z-index: -1;
      top: calc(-100vh - 50px);
      width: 100%;
      height: 100%;
      height: 100vh;
      text-align: center;
      padding: 0;
      display: block;
      -webkit-transition: .5s ease-in-out;
      -moz-transition: .5s ease-in-out;
      transition: .5s ease-in-out;
      background-color: rgba(255,255,255, 1);
  }
  header.open nav{
    top:0;
  }
  header.open nav ul {
      padding: 80px 0 0;
      font-size: 15px;
      flex-direction: column;
      line-height: 3;
  }
  header nav a {
    padding: 30px 0;
  }
    header nav ul{
    flex-direction: column;
  }
  #nav_toggle {
      display: block;
  }
  header.open #nav_toggle span {
    background: #333;
  }
  
  .open #nav_toggle span:nth-child(1) {
      top: 11px;
      -webkit-transform: rotate(135deg);
      -moz-transform: rotate(135deg);
      transform: rotate(135deg);
  }

  .open #nav_toggle span:nth-child(2) {
      width: 0;
      left: 50%;
  }

  .open #nav_toggle span:nth-child(3) {
      top: 11px;
      -webkit-transform: rotate(-135deg);
      -moz-transform: rotate(-135deg);
      transform: rotate(-135deg);
  }

  .open header nav {
      /* header nav top + #mobile-head height */
      -moz-transform: translateY(calc(100vh + 40px));
      -webkit-transform: translateY(calc(100vh + 40px));
      transform: translateY(calc(100vh + 40px));
  }
}

@media (max-width: 370px) {
  header h1,
  header .headlogo {
    width: calc(83vw - 63px);
    margin: 0 0 0 5%;
  }
}

/* vi */

section#vi {
  position: relative;
  height: 92vh;
}
.back__slide {
  width: 100%;

}
.back__slide img{
  height: 92vh;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.arr {
  z-index: 1;
  position: absolute;
  bottom: 10px;
  right: 25px;
  height: 100px;
  width: 45px;
}

.arr p {
  font-size: 10px;
  color: #a1803b;
  text-align: left;
}
.arr img{
  max-width: 20px;
  height: 70px;
}

.arr img,
.arr p {
  animation: anime_ar 1s ease -0.8s infinite alternate;
  padding-bottom: 0;
}

@keyframes anime_ar {
  0% {
      opacity: .1;
      margin-top: 3px;
  }

  100% {
      opacity: 1;
      margin-top: 3px;
  }
}

/* mov */
.movie--background {
  width:100%;
  height: 40vw;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.movie--background iframe {
  width: 100vw;
  height: 56.25vw; /* 16:9比率の高さ */
  min-height: 60vw;
  min-width: 177.78vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* top */
.vi__tx {
  position: absolute;
  top:0;
  height: 92vh;
  width: 100%;
  display: block;
  background: linear-gradient(90deg, rgb(255, 255, 255, 0.95), rgb(255, 255, 255, 0.45));
}
.vi__tx h2 {
  font-size: clamp(38px,5vw,55px);
  line-height: 1.8;
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.8));
  /* padding: 40vh 1em .5em 80px; */
  padding: 0 1em 2.5em 80px;
  display: flex;
  align-items: flex-end;
  height: 92vh;
  color: #222;
  font-weight: 300;
}

@media (max-width: 800px) {
  .slide img{
    height: 92vh;
  }
  .vi__tx h2 {
    padding: 0 5% 2.5em;
    font-size: clamp(30px,5vw,60px);
  }
}
@media (max-width: 600px) {
  .vi__tx h2 {
    padding: 0 5% 8.5em;
  }
}
@media (max-height: 800px) {
  .vi__tx h2 {
    padding: 0 5% 5.5em;
    font-size: clamp(24px,4vw,40px);
  }
}


section.top,
#kogata article {
  max-width: 1050px;
  padding: 0 20px;
  margin: 0 auto;
  line-height: 2.1;
}
#gensoku h3 {
  color:#947e32;
  font-size:34px;
  padding: 1.5em 0;
  text-align: center;
  font-weight: 400;
}
#gensoku .gensoku__wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#gensoku .gensoku__wrap .text{
  padding-top: 1em;
  padding-right: 3em;
  font-size: 16px;
  width: 42%;
  font-weight: 500;
  text-align: justify;
}
#gensoku .gensoku__wrap img{
  max-width: 560px;
}
#gensoku h3.genri {
  color:#333;
  font-size:30px;
  font-weight: 500;
  padding: 2em 0 .5em;
}
#gensoku .genri__flow div {
  width: 27%;
}
#gensoku .genri__flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 4em;
}
#gensoku .genri__flow h4 {
  font-size: 40px;
  color: #947e32;
  text-align: center;
  font-family: 'zenmin';
}
#gensoku .genri__flow p {
  font-size: 15px;
  text-align: justify;
  line-height: 2.2;
}
#gensoku .genri__flow img {
  width: 20px;
  padding-top: 95px;
}

@media (max-width: 1050px) {
  #gensoku .gensoku__wrap img{
    width: 57%;
  }
}

@media (max-width: 880px) {
  #gensoku .gensoku__wrap {
    flex-direction: column-reverse;
  }
  #gensoku .gensoku__wrap .text {
    width: 100%;
    padding: 2em 0 2em;
  }
  #gensoku .gensoku__wrap img{
    width: 100%;
    max-width: 100%;
  }
  #gensoku h3,
  #gensoku h3.genri {
    font-size: clamp(18px, 5vw, 5vw);
  }
  #gensoku .genri__flow p {
    font-size:13px
  }
}

@media (max-width: 520px) {
  .genri__flow {
    flex-direction: column;
  }
  #gensoku .genri__flow div {
    width: 100%;
  }
  #gensoku .genri__flow img {
    transform: rotate(90deg);
    padding: 0;
    margin: 0 auto;
  }
}

/* mov */
.movie__background {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7.5;
  overflow: hidden;
}
.movie__background iframe{
  position: absolute;
  width: 100%;
  aspect-ratio: 16/9;
  top:-4vw;
  pointer-events: none;
  z-index: 1;
}

#gensoku__tx {
  padding: 40px 15px;
}
#gensoku__tx .gensoku__summary{
  color: #947e32;
  font-weight: 500;
  font-size: 19px;
  line-height: 2;
  text-align: center;
}
#gensoku__tx .gensoku__summary span {
  font-size: 35px;
  font-weight: 400;
  color: #333;
}
#gensoku__tx .summary__box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 120px;
}
#gensoku__tx .summary__box div {
  width: 47%;
}
#gensoku__tx .summary__box div h3 {
  font-weight: 400;
  font-size: 40px;
  text-align: center;
  display: flex;
  justify-content: space-between;
}
#gensoku__tx .summary__box div h3::before {
  content: '[';
}
#gensoku__tx .summary__box div h3::after {
  content: ']';
}
#gensoku__tx .summary__box div h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background-color: #999;
  color: #fff;
  font-size:20px;
  margin-bottom: 8px;
  line-height: 1;
}
#gensoku__tx .summary__box div p {
  font-weight: 500;
  font-size: 15px;
  padding-bottom: 15px;
}
#gensoku__tx .summary__box div p span.big {
  font-size: 24px;
}
#gensoku__tx .summary__box div p span.mini {
  font-size: 13px;
}
#kogata {
  background-color: #c8c09d;
  padding-bottom: 70px;
}
#kogata h3 {
  font-size: 30px;
  text-align: center;
  padding: 2em 15px 1em;
}
#kogata .kogata__box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#kogata .kogata__box .text {
  font-size: 15px;
  font-weight: 500;
  padding-right: 2%;
  width: 48%;
}
#kogata .kogata__box .bn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 50%;
}
#kogata .kogata__box .bn .bn__in {
  border-radius: 8px;
  background-color: #a4934e;
  color: #fff;
  width: 48%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.75;
  text-align: center;
  margin-bottom: 25px;
}
#kogata .kogata__img__first {
  border-radius: 15px;
  background-color: #a4934e;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 15px;
  margin: 30px auto;
  padding: 40px;
}
#kogata .kogata__img__first img.a {
  width: 40%;
}
#kogata .kogata__img__first img.b {
  width: 58%;
}
#kogata .kogata__img__sec {
  border-radius: 15px;
  background-color: #a4934e;
  padding: 40px;
}
#kogata .kogata__img__sec h3 {
  color: #fff;
  font-size: 30px;
  text-align: center;
  padding: 0 1em .5em;
}
#kogata .kogata__img__sec div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: #fff;
}
#kogata .kogata__img__sec div p{
  width: 31%;
  text-align: justify;
}
#kogata .kogata__img__sec div img{
  width: 66%;
  margin-left: 1em;
}

@media (max-width: 880px) {
  #gensoku__tx .gensoku__summary {
    font-size: clamp(16px, 2.1vw, 2.7vw);
  }
  #gensoku__tx .gensoku__summary span {
    font-size: clamp(20px, 5.5vw, 6vw);
    white-space: nowrap;
  }
  #gensoku__tx .summary__box {
    padding: 40px 5%;
  }
  #kogata h3,
  #kogata .kogata__img__sec h3 {
    font-size: clamp(20px,3vw,30px);
  }
  #kogata .kogata__img__first,
  #kogata .kogata__img__sec div {
    flex-direction: column;
  }
  #kogata .kogata__img__first img.a {
    width: 100%;
  }
  #kogata .kogata__img__first img.b {
    width: 100%;
  }
  #kogata .kogata__img__sec div img,
  #kogata .kogata__img__sec div p {
    width: 100%;
    margin: 0;
  }
  #kogata .kogata__img__sec div p {
    padding-bottom: 1em;
  }
}

@media (max-width: 800px) {
  #kogata .kogata__box {
    flex-direction: column-reverse;
  }
  #kogata .kogata__box .text {
    width: 100%;
  }
  #kogata .kogata__box .bn {
    width: 100%;
    padding: 2em 0 0;
  }
}

@media (max-width: 680px) {
  #gensoku__tx .gensoku__summary br{
    display: none;
  }
  #gensoku__tx .summary__box div h3 {
    font-size: 6vw;
  }
  #gensoku__tx .summary__box div h4 {
    font-size: 4vw;
  }
  #gensoku__tx .summary__box div p {
    font-size: clamp(13px,15px,2.5vw);
    text-align: justify;
  }
    #gensoku__tx .summary__box {
    padding: 40px 2.5%;
  }
  #kogata .kogata__box .bn .bn__in {
    font-size: clamp(18px,3.2vw,22px);
  }
}

/* Lineup */
.pagetitle {
  position: relative;
  padding-top: 100px;
}
.pagetitle section {
  background-image: url(../images/title_bk.webp);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  width: 100%;
  height: 150px;
}
.pagetitle h1 {
  font-size: 25px;
  font-weight: 500;
}
main#page {
  max-width: 1100px;
  padding: 50px 5% 20px;
  margin: 0 auto;;
}
section#lineuptitle {
  text-align: center;
}
section#lineuptitle img {
  max-width: 120px;
  margin: 0 auto;
}
section#lineuptitle h2 {
  font-size: 25px;
  font-weight: 700;
  padding: .7em 1em;
}
section#shurui {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 0;
}
section#shurui .box {
  width: 28%;
}
section#shurui .box h4 {
  font-size:19px;
  padding-bottom: 1em;
  font-weight: 500;
  text-align: center;
}
section#shurui .box img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center center;
  margin: 0 auto;
}
section#shurui .box p {
  font-weight: 500;
  font-size: 14px;
  padding: 1.5em 0;
  text-align: justify;
}

@media (max-width: 900px) {
  section#shurui .box h4 {
    font-size: clamp(14px,2vw,19px);
  }
}


@media (max-width: 680px) {
  section#shurui {
    flex-wrap: wrap;
  }
  section#shurui .box {
    width: 47%;
    padding-bottom: 2.5em;
  }
    section#shurui .box h4 {
    font-size: clamp(16px,2vw,19px);
  }
}
@media (max-width: 430px) {
  section#shurui .box {
    width: 100%;
  }
      section#shurui .box h4 {
    font-size: clamp(18px,2vw,19px);
  }
}


section#items {
  padding: 30px 0;
}
section#items article {
  padding-bottom: 50px;
}
section#items .title__box {
  display: flex;
  align-items: flex-start;
}
section#items .title__box .gaikei {
  border: 2px solid #333;
  border-radius: 3px;
  width: 110px;
  height: 80px;
  text-align: center;
  line-height: 1;
}
section#items .title__box .gaikei p {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0 4px;
  letter-spacing: 0.1em;
}
section#items .title__box .gaikei h4 {
  font-size: 38px;
  letter-spacing: 0.08em;
  font-family: 'oswald';
}
section#items .title__box .gaikei h4 span {
  font-size: 18px;
}
section#items .title__box .item__name {
  padding-left: 20px;
  line-height: 1;
  letter-spacing: 0.1em;
}
section#items .title__box .item__name h2 {
  font-size:55px;
  font-weight: bold;
}
section#items .title__box .item__name h3 {
  font-size:20px;
  font-weight: 500;
  padding-top: 5px;
}
section#items .setsumei {
  padding: 1.5em 0 0;
  font-size: 14px;
  text-align: justify;
}
section#items .item__box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.7em 0;
}
section#items .item__box .img {
  width: 50%;
  flex-shrink: 0;
  position: relative;
}
section#items .item__box .img .icon {
  width: 18px;
  height: auto;
  position: absolute;
  bottom: 5px;
  right: 5px;
}
section#items .item__box .img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  max-height: 220px;
}
section#items .item__box .img img.zu {
  margin-top: 30px;
}
section#items .item__box .text {
  width: 42%
}
section#items .item__box .text dl{
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
section#items .item__box .text dl dt{
  width: 120px;
  flex-shrink: 0;
  line-height: 1.2;
  height: 25px;
  font-size: 12px;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
}
section#items .item__box .text dl dd{
  font-size: 13px;
  padding-left: 1em;
  text-align: justify;
}
section#items .item__box .text p {
  padding: 1.5em 0;
  font-size: 14px;
  text-align: justify;
}
section#items h3.item__title__box {
  padding: 1em 0 .2em;
  line-height: 1;
  border-bottom: 1px solid #333;
  display: flex;
  align-items: flex-end;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 15px;
}
section#items .item__title__box p {
  margin-left: 1.5em;
  padding-left: 1.5em;
  margin-bottom: .3em;
  font-size: 17px;
  line-height: 1;
  border-left: 2px solid #333;
}
.shiyo h3 {
  font-size: clamp(20px, 3vw, 26px);
  padding: 0 0 20px;
  font-weight: 500;
  text-align: center;
}
.shiyo__wrap {
  position: relative;
}
.shiyo__wrap p.icon {
  font-size: 12px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: #f3f2e2;
  border: 1px solid #999;
  height: 25px;
}
.shiyo__wrap p.icon img {
  height: 12px;
  padding-left: .5em;
}
h5.yogo {
  margin-top: 2em;
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border: 1px solid #333;
  border-radius: 3px;
}
.yogo__text {
  padding: 1em 0;
  font-size: 14px;
}

@media (max-width: 740px) {
  section#items .item__box {
    flex-direction: column;
  }
  section#items .item__box .img {
    width: 100%;
  }
  section#items .item__box .text {
    width: 100%;
    padding: 2em 0 0;
  }
  section#items h3.item__title__box {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 7vw;
  }
  section#items .title__box .item__name h3 {
    font-size: 2.8vw;
  }
  section#items .item__title__box p {
    padding: 7px 0 0;
    border: 0;
    margin: 0;
  }
  .shiyo__wrap {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
@media (max-width: 600px) {
  section#items .title__box .item__name {
    padding-left: 10px;
  }
  section#items .title__box .item__name h2 {
    font-size: 8.7vw;
  }
  section#items .title__box .item__name h3 {
    font-size: 3.5vw;
  }
  section#items .title__box .gaikei p {
    font-size: 2.8vw;
    padding: 12% 0 5%;
  }
  section#items .title__box .gaikei h4 {
    font-size: 5.7vw;
  }
  section#items .title__box .gaikei h4 span {
    font-size: 3vw;
  }
  section#items .title__box .gaikei {
    width: 19vw;
    height: auto;
    aspect-ratio: 3/2.2;
  }
}
@media (max-width: 400px) {
  section#items .title__box .gaikei {
    border: 1px solid #333;
  }
}


/* company */
section#company {
  text-align: center;
}
section#company .logom {
  width: 200px;
  height: auto;
  margin: 0 auto 1.5em;
}
section#company p {
  text-align: left;
  font-size: 15px;
  font-weight: 500;
}

section#company .about h2{
  font-size: 21px;
  font-weight: 500;
  padding: 1em 0 .5em;
}
section#company .about p {
  text-align: center;
}
section#company .about h3{
  font-size: 20px;
  font-weight: 500;
  padding: .5em 0 .5em;
}
section#company .about .vision__product {
  margin: 2em auto;
 
  background-color: #fafafa;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f7f7f7 calc(100% - 1px)),
                    linear-gradient(90deg, transparent calc(100% - 1px), #f7f7f7 calc(100% - 1px));
  background-size: 10px 10px;
  background-repeat: repeat;
  background-position: center center;
  border-radius: 8px;
  color: #333;
  padding: 1em 0;
  max-width: 840px;
  filter: drop-shadow(4px 4px 2px rgba(0,0,0,.08));
}
section#company .about .vision__product p.concept {
  text-align: center;
  font-weight: 300;
  font-size: 18px;
  line-height: 2.1;
  padding-bottom: 1.2em;
}
section#company .about .vision__product p{
  padding: 0 4em;
  line-height: 2;
  text-align: justify;
}
section#company .about .vision__product img {
  width: 120px;
  margin: 1.5em auto 1em;
}

@media (max-width: 680px) {
  section#company .about .vision__product p.concept {
    font-size: 15px;
  }
  section#company .about .vision__product p {
    padding: 0 2em;
  }
}

section#company .summary {
  margin: 3em auto;
  max-width: 840px;
  padding: 1em;
}
section#company .summary h2 {
  font-size: 21px;
  font-weight: 500;
  padding: 2em 0 .5em;
}
section#company .summary dl {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  line-height: 2;
}
section#company .summary dl dt {
  width: 24%;
  margin-right: 1%;
  font-weight: 500;
  padding: 1em 0 1em 1em;
  text-align: left;
  line-height: 1.7;
  border-top: 3px solid #999;
}
section#company .summary dl dd {
  width: 75%;
  line-height: 1.7;
  border-top: 2px solid #ccc;
  text-align: left;
  padding: 1em 0 1em 1em;
}
section#company .summary dl dd .jigyo {
  list-style: disc;
  padding-left: 1em;
  line-height: 1.6;
}
section#company .summary dl dd dl.name {
  flex-wrap: wrap;
}
section#company .summary dl dd dl.name dt{
  border: 0;
  padding: .2em 0;
  width: 145px;
  white-space: nowrap;
}
section#company .summary dl dd dl.name dd {
  border: 0;
  width: auto;
  padding: .2em 0;
  white-space: nowrap;
}
section#company .summary dl dd ul.panf{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
section#company .summary dl dd ul.panf a {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  padding: .7em 1em;
  margin: 0 1em 1em 0;
  border: 1px solid #a1803b;
  color: #6d531c;
  border-radius: 4px;
  font-size: 12px;
  transition: all .3s;
}
section#company .summary dl dd ul.panf a:hover {
  background-color: #a1803b;
  color: #fff;
}
section#company .summary ul.dantai {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
section#company .summary ul.dantai a {
  font-size: 13px;
  padding: .5em 1em .5em;
  margin: 0 1em 1em;
  color: #6d531c;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #a1803b;
  border-radius: 5px;
  transition: all .3s;
}
section#company .summary ul.dantai a:hover {
  background-color: #a1803b;
  color: #fff;
}

section#company__info {
  padding: 3em 0;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
section#company__info .form {
  width: 45%;
}
section#company__info .form h4 {
  font-size: 18px;
  font-weight: 500;  
  padding-bottom: 15px;
}
section#company__info .form p {
  line-height: 1;
  font-size: 15px;
  padding-bottom: .4em;
}
section#company__info .form p.inq {
  font-size: 14px;
  padding-top: 1em;

}
section#company__info .form p.name {
  line-height: 1;
  font-size: 15px;
  padding-bottom: .2em;
}
section#company__info .form span.hissu{
  font-size: 12px;
  color: #b86464;
  padding-top: 2em;
  padding-left: .5em;
}
section#company__info .form span{
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
}
section#company__info .address {
  width: 50%;
}
section#company__info .address h4 {
  font-size: 16px;
  font-weight: 500;
}
section#company__info .address p {
  font-size: 15px;
  padding: 10px 0;
}
section#company__info .address h3 {
  font-size: 24px;
  font-weight: 500;
}
section#company__info .address .map iframe {
  width: 100%;
  height: 570px;
}

@media (max-width: 680px) {
  section#company__info {
    flex-direction: column-reverse;
  }
  section#company__info .form {
    width: 100%;
    margin-top: 3em;
  }
  section#company__info .address {
    width: 100%;
  }
  section#company__info .address h3.tel {
    margin-bottom: 1em;
  }
}

section#example h2{
  font-size: 20px;
  font-weight: 500;
  padding-top: 20px;
}
section#example article {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 60px;
}
section#example article img {
  width: 70%;
}
section#example article .text {
  width: 27%;
}
section#example article .text h4 {
  font-size: 15px;
  font-weight: 500;
}
section#example article .text p {
  font-size: 12px;
  text-align: justify;
}

@media (max-width: 980px) {
  section#example article {
    flex-direction: column;
  }
  section#example article img {
    width: 100%;
  }
  section#example article .text {
    width: 100%;
    padding-top: 1em;
  }
}

/* page */
article#page {
  text-align: justify;
  padding-bottom: 2em;
}
article#page h3 {
  font-size:24px;
  padding: 1.5em 0 .2em;
}
article#page ul {
  list-style: disc;
  padding-left: 1.5em;
  padding-bottom: 1em;
}
article#page p {
  padding-bottom: .5em;
}
article#page a {
  color: #6d531c;
}
article#page ol {
  list-style: decimal;
  padding-left: 1.5em;
  padding-bottom: 1em;
}
section#company p.has-text-align-right {
  text-align: right;
}

/* footer */
footer {
  background-color: #eee;
  margin-top: 40px;
}
footer .foot_contents {
  max-width: 1100px;
  font-weight: 500;
  margin: 0 auto;
  padding: 40px 20px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
footer .foot_logo{
  width: 210px;
  height: auto;
  margin-right: 40px;
}
footer .menu {
  width: 80%;
  padding-top: 7px;
}
footer .txt {
  font-size: 14px;
  padding-left: 5px;
}
footer ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-bottom: 5px;
  margin-bottom: 6px;
  border-bottom: 1px solid #333;
}
footer ul li {
  padding: 0 4em 0 5px;
  letter-spacing: 0.03em;
  font-size: 13px;
}

footer .copyright {
  font-size: 11px;
  max-width: 1100px;
  text-align: right;
  padding: 0 20px 5px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  footer .txt {
    font-size: clamp(12px,1vw,1.5vw);
  }
}
@media (max-width: 826px) {
  footer nav {
    display: none;
  }
  footer .foot_contents {
    flex-direction: column;
    justify-content: center;
  }
  footer .menu {
    width: 100%;
  }
}

input,
textarea {
  border: 1px solid #999;
  width: 100%;
  padding: 3px;
  height: 40px;
}
textarea {
  height: 12em;
}
section#company__info .form .pv {
  padding: 1em 0;
  font-size: 12px;
  line-height: 1.6;
}
input.wpcf7-submit {
  width: 120px;
  margin-top: 1em;
  text-align: center;
  display: flex;
  line-height: 1;
  height: 40px;
  justify-content: center;
  background-color: #eee;
}
.wpcf7-form-control {
  width: 100%;
  display: inline-block;
}
.wpcf7-list-item {
  margin: 0;
}
.wpcf7-acceptance label input {
  width: auto;
  height: auto;
}

/* cookie */
.cookie-consent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  font-size: 12px;
  color: #fff;
  background: #a1803b;
  padding: 1.2em;
  box-sizing: border-box;
  z-index: 100;
  visibility: hidden;
}
.cookie-consent.is-show {
  visibility: visible;
}
.cookie-consent a {
  color: #fff !important;
}
.cookie-consent .cookie-text a{
  border-bottom: 1px solid #fff;
  margin-left: .5em;
}
.cookie-agree {
  color: #fff;
  background: #999;
  padding: .5em 1.5em;
  white-space: nowrap;
  border-radius: 4px;
  font-weight: 700;
}
.cookie-agree:hover {
  cursor: pointer;
}
.cc-hide {
  animation: hide .5s linear 0s;
  animation-fill-mode: forwards;
}
@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
/* メディアクエリ */
@media screen and (max-width: 600px) {
  .cookie-consent {
    flex-direction: column;
  }
  .cookie-text {
    margin-bottom: 1em;
  }
}

/*fade*/
.fdup {
  transform: translate(0, 40px);
  transition: all 700ms;
  opacity: 0;
}

.fdup.effect {
  opacity: 1;
  transform: translate(0, 0);
}