@charset "UTF-8";
/*
Theme Name: テーマの名前（必須）
Theme URL: テーマのサイトのURI
Description: テーマの説明
Author: 作者の名前
Version: テーマのバージョン
Tags: テーマの特徴を表すタグ（カンマ区切り/オプション）
License: テーマのライセンス
License URI: テーマのライセンスのURI
*/
/*--------------------------------------

目次

-component（全体設計）
-header
-main
 -main-visual
 -what-is-tsumic

--------------------------------------*/
body {
  background-image: url(img/26995537.webp);
  background-size: cover;
  background-attachment: fixed;
  color: #434343;
  line-height: 1.5;
  font-size: 18px;
  font-family: "メイリオ", "Meiryo", "ＭＳ ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}

a {
  text-decoration: none;
  color: #434343;
}

p {
  font-size: 16px;
}
@media screen and (max-width: 800px) {
  p {
    font-size: 14px;
  }
}

/*------- sectionのデザイン --------*/
section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px 0 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  section {
    padding-top: 40px;
  }
}

/*------- sectionのデザイン　ここまで --------*/
/*------- h2のデザイン --------*/
.h2-style {
  position: relative;
  /*疑似要素の基準*/
  padding: 3rem 1em 1rem 1rem;
  font-size: 30px;
  border-bottom: 2px solid #e5c046;
  border-top: 2px solid #e5c046;
  max-width: 670px;
  margin: 0 auto;
  margin-bottom: 80px;
}
@media screen and (max-width: 1000px) {
  .h2-style {
    font-size: 20px;
    margin-bottom: 40px;
  }
}

.h2-style span {
  position: relative;
  /*z-indexを効かせるために必要*/
  z-index: 2;
  /*日本語テキストの重なり指定*/
  display: block;
  font-weight: bold;
  text-align: center;
  color: #c74545;
}

.h2-style::before {
  /*数字テキストを擬似要素で表現*/
  content: attr(data-back);
  /*データ属性の読み込み*/
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(229, 192, 70, 0.4);
  /*半透明のテキスト色指定*/
  font-size: 54px;
  font-weight: 800;
  z-index: 1;
  max-width: 1000px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .h2-style::before {
    font-size: 30px;
    top: 25%;
  }
}
@media screen and (max-width: 1000px) and (max-width: 500px) {
  .h2-style::before {
    font-size: 25px;
    top: 30%;
    width: 375px;
  }
}

