*: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: 'noto';
  src: url('../font/NotoSansJP-Light.woff2') format('woff');
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'noto';
  src: url('../font/NotoSansJP-Regular.woff2') format('woff');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'noto';
  src: url('../font/NotoSansJP-Medium.woff2') format('woff');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'noto';
  src: url('../font/NotoSansJP-Bold.woff2') format('woff');
  font-weight: bold;
  font-display: swap;
}

@font-face {
  font-family: 'oswald';
  src: url('../font/Oswald-Light.woff2') format('woff');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'hind';
  src: url('../font/Hind-SemiBold.woff2') format('woff');
  font-display: swap;
}

body {
  background-color: #fff;
  color: #333;
  font-family: 'noto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  font-style: normal;
  line-height: 1.85;
}
#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;
}
header > * {
  transition: all .3s;
}
header h1,
header .headlogo {
  margin: 10px 0 0 30px;
  width:200px;
  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: #333;
  font-size: 14px;
  font-weight: 400;
  padding: 5px 1.5em 5px 2.5em;
  transition: all .8s;
}
header nav a:hover {
  color: #0077c2;
}
header nav .down {
  position: relative;
  cursor: pointer;
}
header nav .down a{
  display: flex;
  align-items: center;
  transition: all .4s;
}
header nav .down .child a:hover {
  color: #333;
  background-color: #efefef;
}
header nav .down a img{
  height: 14px;
  margin-left: .3em;
  width: auto;
}
header nav .child {
display: none;
flex-direction: column;
position: absolute;
height: auto;
transition: all .4s;
background-color: #fff;
padding-top: 20px;
width: 350px;
left: -50px;
transition: all .4s;
opacity: 0;
}
header nav .child.show {
  display: block;
  opacity: 1;
}
header nav .child a{
display: flex;
align-items: stretch;
padding: 20px 1em 25px;
}
header nav .child a img{
object-fit: contain;
object-position: center center;
width: 80px;
height: 30px;
margin-right: 15px;
margin-left: 10px;
}
header#page,
header.fixed {
  background-color: #fff;
  color: #333;
  filter: drop-shadow(0 0 6px rgba(0,0,0,.1));
  margin: 0;
  padding: 0;
}
header.fixed h1,
header .headlogo {
  width: 180px;
}

@media (max-width: 860px) {
  header nav .down a img{
    display: none;
  }
  header nav a{
    color: #013879;
  }
  header nav .down {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  header nav .down a {
    color: #999;
    padding: 0;
  } 
  header nav .child {
    display: block;
    position: relative;
    height: auto;
    padding-top: 0;
    padding-bottom: 20px;
    width: auto;
    left: auto;
    opacity: 1;
    transition: all 0s;
  }
  header nav .child.show {
    display: block;
    opacity: 1;
  }
  header nav .child a{
    display: flex;
    align-items: stretch;
    padding: 0;
    color: #013879;
  }
  header nav .child a img{
    display: none;
  }
}

/* toggle menu */

#nav_toggle {
  display: none;
  position: absolute;
  right: 13px;
  top: 10px;
  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: 11px;
}

#nav_toggle span:nth-child(3) {
  top: 23px;
}


@media (max-width: 860px) {
  header h1,
  header .headlogo {
    width: 180px;
  }

  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));
  }
}




/* vi */
.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;
  }
}

/* top */
.vi {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.vi .concept {
  width: 50%;
  font-family: 'hind', Arial, Helvetica, sans-serif;
}
.vi .img {
  width: 50%;
  padding: 40px 0 40px;
}
.vi .img img {
  max-height: 900px;
  object-fit: contain;
  object-position: center left;
  margin-left: 50px;
}
.vi .concept h2 {
  text-align: left;
  padding: 30vh 0 10px 15vw;
  color: #00479d;
  font-size: clamp(20px, 4vw, 65px);
  letter-spacing: 0.07em;
  white-space: nowrap;
}
.vi .concept h3 {
  text-align: left;
  padding: 30px 0 30px 15vw;
  color: #00479d;
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 1050px) {
.vi .concept h2 {
  padding: 20vh 0 10px 15vw;
}
}
@media (max-width: 800px) {
.vi .concept h2 {
  padding: 20vw 0 10px 10vw;
}
.vi .concept h3 {
  padding: 30px 0 30px 10vw;
}
}
@media (max-width: 600px) {
.vi {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.vi .img {
  width: 100%;
  padding: 0 0 40px;
}
.vi .concept {
  width: 100%;
}
.vi .concept h2 {
  padding: 40vw 0 10px 10vw;
  font-size: clamp(20px, 7.6vw, 65px);
}
.vi .concept h3 {
  padding: 30px 0 30px 10vw;
}
.vi .img img {
  max-height: 400px;
  width: 100%;
  object-fit: contain;
  object-position: top center;
  margin-left: 0px;
}
}
h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  color: #333;
  line-height: 1.45;
  padding: 1.5em 0 .3em;
}

section#news {
  margin: 0 auto;
  max-width: 1200px;
  padding: 30px 20px 110px;
}

section#news .lead {
  text-align: center;
  font-size:15px;
}

section#news ul {
  margin: 2em auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

