@charset "UTF-8";
/* CSS Document */

/*-----------------------------------
全体
-----------------------------------*/
body.body {
  font-size: 15px;
  line-height: 1.7;
  color: #181919;
  font-family: 'Noto Sans JP', sans-serif;
}

.block-center {
  margin: 0 auto;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

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

  .sp-only {
    display: block;
  }
}



/*-----------------------------------
flexbox
-----------------------------------*/

.flex {
  display: flex;
  width: 100%;
}

.flexbox-w80 {
  width: 80%;
  margin: 0 10px;
}

.flexbox-w70 {
  width: 70%;
  margin: 0 10px;
}

.flexbox-w60 {
  width: 60%;
  margin: 0 10px;
}

.flexbox-w50 {
  width: 50%;
  margin: 0 10px;
}

.flexbox-w40 {
  width: 40%;
  margin: 0 10px;
}

.flexbox-w30 {
  width: 30%;
  margin: 0 10px;
}

.flexbox-w20 {
  width: 20%;
  margin: 0 10px;
}

@media screen and (max-width: 600px) {
  .flex {
    display: block;
  }

  .flexbox-w80,
  .flexbox-w70,
  .flexbox-w60,
  .flexbox-w50,
  .flexbox-w40,
  .flexbox-w30,
  .flexbox-w20 {
    width: 100%;
    margin: 0;
  }
}

/*-----------------------------------
section
-----------------------------------*/
section {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 0 40px;
}

section.greeting {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.bg-pattern {
  background: url(../images/paper-bg.jpg) repeat;
}

@media screen and (max-width: 959px) {
  section {
    padding: 60px 20px;
    40px;
  }
}


/*-----------------------------------
button
-----------------------------------*/
.btn-green {
  display: block;
  width: 190px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  text-shadow: 0 0 1px green;
  background: url(../images/green-btn-bg.jpg);
  border-radius: 20px;
  text-align: center;
  padding-right: 10px;
  position: relative;
}

.btn-green::after {
  font-family: 'Font Awesome 6 Free';
  content: "\f0da";
  position: absolute;
  font-size: 1.1em;
  font-weight: 900;
  display: block;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 15px;
}

.btn-green:hover {
  color: #fff;
  opacity: 0.7;
  text-decoration: none;
}

/*-----------------------------------
header
-----------------------------------*/

.nav-wrap {
  width: 100%;
  background: url(../images/paper-bg.jpg) repeat;
  height: 70px;
  position: relative;
}

.nav-wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 10;
  width: 200px;
  height: 124px;
  background: url(../images/paper-bg.jpg) repeat;
  border-bottom-right-radius: 90px;
  border-bottom-left-radius: 90px;
}

.nav-wrap h1 a.logo-pc {
  display: block;
  width: 100px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}

.nav-wrap h1 a.logo-pc:hover {
  opacity: 0.6;
}

.nav-wrap h1 a.logo-pc img {
  width: 100%;
  margin-bottom: -120px;
}

.nav-wrap h1 a.logo-sp {
  display: none;
}

nav.navbar-pc {
  width: 100%;
  max-width: 900px;
  height: 70px;
  margin: 0 auto;
}

.navbar-sp {
  display: none;
}

.navbar-inner-left,
.navbar-inner-right {
  width: calc(50% - 100px);
  list-style: none;
  margin-top: 20px;
}

.navbar-inner-right {
  text-align: right;
}

.navbar-inner-left li,
.navbar-inner-right li {
  display: inline-block;
  width: 120px;
  text-align: center;
  position: relative;
}

.navbar-inner-left li {
  margin-right: 50px;
}

.navbar-inner-right li {
  margin-left: 50px;
}

.navbar-inner-left li::after,
.navbar-inner-right li::after {
  content: "";
  display: block;
  position: absolute;
  width: 120px;
  height: 6px;
  bottom: 6px;
  background: repeating-linear-gradient(135deg, #8ec43e, #8ec43e 4px, #f4efeb 4px, #f4efeb 8px);
  border-radius: 3px;
  transition: all .3s;
}

.navbar-inner-left li a,
.navbar-inner-right li a {
  display: block;
  padding-bottom: 20px;
  color: #763b25;
  transition: all .3s;
}

.navbar-inner-left li a:hover,
.navbar-inner-right li a:hover {
  text-decoration: none;
  transform: translateY(-5px);
}

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

  .nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
  }

  .nav-wrap h1 a.logo-sp img {
    width: 100%;
  }
}

