/* nomalize */
html {
  font: 62.5%/1 'Avenir', 'Hiragino Kaku Gothic ProN', sans-serif;
  /* -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; */
  margin: 0;
}

body {
  margin: 0;
  background: #000;
}
body.single {
  background: #ececec;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 640px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

.menu-list {
  width: 380px;
  line-height: 25px;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 640px) {
  .menu-list {
    display: none;
  }
}

.menu-list a {
  color: #fff;
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
}

.menu-list a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.2s;
}
.menu-list a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

footer,
header,
main,
nav {
  display: block;
}

a {
  background-color: transparent;
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0;
}

/****/
.title,
.subtitle,
.mv-single-title {
  /* アニメーションに必要な部分 */
  visibility: hidden;
  opacity: 0;
  transition: 1000ms;
  transform: translateX(-100px);
  -webkit-transform: translateX(-100px);
}
.title.is-show,
.subtitle.is-show,
.mv-single-title.is-show {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

/*****/

.mv {
  margin: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: url('../img/bg-top2.jpg') center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .mv {
    background: url(../img/bg-top2.jpg) center left -250px no-repeat;
    background-size: cover;
  }
}

.mv-single {
  padding: 180px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mv-single.news {
  background: url('../img/bg-news.jpg') center center no-repeat;
  background-size: cover;
}

.mv-single.contact {
  background: url('../img/bg-contact.jpg') center center no-repeat;
  background-size: cover;
}

h1.mv-single-title {
  margin: 0;
  color: #fff;
  font-size: 54px;
  font-weight: 900;
}

.container-single {
  padding-bottom: 90px;
}
.container-single .in {
  margin-top: -80px;
}

.container-single .bg-white {
  padding: 80px 20px;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-200px);
    -webkit-transform: translateX(-200px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
}

@keyframes slideInTop {
  from {
    opacity: 0;
    transform: translateY(-200px);
    -webkit-transform: translateY(-200px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }
}

@keyframes slideInBottom {
  from {
    opacity: 0;
    transform: translateY(200px);
    -webkit-transform: translateY(200px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }
}

.slideInLeft {
  animation-name: slideInLeft;
  animation-duration: 2s;
  animation-timing-function: ease;
}

.slideInTop {
  animation-name: slideInTop;
  animation-duration: 1.5s;
  animation-timing-function: ease;
}

.slideInBottom {
  animation-name: slideInBottom;
  animation-duration: 1.5s;
  animation-timing-function: ease;
}

.dark_layer {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.dark_layer p {
  margin: 0;
  color: #fff;
  font-size: 70px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 840px) {
  .dark_layer p {
    font-size: 56px;
  }
}

@media screen and (max-width: 640px) {
  .dark_layer p {
    text-align: center;
    line-height: 1.4em;
    margin-top: -70px;
  }
  #title.sp > span {
    display: block;
  }
}

.dark_layer a {
  position: absolute;
  bottom: 30px;
}
@media screen and (max-width: 640px) {
  .dark_layer a {
    bottom: 100px;
  }
  .dark_layer a img {
    width: 40px !important;
  }
}

section {
  padding: 120px 0;
  text-align: center;
  background: #fff;
}

#mission {
  padding-top: 120px;
}

@media screen and (max-width: 640px) {
  section {
    padding: 80px 0 50px;
  }

  #mission {
    padding-top: 80px;
  }
}

.in {
  margin: 0 auto;
  padding: 0 30px;
  width: 1195px;
}

@media screen and (max-width: 1195px) {
  .in {
    width: 100%;
    padding: 0 20px;
  }
}

h2.title {
  margin: 0;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0.03em;
  /* font-family: 'ヒラギノ角ゴ Std W8', 'Hiragino Kaku Gothic Std',
    'ヒラギノ角ゴ ProN W6', 'HiraKakuProN-W6'; */
}

.subtitle {
  margin: 25px 0 60px;
  font-size: 16px;
  font-weight: 600;
}

h3.message {
  margin: 0 0 80px;
  padding-left: 40px;
  font-size: 50px;
  font-weight: 600;
  /* -webkit-font-smoothing: antialiased;
  font-family: 'YakuHanJPsLight', 'proxima-nova', 'a-otf-midashi-go-mb31-pr6n',
    -apple-system, BlinkMacSystemFont, 'Avenir Next', 'Avenir',
    'Yu Gothic Medium', '游ゴシック Medium', YuGothic, '游ゴシック体',
    'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo',
    sans-serif; */
}

@media screen and (max-width: 640px) {
  .subtitle {
    margin: 5px 0 30px;
    font-size: 14px;
  }
  h3.message {
    margin: 60px 0;
  }
}

@media screen and (max-width: 640px) {
  h3.message {
    padding-left: 24px;
    font-size: 48px;
  }
}

@media screen and (max-width: 516px) {
  h3.message {
    font-size: 40px;
  }
}

@media screen and (max-width: 443px) {
  h3.message {
    font-size: 38px;
  }
}

@media screen and (max-width: 426px) {
  h3.message {
    padding-left: 10px;
    font-size: 34px;
  }
}

.content {
  margin: 0;
  color: #1f1f1f;
  font-size: 18px;
  font-weight: 600;
  line-height: 2em;
}

@media screen and (max-width: 640px) {
  .content {
    font-size: 14px;
  }
}

@media screen and (max-width: 374px) {
  h3.message {
    padding-left: 10px;
    font-size: 30px;
  }
  .content {
    font-size: 14px;
  }
}

.bg-gray {
  background: #ececec;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: ' ';
  clear: both;
  height: 0;
}
.left {
  float: left;
}
.right {
  float: right;
}

.service-image {
  width: 386px;
}

.service-image img {
  width: 100%;
  border-radius: 33px;
}

.service-detail {
  width: 625px;
  text-align: left;
}

.service-name {
  margin: 0 0 40px;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.service-description {
  margin: 0 0 40px;
  color: #1f1f1f;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8em;
}

@media screen and (max-width: 1125px) {
  #service .left,
  #service .right {
    float: none;
  }

  .service-detail {
    width: 100%;
  }

  .service-image {
    width: 100%;
    max-width: 386px;
    text-align: center;
    display: inline-block;
  }

  .service-name {
    text-align: center;
    margin-top: 40px;
  }

  .service-description {
    font-size: 16px;
  }

  #service .btn-more {
    margin: 0 auto;
  }
}

@media screen and (max-width: 640px) {
  .service-description {
    font-size: 14px;
  }
}

@media screen and (max-width: 540px) {
  .service-image img {
    width: 70%;
  }
}

.btn-more {
  max-width: 100%;
  width: 265px;
  margin: 0;
  border-radius: 33px;
  text-align: center;
  background: #000;
  letter-spacing: 0.03em;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.32);
}

