@charset "UTF-8";
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
figure,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

/*clearfix-------------------------------*/
.clearfix {
  zoom: 1;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* body
------------------------------*/
body {
  font-family: "Zen Kaku Gothic New";
  color: #27200e;
  background-color: #ccc4b7;
  /* max-width: 1366px; */
}

h2 {
  line-height: 60px;
  margin-bottom: 20px;
}

h3 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 10px;
}

h4 {
  font-size: 1.5rem;
  color: #cb9d01;
  font-weight: 400;
  margin: 5px 0;
}

h5 {
  font-size: 0.8rem;
  color: #27200e;
  font-weight: 500;
  margin: 5px 0;
  text-align: right;
}

p {
  font-size: 1rem;
  line-height: 1.8rem;
}

.textbr {
  display: inline-block;
}

/* wrapper
------------------------------*/
.wrapper {
  width: 90%;
  margin: 0 auto;
  background-color: #fff;
}

/* header
------------------------------*/
header {
  width: 100%;
  height: 140px;
  /* 幅いっぱいを指定 */
  box-sizing: border-box;
  /* padding分を含んで幅を100%にするため */
  position: sticky;
  /* position: fixed; */
  /* ウィンドウを基準に画面に固定 */
  top: 0;
  /* 上下の固定位置を上から0pxにする */
  left: auto;
  /* 左右の固定位置を左から0pxにする */
  display: flex;
  justify-content: space-between;
  /* 中の要素を横並びにする */
  z-index: 999;
  background-size: cover;
  background-color: #fff;
}

.header {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}

.h_rogo {
  width: 460px;
}

.h_rogo img {
  width: 360px;
  height: auto;
  margin: 0 40px;
}

/* nav
------------------------------*/
nav.global {
  width: 40%;
  /* background-color: cornsilk; */
}

nav.global ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

nav.global li {
  /* display: inline-block; */
  list-style: none;
  padding: 10px 20px;
  text-align: center;
}

nav.global ul li a {
  line-height: 30px;
  color: #cb9d01;
  font-size: 1rem;
  text-decoration: none;
}

nav.global ul li:last-child a {
  border-right: none;
}

nav.global ul li a:hover {
  text-decoration: none;
}

.contact {
  width: auto;
  color: #fff;
}

.contact_button {
  width: 150px;
  height: 30px;
  border-radius: 15px;
  background-color: #27200e;
  text-align: center;
  line-height: 28px;
  /* margin-top: 25px; */
  margin: 10px 40px 10px 10px;
  /* float: right; */
}

.contact_button a {
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 1rem;
  font-weight: bold;
}

.contact_button:hover {
  opacity: 0.5;
}

.openbtn {
  display: none;
}

/* main-visual
------------------------------*/
.main {
  width: 100%;
  height: auto;
  margin-bottom: 40px 0;
  /* clear: both; */
  /* background-color: blanchedalmond; */
  /* clear: both; */
  /* overflow:hidden; */
}

.main-copy {
  height: auto;
  margin-bottom: 20px;
  clear: both;
}

.main-copy h2 {
  margin: 100px 0 40px 0;
  text-align: center;
  font-weight: 400;
  font-size: 4.2rem;
  letter-spacing: 0.1rem;
  line-height: 60px;
  color: #ccc4b7;
}

.main-copy h3 {
  text-align: center;
  font-size: 2.6rem;
  /* font-weight: 400; */
  line-height: 60px;
  margin-bottom: 40px;
  color: #817869;
}

.main-copy p {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.775rem;
  margin-bottom: 120px;
}

.main-visual img {
  margin: 0 0 40px 0;
  width: 100%;
}

/* slider js
------------------------------*/
/*==================================
スライダーのためのcss
===================================*/
.main_slider {
  width: 100%;
  height: 75vh;
  min-height: 360px;
  position: relative;
  overflow: visible;
}

.slider {
  width: 100%;
  height: 100%;
  background-color: #979085;
  position: relative;
  overflow: hidden;
}

.slider-item01 {
  background-image: url(../images/top_img_slide01.jpg);
  background-size: cover;
}

.slider-item02 {
  background-image: url(../images/top_img_slide02.jpg);
  background-size: cover;
}

