@charset "UTF-8";
body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  color: #260404;
  font-size: 14px;
  line-height: 2em;
  letter-spacing: 0.1em;
  background-color: #F3F3F3;
}

/*アニメーション要素のスタイル*/
.animation {
  opacity: 0;
  visibility: hidden;
  transition: 2s;
  transform: translateY(100px);
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  -webkit-transition: 2s;
  -moz-transition: 2s;
  -ms-transition: 2s;
  -o-transition: 2s;
}

/*アニメーション要素までスクロールした時のスタイル*/
.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.box {
  /* 方眼紙模様に必須のスタイル */
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #E6E6E6 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #E6E6E6 calc(100% - 1px));
  background-size: 48px 48px;
  background-repeat: repeat;
  background-position: center center;
}

/* ========================== 
section共通クラス
===========================*/
section {
  padding: 160px 0;
}

.container {
  width: 1080px;
  margin: auto;
}

h2 {
  font-family: "Stoke", serif;
  font-size: 56px;
  line-height: 80px;
  margin-bottom: 48px;
}

h2 .kana {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 2em;
  letter-spacing: 0.2em;
}

h2 .line {
  width: 96px;
  height: 0px;
  border: 1px solid #AB903D;
  margin-top: 16px;
}

h3 {
  font-family: "Stoke", serif;
  font-size: 32px;
  line-height: 48px;
}

h3 .kana {
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 0.2em;
}

.main-text {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  line-height: 2em;
}

.sub-text {
  margin: 16px 0 48px 0;
}

.btn-more {
  position: relative;
  font-family: "Stoke", serif;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.2em;
  color: #AB903D;
  border: 1px solid #AB903D;
  padding: 8px 48px;
  margin-left: 10px;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-more:hover {
  background-color: #AB903D;
  color: #F3F3F3;
}

.btn-more:hover::before, .btn-more:hover::after {
  width: calc(100% + 11px);
  height: calc(100% + 11px);
  border-color: #AB903D;
}

.btn-more::before, .btn-more::after {
  content: '';
  position: absolute;
  border: solid #AB903D;
  width: 20px;
  height: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-more::before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
}

.btn-more::after {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}

@media screen and (max-width: 1079px) {
  section {
    padding: 96px 24px;
  }
  .container {
    width: 100%;
  }
  h2 {
    font-size: 40px;
    line-height: 60px;
    margin-bottom: 48px;
  }
  h2 .kana {
    font-size: 12px;
  }
  h2 .line {
    width: 48px;
    margin-top: 8px;
  }
  h3 {
    font-size: 24px;
    line-height: 40px;
  }
  .main-text {
    font-family: "Noto Serif JP", serif;
    font-size: 20px;
    line-height: 2em;
  }
  .sub-text {
    margin: 8px 0 48px 0;
  }
  .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* ========================== 
ヘッダー
===========================*/
header {
  height: 96px;
  width: 100%;
  padding: 0 0 0 96px;
  background-color: #F3F3F3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .logo {
  width: 240px;
}

header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}

header ul .nav a {
  position: relative;
}

header ul .nav a:hover {
  color: #AB903D;
}

header ul .nav a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

header ul .nav a::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #AB903D;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
}

header ul .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 96px;
  width: 200px;
  background: #430B0B;
  cursor: pointer;
}

header ul .contact a {
  color: #F3F3F3;
}

header ul .contact:hover {
  background: #AB903D;
}

header .nav-sp {
  display: none;
}

@media screen and (max-width: 1079px) {
  header {
    height: 80px;
    padding: 0 24px;
  }
  header .logo {
    width: 160px;
  }
  header .nav-pc {
    display: none;
  }
  header .nav-sp {
    display: block;
  }
  header .nav-sp .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
  }
  header .nav-sp .menu p {
    font-family: "Stoke", serif;
  }
}

/* ========================== 
トップ
===========================*/
.top {
  width: 100vw;
  height: 90vh;
  background-image: url("../img/main.jpg");
  background-position: 60% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.top .message {
  color: #F3F3F3;
  position: absolute;
  bottom: 120px;
  left: 96px;
  -webkit-filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.2)) drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.2)) drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}

.top .message .en-message {
  font-family: "Stoke", serif;
}

.top .message .main-message {
  font-family: "Noto Serif JP", serif;
  font-size: 60px;
  line-height: 80px;
  margin: 8px 0 24px 0;
}

.top .message .sub-message {
  line-height: 2.5em;
}

@media screen and (max-width: 1079px) {
  .top .message {
    bottom: 96px;
    left: 24px;
  }
  .top .message .en-message {
    font-family: "Stoke", serif;
  }
  .top .message .main-message {
    font-size: 40px;
    line-height: 64px;
    margin: 8px 0 16px 0;
  }
  .top .message .sub-message {
    line-height: 2em;
  }
}

/* ========================== 
狗岡税理士事務所について
===========================*/
.about-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.about-wrapper .content-l {
  width: 45%;
}

.about-wrapper .content-r-pc {
  width: 45%;
}

.about-wrapper .content-r-pc .img-about {
  width: 100%;
  height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 1080px) {
  .img-about-sp {
    display: none;
  }
}