section#news ul li {
  width: 30%;
  background-color: #fff;
  filter: drop-shadow(3px 3px 5px rgba(25,97,118,.2));
  padding: 12px;
}
section#news ul li img {
  width: 100%;
  aspect-ratio: 6/5;
  object-fit: cover;
  object-position: center center;
}
section#news ul li time {
  font-size:13px;
  padding: 0;
}
section#news ul li h3 {
  font-size: 16px;
  padding: 0 0 .5em;
  font-weight: 500;
  line-height: 1.65;
}
a.btn {
  width: 260px;
  height: 60px;
  line-height: 1;
  background-color: #00479d;
  margin: 4em auto 0;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  padding-right: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/arr.svg);
  background-size: 60px auto;
  background-repeat: no-repeat;
  background-position: 165px center;
  filter: drop-shadow(3px 3px 4px rgba(25,97,118,.3));
  transition: all .4s;
}
a.btn:hover {
  opacity: .8;
}

@media (max-width: 600px) {
  section#news ul {
    flex-direction: column;
    align-items: center;
  }
  section#news ul li {
    width: 100%;
    margin-bottom: 30px;
  }
}


section#top_product {
  margin: 0 auto;
  padding: 30px 20px;
  background-color: #013879;
  background-image: linear-gradient(45deg, rgba(1, 56, 121, 1), rgba(0, 128, 204, 1));
}

section#top_product .wrap_top_product {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  max-width: 1200px;
  padding: 30px 20px;
  margin: 0 auto;
}

section#top_product .wrap_top_product article{
  background-color: #fff;
  width: 48%;
  flex-shrink: 0;
  position: relative;
  padding:0 0 80px;
}
section#top_product .wrap_top_product .crown {
  background-image: linear-gradient(90deg, rgba(68, 57, 31, 1), rgba(185, 139, 2, 1));
  color: #fff;
  text-align: center;
}
section#top_product .wrap_top_product .crown h2{
  background-color: #fff;
  text-align: center;
  padding: 15px 0 15px;
  margin: 0;
  width: 100%;
  height: 130px;  
}
section#top_product .wrap_top_product .crown h4 {
  font-size: clamp(12px,1.65vw,18px);
  padding: 15px 1em 0;
}
section#top_product .wrap_top_product .crown h3 {
  font-size: clamp(22px,3.5vw,38px);
  padding: 0 .8em 0;
}
section#top_product .wrap_top_product .crown img {
  padding: 10px 30px;
}
section#top_product .wrap_top_product .gripper .btn,
section#top_product .wrap_top_product .crown .btn {
  background-color: #fff;
  margin: 0;
  font-size: 16px;
  height: 50px;
  border-radius: 25px;
  width: 240px;
  color: #333;
  background-position: 145px center;
  background-image: url(../images/arr_black.svg);
  position: absolute;
  bottom:25px;
  left:calc(50% - 120px);
  filter: none;
}
section#top_product .wrap_top_product .gripper .btn {
  background-color: #aaa;
  color: #fff;
  background-image: url(../images/arr.svg);
}

section#top_product .wrap_top_product .gripper h2{
  height: 125px;
  padding: 20px 0 15px;
  margin: 0;
  text-align: center;
}
section#top_product .wrap_top_product .gripper h4 {
  font-size: clamp(12px,1.25vw,17px);
  text-align: center;
  padding: 5px 1em 20px;
}
section#top_product .wrap_top_product .gripper img {
  padding: 0 30px 10px;
}
section#top_product .lib {
  max-width: 1140px;
  padding: 0;
  margin: 0 auto;
  transition: all .4s;
  cursor: pointer;
}
section#top_product .lib:hover {
  background-color: #b9cfdf;
}
section#top_product .lib a {
  padding: 20px;
  display: flex;
  align-items: center;
}
section#top_product .lib a h2 {
  width: 280px;
  flex-shrink: 0;
  font-size: 24px;
  padding: 0 1em;
}
section#top_product .lib a p {
  font-size: 17px;
  letter-spacing: 0.05em;
  line-height: 2;
  padding: 0;
}
section#top_product .lib a .lib_arr {
  width: 160px;
  padding: 0 40px;
  flex-shrink: 0;
}

@media (max-width: 1250px) {
  section#top_product .lib{
    margin: 0 30px;
  }
}

@media (max-width: 900px) {
section#top_product .lib a{
  flex-wrap: wrap;
  padding: 10px 2em 2em;
  justify-content: flex-end;
}
section#top_product .lib a h2{
  width: 100%;
  padding: 1em 1em .5em;
  font-size: 20px;
}
section#top_product .lib a .lib_arr {
  padding: 0;
  width: 100px;
}
}

@media (max-width: 690px) {
  section#top_product .wrap_top_product {
    flex-direction: column;
    align-items: center;
  }
  section#top_product .wrap_top_product article {
    width: 100%;
    margin-bottom: 30px;
  }
    section#top_product .lib{
    margin: 0 20px;
  }
}


section#company {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
section#company h2{
  padding: 3em 0 2em;
  font-size: 26px;
}
section#company article {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}
section#company article div{
  width: 48%;
  flex-shrink: 0;
  filter: drop-shadow(5px 5px 4px rgba(25,97,118,.15));
  padding: 25px 25px;
  position: relative;
}
section#company article .recruit{
  background-image: linear-gradient(180deg, rgba(229, 240, 248, 1), rgba(255, 255, 255, 1));
}
section#company article .business{
  background-image: linear-gradient(0deg, rgba(229, 240, 248, 1), rgba(255, 255, 255, 1));
}
section#company article div > * {
  background-color: #fff;
}
section#company article div .wrap_top_comp {
  position: relative;
  width: 100%;
  height: 100%;
  filter: none;
  padding: 0 1.8em 100px;
}

