@charset "UTF-8";
body {
  font-family: "vdl-v7mincho", "Times New Roman", "Hiragino Mincho ProN", "YuMincho", "Yu Mincho", serif;
  font-weight: 300;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.15em;
  line-height: 1.7em;
  color: #000000;
  width: 100%;
  height: 100%;
  margin: 0;
}

a {
  display: inline-block;
  color: #333333;
  text-decoration: none !important;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.7em;
}

a:hover, a:focus {
  color: #dd5510;
  transition: all 0.3s;
}

ol, ul, li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
}

dl, dt, dd {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
}

h2 {
  font-size: 20px;
  color: #dd5510;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.8em;
  padding: 5% 0;
  margin: 0;
  text-align: center;
}

h3 {
  font-size: 16px;
  color: #dd5510;
  font-weight: 500;
  padding: 5% 0;
  margin: 0;
}

h4 {
  font-size: 14px;
  font-weight: 500;
  writing-mode: vertical-rl;
  text-orientation: upright;
  margin: 0 auto;
  padding: 0 0 3em 0;
}

p {
  margin: 0;
  padding: 0;
}

.orange {
  color: #dd5510;
}

.animate {
  transition: all 0.3s;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  color: inherit;
}

.button-border {
  border: 2px solid #000000;
  padding: 1em 1em;
  position: relative;
  display: inline-block;
  color: #000000;
  text-decoration: none;
  min-width: 150px;
  /* 左上へ配置 */
  /* 右下へ配置 */
  /* 左下へ配置 */
  /* 右上へ配置 */
  /* hover */
}
.button-border:after, .button-border:before,
.button-border span:after,
.button-border span:before {
  background-color: #dd5510;
  content: "";
  display: block;
  position: absolute;
  z-index: 10;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.button-border:after {
  width: 0px;
  height: 2px;
  top: -2px;
  left: -2px;
}
.button-border:before {
  width: 0px;
  height: 2px;
  right: -2px;
  bottom: -2px;
}
.button-border span:after {
  width: 2px;
  height: 0px;
  left: -2px;
  bottom: -2px;
}
.button-border span:before {
  width: 2px;
  height: 0px;
  top: -2px;
  right: -2px;
}
.button-border:hover:after, .button-border:hover:before {
  width: 100%;
  width: calc(100% + 2px);
}
.button-border:hover span:after,
.button-border:hover span:before {
  height: 100%;
  height: calc(100% + 2px);
}
.button-border:hover span input {
  color: #dd5510;
  transition: all 0.3s;
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}

.fadeIn_up2 {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 3s;
}

.fadeIn_up.animation,
.fadeIn_up2.animation {
  transform: translate(0, 0);
  opacity: 1;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 84%;
  height: 90px;
  padding: 0 8%;
  z-index: 999;
}

#fixed-header {
  position: fixed; /*固定する*/
  top: -90px;
  width: 100%;
  height: 90px;
  font-size: 16px;
  text-align: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.8);
  box-sizing: border-box;
  transition: 0.5s;
}

#fixed-header.is-show {
  top: 0;
}

#h_menu {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  width: 200px;
  padding: 0;
  line-height: 0;
}

#fixed-header h1 {
  width: 70px;
  padding: 0;
  line-height: 0;
}

header h1 a {
  width: 100%;
  height: 100%;
  line-height: 0;
}

header h1 a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}

header h1 a img:hover {
  opacity: 0.5;
  transition: all 0.3s;
}

#global-navi {
  width: 90%;
}

#h_menu nav ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

#h_menu nav ul li {
  width: auto;
  display: inline-block;
  font-size: 16px;
  padding: 0 2%;
}

#h_menu nav ul li:last-child {
  padding: 0 0 0 2%;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/*スマホ画面でハンバーガーメニューの形にする*/