/*------- h2のデザイン ここまで--------*/
/*------- 画像とテキストの横並びレイアウト --------*/
.tsumic_wrapper .tsumic_txt {
  width: 58%;
  line-height: 1.7;
}
@media screen and (max-width: 800px) {
  .tsumic_wrapper .tsumic_txt {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .tsumic_wrapper .tsumic_txt {
    width: 100%;
    margin-bottom: 20px;
  }
}
.tsumic_wrapper .tumik_img {
  width: 38%;
}
@media screen and (max-width: 500px) {
  .tsumic_wrapper .tumik_img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.tsumic_wrapper .tumik_img img {
  width: 100%;
}

/*------- 画像とテキストの横並びレイアウト ここまで--------*/
/*------- ボタンのデザイン--------*/
.all_btn {
  margin-top: 70px;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .all_btn {
    margin-top: 40px;
  }
}
.all_btn a.btn--orange {
  padding: 15px 45px 15px 15px;
  border-radius: 10px;
  color: #fff;
  background-color: #87512c;
  border-bottom: 5px solid #663f23;
}
.all_btn a.btn--orange:hover {
  margin-top: 3px;
  color: #fff;
  background: #743000;
  border-bottom: 2px solid #4d2000;
}
.all_btn a.btn--shadow {
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}
.all_btn .btn {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.all_btn .btn:before {
  content: "";
  width: 9px;
  height: 9px;
  border: 0;
  border-top: solid 3px #ffffff;
  border-right: solid 3px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  top: -1px;
  right: 20px;
  bottom: 0;
  margin: auto;
}

/*------- ボタンのデザイン ここまで--------*/
/*------- display: flex;① --------*/
.l-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 500px) {
  .l-flex {
    display: block;
  }
}

/*------- display: flex;① ここまで--------*/
header {
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
header .header {
  max-width: 1100px;
  margin: 0 auto;
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  header .header {
    height: 80px;
    padding: 0 40px;
  }
}
header .header h1 {
  width: 30%;
  height: 100px;
  align-content: center;
}
@media screen and (max-width: 1000px) {
  header .header h1 {
    height: 70px;
  }
}
header .header h1 img {
  height: 100%;
}
header .pc_nav {
  width: 60%;
  font-size: 19px;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: bold;
  font-style: normal;
}
@media screen and (max-width: 1000px) {
  header .pc_nav {
    width: 300px;
  }
}
header .pc_nav ul {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  header .pc_nav ul {
    display: block;
  }
}
header .pc_nav ul a {
  padding-bottom: 5px;
  color: rgb(213, 132, 33);
}
header .pc_nav ul a:hover {
  border-bottom: 5px solid #784400;
  transition: 0.1s ease-in;
  color: #784400;
}

/**ハンバーガーメニュー**/
@media screen and (max-width: 1000px) {
  .menu {
    display: block;
  }
  .menu li {
    margin-bottom: 35px;
  }
  /**レスポンシブにした時のナビの見せ方**/
  header nav {
    position: fixed;
    top: 0;
    right: -300px;
    background-color: rgb(211, 211, 211);
    height: 100%;
    padding-top: 60px;
  }
  header nav ul li {
    width: 100%;
    text-align: center;
  }
  header nav ul li a {
    color: #ffffff;
    padding-left: 20px;
  }
}
@media screen and (max-width: 1000px) and (max-width: 1000px) {
  header nav ul li a {
    padding-left: 0;
  }
}
@media screen and (max-width: 1000px) {
  header .btn-gnavi {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 30px;
    height: 24px;
    z-index: 3;
    cursor: pointer;
    transition: all 400ms;
    -webkit-transition: all 400ms;
  }
}
@media screen and (max-width: 1000px) and (max-width: 500px) {
  header .btn-gnavi {
    right: 40px;
  }
}
@media screen and (max-width: 1000px) {
  header .btn-gnavi span {
    position: absolute;
    width: 30px;
    height: 4px;
    background: #666;
    border-radius: 10px;
    transition: all 400ms;
  }
  header .btn-gnavi span:nth-child(1) {
    top: 0;
  }
  header .btn-gnavi span:nth-child(2) {
    top: 10px;
  }
  header .btn-gnavi span:nth-child(3) {
    top: 20px;
  }
  header .btn-gnavi.hb-open {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
  }
  header .btn-gnavi.hb-open span {
    background: #fff;
  }
  header .btn-gnavi.hb-open span:nth-child(1) {
    width: 24px;
    transform: translate(-7px, 17px) rotate(45deg);
    -webkit-transform: translate(-7px, 17px) rotate(45deg);
  }
  header .btn-gnavi.hb-open span:nth-child(3) {
    width: 24px;
    transform: translate(-7px, -17px) rotate(-45deg);
    -webkit-transform: translate(-7px, -17px) rotate(-45deg);
  }
}
/**ハンバーガーメニュー　ここまで**/
footer {
  width: 100%;
  height: 100px;
  align-content: center;
  text-align: center;
  font-weight: bold;
  color: white;
  background-color: rgb(236, 163, 74);
  margin-top: 40px;
}
@media screen and (max-width: 800px) {
  footer {
    height: 60px;
    line-height: 60px;
  }
}

footer p {
  height: 100px;
  line-height: 100px;
}
@media screen and (max-width: 800px) {
  footer p {
    height: 60px;
    line-height: 60px;
  }
}

/*------- index.html_--------*/
.main-visual {
  max-width: 800px;
  margin: 30px auto 0 auto;
  padding-top: 120px;
}
@media screen and (max-width: 1000px) {
  .main-visual {
    padding-top: 80px;
  }
}
@media screen and (max-width: 800px) {
  .main-visual {
    padding-top: 50px;
  }
}
.main-visual img {
  width: 100%;
}

.contactform-wrapper {
  max-width: 1100px;
  margin: auto;
}

.contact-h2 {
  margin-bottom: 50px;
}

.contact-form {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.contact-form li {
  margin-bottom: 25px;
}

.e-mail,
.form-address,
.textarea {
  width: 98%;
  height: 27px;
  border: 1px solid #757575;
  border-radius: 5px;
  padding-left: 10px;
}

.your-name,
.form-tel {
  width: 250px;
  height: 27px;
  border: 1px solid #757575;
  border-radius: 5px;
  padding-left: 10px;
}
@media screen and (max-width: 500px) {
  .your-name,
  .form-tel {
    width: 210px;
  }
}

.textarea {
  height: 150px;
}

.required,
.arbitrary,
.contact-title {
  display: inline-block;
  margin-bottom: 10px;
}

.required {
  margin-right: 30px;
  margin-bottom: 10px;
  padding: 5px;
  background-color: hsl(0, 100%, 76%);
  color: #ffffff;
  border-radius: 5px;
}

.arbitrary {
  margin-right: 30px;
  margin-bottom: 10px;
  padding: 5px;
  background-color: #8d8dff;
  color: #ffffff;
  border-radius: 5px;
}

.form-submit {
  font-size: 20px;
  background-color: #800000;
  color: #ffffff;
  border: 0;
  border-radius: 5px;
  padding: 5px 20px;
  cursor: pointer;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  display: inline-block !important;
}
@media screen and (max-width: 500px) {
  .form-submit {
    font-size: 14px;
  }
}

.form-submit:hover {
  opacity: 0.7;
}

.confirm-left {
  display: inline-block;
  margin-right: 30px;
}

.confirm-right {
  display: inline-block;
  font-size: 20px;
  color: #0800ff;
}

.send-wrapper {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.send-completed {
  text-align: center;
  font-size: 30px;
  margin-top: 100px;
  margin-bottom: 50px;
}

.send-p {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 100px;
  text-align: center;
}

.form-submit-wrapper {
  display: inline-block;
  margin-right: 20px;
}

.contact-tell-wrapper {
  margin: 0 20px;
}

.contact-tell {
  max-width: 800px;
  margin: 0 auto;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  color: #ffffff;
  background-color: rgba(51, 15, 15, 0.8);
  margin: auto;
}

.contact-table-wrapper {
  max-width: 800px;
  margin: auto;
  margin-bottom: 50px;
  background-color: #f1f1f1;
  padding: 20px;
  box-sizing: border-box;
}

.contact-table {
  border: solid 1px #6e6e6e;
  margin: auto;
  margin-bottom: 20px;
}

.contact-tr {
  border-bottom: solid 1px #6e6e6e;
}

.tell-th1,
.tell-th2 {
  padding: 10px 30px;
  box-sizing: border-box;
  align-content: center;
}
@media screen and (max-width: 500px) {
  .tell-th1,
  .tell-th2 {
    padding: 5px 10px;
  }
}

.tell-th1 {
  background-color: #b6b6b6;
}
@media screen and (max-width: 500px) {
  .tell-th1 {
    font-size: 14px;
  }
}

.tell-th2 {
  background-color: #fff;
  color: #000;
}
@media screen and (max-width: 500px) {
  .tell-th2 {
    font-size: 14px;
  }
}

.contact-tell-txt {
  text-align: center;
  margin-bottom: 40px;
}
.contact-tell-txt:last-of-type {
  margin-bottom: 0;
}
.contact-tell-txt p {
  display: inline-block;
}

.tell-off {
  margin-top: 40px;
  text-align: center;
}

.contact-tell2 {
  max-width: 410px;
  margin: auto;
  margin-bottom: 10px;
  font-size: 14px;
  text-align: center;
}

.contact-opeartion {
  line-height: 1.5;
  text-align: center;
}

.contact-choice {
  margin-bottom: 10px;
}

.contact-sns {
  margin: auto;
  width: 100px;
  display: block;
}

.contact-sns img {
  width: 100%;
}

.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 1em;
  font-weight: bold !important;
  display: block;
  margin-top: 10px;
}

/* topへ戻るボタン */
.pagetop {
  height: 100px;
  width: 100px;
  position: fixed;
  right: 30px;
  bottom: 50px;
  z-index: 2;
  cursor: pointer;
  opacity: 0.7;
  display: none;
}

.pagetop img {
  width: 100%;
}

/*------- about_tsumic.html_--------*/
.under_h2_wrapper {
  text-align: center;
}

.under_h2 {
  position: relative;
  padding: 0.5em 3.5em;
  border: 3px solid #620000;
  color: #333333;
  font-size: 25px;
  font-weight: bold;
  display: inline-block;
  margin-top: 50px;
  letter-spacing: 0.2em;
  background-color: rgba(255, 108, 0, 0.231372549);
}
@media screen and (max-width: 800px) {
  .under_h2 {
    font-size: 18px;
  }
}

.under_h2::before,
.under_h2::after {
  position: absolute;
  border: solid #620000;
  content: "";
}

.under_h2::before {
  top: 3px;
  right: -16px;
  transform: skewY(45deg);
  width: 10px;
  height: 100%;
  border-width: 4px 3px 3px 0;
  background-color: rgba(255, 108, 0, 0.231372549);
}

.under_h2::after {
  bottom: -16px;
  left: 4px;
  transform: skewX(45deg);
  width: 100%;
  height: 10px;
  border-width: 0 2px 3px 4px;
  background-color: rgba(255, 108, 0, 0.231372549);
}

.under_h3 {
  max-width: 100%;
  margin: 80px auto 40px;
  font-weight: bold;
  padding: 0.5em 1em;
  border: 3px solid #B77466;
  background-image: linear-gradient(45deg, #fff 0 10%, #B77466 10%);
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 0.2em;
  position: relative;
}
@media screen and (max-width: 800px) {
  .under_h3 {
    margin: 40px auto 20px;
    font-size: 14px;
  }
}

.h3_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .h3_content {
    display: block;
  }
}

.h3_content-direction {
  flex-direction: row-reverse;
}

.under_h3:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #B77466 10%, #fff 0 10%);
  content: "";
  z-index: -1;
}

.h3_txt {
  width: 67%;
}
@media screen and (max-width: 800px) {
  .h3_txt {
    width: 100%;
    margin-bottom: 20px;
  }
}

.h3_img {
  width: 40%;
}
@media screen and (max-width: 800px) {
  .h3_img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.h3_img img {
  width: 100%;
}

.about_tsumic1-h3_img {
  width: 30%;
}
@media screen and (max-width: 800px) {
  .about_tsumic1-h3_img {
    width: 100%;
  }
}

.last_img {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}
@media screen and (max-width: 800px) {
  .last_img {
    display: block;
  }
}

table {
  margin: auto;
  margin-top: 80px;
}
@media screen and (max-width: 800px) {
  table {
    margin-top: 40px;
  }
}

td {
  border: solid 1px #bcbcbc;
  padding: 10px;
}

.td-day {
  background-color: #e5e5e5;
  border: solid 1px #e5e5e5;
  border-bottom: solid 1px #fff;
}

.about_tsumic2-inner {
  padding: 10px;
}

.about_tsumic2 p {
  margin-bottom: 10px;
}

.tsumic2_title {
  font-size: 20px;
  font-weight: bold;
}

.sns {
  width: 40px;
}
.sns img {
  width: 100%;
}

.email {
  text-decoration: underline;
  color: #7272ff;
}

.iframe-wrapper {
  max-width: 560px;
  margin: 0 auto;
}
.iframe-wrapper iframe {
  width: 100%;
}

.YouTube-title {
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 70px !important;
}
@media screen and (max-width: 800px) {
  .YouTube-title {
    margin-bottom: 40px !important;
  }
}

/*------- construction_example.html--------*/
.construction_example-img {
  max-width: 700px;
  margin: 0 auto;
}
.construction_example-img img {
  width: 100%;
}

.construction_example-wrapper {
  background-color: #fff;
  padding: 30px 0;
}

.construction_example-title {
  text-align: center;
  margin: 40px 0;
  font-size: 20px;
}

.construction_example-img-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 800px) {
  .construction_example-img-wrapper {
    display: block;
  }
}

.construction_example-img_1 {
  width: 40%;
}
@media screen and (max-width: 800px) {
  .construction_example-img_1 {
    width: 70%;
    margin: 0 auto;
  }
}
.construction_example-img_1 img {
  width: 100%;
}

/*--------------------------------------

全体設計

--------------------------------------*/
/*--------------------------------------

全体設計

--------------------------------------*//*# sourceMappingURL=style.css.map */