@charset "UTF-8";

/* reset
===============================================================*/
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin        : 0;
  padding       : 0;
  border        : 0;
  outline       : 0;
  font-size     : 100%;
  vertical-align: baseline;
  background    : transparent
}

* {
  box-sizing: border-box
}

html {
  overflow-x                : hidden;
  -webkit-overflow-scrolling: touch;
  scroll-padding-top        : 87px;
  scroll-behavior           : smooth;
}

body {
  line-height               : 1;
  overflow-x                : hidden;
  -webkit-overflow-scrolling: touch;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block
}

img {
  display  : block;
  max-width: 100%;
}

ul {
  list-style: none
}

a {
  margin        : 0;
  padding       : 0;
  font-size     : 100%;
  vertical-align: baseline;
  background    : transparent
}

#wrapper {
  width           : 100%;
  max-width       : 100%;
  color           : #7f7b75;
  font-family     : 'Noto Sans Japanese', sans-serif;
  background-color: rgb(247, 244, 239);
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.button a:hover {
  opacity: 0.7;
}

.sp_none {
  display: block;
}

.pc_none {
  display: none;
}

.inner {
  max-width : 98%;
  margin    : 0 auto;
  position  : relative;
  text-align: center;
}

.m_auto {
  margin: 0 auto;
}

.w100 {
  width: 100%;
}

/* ヘッダー */
.header {
  position        : fixed;
  left            : 0;
  top             : 0;
  width           : 100%;
  z-index         : 100;
  background-color: rgb(247, 244, 239);
  opacity         : 0.7;
}

.header_inner {
  position       : relative;
  width          : 100%;
  height         : 80px;
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  padding        : 15px 30px;
  margin-left    : auto;
  margin-right   : auto;
}

@media screen and (max-width:768px) {
  .header_inner {
    height : 60px;
    padding: 10px;
  }
}

.logo img {
  width: 60%;
}

@media screen and (max-width:768px) {
  .logo {
    display        : flex;
    max-width      : 94%;
    justify-content: space-between;
    gap            : 400px;
  }
}

@media screen and (max-width:670px) {
  .logo {
    display        : flex;
    max-width      : 94%;
    justify-content: space-between;
    gap            : 330px;
  }
}

@media screen and (max-width:500px) {
  .logo {
    max-width: 88%;
    gap      : 100px;
  }
}

.nav_list {
  display        : flex;
  align-items    : center;
  justify-content: flex-end;
  gap            : 30px;
  padding-left   : 30px;
  list-style     : none;
  font-family    : "Open Sans", sans-serif;

}

@media screen and (max-width:768px) {
  .logo img {
    width: 50%;
  }

  .nav_list {
    display: block;
    margin : 0;
    padding: 0;
  }
}

.nav_list li a {
  text-decoration: none;
}

.info {
  margin-left: auto;
}

@media only screen and (max-width: 768px) {
  .nav {
    position        : fixed;
    right           : -320px;
    /* 右から出てくる */
    top             : 0;
    width           : 300px;
    /* スマホに収まるサイズ */
    height          : 100vh;
    padding-top     : 60px;
    background-color: #fff;
    transition      : all .6s;
    z-index         : 200;
    overflow-y      : auto;
  }

  .hamburger {
    position: absolute;
    right   : 5px;
    top     : 8px;
    width   : 40px;
    /* クリックしやすい幅 */
    height  : 40px;
    /* クリックしやすい高さ */
    cursor  : pointer;
    z-index : 300;
  }

  .nav_item {
    text-align: center;
    padding   : 0 14px;
  }

  .nav_item a {
    display        : block;
    font-size      : 18px;
    padding        : 15px 0;
    border-bottom  : 1px solid #eee;
    text-decoration: none;
  }

  .nav_item a:hover {
    background-color: #eee;
  }

  .hamburger_border {
    position        : absolute;
    left            : 11px;
    width           : 18px;
    height          : 2px;
    background-color: #333;
    transition      : all .6s;
  }

  .hamburger_border_top {
    top: 14px;
  }

  .hamburger_border_center {
    top: 20px;
  }

  .hamburger_border_bottom {
    top: 26px;
  }

  .black_bg {
    position        : fixed;
    left            : 0;
    top             : 0;
    width           : 100vw;
    height          : 100vh;
    z-index         : 100;
    background-color: #333;
    opacity         : 0;
    visibility      : hidden;
    transition      : all .6s;
    cursor          : pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
  }

  .nav-open .black_bg {
    opacity   : .8;
    visibility: visible;
  }

  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top      : 20px;
  }

  .nav-open .hamburger_border_center {
    width: 0;
    left : 50%;
  }

  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top      : 20px;
  }
}

/*nav link style*/
.nav_item a {
  color: #7f7b75;
}