section#company article div h3 {
  font-size: 24px;
  font-weight: bold;
  color: #00579d;
  text-align: center;
  padding: 30px 1em 20px;
}
section#company article div h3 span {
  font-size:12px;
  display: block;
}
section#company article .recruit h4 {
  font-size: 23px;
  font-weight: 600;
  padding: 0 .5em 1em;
  text-align: left;
}
section#company article div p {
  font-size: 18px;
  padding: 0 .5em 1em;
}
section#company article div a.btn_top {
  width: calc(100% - 50px);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #00579d;
  font-size: 22px;
  font-weight: bold;
  background-image: url(../images/arr_blue.svg);
  background-position: 92% center;
  background-size: 60px auto;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 25px;
  left: 25px;
  transition: all .4s;
}
section#company article div a.btn_top:hover {
  color: #b9cfdf;
}
section#company article .business h4 {
  font-size: 16px;
  font-weight: 600;
  padding: 0 .5em 1em 1em;
  text-align: left;
  display: flex;
  align-items: flex-start;
}
section#company article .business h4 span {
  font-family: 'oswald', Arial, Helvetica, sans-serif;
  color: #00479d;
  font-size: 30px;
  font-style: italic;
  flex-shrink: 0;
  line-height: 1.2;
  padding-right: 25px;
}

@media (max-width: 1050px) {
  section#company article.top_company {
    padding: 20px 20px 70px;
  }
}
@media (max-width: 830px) {
  section#company {
    padding: 0 10px;
  }
  section#company article.top_company {
    padding: 0 20px 70px;
  }
  section#company article {
    flex-direction: column;
    align-items: center;
  }
  section#company article div {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media (max-width: 540px) {
  section#company article .recruit h4 {
    font-size: 4vw;
  }
  section#company article div p {
    font-size: 3.5vw;
  }
  section#company article div a.btn_top {
    font-size: 3.6vw;
  }
  section#company article .business h4 {
    font-size: 3.5vw;
  }
  section#company article .business h4 span {
    font-size: 5vw;
  }
  section#company article.top_company {
    padding: 0;
  }
}
@media (max-width: 480px) {
  section#company article div a.btn_top {
    background-image: none;
  }
}

/* page */
main#page {
  background-image: linear-gradient(180deg, rgb(226, 243, 255), rgba(255, 255, 255, 1));
}
main#page .page_background{
  background-image: url(../images/page_bg.webp);
  background-position: left top;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
main#page .pagetitle{
  max-width: 1200px;
  padding: 130px 20px 5px;
  color: #fff;
  margin: 0 auto;
}
main#page .pagetitle p {
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  padding-left: .1em;
}
main#page .pagetitle h1 {
  font-size: 30px;
  line-height: 1.25;
  font-weight: bold;
  padding:0;
  padding-bottom: .5em;
}
main#page .pagetitle ul {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
main#page .pagetitle ul li {
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: 1px solid #fff;
  font-size:16px;
  padding: .7em 1em;
  margin-right: 1.2em;
  margin-bottom: 15px;
}
main#page .pagetitle ul li:last-child {
  margin-right: 0;
}
section article {
  max-width: 1200px;
  padding: 20px 70px 70px;
  margin: 0 auto 25px;
  letter-spacing: 0.08em;
  line-height: 2;
  background-color: #fff;
  filter: drop-shadow(5px 5px 4px rgba(25,97,118,.15));
}
section#company article.top_company {
  filter: none;
}

@media (max-width: 1540px) {
  main#page .page_background {
    background-size: 100% 600px;
}
}
@media (max-width: 1200px) {
  main#page .page_background {
    background-image: none;
}
  main#page .pagetitle.top{
    background-image: url(../images/page_bg.webp);
    background-position: left top;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media (max-width: 480px) {
  main#page .pagetitle h1 {
    font-size: clamp(21px, 5vw, 30px);
  }
}

/* page crown */

section#crown_outline h2{
  max-width: 600px;
  padding: 30px 1.5em;
  margin: 0 auto;
}
section#crown_outline .outline_lead{
  font-size: 17px;
  padding: 15px 0;
  text-align: justify;
}
section#crown_outline hr.bar {
  border-top: 1px solid #999;
  margin: 0 auto;
  max-width: 400px;
  margin-top: 40px;
}
section#crown_outline .outline_komidashi{
  font-size: 20px;
  font-weight: 500;
  line-height: 2.5;
  padding: 40px 0 30px;
  text-align: center;
}

section#crown_outline .summary__box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 120px;
}
section#crown_outline .summary__box div {
  width: 47%;
}
section#crown_outline .summary__box div h3 {
  font-weight: 400;
  font-size: 40px;
  text-align: center;
  display: flex;
  justify-content: space-between;
}
section#crown_outline .summary__box div h3::before {
  content: '[';
}
section#crown_outline .summary__box div h3::after {
  content: ']';
}
section#crown_outline .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;
}
section#crown_outline .summary__box div p {
  font-weight: 500;
  font-size: 15px;
  padding-bottom: 15px;
}
section#crown_outline .summary__box div p span.big {
  font-size: 24px;
}
section#crown_outline .summary__box div p span.mini {
  font-size: 13px;
}