/*-----------------------------------
Mobile menu
-----------------------------------*/
@media screen and (max-width: 959px) {
  .nav-wrap {
    height: 60px;
  }

  .nav-wrap h1 a.logo-sp {
    display: block;
    width: 160px;
    padding: 5px 0 0 10px;
  }

  nav.navbar-pc {
    display: none;
  }

  .navbar-sp {
    display: block;
  }

  .nav-wrap::after,
  .nav-wrap h1 a.logo-pc {
    display: none;
  }

  /*-----------------------------------
Mobile menu（開閉の動き）
-----------------------------------*/
  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: rgba(240, 226, 205, 0.95);
    /*動き*/
    transition: all 0.5s;
  }

  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    right: 0;
  }

  /*ナビゲーション*/
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /*リストのレイアウト設定*/

  #g-nav li {
    list-style: none;
    text-align: center;
  }

  #g-nav li a {
    color: #632b1c;
    text-decoration: none;
    padding: 5px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }

  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
    background-color: #632b1c;
    width: 45%;
  }

  .openbtn span:nth-of-type(1) {
    top: 15px;
  }

  .openbtn span:nth-of-type(2) {
    top: 23px;
  }

  .openbtn span:nth-of-type(3) {
    top: 31px;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }

  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }


  .global_nav_elements {
    width: 100%;
    height: 70px;
    line-height: 70px;
    padding: 0 10px;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
    border-bottom: solid 1px #632b1c;
  }

  .global_nav_elements a {
    color: #632b1c;
  }

  .global_nav_elements a:link {
    color: #632b1c;
  }

  .global_nav_elements a:visited {
    color: #632b1c;
  }

  .global_nav_elements a:hover {
    color: #632b1c;
  }

  .global_nav_elements a:active {
    color: #632b1c;
  }
}


/*-----------------------------------
main-vis
-----------------------------------*/
.main-vis {
  width: 100%;
  position: relative;
}

.main-vis-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Noto Serif JP', serif;
  color: #763b25;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
  box-shadow: 0 0 30px 30px rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.7);
  padding: 5px 20px;
}

.main-vis img {
  display: block;
  margin: auto;
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.main-vis .inquiry-btn_wrap {
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 960px;
}

.main-vis a.inquiry-btn {
  margin: 0 20px 0 auto;
}

@media screen and (max-width: 959px) {
  .main-vis {
    margin-top: 58px;
  }

  .main-vis-title {
    width: 70%;
    font-size: 1.8em;
    padding: 5px 10px;
  }

  .main-vis .inquiry-btn_wrap {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .main-vis-title {
    width: 90%;
    font-size: 1.3em;
    padding: 5px 10px;
  }

  .main-vis img {
    height: 300px;
  }
}

/*-----------------------------------
breadcrumb
-----------------------------------*/
nav.breadcrumb-wrap {
  width: 100%;
  height: 40px;
  background: #fff;
}

ol.breadcrumb {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  height: 40px;
  line-height: 40px;
  background: #fff;
  color: #763b25;
}

ol.breadcrumb .breadcrumb-item {
  color: #763b25;
  padding-right: 5px;
}

ol.breadcrumb .breadcrumb-item a {
  color: #763b25;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "\f105" !important;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #763b25 !important;
  margin-right: 5px;
}

@media screen and (max-width: 959px) {
  ol.breadcrumb {
    padding: 0 20px;
  }
}

/*-----------------------------------
contents
-----------------------------------*/
.top-catchcopy {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #006536;
  font-weight: 500;
  text-align: center;
  margin-top: 40px;
}

h3.heading {
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  color: #763b25;
  letter-spacing: 0.08em;
  text-align: center;
  margin: 0 auto 40px;
}

h3.heading span.logo-type-en {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  margin-top: 10px;
  padding: 0 20px;
}

h3.heading span.logo-type-en::before,
h3.heading span.logo-type-en::after {
  content: "";
  width: 40px;
  border-top: solid 1px #763b25;
}

h3.heading span.logo-type-en::before {
  margin-right: 1em;
}

h3.heading span.logo-type-en::after {
  margin-left: 1em;
}

figure.photo img {
  width: 100%;
  border-radius: 10px;
}

.txt-lead {
  text-align: center;
  margin-bottom: 40px;
}

.card-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap
}

.card-wrap li {
  width: calc(25% - 20px);
  margin: 10px;
  border-radius: 10px;
}

.card-wrap li a {
  display: block;
}

.card-wrap li a img {
  width: 100%;
  border-radius: 10px;
}

@media screen and (max-width: 600px) {
  .top-catchcopy {
    font-size: 1.05em;
  }

  h3.heading {
    font-size: 1.6em;
  }

  .card-wrap li {
    width: calc(50% - 10px);
    border-radius: 10px;
  }

  .card-wrap li:nth-child(odd) {
    margin: 10px 10px 10px 0;
  }

  .card-wrap li:nth-child(even) {
    margin: 10px 0 10px 10px;
  }
}

/*-----------------------------------
TOP-ご挨拶
-----------------------------------*/
.greeting p {
  margin-bottom: 20px;
  line-height: 1.9em;
}

figure.greeting-photo {
  width: 180px;
}

figure.greeting-photo img {
  width: 100%;
  border-radius: 10px;
}

@media screen and (max-width: 600px) {
  figure.greeting-photo {
    width: 60%;
    max-width: 160px;
    margin: 0 auto;
  }
}

/*-----------------------------------
TOP-事務所案内
-----------------------------------*/
a#office {
  display: block;
  position: relative;
  top: 70px;
}

