@charset "utf-8";

/* common --------------------------
------------------------------------- */
*,::before,::after {
  /* outline: 1px solid magenta; */
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:root {
	--colorMain: #f7931e;
	--colorSub1: #fbfbfb;
  --colorSub2: #fff3e6;
	--colorText: #2a1905;
	--colorAccent: #f7e51e;
}
html {
	font-size: 10px;
	scroll-behavior: smooth;
}
body {
	font-family: "Nunito", "Zen Kaku Gothic New", sans-serif;
	font-size: 1.6em;
  color: var(--colorText);
	line-height: 1;
  background-color: var(--colorSub1);
}
main {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1em;
}
section::before {
  content:'';
  display: block;
  padding-top: 120px;
  margin-top: -120px;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
a {
	color: inherit;
	text-decoration: none;
  cursor: pointer;
}
li {
  list-style: none;
}
h2 {
  font-size: 3em;
  font-family: "Lato", serif;
  text-align: center;
  margin-bottom: 30px;
}
h3 {
  display: inline-block;
  font-size: 2.5em;
  font-family: "Lato", serif;
  border-bottom: 1px solid var(--colorText);
  padding: 0 .5em 0.3px;
  margin-bottom: 30px;
}



/* fv --------------------------
------------------------------------- */
.fv {
  max-width: 1400px;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  /* justify-content: space-evenly; */
}
.fv>div {
  width: 35%;
  height: 500px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  position: relative;
}
.fv>div>div {
  display: flex;
  align-items: center;
  /* position: absolute; */
  top: 10%;
  margin-bottom: 60px;
}
.fv>div>div img {
  height: 9vw;
  padding-right: 1em;
}
.fv>div>div h1 {
  font-size: 5vw;
  font-family: "Lato", serif;
}
.fv>div>div h1 span {
  display: block;
}
.fv>div>nav {
  /* margin-top: 10vw; */
  font-size: 2.5vw;
  color: var(--colorText);
}
.fv>div>nav ul {
  display: flex;
  flex-flow: column;
}
.fv>div>nav ul li a{
  display: flex;
  justify-content: space-between;
  width: 200px;
  padding: 0 .5em;
  margin: 0 -0.5em;
}
.fv>div>nav ul li:not(:last-of-type) {
  margin-bottom: 1em;
}
.fv>div>nav ul li a img {
  display: inline-block;
}
.fv>div>nav span {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 3px;
  margin-top: 29px;
  border-radius: 9999px;
  background-color: var(--colorText);
  margin-left: 1em;
  transition: .5s;
}
.fv>div>nav span:before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 30px;
  height: 3px;
  border-radius: 9999px;
  background-color: var(--colorText);
  transform: rotate(45deg);
  transform-origin: calc(100% - 2px) 50%;
  transition: .5s;
}
.fv>div>nav ul li a{
  display: inline-block;
  width: auto;
  background: rgba(255, 255, 255, 0);
  transition: .5s;
}
.fv>div>nav ul li a:hover {
  color: var(--colorMain);
}
.fv>div>nav ul li a:hover span, 
.fv>div>nav ul li a:hover span::before{
  background-color: var(--colorMain);
}
/* .fv>div>nav ul li a{
  position: relative;
  z-index: 0;
  background: var(--colorSub1);
  display: flex;
  width: auto;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.5s;
}
.fv>div>nav ul li a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  transition: 0.5s;
  background: var(--colorSub1);
}
.fv>div>nav ul li a:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  background: var(--colorMain);
  background: linear-gradient(90deg, rgba(247, 147, 30, 1) 45%, rgba(255, 255, 255, 0));
}


.fv>div>nav ul li a:hover {
  opacity: 0;
} */


.fv figure {
  width: 65%;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}
.fv figure img {
  min-width: 100px;
  width: 13%;
  height: 50vh;
  min-height: 500px;
  object-fit: cover;
}
.fv figure img:nth-of-type(1) {
  object-position: 40% center;
}
.fv figure img:nth-of-type(2) {
  object-position: 11% center;
}
.fv figure img:nth-of-type(3) {
  object-position: 60% center;
}

/* スライドイン --------------------------
------------------------------------- */
.fv figure img {
  animation: slideinLeft 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.fv figure img:nth-of-type(2) {
  animation-delay: .5s;
}
.fv figure img:nth-of-type(1) {
  animation-delay: 1s;
}

@keyframes slideinLeft {
  0% {
    transform: translateX(-100vw);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* ----------------------------------
------------------------------------- */

/* nav ------------------------------
------------------------------------- */
.top_nav {
  height: 60px;
  width: 100%;
  background-color: var(--colorSub1);
  border-bottom: 1px solid var(--colorText);
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  margin-inline: auto;
  transition-duration: 0.3s;
  opacity: 0;
}
.top_nav>nav {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top_nav>nav>a>figure {
  display: flex;
  align-items: center;
}
.top_nav>nav>a>figure img {
  height: 30px;
  margin-right: 1em;
}
.top_nav>nav>a>figure figcaption {
  font-size: 1.5em;
  font-weight: 700;
  font-family: "Lato", serif;
}
.top_nav>nav>a>figure figcaption span {
  padding-left: 1em;
}
.top_nav>nav>ul {
  display: flex;
  gap: 60px;
  font-size: 1.25em;
}
.top_nav>nav>ul li {
  transition: .5s;
}
.top_nav>nav>ul li:hover {
  color: var(--colorMain);
}
.is-visible {
  opacity: 1;
  /* transform: translateX(-50%) translateY(-50%);
  transition-duration: 0.3s; */
}

/* Products --------------------------
------------------------------------- */
.results {
  margin-bottom: 100px;
  line-height: 1.3;
}
.results>div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 4em;
}
.result {
   width: calc(50% - .5em);
   display: flex;
   justify-content: center;
}
.result>div {
  max-width: calc(300px + 25%);
  width: 100%;
}
.results>div>.result>div>a:first-of-type {
  /* display: inline-block; */
  width: 100%;
  height: 100%;
  /* background: var(--colorSub2); */
  /* position: relative; */
}
.results:not(:nth-of-type(2))>div>.result>div>a:first-of-type>img {
  aspect-ratio: 6/4;
}
.results>div>.result>div>a:first-of-type>img {
  width: 100%;
  max-width: 500px;
  object-fit: cover;
  object-position: center;
}
.lb-outerContainer {
  width: 40vw !important;
  margin: 0 auto;
}
.lb-image {
  width: 40vw !important;
  height: auto !important;
}
.results>div>.result>div>p:first-of-type {
  font-size: 1.125em;
  margin-top: .5em;
  margin-bottom: .5em;
}

/* 黒丸 */
.results>div>.result>div>p:first-of-type::before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 100%;
  background-color: var(--colorText);
  position: relative;
  left: 0;
  top: -1px;
  margin: 0 .5em;
}

.result>div>a:first-of-type:hover {
  opacity: .6;
}
.result>div>a:last-of-type {
  color:dodgerblue;
  text-decoration: underline;
  padding-left: 1.5em;
}
.result>div>a:last-of-type:hover {
  color:rgb(128, 188, 248);
}

.result table {
  margin-top: .5em;
  margin-left: 1.5em;
}
.result table th  {
  font-weight: normal;
  text-wrap: nowrap;
  text-align-last: justify;
  vertical-align: baseline;
}
.result table tr td span {
  display: inline-block;
}
.products>.results:first-of-type>div>.result>div>p:last-of-type,
.products>.results:nth-of-type(3)>div>.result>div>p:last-of-type {
  margin-left: 1.5em;
}

.lb-outerContainer {
  width: 80%;
  aspect-ratio: 3/2;
}
.result.on>div {
  position: relative;
  animation-name: animation;
  animation-duration: 2s;
}
.result {
  overflow: hidden;
  position: relative;
}
.result {
  opacity: 0;
}
.result.on {
  position: relative;
  opacity: 1;
}
.result.on::before {
  animation: img-wrap 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: var(--colorSub1);
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

@keyframes img-wrap {
  100% {
    transform: translateX(100%);
  }
}

/* Profile --------------------------
------------------------------------- */
.content {
  width: 100%;
  display: flex;
  margin-bottom: 80px;
}
.profile figure {
  width: 33%;
  display: flex;
  justify-content: center;
}
.profile figure img {
  width: 100%;
  object-fit: cover;
  object-position: 20% bottom;
}
.content>div {
  margin: 0 auto;
  width: 63%;
  max-width: 600px;
  display: flex;
  flex-flow: column;
}
.content>div>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2em;
}
.content>div>div p:first-of-type {
  font-size: 2em;
}
.content>div>div p:first-of-type span {
  padding-left: 2em;
  font-size: .75em;
}
.content>div>div p:last-of-type span {
  display: block;
}
.content>div>p {
  line-height: 1.5;
  text-align: justify;
}
.content>div>p:nth-of-type(n):not(p:last-of-type) {
  padding-bottom: 1em;
}
.career {
  padding-bottom: 200px;
}
.career table {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse; 
}
.career table tr th {
  width: 30%;
  font-size: 1.25em;
}
.career table tr td {
  width: 70%;
  font-size: 1.125em;
}
.career table tr th,
.career table tr td {
  padding: 20px;
  border-bottom: solid .5px #cfcdcd;
}

/* contact --------------------------
------------------------------------- */
.contact p {
  text-align: center;
  font-size: 1.5em;
  line-height: 1.5em;
}
.contact p span {
  font-size: 1.25em;
  color: var(--colorMain);
}
.btn a {
	display: flex;
	justify-content: center;
	align-items: center;
  margin: 30px auto 120px;
	position: relative;
	width: 300px;
	height: 60px;
	color: #333;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	transition: 0.3s;
}

.btn a:hover {
	color: #f2f2f2;
}
.btn02 a {
	background-color: var(--colorAccent);
	border: 1px solid var(--colorAccent);
	border-radius: 35px;
}
.btn02 a:hover {
	background-color: var(--colorMain);
	border: 1px solid #333;
}
.btn02 a::before {
	content: '';
	position: absolute;
	top: calc(50% - 5px);
	right: -35px;
	transform: rotate(30deg);
	width: 12px;
	height: 1px;
	background-color: #333;
}
.btn02 a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -35px;
	transform: translateY(-50%);
	width: 70px;
	height: 1px;
	background-color: #333;
}


/* .confirm_area,
.thanks_area {
    display: none;
}

デフォルトのサンクスメッセージを非表示
.wpcf7-response-output{
    display: none;
} */

/* footer --------------------------
------------------------------------- */
footer {
  margin: 0 auto;
  width: 100%;
  height: 30px;
  background: var(--colorSub2);
  display: flex;
  justify-content: center;
  align-items: center;
}
footer small {
  color: var(--colorText);
}

.video-page video {
  width: 90%;
  height: auto;
}
.video-page>div {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