@media screen and (max-width: 1079px) {
  .about-wrapper .content-l {
    width: 100%;
  }
  .about-wrapper .content-l .img-about-sp {
    width: 100%;
    height: 320px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 0;
       object-position: 50% 0;
    margin-bottom: 24px;
    -o-object-position: 50% 30%;
       object-position: 50% 30%;
  }
  .about-wrapper .content-r-pc {
    display: none;
  }
}

/* ========================== 
サービス & 料金
===========================*/
.service {
  background-image: url("../img/23784675_l.jpg");
  background-size: cover;
}

.service h2,
.service h3,
.service .main-text,
.service .sub-text {
  color: #F3F3F3;
}

.service-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service-title .service-text {
  width: 65%;
}

.service-wrapper-service,
.service-wrapper-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 96px;
}

.service-wrapper-service .content-l-service,
.service-wrapper-service .content-r-Price,
.service-wrapper-price .content-l-service,
.service-wrapper-price .content-r-Price {
  width: calc(70% - 24px);
}

.service-wrapper-service .content-r-service,
.service-wrapper-service .content-l-Price,
.service-wrapper-price .content-r-service,
.service-wrapper-price .content-l-Price {
  width: calc(30% - 24px);
}

.service-wrapper-service .img-service,
.service-wrapper-service .img-price,
.service-wrapper-price .img-service,
.service-wrapper-price .img-price {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1079px) {
  .service-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .service-title .service-text {
    width: 100%;
  }
  .service-title br {
    display: none;
  }
  .service-wrapper-service {
    margin: 24px 0 0 0;
  }
}

@media screen and (max-width: 640px) {
  .service-wrapper-service .content-l-service,
  .service-wrapper-service .content-r-Price,
  .service-wrapper-price .content-l-service,
  .service-wrapper-price .content-r-Price {
    width: 100%;
  }
  .service-wrapper-service .content-r-service,
  .service-wrapper-service .content-l-Price,
  .service-wrapper-price .content-r-service,
  .service-wrapper-price .content-l-Price {
    width: 100%;
  }
  .service-wrapper-service {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 24px 0 0 0;
  }
  .service-wrapper-price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

/* ========================== 
お知らせ
===========================*/
.news .btn {
  text-align: right;
}

.news-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.news-box {
  width: calc(100% / 3 - 24px);
  position: relative;
  display: inline-block;
  margin-bottom: 96px;
  cursor: pointer;
}

.news-box::before, .news-box::after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  background: #D8D8D8;
  width: 100%;
  height: 2px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.news-box::after {
  width: 96px;
  background: #AB903D;
}

.news-box:hover::after {
  width: 100%;
}

.news-box .ditail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news-box .ditail .data,
.news-box .ditail .category {
  font-size: 10px;
  letter-spacing: 0.2em;
  line-height: 1em;
}

.news-box .ditail .data {
  margin-right: 8px;
  padding-right: 8px;
  border-right: 1px solid;
}

.news-box .news-title {
  margin: 16px 0 24px 0;
}

@media screen and (max-width: 1079px) {
  .news-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .news-box {
    width: 100%;
    margin-bottom: 48px;
  }
}

/* ========================== 
お問い合わせ
===========================*/
.contact {
  background-image: url("../img/23784675_l.jpg");
  background-size: cover;
}

.contact h2,
.contact h3,
.contact .main-text,
.contact .sub-text {
  color: #F3F3F3;
}

.contact-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact-wrapper .btn-contact-tel,
.contact-wrapper .btn-contact-form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 48px;
  cursor: pointer;
  width: calc(100% / 2 - 24px);
  height: 120px;
  background: linear-gradient(103.39deg, #380909 26.14%, #73262B 93.23%);
  background-position: 30% 50%;
  background-size: 200% auto;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: #F3F3F3;
  letter-spacing: 0.2em;
}

.contact-wrapper .btn-contact-tel .triangle,
.contact-wrapper .btn-contact-form .triangle {
  position: absolute;
  bottom: 16px;
  right: 16px;
  border-top: 12px solid transparent;
  border-right: 12px solid #F3F3F3;
}

.contact-wrapper .btn-contact-tel:hover,
.contact-wrapper .btn-contact-form:hover {
  background-position: 99% 50%;
}

.contact-wrapper .btn-contact-tel {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contact-wrapper .btn-contact-tel .tel {
  font-size: 24px;
}

@media screen and (max-width: 640px) {
  .contact-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .contact-wrapper .btn-contact-tel,
  .contact-wrapper .btn-contact-form {
    width: 100%;
  }
}

/* ========================== 
フッター
===========================*/
footer {
  background-color: #260404;
  color: #F3F3F3;
  padding: 96px 0;
}

footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
}

footer .container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .container ul li a {
  color: #F3F3F3;
}

footer .container ul li a:hover {
  color: #AB903D;
}

footer .container ul span {
  border: 0.5px solid #F3F3F3;
  margin: 0 16px;
}

footer .container .footer-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .container .footer-about .address,
footer .container .footer-about .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .container .footer-about .address img,
footer .container .footer-about .tel img {
  margin-right: 8px;
}

footer .container .footer-about .address {
  margin-right: 32px;
}

@media screen and (max-width: 1079px) {
  footer .container {
    gap: 32px;
  }
  footer .container ul {
    display: none;
  }
  footer .container .footer-about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .container .footer-about .address {
    margin-bottom: 8px;
  }
}
/*# sourceMappingURL=style.css.map */