@media screen and (max-width:1000px) {

  nav_item a {
    font-size: 11px;
  }
}

@media screen and (max-width:768px) {

  nav_item a {
    font-size: 14px;
  }
}

.nav_item a:hover {
  opacity      : 0.7;
  /* transition: 1s; */
  text-decoration: underline;
}

/* mv */
#area_mv {
  margin-top: 80px;
}

.slideshow {
  width          : 100%;
  /* スライドショー幅（PC）*/
  list-style-type: none;
  position       : relative;
}

.slideshow>li {
  opacity   : 0;
  position  : absolute;
  transition: opacity 3s ease-in-out;
  /*フェード時間・イージング*/
}

.slideshow>li.showSlide {
  opacity: 1;
}

.slideshow>li>img {
  width : 100%;
  height: auto;
}

/* SP用メディアクエリ */
@media screen and (max-width:600px) {
  .slideshow {
    width: 100%;
    /* スライドショー幅（SP）*/
  }
}

/* リード */
#contents_read {
  padding-top: 45%;
}

#contents_read .inner {
  width    : 1000px;
  max-width: 95%;
  padding  : 100px 0 50px;
}

#contents_read .inner img {
  margin: 0 auto;
  width : 80%;
}

.read_title {
  margin-bottom: 80px;
}

/* CONCEPT */
#contents_concept .inner {
  width    : 1000px;
  max-width: 95%;
  padding  : 50px 0 0;
}

.title {
  font-family   : "Open Sans", sans-serif;
  font-weight   : bold;
  font-size     : 18px;
  text-align    : left;
  padding-bottom: 10px;
}

.concept {
  font-size     : 19px;
  text-align    : left;
  padding-bottom: 60px;
  border-bottom : 1px solid #7f7b75;
}

/* TECHNICAL SKILL */
#contents_skill .inner {
  width    : 1000px;
  max-width: 95%;
  padding  : 60px 0;
}

.skill {
  font-size  : 16px;
  text-align : left;
  line-height: 1.7;
  padding-bottom: 60px;
  border-bottom : 1px solid #7f7b75;
}

/* CONTACT */
#contents_contact .inner {
  width    : 1000px;
  max-width: 95%;
  padding  : 0 0 200px;
}

.contact01 {
  font-weight: bold;
  text-align : left;
  padding-top: 5px;
}

.contact02 {
  text-align    : left;
  padding-top   : 10px;
  line-height   : 1.7;
  padding-bottom: 30px;
}

.contact02 a {
  color        : #7f7b75;
  text-decoration: underline;
}

.contact02 a:hover {
  opacity: 0.7;
}

.map {
  position   : relative;
  width      : 100%;
  padding-top: 56.25%;
  /* 16      :9のアスペクト比 */
  height     : 0;
}

.map iframe {
  position: absolute;
  top     : 0;
  left    : 0;
  width   : 100%;
  height  : 100%;
}

/* フッター */
footer {
  background-color: #7f7b75;
  text-align      : left;
}

footer .inner {
  width    : 100%;
  max-width: 95%;
  padding  : 70px 0;
  color    : #fff;
}

.footer_box {
  display        : flex;
  justify-content: space-between;
  align-items    : end;
}

.footer01 {
  font-weight: bold;
  font-size  : 15px;
  text-align : left;
  padding-top: 5px;
}

.footer02 {
  text-align : left;
  font-size  : 14px;
  padding    : 10px 0;
  line-height: 1.7;
}

.footer02 a {
  color: #fff;
  text-decoration: underline;
}

.footer02 a:hover {
  opacity: 0.7;
}

.sns {
  text-align: left;
}

.sns a {
  display: inline-block;
}

.footer03 {
  text-align : left;
  font-size  : 12px;
  padding-top: 50px;
}

/* CORPORATE PROFILE */
#contents_profile {
  padding-top: 80px;
}

#contents_profile .inner {
  width    : 1000px;
  max-width: 95%;
  padding  : 100px 0;
}

.profile_list {
  text-align : left;
  padding-top: 50px;
}

.profile_list dl {
  margin       : 0 auto;
  display      : flex;
  flex-wrap    : wrap;
  text-align   : left;
  margin-bottom: 5rem;
}

.profile_list dt {
  width            : 200px;
  margin           : 0;
  /* border-bottom : 1px solid #7f7b75; */
  line-height      : 1.2rem;
  padding          : 1.2em 7em 2em 0;
  vertical-align   : middle;
  align-items      : center;
  text-align-last  : justify;
  text-justify     : inter-ideograph;
}

.profile_list dd {
  width            : calc(100% - 200px);
  margin           : 0;
  padding          : 1em 1em 2em 0;
  /* border-bottom : 1px solid #7f7b75; */
  vertical-align   : middle;
  line-height      : 2.7rem;
  line-height      : 1.8;
}