table.office-data {
  width: 100%;
  border: solid 1px #632b1c;
}

table.office-data tr th {
  width: 160px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  color: #fff;
  background: #7A4A3D;
  border-bottom: solid 1px #fff;
}

table.office-data tr th:last-of-type {
  border-bottom: solid 1px #632b1c;
}

table.office-data td {
  padding: 0 20px;
  height: 46px;
  line-height: 46px;
  background: #fff;
  border-bottom: solid 1px #632b1c;
}

table.office-data td.tel_number a {
  color: #181919;
}

.explanation-box {
  background: #fff;
  padding: 20px;
  margin-top: 30px;
}

.explanation-heading {
  height: 36px;
  line-height: 36px;
  font-size: 18px;
  border-left: solid 10px #7A4A3D;
  padding-left: 10px;
  margin-bottom: 20px;
}

figure.portfolio-photo {
  width: 140px;
  height: 140px;
}

figure.portfolio-photo img {
  width: 100%;
  border-radius: 50%;
}

.logo-photo-wrap {
  position: relative;
  height: 100px;
  margin: 10px 0 0 0;
}

figure.logo-photo {
  width: 100%;
  max-width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

figure.logo-photo img {
  width: 100%;
}

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

  table.office-data tr th,
  table.office-data td {
    display: grid;
    place-items: center left;
    width: 100%;
    height: auto;
    min-height: 46px;
    line-height: 1.8em;
    padding: 5px 20px;
  }

  table.office-data tr th {
    text-align: left;
    padding-left: 20px;
  }

  figure.portfolio-photo {
    margin: 0 auto;
  }

  figure.logo-photo {
    width: 240px;
    margin: 15px 0 0 -10px;
  }
}

/*-----------------------------------
サービス内容
-----------------------------------*/

h3.heading-salary,
h3.heading-si,
h3.heading-labor,
h3.heading-ei,
h3.heading-rule,
h3.heading-disability,
h3.heading-gakudo,
h3.heading-seminar {
  color: #632b1c;
  font-size: 18px;
  padding: 0 0 15px 65px;
  margin: 100px 0 30px 0;
  position: relative;
}

h3.heading-salary:before,
h3.heading-si:before,
h3.heading-labor:before,
h3.heading-ei:before,
h3.heading-rule:before,
h3.heading-disability:before,
h3.heading-gakudo:before,
h3.heading-seminar:before {
  content: '';
  display: inline-block;
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
}

h3.heading-salary:before {
  background: url(../images/icon-salary.png) center / cover no-repeat;
}

h3.heading-si:before {
  background: url(../images/icon-si.png) center / cover no-repeat;
}

h3.heading-labor:before {
  background: url(../images/icon-labor.png) center / cover no-repeat;
}

h3.heading-ei:before {
  background: url(../images/icon-ei.png) center / cover no-repeat;
}

h3.heading-rule:before {
  background: url(../images/icon-rule.png) center / cover no-repeat;
}

h3.heading-disability:before {
  background: url(../images/icon-disability.png) center / cover no-repeat;
}

h3.heading-gakudo:before {
  background: url(../images/icon-gakudo.png) center / cover no-repeat;
}

h3.heading-seminar:before {
  background: url(../images/icon-seminar.png) center / cover no-repeat;
}

h3.heading-salary:after,
h3.heading-si:after,
h3.heading-labor:after,
h3.heading-ei:after,
h3.heading-rule:after,
h3.heading-disability:after,
h3.heading-gakudo:after,
h3.heading-seminar:after {
  content: '';
  background: repeating-linear-gradient(-45deg, #8ec43e, #8ec43e 2px, #fff 0, #fff 4px);
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 42px;
  right: 0;
  z-index: 1;
}

/*ここから料金表*/
.service-data_pc {
  display: table;
}

.service-data_sp {
  display: none;
}

.service-data_pc,
.service-data_sp {
  table-layout: fixed;
  width: 100%;
  color: #632b1c;
}

.service-data_pc th,
.service-data_sp th,
.service-data_pc td,
.service-data_sp td {
  padding: .6em;
  border: solid 1px #632b1c;
  text-align: center;
}

.service-data_pc th,
.service-data_sp th {
  background: url(../images/paper-bg.jpg);
}

.service-data_pc th {
  width: 160px;
}

.service-data_sp {
  display: none;
}

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

  h3.heading-salary,
  h3.heading-si,
  h3.heading-labor,
  h3.heading-ei,
  h3.heading-rule,
  h3.heading-disability,
  h3.heading-gakudo,
  h3.heading-seminar {
    margin: 80px 0 30px 0;
  }

  .service-data_pc {
    display: none;
  }

  .service-data_sp {
    display: table;
    table-layout: auto;
  }
}