section#crown_outline h3.line_title {
  background-color: #0077c2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  line-height: 1.2;
  font-size: 24px;
  font-weight: 600;
  padding: 0 1em;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 10px;
}
section#crown_outline ul {
  display: flex;
  align-items: flex-start;
  justify-content: space-between
}
section#crown_outline ul li {
  width: 30%;
}
section#crown_outline ul li h5 {
  font-size: 19px;
  padding: 50px 0 30px;
  text-align: center;
}
section#crown_outline ul li img {
  height: 225px;
  width: 98%;
  margin:0 auto;
  object-fit: contain;
  object-position: center center;
}
section#crown_outline ul li p {
  font-size: 14px;
  padding: 10px 0;
  text-align: left;
  text-align: justify;
  line-height: 1.9;
}

@media (max-width: 960px) {
  section article {
    padding: 20px 30px 70px;
  }
}
@media (max-width: 860px) {
  section#crown_outline .summary__box {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }
  section#crown_outline .summary__box div {
    width: 100%;
    margin-bottom: 30px;
  }
  section#crown_outline h3.line_title {
    font-size: 20px;
    padding: .5em 1em;
    height: auto;
  }
  section#crown_outline h2{
    padding: 30px 1em;
  }
}
@media (max-width: 580px) {
  section#crown_outline ul {
    flex-direction: column;
    align-items: center;
  }
  section#crown_outline ul li {
    width: 100%;
    margin-bottom: 30px;
  }
}



/* tech crown */
main#page section#tech_crown .pagetitle,
main#page section#tech_cam .pagetitle{
  color: #333;
  text-align: left;
  padding: 80px 20px 15px;
}
main#page section#tech_crown .pagetitle p,
main#page section#tech_cam .pagetitle p{
  padding: 10px 0 0;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.7;
}
main#page section#tech_crown .pagetitle h2,
main#page section#tech_cam .pagetitle h2{
  padding: 10px 0 0;
  font-size: 37px;
  text-align: left;
  font-weight: 600;
}
main#page section#tech_crown .tech_lead {
  color:#947e32;
  font-size: 30px;
  text-align: center;
  padding: 20px 1em;
}
main#page section#tech_crown .tech_img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  object-position: center center;
  padding: 0 2em;
  margin: 0 auto;
}

main#page section#tech_crown h3.genri {
  color:#333;
  text-align: center;
  font-size:30px;
  font-weight: 500;
  padding: 2em 0 .5em;
}
main#page section#tech_crown .genri__flow div {
  width: 27%;
}
main#page section#tech_crown .genri__flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 4em;
}
main#page section#tech_crown .genri__flow h4 {
  font-size: 40px;
  color: #947e32;
  text-align: center;
  font-family: 'zenmin';
}
main#page section#tech_crown .genri__flow p {
  font-size: 15px;
  text-align: justify;
  line-height: 2.2;
}
main#page section#tech_crown .genri__flow img {
  width: 20px;
  padding-top: 95px;
}
.wrap_brochure {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.wrap_brochure a {
  background-color: #275069;
  color:#fff;
  padding: 10px 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.6;
  font-size:17px;
  font-weight: 500;
  margin: 30px 10px 0;
  height: 80px;
  width: 340px;
  border-radius: 8px;
  filter: drop-shadow(5px 5px 4px rgba(25,97,118,.15));
  transition: all .4s;
}
.wrap_brochure a:first-child img{
  width: 40px;
  margin-left: 2em;
}
.wrap_brochure a:last-child img{
  width: 50px;
  margin-left: 1em;
}
.wrap_brochure a:hover {
  opacity: .8;
}
.yt {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.yt iframe {
  width: 100%;
  height: 100%;
  pointer-events: none;
}


@media (max-width: 880px) {
  #tech_crown h3.genri {
    font-size: clamp(18px, 5vw, 5vw);
  }
  #tech_crown .genri__flow p {
    font-size:13px
  }
}

@media (max-width: 520px) {
  .genri__flow {
    flex-direction: column;
  }
  main#page section#tech_crown .genri__flow div {
    width: 100%;
  }
  main#page section#tech_crown .genri__flow img {
    transform: rotate(90deg);
    padding: 0;
    margin: 0 auto;
  }
  .wrap_brochure a {
    font-size: 3.3vw;
  }
}


/* page gripper */
section#gripper h2 img {
  max-width: 400px;
  margin: 0 auto;
  padding: 0 1em 0;
}
section#gripper .outline_lead {
  text-align: center;
  font-size: 20px;
  padding: .8em 1em 3em;
  font-weight: 500;
}
section#gripper .summary__box {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
section#gripper .summary__box .text h4{
  border-left: 8px solid #0077c2;
  line-height: 1.3;
  font-size: 18px;
  font-weight: 600;
  padding: 0 0 0 1em;
  margin: 0 0 .7em;
}
section#gripper .summary__box .text p {
  font-size:16px;
  padding-bottom: 2.5em;
}
section#gripper .summary__box img {
  width: 45%;
  flex-shrink: 0;
  margin-left: 3%;
}