@media screen and (max-width: 1199px) {
  header {
    height: 90px;
    background-color: transparent;
    transition: 0.5s;
  }
  #fixed-header {
    top: -90px;
    height: 90px;
  }
  header.scroll-nav {
    background-color: transparent;
  }
  header h1 {
    width: 60px;
    padding: 0;
  }
  .scroll-nav .sp {
    display: none !important;
  }
  .scroll-nav .sp_scroll {
    display: inline-block;
  }
  #h_menu nav {
    position: fixed;
    top: 0;
    right: -220px;
    width: 220px;
    height: 100%;
    padding-top: 70px;
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    box-sizing: border-box;
    transition: all 0.5s;
    z-index: 2;
  }
  #h_menu nav.open {
    right: 0;
  }
  #h_menu nav ul {
    flex-direction: column;
    justify-content: center;
  }
  #h_menu nav ul li {
    width: 80%;
    display: block;
    padding: 10%;
  }
  #h_menu nav ul li:last-child {
    padding: 10%;
  }
  #h_menu nav ul li a {
    text-decoration: none;
    font-weight: 500;
  }
  #h_menu .btn-gnavi {
    position: relative;
    cursor: pointer;
    width: 25px;
    height: 50px;
    border-radius: 5px;
    z-index: 999;
  }
  #h_menu .btn-gnavi span {
    display: inline-block;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    left: 0;
    height: 3px;
    border-radius: 1px;
    background: #333333;
  }
  #h_menu .btn-gnavi span:nth-of-type(1) {
    top: 15px;
    width: 100%;
  }
  #h_menu .btn-gnavi span:nth-of-type(2) {
    top: 23px;
    width: 80%;
  }
  #h_menu .btn-gnavi span:nth-of-type(3) {
    top: 31px;
    width: 45%;
  }
  /*activeクラスが付与されると線が回転して×になる*/
  #h_menu .btn-gnavi.open span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-135deg);
    width: 100%;
  }
  #h_menu .btn-gnavi.open span:nth-of-type(2) {
    opacity: 0;
  }
  #h_menu .btn-gnavi.open span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1119px) {
  #h_menu nav {
    right: -320px;
    width: 320px;
  }
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.fv {
  width: 100vw;
  height: 100vh;
}