/*-----------------------------------
お客様の声
-----------------------------------*/
.customers_voice-wrap {
  width: 100%;
  max-width: 800px;
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 40px;
}

h3.customers_name {
  color: #632b1c;
  font-size: 18px;
  padding: 0 0 15px 65px;
  margin: 10px 0 0 0;
  position: relative;
}

h3.customers_name:before {
  content: '';
  display: inline-block;
  width: 50px;
  height: 50px;
  background: url(../images/icon-voice.png) center / cover no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
}

h3.customers_name:after {
  content: '';
  background: repeating-linear-gradient(-45deg, #8ec43e, #8ec43e 2px, #fff 0, #fff 4px);
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 42px;
  right: 0;
  z-index: 1;
}

.subtitle {
  font-size: 1.2em;
  color: #32865F;
  padding: 10px;
  position: relative;
  margin: 10px 0 -20px 0;
}

.headline {
  font-size: 1.1em;
  padding: 0 1em;
  margin: 30px 0 0 0;
  color: #632b1c;
}

.note {
  padding: 0 1em;
  background: linear-gradient(#ccc 1px, transparent 1px) #fff;
  background-size: auto 2.5em;
  line-height: 2.5em;
  font-size: 14px;
  overflow: hidden;
}

.note p {
  margin-top: 0.5em;
}

/*-----------------------------------
個人情報の保護
-----------------------------------*/
.privacy-policy {
  max-width: 700px;
}


/*-----------------------------------
お問い合わせ
-----------------------------------*/
section.inquiry .inquiry-lead {
  margin: 0 auto;
  width: 100%;
  max-width: 640px;
}

section.inquiry .inquiry-lead a {
  color: #32865F;
  text-decoration: underline;
}

.inquiry-form-innerbox {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

/*-----------------------------------
footer
-----------------------------------*/
.footer {
  width: 100%;
  font-size: 14px;
  min-height: 164px;
  background: #fff;
  padding-top: 10px;
  position: relative;
}

.footer::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 6px;
  top: -6px;
  background: repeating-linear-gradient(135deg, #8ec43e, #8ec43e 4px, #fff 4px, #fff 8px);
}

.footer::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 90px;
  bottom: 0;
  background: url(../images/footer-grass.png) repeat;
}

.footer-innnerbox {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.footer figure.footer-logo {
  width: 164px;
}

.footer figure.footer-logo img {
  width: 100%;
}

.footer ul {
  display: flex;
  flex-wrap: wrap;
}

.footer ul li a {
  color: #763b25;
  padding: 0 20px;
}

.copyright {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  z-index: 100;
  font-size: 12px;
  text-align: center;
}

@media screen and (max-width: 959px) {
  .footer {
    height: 200px;
  }

  .footer-innnerbox {
    padding: 0 20px;
  }

  .footer figure.footer-logo {
    order: 1;
    margin-right: 30px;
  }

  .footer ul {
    order: 3;
    margin-top: 20px;
  }

  .footer a.btn-green {
    order: 2;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    height: 340px;
  }

  .footer::after {
    height: 100px;
  }

  .footer-innnerbox {
    flex-direction: column;
  }

  .footer figure.footer-logo {
    order: 1;
  }

  .footer ul {
    order: 2;
    flex-wrap: wrap;
    margin-top: 10px;
  }

  .footer ul li {
    margin-bottom: 10px;
  }

  .footer ul li:nth-child(odd) {
    width: 200px;
    margin-bottom: 10px;
  }

  .footer a.btn-green {
    order: 3;
    margin-top: 20px;
  }

  .copyright {
    width: 100%;
  }
}

/*-----------------------------------
ページトップへ戻るボタン
-----------------------------------*/
#pageTop {
  position: fixed;
  bottom: 25px;
  right: 20px;
  z-index: 10000;
}

#pageTop i {
  margin-right: 7px;
}

#pageTop a {
  display: block;
  padding: 8px 0 0 8px;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  line-height: 30px;
  background: rgba(218, 186, 142, 0.8);
  color: #fff;
  font-size: 1.5em;
  font-weight: 900;
  text-decoration: none;
  text-align: center;
  outline: none;
}

#pageTop a:hover {
  text-decoration: none;
  background: rgba(218, 186, 142, 1);
}