section#gripper hr.bar {
  border-top: 1px solid #999;
  width: 400px;
  margin: 70px auto 50px;
}
section#gripper h4.outline_komidashi {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  line-height: 2;
  padding: 0 1em 2em;
}
section#gripper .img_outline,
section#gripper .zu_outline {
  padding: 10px 1em;
}
section#gripper .wrap_wk {
  background-color: #efebe9;
  padding: 20px 25px 0;
}
section#gripper .wrap_wk h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
section#gripper .wrap_wk h4 span {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 .5em;
  height: 29px;
  border: 1px solid #333;
  border-radius: 3px;
  line-height: 1;
  margin-left: 1em;
}
section#gripper .wrap_wk ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
section#gripper .wrap_wk ul li {
  padding: 15px 8px;
}
section#gripper h3.tokucho_title {
  background-color: #0077c2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.45;
  font-size: 24px;
  font-weight: 600;
  padding: .8em 1em;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 10px;
}
section#gripper .wrap_tokucho1,
section#gripper .wrap_tokucho2 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 30px 0 40px;
}
section#gripper .wrap_tokucho1 h3,
section#gripper .wrap_tokucho2 h3 {
  color: #275069;
  font-size: 19px;
  font-weight: 600;
}
section#gripper .img_flow img {
  width: 30%;
  margin-right: 3%;
}
section#gripper .wrap_tokucho1 p,
section#gripper .wrap_tokucho2 p{
  padding: .5em 0 1.5em;
  font-size: 15px;
}
section#gripper .img_flow {
  display: flex;
  align-items: flex-start;
  padding: 10px 15px 0 0;
}
section#gripper .wrap_tokucho1 .tokucho_table {
  width: 27%;
  padding-left: 10px;
  flex-shrink: 0;
}
section#gripper .wrap_tokucho2 .left {
  width: 46%;
}
section#gripper .wrap_tokucho2 .right {
  width: 46%;
}
section#gripper .wrap_option {
  padding: 20px 0;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
section#gripper .wrap_option div {
  text-align: center;
}
section#gripper .wrap_option div img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
section#gripper .wrap_option div:nth-child(2) {
  margin: 0 10px;
}
section#gripper .wrap_option p {
  text-align: center;
  font-size: 13px;
  padding: 0 0 .5em;
  line-height:1.2;
}
section#gripper h3.siyo_title {
  text-align: center;
  padding: 40px 1em 20px;
  font-size: 22px;
  font-weight: 500;
}
section#gripper .wrap_siyo {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
section#gripper .wrap_siyo .left {
  width: 48%;
}
section#gripper .wrap_siyo .right {
  width: 48%;
}
section#gripper .wrap_siyo .siyolist{
  display: flex;
  align-items: stretch;
  width: 100%;
}
section#gripper .wrap_siyo .siyo_wrap{
  width: 100%;
}
section#gripper .wrap_siyo .siyolist p{
  background-color: #efebe9;
  margin-right: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  padding: 0 1em;
  flex-shrink: 0;
}
section#gripper .wrap_siyo .siyolist dl{
  display: flex;
  align-items: stretch;
  width: 100%;
  font-size: 14px;
}
section#gripper .wrap_siyo .siyolist dt{
  width: 65%;
  background-color: #f7f5f4;
  padding: 3px 3em 3px 1em;
  margin-right: 2px;
  margin-bottom: 2px;
  white-space: nowrap;
}
section#gripper .wrap_siyo .siyolist dd{
  width: 35%;
  background-color: #f7f5f4;
  padding: 3px 1em;
  margin-bottom: 2px;
}
section#gripper h4.yogo_title {
  font-size:18px;
  font-weight: 500;
  padding: 20px 0 10px;
}
section#gripper .siyo_wrap_yogo {
  width: 100%;
}
section#gripper .siyo_wrap_yogo dl{
  display: flex;
  align-items: stretch;
  font-size: 14px;
}
section#gripper .siyo_wrap_yogo dl dt{
  width: 220px;
  background-color: #efebe9;
  padding: 3px 2em 3px 1em;
  margin-right: 2px;
  margin-bottom: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}
section#gripper .siyo_wrap_yogo dl dd{
  width: 100%;
  background-color: #f7f5f4;
  padding: 3px 1em;
  margin-bottom: 2px;
}