.slider-item03 {
  background-image: url(../images/top_img_slide03.jpg);
  background-size: cover;
}

.slider-item04 {
  background-image: url(../images/top_img_slide04.jpg);
  background-size: cover;
}

.slider-item {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1200ms ease;
}

.slider-item.is-active {
  opacity: 1;
}

.slider-nav {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translateY(-50%);
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
  z-index: 2;
}

.slider-nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  opacity: 0.75;
  transform-origin: center;
}

.slider-nav:hover::before {
  opacity: 1;
}

.slider-nav-prev {
  left: -25px;
}

.slider-nav-prev::before {
  transform: translate(-40%, -50%) rotate(-135deg);
}

.slider-nav-next {
  right: -25px;
}

.slider-nav-next::before {
  transform: translate(-60%, -50%) rotate(45deg);
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background-color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.slider-dot.is-active {
  background-color: #fff;
}

/* container
------------------------------*/
.container {
  width: 90%;
  margin: 0 auto;
}

.anchor {
  display: block;
  padding-top: 180px;
  margin-top: -180px;
}

/* section profile
------------------------------*/
.profile {
  width: 68%;
  height: auto;
  font-size: 13px;
  margin: 0 auto 120px;
}

.profil_sm {
  width: 100%;
  display: flex;
  margin: 0 auto;
}

.profile-photo {
  width: 35%;
  height: auto;
}

.profile-photo img {
  width: 100%;
  height: auto;
}

.profil_smtextbox {
  width: 62%;
  flex-wrap: wrap;
  padding: 0 0 0 20px;
}

.profile-text {
  width: 100%;
  font-size: 12px;
  height: auto;
}

.profile-text-en {
  width: 100%;
  margin: 20px 0 0;
}

.profile-text-en p {
  width: 100%;
  font-size: 0.8rem;
  line-height: 1.4rem;
  text-align: justify;
}

.profile_tableA {
  width: 100%;
  height: auto;
  margin: 80px auto;
}

.profile-table {
  width: 100%;
  height: auto;
  margin: 0 0 80px;
  display: flex;
  justify-content: space-between;
}

.profile_tableB {
  width: 49%;
  height: auto;
  margin: 0 0 80px;
}

.tableA_head,
.tableB_head {
  width: 100%;
  height: 24px;
  font-weight: 500;
  text-align: center;
  display: flex;
}

.tableA_th_l,
.tableA_th_r {
  background-color: #e2cf79;
  border: #fff solid 1pt;
  /* padding: 10px 20px; */
}

.tableA_u {
  width: 100%;
  background-color: #f5ecc6;
  display: flex;
}

.tableA_d {
  background-color: rgba(252, 245, 215, 0.3294117647);
  display: flex;
}

.tableB_th_l,
.tableB_th_r {
  width: 100%;
  background-color: #979085;
  border: #fff solid 1pt;
}

.tableB_u {
  width: 100%;
  background-color: #cac2b5;
  display: flex;
}

.tableB_d {
  background-color: #e9e5d9;
  display: flex;
}

.tableA_u_l,
.tableA_u_r,
.tableB_u_l,
.tableB_u_r {
  border: #fff solid 1pt;
}

.tableA_th_l,
.tableB_th_l,
.tableA_u_l,
.tableB_u_l,
.tableA_d_l,
.tableB_d_l {
  width: 20%;
  text-align: center;
  padding: 6px 2px;
}

.tableA_th_r,
.tableB_th_r,
.tableA_u_r,
.tableB_u_r,
.tableA_u_r,
.tableB_d_r {
  width: 80%;
  padding: 6px 10px;
}

.tableA_th_l,
.tableB_th_l,
.tableA_th_r,
.tableB_th_r {
  align-items: center;
  padding: 0;
}

/* section business-content
------------------------------*/
.business-content {
  width: 100%;
  height: auto;
  margin-bottom: 80px;
  /* clear: both;
  overflow: auto; */
}

.bc-wrapper {
  width: 100%;
  display: table;
  table-layout: fixed;
  margin: 0 0 20px;
}

.bc-box {
  width: 100%;
  height: auto;
  display: table-cell;
}

.bc-image img {
  width: 100%;
  height: auto;
}

.bc-box h4,
.wk-box h4 {
  justify-content: space-between;
  align-items: flex-end;
}

.bc-text {
  margin-bottom: 40px;
}

.bc-text p,
.wk-box-text {
  font-size: 1rem;
  line-height: 1.8rem;
  text-align: left;
  margin: 5px 0 15px;
}

/*========= 実績一例 ===============*/
.works {
  width: 100%;
}

.wk-wrapper {
  width: 100%;
  display: flex;
  /* justify-content: space-between; */
  margin-bottom: 100px;
}

.worksimg {
  width: 35%;
  height: auto;
}

.worksimg img {
  width: 100%;
  height: auto;
}

.wk-box {
  width: 65%;
  height: auto;
  padding-left: 30px;
  display: grid;
  align-content: space-between;
}

.wk-box-text {
  text-align: left;
  margin-bottom: 20px;
}

.wk-box-text h4 {
  font-size: 2rem;
  margin: 10px 0 20px;
}

.wk-box-img {
  width: 100%;
  height: auto;
  display: flex;
  table-layout: fixed;
}

.wk-images-s {
  width: 100%;
  height: auto;
  /* display: table-cell; */
  /* margin-right: 2px; */
}

.wk-images-s img {
  width: 97%;
  height: auto;
}

.wk-box-text_sp {
  display: none;
}

/* sns
------------------------------*/
.sns {
  width: 100%;
  text-align: right;
  letter-spacing: 1.5rem;
  margin: 60px 0 10px;
}

.sns img {
  width: 50px;
  height: auto;
}

.ad {
  margin: 0px 0 20px;
}

/* footer
------------------------------*/
footer {
  clear: both;
  height: 60px;
  padding: 20px 30px;
  background-color: #27200e;
}

small {
  color: #fff;
  font-size: 0.8rem;
  display: block;
  text-align: center;
  margin-top: 15px;
}

/* 「お問い合わせ」ページ ここから↓ */
.Form {
  margin: 80px auto 0;
  max-width: 720px;
}

.Form-Item {
  /* padding-top: 24px; */
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}

.Form-sub {
  /* padding-top: 24px; */
  padding-bottom: 70px;
  width: 100%;
  /* display: flex; */
  /* text-align: right; */
  /* align-items: center; */
  margin: 20px 0;
}

.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05rem;
  padding-top: 2px;
  font-size: 1rem;
  text-align: left;
}