@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 50px;
  }

  .pc_none {
    display  : block;
    max-width: 100%;
  }

  .sp_none,
  .nav_pc {
    display: none;
  }

  /* ヘッダー */
  #area_mv {
    margin-top: 60px;
  }

  .header_sp {
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    padding        : 10px 0 10px 20px;
  }

  .header_sns ul {
    margin: 0 34px 0 0;
  }

  .nav_list {
    display: block;
    margin : 0;
    padding: 0;
  }

  .nav {
    position        : fixed;
    right           : -100%;
    top             : 60px;
    width           : 100%;
    height          : 100vh;
    padding-top     : 60px;
    background-color: #000;
    transition      : all .6s;
    z-index         : 200;
    overflow-y      : auto;
  }

  .hamburger {
    position: absolute;
    right   : 5px;
    top     : 8px;
    width   : 40px;
    /* クリックしやすい幅 */
    height  : 40px;
    /* クリックしやすい高さ */
    cursor  : pointer;
    z-index : 300;
  }

  .nav_item,
  .nav_item02 {
    text-align: center;
    padding   : 0 14px;
  }

  .nav_item a {
    display        : block;
    font-size      : 18px;
    padding        : 30px 0;
    border-bottom  : 1px solid #fff;
    text-decoration: none;
    color          : #fff;
  }

  .hamburger_border {
    position        : absolute;
    left            : 11px;
    width           : 18px;
    height          : 2px;
    background-color: #e5004a;
    transition      : all .6s;
  }

  .hamburger_border_top {
    top: 14px;
  }

  .hamburger_border_center {
    top: 20px;
  }

  .hamburger_border_bottom {
    top: 26px;
  }

  #black_bg {
    position        : fixed;
    left            : 0;
    top             : 0;
    width           : 100vw;
    height          : 100vh;
    z-index         : 100;
    background-color: #333;
    opacity         : 0;
    visibility      : hidden;
    transition      : all .6s;
    cursor          : pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .nav {
    left: 0;
  }

  .nav-open .black_bg {
    opacity   : .8;
    visibility: visible;
  }

  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top      : 20px;
  }

  .nav-open .hamburger_border_center {
    width: 0;
    left : 50%;
  }

  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top      : 20px;
  }

  .nav_bn {
    width  : 210px;
    margin : 20px auto 0;
    padding: 15px 20px;
  }

  /* MV */
  #contents_mv {
    width    : 100%;
    max-width: 100%;
    margin   : 50px auto 0;
  }

  /* リード */
  #contents_read {
    padding-top: 44%;
  }

  #contents_read .inner {
    width    : 100%;
    max-width: 90%;
    padding  : 25px 0;
  }

  #contents_read .inner img {
    width: 100%;
  }

  .read_title {
    margin-bottom: 10px;
  }

  /* CONCEPT */
  #contents_concept .inner {
    width    : 100%;
    max-width: 90%;
    padding  : 25px 0 10px;
  }

  .title {
    font-size: 16px;
  }

  .concept {
    font-size     : 16px;
    padding-bottom: 30px;
    line-height   : 1.5;
  }

  /* TECHNICAL SKILL */
  #contents_skill .inner {
    width    : 100%;
    max-width: 90%;
    padding  : 25px 0;
  }

  .skill {
    font-size: 14px;
    padding-bottom: 30px;
  }

  /* CONTACT */
  #contents_contact .inner {
    width    : 100%;
    max-width: 90%;
    padding  : 10px 0 100px;
  }

  .contact02 {
    font-size     : 14px;
    padding-bottom: 20px;
  }

  /* フッター */
  footer .inner {
    width    : 100%;
    max-width: 90%;
    padding  : 50px 0;
  }

  .footer_box {
    display: block;
  }
  
  /* CORPORATE PROFILE */
  #contents_profile {
    padding-top: 60px;
  }

  #contents_profile .inner {
    width    : 100%;
    max-width: 90%;
    padding  : 30px 0;
  }

  .profile_list {
    padding-top: 30px;
  }

  .profile_list dl {
    display      : block;
    margin-bottom: 5rem;
    font-size    : 14px;
  }

  .profile_list dt {
    width          : 90px;
    margin         : 0;
    line-height    : 1.2rem;
    padding        : 1.2em 1em 0.3em 0;
    vertical-align : middle;
    align-items    : center;
    text-align-last: justify;
    text-justify   : inter-ideograph;
  }

  .profile_list dd {
    width            : 100%;
    margin           : 0;
    padding          : 0 1em 1em 0;
    /* border-bottom : 1px solid #7f7b75; */
    vertical-align   : middle;
    line-height      : 2.7rem;
    line-height      : 1.8;
  }
}