@media (max-width: 1100px) {
  section#gripper .wrap_wk h4 {
    flex-direction: column;
  }
  section#gripper .wrap_wk h4 span {
    margin: .8em auto;
  }
}
@media (max-width: 940px) {
  section#gripper .wrap_wk ul {
    flex-wrap: wrap;
  }
  section#gripper .wrap_wk ul img{
    max-width: 180px;
  }
  section#gripper .wrap_siyo {
    flex-direction: column;
  }
  section#gripper .wrap_siyo .left,
  section#gripper .wrap_siyo .right {
    width: 100%;
    margin-bottom: 1em;
  }
}
@media (max-width: 840px) {
  section#gripper .siyo_wrap_yogo dl dt,
  section#gripper .siyo_wrap_yogo dl dd,
  section#gripper .wrap_siyo .siyolist dt,
  section#gripper .wrap_siyo .siyolist dd {
    width: auto;
  }
  section#gripper .siyo_wrap_yogo dl dd {
    background-color: transparent;
  }
  section#gripper .wrap_siyo .siyolist {
    background-color: #f7f5f4;
  }
}
@media (max-width: 720px) {
  section#gripper .summary__box {
    flex-direction: column;
  }
  section#gripper .summary__box div{
    width: 100%;
  }
  section#gripper .summary__box img{
    width: 100%;
    max-width: 400px;
    margin-left: 0;
  }
  section#gripper .wrap_tokucho1,
  section#gripper .wrap_tokucho2 {
    flex-direction: column;
  }
  section#gripper .wrap_tokucho1 div,
  section#gripper .wrap_tokucho2 .left,
  section#gripper .wrap_tokucho2 .right{
    width: 100%;
  }
  section#gripper .wrap_tokucho2 .left {
    padding-bottom: 2em;
  }
  section#gripper .wrap_tokucho1 .tokucho_table {
    width: 100%;
    margin: 2em auto 0 0;
    max-width: 330px;
  }
   section#gripper .wrap_tokucho2 .left img,
   section#gripper .wrap_tokucho2 .right img {
    width: 100%;
    margin: 1em auto 0;
    max-width: 400px;
   }
}
@media (max-width: 520px) {
  section#gripper .wrap_siyo .siyolist {
    flex-direction: column;
  }
  section#gripper .wrap_siyo .siyolist dl {
    flex-wrap: wrap;
    border-bottom: 2px solid #fff;
  }
  section#gripper .wrap_siyo .siyolist dt {
    white-space: normal;
  }
  section#gripper .siyo_wrap_yogo dl {
    flex-direction: column;
    margin-bottom: .8em;
  }
}


/* tech_cam */
section#tech_cam article h2{
  font-size:30px;
  font-weight: 500;
  padding: 30px 0 35px;
  line-height: 1.2;
}
section#tech_cam article .tech_cam_tokucho_wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
section#tech_cam article .tech_cam_tokucho_wrap .tokucho {
  display: flex;
  align-items: stretch;
  width: 47%;
}
section#tech_cam article .tech_cam_tokucho_wrap .tokucho h4{
  background-color: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  width: 55px;
  height: 45px;
  flex-shrink: 0;
  font-size: 14px;
}
section#tech_cam article .tech_cam_tokucho_wrap .tokucho p {
  font-size: 15px;
  padding: 0 0 0 10px;
  line-height: 1.45;
}
section#tech_cam article .tech_cam_tokucho_wrap .tokkyo {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 42%;
  border: 1px solid #999;
  border-radius: 4px;
}
section#tech_cam article .tech_cam_tokucho_wrap .tokkyo p{
  font-size:12px;
  line-height: 1.5;
  padding: 5px .8em;
}

section#tech_cam .tech_cam_tokucho_img {
  margin: 60px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
section#tech_cam .tech_cam_tokucho_img img {
  width: 50%;
}
section#tech_cam .tech_cam_tokucho_img img:first-child {
  width: 43%;
}
section#tech_cam h5 {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  height:45px;
  width: 150px;
  background-color: #333;
  color:#fff;
  font-size:15px;
  font-weight: 500;
  padding: 8px 0;
  margin: 30px 0 20px;
}

section#tech_cam .tech_cam_dosa_img {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
section#tech_cam .tech_cam_dosa_img .tech_img_p3 {
  max-width: 600px;
  width: 100%;
  margin-right: 20px;
}
section#tech_cam .tech_cam_dosa_img .tech_img_p4 {
  max-width: 320px;
  width: 100%;
}
section#tech_cam .tech_cam_dosa_img .tech_cam_dosa_p p{
  font-size: 13px;
  text-align: center;
  line-height: 1.2;
}

@media (max-width: 1050px) {
  section#tech_cam .tech_cam_dosa_img {
    flex-direction: column;
    align-items: flex-start;
  }
  section#tech_cam .tech_cam_dosa_img .tech_img_p3 {
    margin-right: 0;
    margin-bottom: 2em;
  }
}
@media (max-width: 600px) {
  section#tech_cam article .tech_cam_tokucho_wrap {
    flex-direction: column;
  }
  section#tech_cam article .tech_cam_tokucho_wrap .tokucho,
  section#tech_cam article .tech_cam_tokucho_wrap .tokkyo{
    width: 100%;
    margin-bottom: 1.5em;
  }
}
@media (max-width: 400px) {
  section#tech_cam .tech_cam_tokucho_img {
    flex-direction: column;
  }
  section#tech_cam .tech_cam_tokucho_img img{
    width: 100%;
  }
}





/* company */
section#company_page {
  text-align: center;
}
section#company_page .logom {
  width: 200px;
  height: auto;
  margin: 45px auto 1.5em;
}
section#company_page p {
  text-align: left;
  font-size: 15px;
  font-weight: 500;
}

section#company_page .about h2{
  font-size: 21px;
  font-weight: 500;
  padding: 1em 0 .5em;
}
section#company_page .about p {
  text-align: center;
}
section#company_page .about h3{
  font-size: 20px;
  font-weight: 500;
  padding: .5em 0 .5em;
}
section#company_page .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_page .about .vision__product p.concept {
  text-align: center;
  font-weight: 300;
  font-size: 18px;
  line-height: 2.1;
  padding-bottom: 1.2em;
}
section#company_page .about .vision__product p{
  padding: 0 4em;
  line-height: 2;
  text-align: justify;
}
section#company_page .about .vision__product img {
  width: 120px;
  margin: 1.5em auto 1em;
}