.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
  font-size: 16px;
}

.Form-Item-Label-Required {
  border-radius: 4px;
  margin-right: 8px;
  padding-bottom: 4px;
  width: 48px;
  height: 24px;
  display: inline-block;
  background: #cb9d01;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-left: 40px;
  padding-left: 1rem;
  padding-right: 1rem;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  /* background: #eedf9e54; */
  font-size: 11px;
}

.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-left: 40px;
  padding-left: 1rem;
  padding-right: 1rem;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  /* background: #eedf9e54; */
  font-size: 16px;
}

.Form-Btn {
  width: 120px;
  height: 30px;
  border-radius: 15px;
  background-color: #27200e;
  color: #fff;
  text-align: center;
  /* line-height: 28px; */
  margin: 20px 0 40px;
  float: right;
  letter-spacing: 2px;
  text-decoration: none;
  border: none;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New";
}

.Form-Btn:hover {
  opacity: 0.5;
}

/*==================================
タブレットCSS
===================================*/
@media screen and (max-width: 820px) {
  img {
    width: 100%;
  }
  header {
    /* width: 90%; */
    height: auto;
  }
  .header {
    width: 100%;
    height: 140px;
    display: space-between;
    display: flex;
    flex-flow: column;
    align-items: none;
    background-size: cover;
  }
  .h_rogo {
    width: 100%;
    margin: 20px 0 10px 5px;
  }
  .h_rogo img {
    width: 280px;
    /* width: 100%; */
    /* margin-left: 20px; */
  }
  h3 {
    font-size: 1.75rem;
    /* font-weight: 500; */
  }
  h4 {
    margin: 5px 0;
    font-size: 1.25rem;
    /* font-weight: 500; */
  }
  p {
    font-size: 16px;
    line-height: 1.7rem;
  }
  nav.global {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  nav.global ul {
    margin: 0;
    display: flex;
    justify-content: space-around;
    /* float: none; */
    background-color: #cb9d01;
    /* text-align: center; */
  }
  nav.global li {
    /* float: none; */
    width: auto;
    padding: 0 60px;
  }
  nav.global ul li a {
    width: 100%;
    line-height: 40px;
    font-size: 16px;
    /* font-weight: normal; */
    text-align: center;
    color: #fff;
    padding: 0;
  }
  .contact {
    width: 100%;
  }
  .contact_button {
    width: 100%;
    height: auto;
    border-radius: 0;
    margin: 0;
  }
  .contact_button a {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
  }
  .main-copy h2 {
    font-size: 3rem;
  }
  .main-copy h3 {
    font-size: 1.5rem;
    line-height: 60px;
    margin-bottom: 20px;
  }
  .main-copy p {
    font-size: 16px;
    line-height: 1.8rem;
    padding: 0 20px;
    margin-bottom: 100px;
  }
  .main-visual img {
    margin: 0px 0 20px 0;
  }
  .container {
    width: 90%;
    margin: 0 auto;
  }
  .anchor {
    display: block;
    padding: 180px 0 0;
    margin: -180px 0 0;
  }
  /* .anchor {
    padding-top: 40px;
    margin: -100px;
  } */
  /*タブレット レスポンシブテーブル作り替え */
  .profile {
    width: 100%;
    height: auto;
  }
  .profile-table {
    width: 100%;
    height: auto;
    font-size: 12px;
    float: none;
    display: block;
    justify-content: center;
  }
  .profil_sm {
    width: 100%;
    display: flex;
    flex-flow: column;
    margin: 0 auto 60px;
    justify-content: center;
  }
  .profile-photo {
    width: 50%;
    height: auto;
    margin: 0 auto 10px;
  }
  .profile-photo img {
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
  }
  .profil_smtextbox {
    width: 100%;
    flex-wrap: wrap;
    padding: 0;
  }
  .profile-text {
    padding: 0 20px 0 20px;
    height: auto;
    width: 75%;
    margin: 0 auto 20px;
    font-size: 16px;
  }
  .profile-text-en {
    width: 75%;
    margin: 0 auto;
    padding: 0 20px;
  }
  .profile-text-en p {
    font-size: 0.8rem;
    line-height: 1.4rem;
  }
  .profile_tableA,
  .profile_tableB {
    width: 100%;
    height: auto;
    font-size: 14px;
    /* display: flex; */
    /* justify-content: space-between; */
  }
  .profile_tableB {
    margin-bottom: 40px;
  }
  .tableA_head,
  .tableB_head {
    width: 100%;
    height: 20px;
    font-weight: 500;
    text-align: center;
    /* display: flex; */
  }
  /*タブレット レスポンシブ事業内容 */
  .bc-wrapper {
    /* width: calc(100% / 3); */
    display: flex;
    flex-wrap: wrap;
  }
  .bc-box {
    margin-bottom: 40px;
  }
  .bc-box h4 {
    font-size: 1.5rem;
    /* font-weight: 500; */
  }
  .bc-text p {
    font-size: 1.15rem;
    line-height: 2.25rem;
  }
  /*タブレット レスポンシブ実績一例 */
  .wk-wrapper {
    margin-bottom: 160px;
    /* display:flex; */
    flex-flow: column;
    clear: both;
  }
  .worksimg {
    width: 100%;
  }
  .wk-box {
    width: 100%;
    padding-left: 0;
    /* display: table-cell; */
  }
  .wk-box-img {
    /* width: 100%; */
    display: flex;
    flex-wrap: wrap;
  }
  .wk-images-s {
    width: 49%;
    margin: 2px 0;
  }
  .wk-box-text h4 {
    margin: 10px 0 10px;
  }
  .wk-box-text {
    line-height: 1.8rem;
  }
  .main_slider {
    margin: 6px 0 0;
    height: 30vh;
    min-height: 0;
  }
  .wk-box-text_pc {
    display: none;
  }
  .wk-box-text_sp {
    display: block;
  }
  .slider-nav-prev {
    left: 8px;
  }
  .slider-nav-next {
    right: 8px;
  }
  .slider-dots {
    bottom: 8px;
  }
}
/*==================================
スマホCSS
===================================*/
@media screen and (max-width: 480px) {
  /*スマホ  レスポンシブ事業内容 */
  .header {
    height: 100px;
  }
  .h_rogo img {
    width: 240px;
    margin-left: 20px;
  }
  h3 {
    font-size: 1.25rem;
    /* font-weight: 500; */
  }
  h4 {
    margin: 5px 0;
    font-size: 1rem;
    /* font-weight: 500; */
  }
  p {
    font-size: 14px;
    line-height: 1.6rem;
  }
  nav.global li {
    padding: 0 15px;
    text-align: center;
  }
  nav.global ul li a {
    font-size: 15px;
  }
  .main-copy h2 {
    margin: 40px 0 20px;
    font-size: 48px;
  }
  .main-copy h3 {
    font-size: 24px;
    line-height: 60px;
    margin-bottom: 20px;
  }
  .main-copy p {
    font-size: 16px;
    line-height: 1.8rem;
    padding: 0 20px;
    margin-bottom: 100px;
  }
  .main-visual img {
    margin: 0px 0 20px 0;
  }
  .container {
    width: 90%;
    margin: 0 auto;
  }
  .anchor {
    display: block;
    padding: 160px 0 0;
    margin: -160px 0 0;
  }
  .profile {
    margin: 0 auto 100px;
  }
  .profile-table {
    width: 100%;
    margin: 0 auto 40px;
  }
  .profil_sm {
    width: 90%;
    display: flex;
    flex-flow: column;
    margin-bottom: 20px;
  }
  .profile-photo {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
  .profile-photo img {
    width: 100%;
    height: auto;
  }
  .profile-text {
    width: 100%;
    font-size: 12px;
    padding: 0;
    height: auto;
    margin: 0 auto 30px;
    text-align: justify;
  }
  .profile-text-en {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .profile_tableA,
  .profile_tableB {
    width: 100%;
    font-size: 12px;
  }
  .profile_tableB {
    margin-bottom: 20px;
  }
  .bc-wrapper {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* flex-flow: column; */
  }
  .bc-box {
    /* height: 240px; */
    height: auto;
    display: table-cell;
    margin-bottom: 10px;
  }
  .bc-box h4,
  .wk-box-text h4 {
    font-size: 1.2rem;
    margin: 5px 0 10px;
    /* font-weight: 500; */
  }
  .bc-text p,
  .wk-box-text {
    font-size: 15px;
    line-height: 1.6rem;
    margin: 0 0 20px;
  }
  .wk-wrapper {
    margin-bottom: 100px;
  }
  .wk-box-text h4 {
    margin: 5px 0 0;
  }
  .bc-text p,
  .bc-box:last-child a {
    margin-bottom: none;
  }
  /*スマホ  「お問い合わせ」ページ ここから↓ */
  .Form {
    margin: 10px auto 0;
    max-width: 720px;
    font-size: 14px;
  }
  .Form-Item {
    width: 100%;
    align-items: center;
    display: inline-block;
  }
  .Form-Item-Label {
    letter-spacing: 0.05rem;
    padding-top: 2px;
    text-align: left;
  }
  .Form-Item-Label-Required {
    border-radius: 4px;
    margin-right: 8px;
    padding-bottom: 4px;
    width: 48px;
    height: 24px;
    display: inline-block;
    background: #cb9d01;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
  }
  .Form-Item-Input {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 20px 0 0 0;
    height: 48px;
    width: 90%;
    font-size: 11px;
  }
  .Form-Item-Textarea {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 20px 0 0 0;
    height: 216px;
    width: 86%;
  }
  .main_slider {
    margin: 38px 0 0;
    height: 200px;
    min-height: 0;
  }
  .slider-nav-prev {
    left: 4px;
  }
  .slider-nav-next {
    right: 4px;
  }
}
/*# sourceMappingURL=main.css.map */