.bgImage {
  margin: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.bgImage {
  position: absolute;
  background-color: #ffffff;
  background-size: cover;
  background-position: top; /* Safari 6.0 - 9.0 */
  filter: grayscale(70%);
  z-index: -1;
}

.blobCont {
  position: absolute;
  width: 100vw;
  height: 100vh;
}

.blob:nth-child(1) {
  animation: move1 20s infinite linear;
}

@keyframes move1 {
  from {
    transform: rotate(90deg) translate(200px, 0.1px) rotate(-90deg);
  }
  to {
    transform: rotate(450deg) translate(200px, 0.1px) rotate(-450deg);
  }
}
.blob:nth-child(2) {
  animation: move2 20s infinite linear;
}

@keyframes move2 {
  from {
    transform: rotate(180deg) translate(200px, 0.1px) rotate(-180deg);
  }
  to {
    transform: rotate(540deg) translate(200px, 0.1px) rotate(-540deg);
  }
}
.blob:nth-child(3) {
  animation: move3 20s infinite linear;
}

@keyframes move3 {
  from {
    transform: rotate(270deg) translate(200px, 0.1px) rotate(-270deg);
  }
  to {
    transform: rotate(630deg) translate(200px, 0.1px) rotate(-630deg);
  }
}
.blob:nth-child(4) {
  animation: move4 20s infinite linear;
}

@keyframes move4 {
  from {
    transform: rotate(360deg) translate(200px, 0.1px) rotate(-360deg);
  }
  to {
    transform: rotate(720deg) translate(200px, 0.1px) rotate(-720deg);
  }
}
.blob:nth-child(5) {
  animation: move5 20s infinite linear;
}

@keyframes move5 {
  from {
    transform: rotate(450deg) translate(200px, 0.1px) rotate(-450deg);
  }
  to {
    transform: rotate(810deg) translate(200px, 0.1px) rotate(-810deg);
  }
}
.blob:nth-child(6) {
  animation: move6 20s infinite linear;
}

@keyframes move6 {
  from {
    transform: rotate(540deg) translate(200px, 0.1px) rotate(-540deg);
  }
  to {
    transform: rotate(900deg) translate(200px, 0.1px) rotate(-900deg);
  }
}
.blob:nth-child(7) {
  animation: move7 20s infinite linear;
}

@keyframes move7 {
  from {
    transform: rotate(630deg) translate(200px, 0.1px) rotate(-630deg);
  }
  to {
    transform: rotate(990deg) translate(200px, 0.1px) rotate(-990deg);
  }
}
.blob:nth-child(8) {
  animation: move8 20s infinite linear;
}

@keyframes move8 {
  from {
    transform: rotate(720deg) translate(200px, 0.1px) rotate(-720deg);
  }
  to {
    transform: rotate(1080deg) translate(200px, 0.1px) rotate(-1080deg);
  }
}
.blob:nth-child(9) {
  animation: move9 20s infinite linear;
}

@keyframes move9 {
  from {
    transform: rotate(810deg) translate(200px, 0.1px) rotate(-810deg);
  }
  to {
    transform: rotate(1170deg) translate(200px, 0.1px) rotate(-1170deg);
  }
}
.blob:nth-child(10) {
  animation: move10 20s infinite linear;
}

@keyframes move10 {
  from {
    transform: rotate(900deg) translate(200px, 0.1px) rotate(-900deg);
  }
  to {
    transform: rotate(1260deg) translate(200px, 0.1px) rotate(-1260deg);
  }
}
.blob:nth-child(11) {
  animation: move11 20s infinite linear;
}

@keyframes move11 {
  from {
    transform: rotate(990deg) translate(200px, 0.1px) rotate(-990deg);
  }
  to {
    transform: rotate(1350deg) translate(200px, 0.1px) rotate(-1350deg);
  }
}
.blob:nth-child(12) {
  animation: move12 20s infinite linear;
}

@keyframes move12 {
  from {
    transform: rotate(1080deg) translate(200px, 0.1px) rotate(-1080deg);
  }
  to {
    transform: rotate(1440deg) translate(200px, 0.1px) rotate(-1440deg);
  }
}
.blob:nth-child(13) {
  animation: move13 20s infinite linear;
}

@keyframes move13 {
  from {
    transform: rotate(1170deg) translate(200px, 0.1px) rotate(-1170deg);
  }
  to {
    transform: rotate(1530deg) translate(200px, 0.1px) rotate(-1530deg);
  }
}
.blob:nth-child(14) {
  animation: move14 20s infinite linear;
}

@keyframes move14 {
  from {
    transform: rotate(1260deg) translate(200px, 0.1px) rotate(-1260deg);
  }
  to {
    transform: rotate(1620deg) translate(200px, 0.1px) rotate(-1620deg);
  }
}
.blob:nth-child(15) {
  animation: move15 20s infinite linear;
}

@keyframes move15 {
  from {
    transform: rotate(1350deg) translate(200px, 0.1px) rotate(-1350deg);
  }
  to {
    transform: rotate(1710deg) translate(200px, 0.1px) rotate(-1710deg);
  }
}
.blob:nth-child(16) {
  animation: move16 20s infinite linear;
}

@keyframes move16 {
  from {
    transform: rotate(1440deg) translate(200px, 0.1px) rotate(-1440deg);
  }
  to {
    transform: rotate(1800deg) translate(200px, 0.1px) rotate(-1800deg);
  }
}
.blob:nth-child(17) {
  animation: move17 20s infinite linear;
}

@keyframes move17 {
  from {
    transform: rotate(1530deg) translate(200px, 0.1px) rotate(-1530deg);
  }
  to {
    transform: rotate(1890deg) translate(200px, 0.1px) rotate(-1890deg);
  }
}
.blob:nth-child(18) {
  animation: move18 20s infinite linear;
}

@keyframes move18 {
  from {
    transform: rotate(1620deg) translate(200px, 0.1px) rotate(-1620deg);
  }
  to {
    transform: rotate(1980deg) translate(200px, 0.1px) rotate(-1980deg);
  }
}
.fv_con {
  position: relative;
  width: 84%;
  max-width: 1600px;
  height: 100%;
  padding: 0 8%;
  margin: 0 auto;
}
.fv_con h1 {
  position: absolute;
  top: 6%;
  left: 8%;
  margin: 0;
  padding: 0;
  width: 20vw;
  max-width: 100px;
}
.fv_con h1 img {
  width: 100%;
}

.fv_con2 {
  width: 100%;
  max-width: 1600px;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin: 0;
}
.fv_con2 h2 {
  font-size: min(6.7vw, 42px);
  line-height: 1.5em;
  margin: 0;
  padding: 20% 0 8% 0;
  text-align: start;
  width: 100%;
}

.fv_con3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.fv_con3 img {
  width: 28vw;
  padding: 6%;
  -o-object-fit: contain;
     object-fit: contain;
}

article {
  width: 100%;
  background-color: #ffffff;
}
article:nth-child(even) {
  background-color: #f4f7fa;
}

section {
  width: 84%;
  max-width: 1600px;
  padding: 8% 8% 15% 8%;
  margin: 0 auto;
  text-align: center;
}

#area_1 h2 {
  padding: 5% 0 8% 0;
}