@media (max-width: 680px) {
  section#company_page .about .vision__product p.concept {
    font-size: 15px;
  }
  section#company_page .about .vision__product p {
    padding: 0 2em;
  }
}

section#company_page .summary {
  margin: 3em auto;
  max-width: 840px;
  padding: 1em;
}
section#company_page .summary h2 {
  font-size: 21px;
  font-weight: 500;
  padding: 2em 0 .5em;
}
section#company_page .ceo {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 2em auto;
  max-width: 840px;
  padding: 1em;
}
section#company_page .ceo h2 {
  font-size: 14px;
  width: 100%;
  font-weight: 500;
  padding: 0 0 .8em;
  margin: 0;
}
section#company_page .ceo .text {
  width: 76%;
  line-height: 1.8;
}
section#company_page .ceo .text p {
  padding-bottom: 1.5em;
  letter-spacing: 0.03em;
  font-size:13px;
  font-weight: 300;
  text-align: justify;
}
section#company_page .ceo .img {
  width: 20%;
  font-weight: 300;
}
section#company_page .ceo .img img {
  object-fit: cover;
  object-position: center;
  aspect-ratio: 5/4;
  width: 100%;
  padding-top: .5em;
}
section#company_page .ceo .img p{
  padding: 0;
  line-height: 1.4;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  font-weight: 400;
}

section#company_page .summary dl {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  line-height: 2;
}
section#company_page .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_page .summary dl dd {
  width: 75%;
  line-height: 1.7;
  border-top: 2px solid #ccc;
  text-align: left;
  padding: 1em 0 1em 1em;
}
section#company_page .summary dl dd .jigyo {
  list-style: disc;
  padding-left: 1em;
  line-height: 1.6;
}
section#company_page .summary dl dd dl.name {
  flex-wrap: wrap;
}
section#company_page .summary dl dd dl.name dt{
  border: 0;
  padding: .2em 0;
  width: 145px;
  white-space: nowrap;
}
section#company_page .summary dl dd dl.name dd {
  border: 0;
  width: auto;
  padding: .2em 0;
  white-space: nowrap;
}
section#company_page .summary dl dd ul.panf{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
section#company_page .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 #0077c2;
  color: #00479d;
  border-radius: 4px;
  font-size: 12px;
  transition: all .3s;
}
section#company_page .summary dl dd ul.panf a:hover {
  background-color: #0077c2;
  color: #fff;
}
section#company_page .summary ul.dantai {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
section#company_page .summary ul.dantai a {
  font-size: 13px;
  padding: .5em 1em .5em;
  margin: 0 1em 1em;
  color: #00479d;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #0077c2;
  border-radius: 5px;
  transition: all .3s;
}
section#company_page .summary ul.dantai a:hover {
  background-color: #0077c2;
  color: #fff;
}

section#company_page__info {
  padding: 3em 0;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
section#company_page__info .form {
  width: 45%;
}
section#company_page__info .form h4 {
  font-size: 18px;
  font-weight: 500;  
  padding-bottom: 15px;
}
section#company_page__info .form p {
  line-height: 1;
  font-size: 15px;
  padding-bottom: .4em;
}
section#company_page__info .form p.inq {
  font-size: 14px;
  padding-top: 1em;

}
section#company_page__info .form p.name {
  line-height: 1;
  font-size: 15px;
  padding-bottom: .2em;
}
section#company_page__info .form span.hissu{
  font-size: 12px;
  color: #b86464;
  padding-top: 2em;
  padding-left: .5em;
}
section#company_page__info .form span{
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
}
section#company_page__info .address {
  width: 50%;
}
section#company_page__info .address h4 {
  font-size: 16px;
  font-weight: 500;
}
section#company_page__info .address p {
  font-size: 15px;
  padding: 10px 0;
}
section#company_page__info .address h3 {
  font-size: 24px;
  font-weight: 500;
}
section#company_page__info .address .map iframe {
  width: 100%;
  height: 570px;
}

@media (max-width: 680px) {
  section#company_page__info {
    flex-direction: column-reverse;
  }
  section#company_page__info .form {
    width: 100%;
    margin-top: 3em;
  }
  section#company_page__info .address {
    width: 100%;
  }
  section#company_page__info .address h3.tel {
    margin-bottom: 1em;
  }
  section#company_page .ceo {
    flex-direction: column;
  }
  section#company_page .ceo .text {
    width: 100%;
  }
  section#company_page .ceo .img {
    width: 100%;
    max-width: 280px;
    margin: 2em auto 0;
  }
}