#service .btn-more {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}

.btn-more a,
.btn-more span {
  position: relative;
  display: block;
  border-radius: 33px;
  width: 100%;
  padding: 25px 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  z-index: 100;
  overflow: hidden;
}

@media screen and (max-width: 640px) {
  .btn-more a,
  .btn-more span {
    padding: 20px 0;
    font-size: 16px;
  }
  .menu-en {
    font-size: 45px;
    color: #fff;
    margin: 0 0 10px;
  }
}

.btn-more a:hover,
.btn-more span:hover {
  color: #000;
}

/* .btn-more:hover {
  background: #005ad9;
} */

.btn-more a::before,
.btn-more span::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: #fff;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.btn-more a:hover::before,
.btn-more span:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

#contact .btn-more {
  background: #005ad9;
  margin: 0 auto;
}

#contact .btn-more a:hover {
  color: #005ad9;
}

#news,
#contact {
  background: url(../img/bg-content.jpg) center center no-repeat;
  background-size: cover;
}

.bg-white {
  background: #fff;
}

#news .bg-white {
  padding: 60px 20px 75px;
}

@media screen and (max-width: 640px) {
  #news .bg-white {
    padding: 30px 20px 40px;
  }
}

#news .btn-more {
  margin: 0 auto;
}

.news-list {
  text-align: left;
  margin: 0 auto 40px;
  width: 610px;
  font-family: 'Hiragino Kaku Gothic ProN', sans-serif;
}

.container-single .news-list {
  margin: 0 auto 70px;
}

.container-single .btn-more {
  margin: 0 auto;
}

.news-list li {
  height: 40px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4em;
}

.news-list span {
  display: inline-block;
  font-family: 'Avenir';
  font-style: oblique;
  background: #000;
  color: #fff;
  margin-right: 40px;
  padding: 8.5px 23px;
  font-size: 18px;
}

@media screen and (max-width: 690px) {
  .news-list {
    width: 100%;
  }
  .news-list li {
    font-size: 16px;
  }
}

@media screen and (max-width: 640px) {
  .news-list span {
    display: table;
    margin-right: 0;
    padding: 3px 13px;
    font-size: 14px;
    margin-bottom: 10px;
  }
  .news-list li {
    height: auto;
    font-size: 16px;
    margin-bottom: 30px;
  }
}

#company {
  padding: 120px 0 80px;
}
@media screen and (max-width: 640px) {
  #company {
    padding: 80px 0 12px;
  }
}

.company-info-item {
  margin-bottom: 38px;
  letter-spacing: 0.03em;
}
.company-info-item h3 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.company-info-item h4 {
  margin: 0;
  line-height: 1.6em;
  font-size: 16px;
  font-weight: 600;
  color: #4d4d4d;
}

@media screen and (max-width: 640px) {
  .company-info-item h3 {
    font-size: 14px;
  }
  .company-info-item h4 {
    font-size: 14px;
  }
  .company-info-list {
    padding-top: 20px;
  }
}

#contact {
  padding: 140px 0 160px;
}
@media screen and (max-width: 640px) {
  #contact {
    padding: 70px 0 80px;
  }
}

#contact h2.title {
  color: #fff;
}

#contact .subtitle {
  color: #fff;
}