article.ww {
  width: 100%;
}
article.ww section {
  padding: 8% 8% 0;
}
article.ww section:last-child figure {
  border-bottom: none;
}
article.ww section h2 {
  display: inline-flex;
  border-top: solid 3px #dd5510;
  padding: 3% 2% 5%;
  margin: 8% 0 5%;
}
article.ww figure {
  display: flex;
  justify-content: space-between;
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.8);
}
article.ww figure .works_title {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
article.ww figure h3 {
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #000000;
  padding: 0;
}
article.ww figure img {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 2em 0 0 0;
}
article.ww figcaption {
  width: 72%;
  text-align: initial;
}
article.ww figcaption .example p {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.8);
  padding: 6% 0;
}
article.ww figcaption .example p:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.8);
}
article.ww figcaption dl {
  width: 100%;
  padding: 10% 0 15%;
}
article.ww figcaption dl div {
  width: 100%;
  padding: 6% 0;
}
article.ww figcaption dt {
  color: #dd5510;
  font-size: 14px;
  font-weight: 500;
  padding: 0 0 3% 0;
}

#area_5 dl {
  width: 100%;
  padding: 14% 0 10%;
  text-align: initial;
}
#area_5 dl div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.8);
  padding: 6% 0;
}
#area_5 dl div:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.8);
}
#area_5 dl dt {
  width: 30%;
  font-weight: 500;
}
#area_5 dl dd {
  width: 65%;
  font-weight: 300;
}
#area_5 dl .dd2 {
  border: 0;
  padding: 0;
}
#area_5 dl button {
  padding: 1.2em 0 0 0;
}

#area_5 iframe {
  width: 100%;
  height: 40vh;
  border: none;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: 1px solid #000000;
  border-radius: 0;
  font: inherit;
  outline: none;
  font-size: 16px;
  width: 94%;
  padding: 3%;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: 1px solid #000000;
  cursor: pointer;
  text-overflow: ellipsis;
  border-radius: 0;
  font: inherit;
  outline: none;
  font-size: 16px;
  color: #000000;
  width: 100%;
  padding: 3%;
}

.sel_wrap {
  position: relative;
  width: 100%;
}
.sel_wrap:after {
  content: "";
  position: absolute;
  right: 3%;
  top: 45%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #dd5510;
  border-left: 2px solid #dd5510;
  pointer-events: none;
  transform: translateY(-50%) rotate(-135deg);
}

textarea {
  height: 30vh;
}

button input {
  font-size: 14px;
  color: #000000;
  border: none;
  width: auto;
  padding: 0;
}

#error {
  color: #dd5510;
  font-weight: 500;
  padding: 0 0 5% 0;
  display: inline-block;
}

.thanks {
  color: #dd5510;
  padding: 0 0 3% 0;
  font-size: 1.2em;
  font-weight: 500;
  display: inline-block;
}

.fp2 {
  display: none;
}

form {
  width: 100%;
  padding: 10% 0;
}
form dl .con_wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  text-align: initial;
  padding: 3% 0;
}
form dl .con_wrap dt, form dl .con_wrap dd {
  width: 100%;
}
form dl .con_wrap dt {
  padding: 0 0 0.4em 0;
  font-weight: 500;
}
form button {
  padding: 5% 0 0 0;
}
form button .button-border {
  padding: 0;
  min-width: none;
}
form button input {
  padding: 1em 6em;
  min-width: 150px;
}
form button input:hover {
  cursor: pointer;
}

#area_7 {
  text-align: inherit;
}
#area_7 dl div {
  padding: 3% 0;
}
#area_7 dt {
  font-weight: 500;
}
#area_7 dd {
  padding: 1.5% 0;
}

