@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
/* CSS Document */
body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
p, th, td, li, dt, dd {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
/* ----------------------------- */
/*　ヘッダー　メインビジュアル 　*/
/* ----------------------------- */
.header {
  padding-top: 6.25em;
  height: 600px;
}
.header-container {
  position: relative;
  height: 100%;
}
.header-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -10;
}
.header-bg .bg-image {
  width: 100%;
  height: 100%;
}
.header-bg .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}
.bg-shadow {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  background-image: url("../img/dot.png");
  background-size: 2px;
  mask-image: linear-gradient(to right, black 30%, transparent 70%);
}
.header-item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
}
.header-menu {
  padding-top: 2em;
  height: 100px;
}
.header-menu .sub-menu {
  display: flex;
  justify-content: flex-end;
  list-style-type: none;
  margin-left: auto;
}
.header-menu .sub-menu li {
  padding: .5em 2em;
  border-right: 1px solid #fff;
}
.header-menu .sub-menu li:last-child {
  border-right: none;
}
.header-menu .sub-menu li a {
  color: #fff;
}
#scroll-menu.header-menu {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  height: auto;
  padding: 10px 0;
  transition: .3s;
}
#scroll-menu.header-menu.scroll-menu-fixed {
  top: 6.25em;
  opacity: 1;
}
#scroll-menu.header-menu .sub-menu li {
  border-right: 1px solid #000;
}
#scroll-menu.header-menu .sub-menu li:last-child {
  border-right: none;
}
#scroll-menu.header-menu .sub-menu li a {
  color: #000;
  font-size: .8em;
}
.main-visual {
  font-family: "Noto Serif JP", serif;
  color: #fff;
  line-height: 1.4;
  width: 800px;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 150px;
  transform: translateY(-50%);
}
.main-visual-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  text-align: left;
  padding: 1em;
}
.main-visual-inner h1 {
  width: 100%;
}
.lead-text {
  position: relative;
  display: inline-block;
  font-size: 1.1em;
  line-height: 1.0;
  color: #fff;
  background-color: #a04642;
  text-align: center;
  padding: 0.5em 2em 0.75em;
  margin-bottom: 1em;
  border-radius: 10em;
  box-shadow: 2px 4px rgba(0, 0, 0, 0.3);
}
.main-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.main-title .ellipse {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 90px;
  border-radius: 50%;
  color: #fff;
  background-color: #990239;
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1.2;
}
.main-title .title {
  font-size: 4em;
  font-weight: bold;
  white-space: nowrap;
  margin-left: 10px;
  text-shadow: 2px 4px rgba(0, 0, 0, 0.3);
}
.sub-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.5em;
  font-weight: bold;
  line-height: 1.5;
  color: #a04642;
  text-shadow: 1px 0 1px rgba(255, 255, 255, 0.9), -1px 0 1px rgba(255, 255, 255, 0.9), 0 1px 1px rgba(255, 255, 255, 0.9), 0 -1px 1px rgba(255, 255, 255, 0.9), 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.header-caption {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  background-color: #f5f7f7;
}
.header-caption p {
  font-size: 1.3em;
  margin-bottom: 10px;
}
.button {
  width: 100%;
  max-width: 240px;
}
.button a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
  font-size: .8em;
  font-weight: bold;
  color: #fff;
  background-color: #990239;
  border-radius: 10em;
  text-decoration: none;
  transition: .3s;
}
.button a:hover {
  color: #fff;
  opacity: .7;
}
.mr-auto {
  margin-left: inherit;
  margin-right: auto;
}
.cta {
  display: inline-block;
  text-align: center;
  width: 350px;
  margin-top: 1em;
}
.notice {
  position: relative;
  display: inline-block;
  font-size: .9em;
  text-align: center;
  padding: 1.5em 2em;
}
.notice::before {
  content: '';
  display: block;
  width: 50px;
  border-bottom: 1px solid;
  position: absolute;
  top: 50%;
  left: -10px;
  transform: rotate(60deg);
}
.notice::after {
  content: '';
  display: block;
  width: 50px;
  border-bottom: 1px solid;
  position: absolute;
  top: 50%;
  right: -10px;
  transform: rotate(-60deg);
}
.header-img {
  width: 550px;
}
@media only screen and (max-width: 1080px) {
  .header {
    padding-top: 3.75em;
  }
  .header-text {
    width: calc(100% - 450px);
  }
  .header-text .app .name h1 {
    font-size: 2em;
  }
  .header-text .merit p {
    font-size: 1.5em;
  }
  .header-img {
    width: 450px;
  }
  #scroll-menu.header-menu {
    right: 50%;
    transform: translateX(50%);
    background-color: #990239;
    width: 100%;
    box-shadow: 0 1px 5px rgba(204, 204, 204, 0.8);
  }
  #scroll-menu.header-menu.scroll-menu-fixed {
    top: 5em;
    opacity: 1;
  }
  #scroll-menu.header-menu .sub-menu li {
    border-right: 1px solid #fff;
  }
  #scroll-menu.header-menu .sub-menu li a {
    color: #fff;
    font-size: 1em;
  }
}
@media only screen and (max-width: 980px) {
  .header {
    height: 500px;
  }
  .main-visual {
    font-size: 12px;
    width: 100%;
    height: 350px;
    left: 0;
  }
  .main-title .ellipse {
    width: 120px;
    height: 70px;
  }
  .header-text {
    width: 100%;
    margin: auto;
    text-align: center;
  }
  .header-text .app {
    max-width: 350px;
    text-align: left;
    margin: auto;
  }
  .header-img {
    width: 100%;
    margin-top: 1em;
  }
  .header-img figure {
    max-width: 450px;
    margin: auto;
  }
}
@media only screen and (max-width: 830px) {
  .header-item {
    padding: 0 1em;
  }
  .header-menu {
    padding-top: 1.5em;
    height: 80px;
  }
  .header-menu .sub-menu {
    justify-content: center;
  }
  .header-menu .sub-menu li {
    padding: .5em 1em;
    font-size: .8em;
  }
  .header-text .app {
    max-width: 300px;
  }
  .header-text .app figure {
    width: 60px;
    height: 60px;
  }
  .header-text .app .name {
    width: calc(100% - 80px);
  }
  .header-text .app .name h1 {
    font-size: 1.8em;
    white-space: nowrap;
  }
  .header-text .merit p {
    font-size: 1.2em;
    max-width: 300px;
    margin: auto;
  }
  .cta {
    width: 100%;
    max-width: 300px;
    margin-top: 1em;
  }
  .header-img {
    margin: 2em 1em;
  }
  .header-caption {
    height: auto;
    text-align: center;
  }
  .caption-item {
    padding: 1em;
  }
  .header-caption p {
    font-size: .9em;
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 750px) {
  .header {
    height: 350px;
  }
  .main-visual {
    font-size: 12px;
    width: 100%;
    height: 250px;
    max-width: 650px;
    padding: 10px;
  }
  .lead-text {
    font-size: 1em;
    padding: 0.5em 2em 0.75em;
  }
  .main-title {
    flex-wrap: wrap;
  }
  .main-title .ellipse {
    margin: 0 auto .5em;
    width: auto;
    height: auto;
    border-radius: 10em;
    font-size: 1em;
    padding: .5em 1em;
  }
  .main-title .title {
    font-size: 2.4em;
    margin-left: 0;
    width: 100%;
  }
  .sub-title {
    font-size: 1.2em;
  }
  #scroll-menu.header-menu {
    padding: 5px 0;
  }
  #scroll-menu.header-menu.scroll-menu-fixed {
    top: 3.75em;
  }
  #scroll-menu.header-menu .sub-menu li a {
    font-size: .9em;
  }
}
/* ----------------------------- */
/* container内 見出し　*/
/* ----------------------------- */
.container h1 {
  font-weight: 500;
  font-size: 36px;
  letter-spacing: 0.05em;
  color: #1C5318;
  padding_top: 0px;
  padding-bottom: 8px;
}
.container h2 {
  font-family: "Noto Serif JP", serif;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #231815;
  padding-bottom: 15px;
  margin-bottom: 30px;
  margin-top: 50px;
}
.container h3 {
  font-family: "Noto Serif JP", serif;
  position: relative;
  text-align: center;
  font-weight: bold;
  font-size: 1.5em;
  letter-spacing: 0.05em;
  color: #a04642;
  margin-top: 3em;
  margin-bottom: 2em;
}
.container h3.justify-left {
  margin-top: 2em;
  text-align: left;
}
.container h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.75em;
  transform: translateX(-50%);
  display: block;
  width: 120px;
  height: 2px;
  background-color: #a04642;
  border-radius: 2px;
}
.container h3.justify-left::after {
  left: 0;
  transform: translateX(0);
}
.container h4 {
  position: relative;
  text-align: center;
  font-weight: bold;
  font-size: 2.5em;
  letter-spacing: 0.05em;
  color: #603813;
  margin-top: 1em;
}
.container h5 {
  font-size: 20px;
  padding: 5px 5px 10px 5px;
  border-bottom: 2px solid #349425;
}
h6 {
  font-size: 24px;
  padding: 10px 5px;
  border-top: 2px solid #349425;
  border-bottom: 2px solid #349425;
}
.functinHeading {
  font-size: 1.8em;
  padding: 20px 5px 0px 5px;
  margin-bottom: 10px;
  color: #00844c;
  font-weight: bold;
  border-bottom: 2px solid #349425;
}
.functinText {
  padding: 5px 5px 0px 5px;
  margin: 10px 0;
}
.h2_op {
  font-size: 1.25em;
  color: #660000;
}
.h3_op {
  font-size: 0.9em;
  color: #603813;
}
@media only screen and (max-width: 730px) {
  .container h2 {
    font-size: 1em;
  }
}
/* ----------------------------- */
/*　コンテナ　　　　　　　　　 　*/
/* ----------------------------- */
.sbs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
/* ----------------------------- */
/*　メインコンテンツ　　　　　　 　*/
/* ----------------------------- */
main section {
  position: relative;
  font-size: 18px;
  text-align: center;
  padding: 6em 1em;
}
main section:first-child {
  padding-top: 4em;
}
main section:nth-child(2n) {
  background-color: #f5f7f7;
}
main section .container {
  position: relative;
}
#features p {
  font-size: 1.1em;
}
.boost {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 3em auto 0;
}
#features .solution {
  position: relative;
  color: #990239;
  padding: 1em .5em;
  border: 2px solid;
  margin: 6em auto 0;
}
#features .solution p {
  font-size: 1.5em;
  font-weight: bold;
}
#features .solution::before {
  content: "";
  position: absolute;
  display: block;
  width: 138px; /* 矢印画像の幅 */
  height: 57px; /* 矢印画像の高さ */
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url('../img/arrow.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.feature-text {
  font-size: 1em;
}
.function-lead {
  font-family: "Noto Serif JP", serif;
  font-size: 1.2em;
  position: relative;
  color: #fff;
  text-align: left;
  width: 400px;
  padding: .5em 1em .75em;
  overflow: hidden;
}
.function-lead span {
  position: relative;
  z-index: 1;
}
.function-lead::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: -15%;
  background-image: linear-gradient(150deg, rgba(155, 69, 64, 1) 50%, rgba(185, 83, 78, 0.6));
  transform: skewX(45deg);
  z-index: 0;
}
.method {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
  margin: 3em auto;
}
.drawing-heading {
  color: #fff;
  background-color: #484e5c;
  line-height: 1.5;
  padding: 5px 10px 7px;
  border-radius: 5px;
  margin-bottom: 10px;
}
.method .w-50 {
  width: calc(50% - 40px) !important;
  margin-bottom: 3em;
}
.method .w-100 {
  width: 100% !important;
}
.method p {
  font-size: .8em;
}
.service {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 3em auto;
}
.service .service_container {
  width: calc(50% - 40px);
  margin-bottom: 3em;
}
.service_heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1em;
}
.service_heading span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 3em;
  font-weight: bold;
  color: #990239;
  width: 80px;
  height: 60px;
  border-right: 3px solid;
}
.service_heading p {
  width: calc(100% - 100px);
  font-size: 1.1em; /* 見出しのスタイル調整 */
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
}
.summary {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2em;
}
.summary table {
  display: table;
  width: calc(100% - 160px);
  border-right: 1px solid;
  border-bottom: 1px solid;
}
.summary table th, .summary table td {
  display: table-cell;
  font-size: .7em;
  border-top: 1px solid;
  border-left: 1px solid;
}
.summary table th {
  text-align: center;
  vertical-align: middle;
  background-color: #fef0d8;
  width: 70px;
  padding: .5em 5px;
}
.summary table td {
  vertical-align: middle;
  background-color: #fff;
  width: calc(100% - 70px);
  padding: .5em 10px;
}
.summary table td.border-dashed {
  border-top: 1px dashed;
}
.summary figure {
  width: 150px;
}
.sample {
  display: flex;
  justify-content: center;
  margin-top: 2em;
}
.sample.double {
  justify-content: space-between;
}
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.features .features-heading {
  font-size: 1.1em;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  border-bottom: 2px solid #990239;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.features .left-container {
  width: calc(100% - 740px);
  margin-bottom: 2em;
  text-align: justify;
}
.features .right-container {
  width: 700px;
  background-color: #fef0d8;
  border-radius: 15px;
  padding: 2em;
  margin-bottom: 3em;
}
.features .right-container .title {
  font-size: 1.1em;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  padding-bottom: 1.5em;
}
.features .right-container .title span {
  color: #990239;
}
.iroha {
  display: inline-block;
  margin: auto;
}
.iroha .iroha_container {
  position: relative;
  font-size: 1.1em;
  font-weight: bold;
  text-align: left;
  padding-left: 65px; /* 丸とテキストの間隔を確保 */
  margin-bottom: 1.5em;
}
.iroha .iroha_container:last-child {
  margin-bottom: 0;
}
.iroha .iroha_container span {
  color: #990239;
}
.iroha .iroha_container small {
  display: block;
  font-size: .7em;
  margin-top: 5px;
}
.iroha .iroha_container::before {
  font-family: "Yu Mincho", "游明朝体", "YuMincho", serif;
  font-size: 1.5em;
  display: inline-block;
  width: 55px; /* 丸の直径 */
  height: 55px; /* 丸の直径 */
  line-height: 55px; /* 丸の縦中央揃え */
  text-align: center; /* 丸の中央に文字を配置 */
  background-color: #990239; /* 丸の背景色 */
  color: #fff; /* 文字の色 */
  border-radius: 50%; /* 丸くする */
  position: absolute;
  left: 0; /* 左側に配置 */
  top: 46%;
  transform: translateY(-50%); /* 縦中央揃え */
}
.iroha .iroha_container.first::before {
  content: "い"; /* 囲みたい文字 */
}
.iroha .iroha_container.second::before {
  content: "ろ"; /* 囲みたい文字 */
}
.iroha .iroha_container.third::before {
  content: "は"; /* 囲みたい文字 */
}
.madori {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.madori p {
  font-size: .9em;
  margin-top: 5px;
}
.madori .before {
  width: calc(50% - 30px);
}
.madori .after {
  width: calc(50% - 30px);
}
.madori .madori_arrow {
  width: 60px;
  position: relative;
  text-align: center; /* 疑似要素を中央寄せするための設定 */
}
.madori .madori_arrow::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #990239;
  vertical-align: middle;
}
.profile {
  text-align: justify;
}
.profile .profile-title {
  font-size: 1.2em;
  font-weight: bold;
  padding: .5em;
  margin-bottom: 10px;
  color: #fff;
  background-color: #e84d37;
}
#contact form {
  text-align: left;
}
.maker-list {
  background-color: #fff;
  border: 1px solid #c9caca;
  padding: 1em;
}
.maker-list .maker-list-heading {
  text-align: center;
  font-size: .9em;
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid #c9caca;
}
.maker-list ul.disc li {
  font-size: .7em;
}
@media only screen and (max-width: 1080px) {
  #features .solution p {
    font-size: 1.2em;
  }
  .features .left-container {
    width: 100%;
  }
  .features .right-container {
    margin: 0 auto 3em;
  }
}
@media only screen and (max-width: 992px) {
  .service .service_container {
    width: 100%;
  }
  .sample {
    flex-wrap: wrap;
  }
  .sample.double {
    justify-content: space-around;
  }
  .sample.double .button {
    margin-bottom: 1em;
  }
}
@media only screen and (max-width: 730px) {
  main section {
    padding: 4em 0;
  }
  main section p {
    font-size: .8em;
  }
  #features p {
    font-size: .8em;
  }
  #features .solution p {
    font-size: .9em;
  }
  #features .solution {
    margin: 3em auto 0;
  }
  #features .solution::before {
    content: "";
    position: absolute;
    display: block;
    width: 69px; /* 矢印画像の幅 */
    height: 28.5px; /* 矢印画像の高さ */
    top: -40px;
  }
  .container h3.justify-left {
    font-size: 1em;
  }
  .function-lead {
    font-size: 1em;
    width: 300px;
  }
  .feature-text {
    font-size: .8em;
  }
  .boost {
    flex-wrap: wrap;
  }
  .boost .boost_container {
    width: 100%;
    margin-bottom: 2em;
  }
  .method .w-50 {
    width: 100% !important;
  }
  .service_heading {
    font-size: .8em; /* 見出しのスタイル調整 */
  }
  .service_heading span {
    font-size: 2.5em;
    width: 50px;
    height: 45px;
  }
  .service_heading p {
    width: calc(100% - 60px);
  }
  .service_heading::before {
    width: 5px; /* 線の横幅 */
    height: 50px; /* 線の高さ */
  }
  .summary {
    flex-wrap: wrap;
  }
  .summary table {
    width: 100%;
  }
  .summary figure {
    margin: 1em auto 0;
  }
  .sample.double {
    justify-content: center;
  }
  .features .right-container {
    width: 100%;
    padding: 2em 1em;
  }
  .drawing-heading {
    font-size: .8em;
  }
}
/* ----------------------------- */
/*　Swiper　CSS調整 　　　　　 　*/
/* ----------------------------- */
.swiper-container {
  padding-bottom: 40px;
}
.swiper-pagination-bullet-active {
  background-color: #603813;
}
/* ----------------------------- */
/*　導入事例　　　　　　　　 　 */
/* ----------------------------- */
.userVoice {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 5em;
}
.userVoice .userVoiceImage {
  width: calc(50% - 20px);
}
.userVoice .userVoiceImage img {
  width: 100%;
}
.userVoice .userVoiceText {
  width: calc(50% - 20px);
}
.userVoice .userVoiceText .userVoiceTitle {
  color: #603813;
  font-size: 1.4em;
  font-weight: bold;
  padding-bottom: 5px;
  margin-bottom: 30px;
  border-bottom: 2px solid #603813;
}
.userVoice .userVoiceText p {
  font-size: 1.1em;
  text-align: justify;
}
.userVoice .userVoiceText .userVoiceButton {
  margin-top: 1.5em;
}
.userVoice .userVoiceText .userVoiceButton a {
  display: inline-block;
  padding: .75em 2em;
  background-color: #0f0f0f;
  color: #fff;
  text-align: center;
  font-size: 1.1em;
  border: 2px solid #0f0f0f;
  border-radius: 6px;
  text-decoration: none;
  transition: .3s;
}
.userVoice .userVoiceText .userVoiceButton a:hover {
  color: #0f0f0f;
  background-color: #fff;
}
/* ----------------------------- */
/*　PC用　CSS調整　　　　　　  　*/
/* ----------------------------- */
.sp {
  display: none;
}
/* ----------------------------- */
/*　load画面　　 　　　　　　  　*/
/* ----------------------------- */
.loading {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 1.0);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20000;
}
.loading img {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
}
/* ----------------------------- */
/*　contactボタン　　　　　　  　*/
/* ----------------------------- */
.contact a {
  display: block;
  width: 500px;
  padding: 1em 2em;
  background-color: #603813;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  border-radius: 6px;
  margin: 2em auto;
  text-decoration: none;
}
.contact a:hover {
  background-color: #754416;
}
/* ----------------------------- */
/* imgマウスオーバー　半透明　 　*/
/* ----------------------------- */
.alpha a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}
/* ----------------------------- */
/*footer　*/
/* ----------------------------- */
footer.container-fluid {
  margin-top: 50px;
}
.info {
  font-size: 12px;
  text-align: center;
}
.company {
  font-size: 14px;
  font-weight: bold;
}
.footer {
  font-size: 14px;
  text-align: right;
  padding-right: 30px;
}
footer .copyright {
  padding: 20px 0;
  margin: 0 0 -15px;
  background-color: #c7b299;
  display: block;
  color: #333;
  font-size: small;
  text-align: center;
  font-style: normal;
}
/* ----------------------------- */
/*TOPへ　*/
/* ----------------------------- */
.pagetop {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 20px;
}
.pagetop a {
  display: block;
  background-color: #534741;
  text-align: center;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  padding: 5px 10px;
}
.pagetop a:hover {
  display: block;
  background-color: #B1A29B;
  text-align: center;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  padding: 5px 10px;
}
/* ----------------------------- */
/* 背景色を付けたcontainer-fluid　*/
/* ----------------------------- */
.container-fluid-back {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  background-color: #c7b299;
}
/* ----------------------------- */
/* スペース　　　*/
/* ----------------------------- */
.space-s {
  height: 30px;
  display: block;
  clear: both
}
.space-m {
  height: 50px;
  display: block;
  clear: both
}
.margin-LR {
  padding: 0 30px;
}
/* 印刷用CSS */
@media print {
  body {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, verdana, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 62.5%;
  }
}
/* 1200以上  */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  /* ----------------------------- */
  /*　ヘッダー　メニューバー　　　*/
  /* ----------------------------- */
  #menu-content > li > a {
    font-size: 14px;
  }
  /* ----------------------------- */
  /*　右上ボタン　　　　　　*/
  /* ----------------------------- */
  .button {
    font-size: 16px;
  }
  /* ----------------------------- */
  /*　touchBox　　　　　　　　　 　*/
  /* ----------------------------- */
  .touchBox {
    width: 750px;
    margin: 80px auto 0;
  }
}
/* 1200以下  */
@media only screen and (max-width: 1200px) {
  /* ----------------------------- */
  /*　ヘッダー　メインビジュアル 　*/
  /* ----------------------------- */
  .leftBox {
    float: none;
    width: 100%;
    margin-top: 1em;
    text-align: center;
  }
  .rightBox {
    width: 100%;
    max-width: 800px;
    margin: 2em auto;
  }
  .rightBox img {
    width: 100%;
  }
  /* ----------------------------- */
  /*　touchBox　　　　　　　　　 　*/
  /* ----------------------------- */
  .touchBox .text {
    width: 250px;
    font-size: 1.1em;
  }
  .touchBox .image {
    width: 500px;
  }
}