/* recruit */
section#company_page p {
  text-align: left;
  font-size: 14px;
  padding: 0;
  margin: 0;
}
section#company_page article a {
  color: #0077c2;
}
section#company_page p.recruit_lead {
  font-size: 17px;
}
section#company_page h3.recruit_title {
  font-size: 28px;
  font-weight: 400;
  text-align: left;
  line-height: 1.4;
  padding-top: 1.5em;
  padding-bottom: 10px;
  border-bottom: 3px solid #b9cfdf;
}
section#company_page dl.recruit {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: left;
}
section#company_page dl.recruit dt {
  width: 23%;
  font-size: 15px;
  font-weight: 500;
  padding:2em .5em;
  color: #16598b;
  border-bottom: 3px solid #b9cfdf;
}
section#company_page dl.recruit dd {
  width: 76%;
  font-size: 14px;
  border-bottom: 3px solid #dfe4e7;
  padding: 2em .5em;
}
section#company_page dl.recruit dd h4 {
  font-weight: 500;
}
section#company_page dl.recruit dd h5 {
  font-size: 13px;
  display: inline-block;
  line-height: 1.2;
  margin: 1.8em 0 .5em;
  padding: 2px 1em;
  border: 1px solid #16598b;
  color: #00479d;
  border-radius: 4px;
}
section#company_page dl.recruit dd ol,
section#company_page dl.recruit dd ul {
  padding-left: 1.7em;
  line-height: 2;
}
section#company_page dl.recruit dd ol{
  list-style: decimal;
}
section#company_page dl.recruit dd ul{
  list-style: disc;
}
section#company_page dl.recruit.last dt,
section#company_page dl.recruit.last dd{
  border-bottom: none;
}

@media (max-width: 600px) {
  section#company_page dl.recruit {
    flex-direction: column;
  }
  section#company_page dl.recruit dt {
    width: 100%;
    padding: 1em 0 0;
    border-bottom: 0;
  }
  section#company_page dl.recruit dd {
    width: 100%;
    padding: 1em 0 1em;
  }
}

/* contact */
section#company_page.contact article{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
section#company_page.contact article .form,
section#company_page.contact article .address {
  width: 48%;
  margin-top: 3em;
}
section#company_page.contact article .address iframe {
  width: 100%;
  margin-top: 1em;
  height: 510px;
}

/* product library */
section#company_page.library article{
  text-align: left;
}
section#company_page.library p{
  text-align: left;
}
section#company_page.library h4 {
  font-size: 18px;
  padding: 1em 0;
}
section#company_page.library ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 20px;
}
section#company_page.library h2 {
  margin: 2em auto 1em 0;
  display: inline-block;
  padding: .7em 1em;
  border: 1px solid #333;
  font-size: 18px;
  border-radius: 4px;
}
section#company_page.library ul li {
  padding: 0 0 40px;
}
section#company_page.library ul li img{
  width: 100%;
  aspect-ratio: 3/2.5;
  object-fit: cover;
  object-position: center center;
}
section#company_page.library ul li p {
  line-height: 1.5;
}

@media (max-width: 820px) {
  section#company_page.library ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  section#company_page.library ul {
    grid-template-columns: repeat(2, 1fr);
  }
  section#company_page.library h2 {
    font-size: 16px;
  }
  section#company_page.contact article {
    flex-direction: column-reverse;
  }
  section#company_page.contact article .form,
  section#company_page.contact article .address {
    width: 100%;
    margin-bottom: 1.5em;
  }
}

/* news */
section#company_page.library.news article {
  padding-top: 80px;
}
section#company_page.library.news ul {
  gap: 20px 50px;
}
section article.single {
  padding-top: 50px;
}
section#company_page article.single p {
  padding-bottom: 1.5em;
  line-height: 2.1;
}
section#company_page article.single a.btn {
  color: #fff;
}


/* page */
article#page {
  text-align: justify;
  padding-bottom: 2em;
}
article#page h3 {
  font-size:24px;
  padding: 1.5em 0 .2em;
  width: 100%;
}
article#page ul {
  list-style: disc;
  padding-left: 1.5em;
  padding-bottom: 1em;
}
article#page p {
  padding-bottom: .5em;
  width: 100%;
}
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;
}
article#page.document {
  padding-top: 3em;
  font-size: 14px;
}

/* footer */
footer {
  background-color: #eee;
  margin-top: 80px;
}
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.product {
  border-bottom: 0;
  margin-bottom: 0;
}
footer ul.product li:first-child {
  color: #777;
}
footer ul.product li {
  padding: 0 2em 0 5px;
}


footer ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-bottom: 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid #999;
}
footer ul li {
  padding: 0 2em 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;
}

/* pagenavi */
.wp-pagenavi {
	margin: 40px auto;
	font-size: 12px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #77a0d1;
}
.wp-pagenavi a {
    color: #77a0d1;
}
.wp-pagenavi span.current,
.wp-pagenavi a.page {
	margin: 0 10px 0 0;
	border: solid 1px #ddd;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	line-height: 40px;
	text-align: center;
	box-sizing: border-box;
	justify-content: center;
	display: flex;
	align-items: center;
	transition: .3s;
}
.wp-pagenavi span.current {
    border: none;
    background: #0077c2;
    color: #fff;
}
.wp-pagenavi a.page {
	background: none;
}
.wp-pagenavi a.page:hover {
    background: #0077c2;
    color: #fff;
}
.wp-pagenavi .first,
.wp-pagenavi .extend {
    margin-right: 10px;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
    display: none;
}
.wp-pagenavi a, .wp-pagenavi span {
    margin: 0 1.4em 0 0 !important;
    border-radius: 4px;
    padding: 10px 15px;
}

/* 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);
}