footer {
  width: 100%;
  background-color: #f4f7fa;
  text-align: center;
  padding: 5% 0;
}
footer p {
  color: #dd5510;
  font-size: 10px;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
@media screen and (min-width: 768px) {
  body {
    letter-spacing: 0.18em;
    line-height: 1.8em;
    font-size: 15px;
  }
  a {
    font-size: 16px;
  }
  dl, dt, dd {
    font-size: 15px;
  }
  h2 {
    font-size: 30px;
  }
  h4 {
    font-size: 18px;
  }
  .pc {
    display: none;
  }
  .fv_con h1 {
    width: 14vw;
    max-width: 120px;
  }
  .fv_con2 h2 {
    font-size: 5vw;
    font-size: min(5vw, 45px);
    line-height: 1.5em;
    padding: 10% 0 7% 0;
  }
  .fv_con3 img {
    width: 17vw;
    padding: 6% 0;
  }
  article.ww section {
    padding: 5% 8% 0;
  }
  article.ww figure h3 {
    font-size: 24px;
  }
  article.ww figcaption .example p {
    padding: 4% 0;
  }
  article.ww figcaption dl {
    padding: 10% 0 15%;
  }
  article.ww figcaption dl div {
    padding: 3% 0;
  }
  article.ww figcaption dt {
    font-size: 18px;
    padding: 0 0 2% 0;
  }
  #area_5 dl {
    padding: 5% 0 10%;
  }
  #area_5 dl div {
    padding: 4% 0;
  }
  #area_5 iframe {
    width: 100%;
    height: 40vh;
    border: none;
  }
  input,
  textarea {
    width: 96%;
    padding: 2%;
  }
  select {
    padding: 2%;
  }
  form {
    padding: 5% 0;
  }
  form dl .con_wrap {
    padding: 2% 0;
  }
  form button {
    padding: 5% 0 0 0;
  }
  #area_7 dl div {
    padding: 2% 0;
  }
  #area_7 dd {
    padding: 1% 0;
  }
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
@media screen and (min-width: 1050px) {
  body {
    letter-spacing: 0.18em;
    line-height: 1.8em;
    font-size: 16px;
  }
  ol, ul, li {
    font-size: 16px;
  }
  dl, dt, dd {
    font-size: 16px;
  }
  h2 {
    font-size: 36px;
    padding: 4% 0;
  }
  .button-border {
    padding: 1em 2em;
  }
  .fv_con h1 {
    width: 10vw;
    max-width: 150px;
  }
  .fv_con2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    height: 80%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 10% 10% 10% 15%;
  }
  .fv_con2 h2 {
    font-size: min(3.4vw, 58px);
    line-height: 1.8em;
    margin: 0;
    padding: 0 0 5% 0;
    width: auto;
  }
  .fv_con3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 40%;
  }
  .fv_con3 img {
    width: 13.5vw;
    max-width: 220px;
    padding: 6% 0;
  }
  section {
    width: 70%;
    max-width: 1600px;
    padding: 8% 15%;
    text-align: center;
  }
  article.ww section {
    padding: 8% 15% 0;
  }
  article.ww section h2 {
    margin: 3% 0 5%;
  }
  article.ww figure h3 {
    font-size: 30px;
  }
  article.ww figure img {
    padding: 5em 0 0 0;
  }
  article.ww figcaption {
    width: 68%;
  }
  article.ww figcaption dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  article.ww figcaption dl div {
    width: 45%;
  }
  article.ww figcaption dt {
    font-size: 20px;
    padding: 0 0 5% 0;
  }
  form dl .con_wrap {
    padding: 2.5% 0;
    justify-content: space-between;
    align-items: center;
  }
  form dl .con_wrap dt {
    width: 30%;
    padding: 0;
  }
  form dl .con_wrap dd {
    width: 65%;
  }
  form button {
    padding: 5% 0 0 0;
  }
  #area_7 {
    text-align: inherit;
  }
  #area_7 dl div {
    padding: 2% 0 0 0;
  }
  #area_7 dd {
    padding: 1% 0;
  }
  footer p {
    font-size: 12px;
  }
}/*# sourceMappingURL=common.css.map */