footer {
  background: #000;
  padding: 60px 0;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

@media screen and (max-width: 640px) {
  footer {
    padding: 20px 0;
  }

  .mv-single {
    padding: 100px 0;
  }
  h1.mv-single-title {
    font-size: 36px;
  }

  nav ul li a {
    display: block;
    width: 100%;
  }

  nav .menu-en {
    display: block;
    margin-bottom: 25px;
    font-size: 45px;
    font-weight: 600;
    color: #fff;
  }
  nav .menu-jp {
    display: block;
    font-size: 16px;
    color: #fff;
  }
}

img {
  border: 0;
}

/* common */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

ul {
  padding-left: 0;
  list-style: none;
}

dd {
  margin-left: 0;
}
.limit-box {
  max-width: 1195px;
  margin: 0 auto;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  height: 85px;
  padding: 30px 0;
  width: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0);
  transition: 0.2s;
}

@media screen and (max-width: 640px) {
  header {
    padding: 20px 0;
    height: 56px;
  }
}

header.scroll {
  background: rgba(0, 0, 0, 0.9);
}

heaader .logo {
  width: 120px;
}

header .logo:hover {
  opacity: 0.8;
}

header .logo img {
  width: 120px;
}
header .menu {
  width: 30px;
}
header .menu .menu-icon {
  width: 30px;
}

@media screen and (max-width: 640px) {
  header .logo img {
    width: 100px;
  }
  header .menu {
    width: 21px;
  }
  header .menu .menu-icon {
    width: 21px;
  }
  .container-single {
    padding-bottom: 50px;
  }
  .container-single .news-list {
    margin: 30px auto 40px;
  }
  .container-single .in {
    margin-top: -40px;
  }
  .container-single .bg-white {
    padding: 20px;
  }
}
/****** 750 *****/
@media screen and (min-width: 1195px) {
  .container {
    width: 1195px;
    padding: 0 20px;
  }
}
/***** ********/
.footer {
  padding: 25px 0 26px;
  text-align: center;
}

.footer-copyright {
  font-size: 1.1em;
  color: #969696;
}

.page-title {
  margin: 30px 0 10px;
  font-size: 2em;
  color: #c51d25;
  text-align: center;
}

/**** ********/
.center {
  text-align: center;
  margin: 0 auto;
}

.black-border img {
  width: 162px;
  max-width: 33%;
  vertical-align: top;
}
/* main */

/******
お問い合わせ
******/

form {
  margin: 30px auto 0;
  max-width: 600px;
  padding-bottom: 20px;
}
form .row {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
form .row:last-of-type {
  margin-bottom: 0;
}

label {
  width: 200px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: left;
  align-items: center;
}

label span {
  color: #ff6565;
  font-size: 20px;
}

@media screen and (max-width: 640px) {
  form .row {
    display: block;
    margin-bottom: 30px;
  }
  label {
    margin-bottom: 10px;
  }
}

input,
textarea,
select {
  outline: 0;
  background: #f2f2f2;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  width: 100%;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 0;
}
input,
select {
  height: 50px;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #f2f2f2 inset;
}

select {
  color: #a9a9a9;
  background-image: url('../img/arrow-down.png');
  background-position: right 30px center;
  background-size: 12px;
  background-repeat: no-repeat;
}

input::placeholder,
textarea::placeholder {
  color: #a9a9a9;
  font-weight: 300;
}

/* NGなら赤くする */

/* 操作中、入力値が正しい場合は、不正エラーを消す */
form input:focus:valid + .error .invalid {
  display: none;
}
/* OKなら、その他のテキストボックス以外を緑にする */
form input:valid:not(:last-child) {
  border: seagreen 2px solid;
}

.button {
  width: 265px;
  margin: 60px auto 0;
  border-radius: 33px;
  background: #000;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.32);
}
button {
  padding: 19px 0;
  border-radius: 33px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: transparent;
  color: #fff;
  text-align: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 640px) {
  .button {
    margin: 40px auto 0;
  }
}

/*****

modal

*****/

.modal_wrap input {
  display: none;
}

.modal_overlay {
  position: fixed;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
  /* border: 10px solid #fff; */
  overflow-y: scroll;
}

.modal_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}

.modal_content {
  max-width: 1195px;
  margin: 0 auto;
  padding-top: 70px;
  box-sizing: border-box;
  line-height: 1.4em;
  transform: scale(0.3);
  transition: 0.5s;
}

.close_button {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 21px;
}

.close_button .close-icon {
  width: 21px;
}

.modal_wrap input:checked ~ .modal_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}

.modal_wrap input:checked ~ .modal_overlay .modal_content {
  transform: scale(1);
}

nav {
  max-width: 375px;
  margin: 0 auto;
  padding: 0 10px;
}

nav ul {
  padding-bottom: 10px;
}

nav ul li {
  margin-bottom: 60px;
}

nav ul li:last-of-type {
  margin-bottom: 0;
}

nav ul li h2 {
  color: #fff;
  font-size: 15px;
}

/***** sp ******/
@media screen and (max-width: 480px) {
  nav {
    max-width: 257px;
  }
}
/**** ******/
