@charset "UTF-8";
/* CSS Document */
/*index ヘッダー*/
.header {
  position: fixed;
  top: 0;
}
/*index ヘッダー:pcサイズ*/
@media(min-width:960px) {
  .header {
    position: static;
  }
  /*max-width:960px index-jsが有効になる*/
  #global-nav {
    height: 74px;
    background-color: #FFF;
  }
  #global-nav.m_fixed {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    z-index: 9999;
  }
}
.section-top__slogan h1, .section-bussiness h2, .section-about h1, .section-contact h1 {
  font-family: "Noto Serif JP"
}
/*ファーストビュー*/
.slide-box {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.slide-image {
  opacity: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-animation: anime 30s 0s infinite;
  animation: anime 30s 0s infinite;
}
/*ファーストビュー:個別で位置指定(max-width:959px)*/
.white-steel__img {
  background-position: 30% center;
}
.building2__img {
  background-position: 60% center;
}
.plant__img {
  background-position: 70% center;
}
.slide-image:nth-of-type(2) {
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
}
.slide-image:nth-of-type(3) {
  -webkit-animation-delay: 20s;
  animation-delay: 20s;
}
/* ふわっとアニメーション */
@keyframes anime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes anime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadein {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
.section-top__slogan {
  position: relative;
  width: 100%;
  height: 100vh;
  color: #FFF;
  z-index: 100;
}
.section-top__slogan h1 {
  position: absolute;
  font-size: 3.5rem;
  line-height: 5.5rem;
  font-weight: 550;
  letter-spacing: 0.3rem;
  top: 20%;
  left: 10%;
  text-shadow: 1px 1px 3px grey;
}
.shiga {
  font-size: 4.4rem;
}
.sasa {
  font-size: 3.7rem;
}
.no {
  font-size: 3.1rem;
}
.ku {
  font-size: 3.9rem;
}
.top-br1, .top-br2 {
  display: none;
}
.section-top__slogan p {
  position: absolute;
  margin: 40px 40px 180px 40px;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: left;
  bottom: 1%;
  text-shadow: 1px 1px 2px grey;
}
.services .services-english__name {
  font-size: 6.0rem;
  line-height: 7.4rem;
}
.section-top {
  position: relative;
}
.scroll {
  position: absolute;
  height: 235px;
  bottom: -10%;
  right: 7%;
  vertical-align: middle;
  z-index: 10;
}
.scroll-text {
  position: relative;
  writing-mode: vertical-rl;
  font-family: "Noto Serif JP";
  font-size: 1.2rem;
  color: #FFF;
  letter-spacing: 0.3rem;
}
.scroll-text::after {
  position: absolute;
  margin-top: 70px;
  right: 12px;
  content: "";
  width: 1px;
  background: #FFF;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 100px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
/*top:pcサイズ*/
@media(min-width:960px) {
  /*ファーストビュー*/
  .slideBox {
    height: calc(100vh - 74px);
  }
  .slide-image {
    height: calc(100vh - 74px);
  }
  .section-top__slogan h1 {
    top: 15%;
    font-size: 7.5rem;
    font-weight: 550;
    line-height: 11.0rem;
    letter-spacing: 0.3rem;
  }
  .top-br1 {
    display: none;
  }
  .top-br2 {
    display: block;
  }
  .shiga {
    font-size: 11.0rem;
  }
  .sasa {
    font-size: 9.0rem;
  }
  .no {
    font-size: 6.5rem;
  }
  .ku {
    font-size: 9.3rem;
  }
  .section-top__slogan {
    position: relative;
    width: 100%;
    height: calc(100vh - 74px);
  }
  .section-top__slogan p {
    position: absolute;
    top: 60%;
    margin-left: 130px;
    font-size: 2.0rem;
    line-height: 3.5rem;
  }
  .scroll {
    bottom: -5%;
    right: 3%;
  }
  .scroll-text {
    font-size: 1.8rem;
    letter-spacing: 0.3rem;
  }
  .scroll-text::after {
    margin-top: 100px;
    content: "";
  }
}
/*top:mobile小サイズ*/
@media(max-width:374px) {
  .section-top__slogan h1 {
    font-size: 3.2rem;
    line-height: 5.2rem;
    font-weight: 550;
    letter-spacing: 0.3rem;
    top: 15%;
    left: 10%;
    text-align: left;
  }
  .top-br1 {
    display: block;
  }
  .shiga {
    font-size: 4.2rem;
  }
  .sasa {
    font-size: 3.5rem;
  }
  .ku {
    font-size: 3.4rem;
  }
}
/*共通の見出し横の番号*/
.number01, .number02, .number03, .number04 {
  font-family: "Arial";
  font-size: 9.0rem;
}
@media(min-width:960px) {
  .number01, .number02, .number03, .number04 {
    font-size: 22.0rem;
    font-weight: 550;
  }
}
/*共通の英語見出し*/
.services .services-english__name {
  font-family: "Helvetica Neue";
  font-weight: 550;
}
@media(min-width:960px) {
  .services .services-english__name {
    font-size: 15.0rem;
    line-height: 18.0rem;
  }
}
/*定規の位置指定(場所は共通・色は個別で指定している)*/
.heading-ruler {
  position: relative;
  display: flex;
}
.ruler01, .ruler02, .ruler03, .ruler04 {
  position: absolute;
  display: flex;
  max-width: 100%;
  height: auto;
  bottom: 13px;
  vertical-align: baseline;
}
@media(min-width:960px) {
  .ruler01, .ruler02, .ruler03, .ruler04 {
    bottom: 30px;
  }
}
/*事業案内*/
.section-bussiness {
  padding: 100px 0;
  background-image: url("../images/top/bussiness/bussiness_bg.jpg");
  background-position: 20% 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.bussiness-heading {
  position: relative;
  margin: 0 auto;
  top: 1px;
  right: 4px;
  color: #FFF;
  z-index: 1;
  opacity: 0.8;
  /*文字数が多いため、個別で大きさ指定*/
  font-size: 5.0rem;
}
.number01 {
  position: absolute;
  top: -8.5px;
  right: -25px;
  color: rgba(214, 232, 224, 0.95);
  opacity: 0.8;
  z-index: -1;
}
.section-bussiness h1 {
  margin-top: 28px;
  font-size: 2.4rem;
  font-family: "Noto Serif JP";
  color: #FFF;
  letter-spacing: 0.3rem;
}
.section-bussiness h2 {
  margin: 66px auto 30px;
  font-size: 2.4rem;
  line-height: 4.3rem;
  letter-spacing: 0.05rem;
  color: #FFF;
}
.bussiness-description {
  max-width: 310px;
  margin: 0 auto 53px;
  padding: 0 40px 0;
  font-size: 1.2rem;
  text-align: left;
  color: #FFF;
}
.bussiness-br1 {
  display: none;
}
.section-bussiness ul li {
  margin: 0 auto;
  width: calc(100% / 3);
  max-width: 330px;
  min-width: 300px;
  list-style: none;
  background-color: #FFF;
  border-radius: 10px;
}
.section-bussiness__picture {
  position: relative;
  width: 100%;
  height: 170px;
  border-radius: 10px 10px 0 0;
}
.bussiness-category__img {
  position: relative;
}
.bussiness-h4 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.6rem;
  font-weight: 500;
  color: #FFF;
  letter-spacing: 0.2rem;
}
.bussiness-category__text {
  margin: 0 auto 50px;
  padding: 22px 30px 28px;
  font-size: 1.2rem;
  font-weight: 400;
  text-align: left;
  color: #444;
}
.bussiness-category {
  /*下からふわっと*/
  animation: scroll-anim linear;
  animation-timeline: view();
  animation-range: entry 0% contain 20%;
}
@keyframes scroll-anim {
  from {
    opacity: 0;
    scale: 0.9;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}
/*事業案内:pcサイズ*/
@media(min-width:960px) {
  .section-bussiness {
    padding: 200px 0;
    background-position: 35% 0;
  }
  .bussiness-heading {
    top: 3px;
    right: 84px;
    font-size: 15.0rem;
    line-height: 18.0rem;
  }
  .number01 {
    top: -19.8px;
    right: -198px;
    letter-spacing: -1.0rem;
  }
  .section-bussiness h1 {
    font-size: 4.2rem;
  }
  .section-bussiness h2 {
    margin: 110px auto 52px;
    font-size: 5.0rem;
  }
  .section-bussiness ul {
    display: flex;
    max-width: 1040px;
    margin: 0 auto;
    justify-content: space-between;
    gap: 0 20px;
  }
  .bussiness-description {
    max-width: 838px;
    margin: 0 auto 130px;
    padding: 0 40px;
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 5.4rem;
  }
  .bussiness-br1 {
    display: block;
  }
  .section-bussiness p span {
    display: inline-block;
  }
  .bussiness-category__text {
    margin: 0 auto;
    padding: 30px 45px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 3.0rem;
  }
  .section-bussiness__picture {
    height: 276px;
    object-fit: cover;
  }
}
/*実績*/
.section-works {
  padding: 74px 0;
  background-color: #FFF;
}
.section-works .services-english__name {
  position: relative;
  margin: 0 auto;
  color: #2E9568;
  top: 1px;
  left: 40px;
  z-index: 100;
}
.number02 {
  position: absolute;
  color: #D6E8E0;
  right: 180px;
  bottom: 8px;
  z-index: -1;
}
.section-works h1 {
  margin: 20px auto 60px;
  font-size: 1.8rem;
  color: #2E9568;
  letter-spacing: 0.3rem;
  font-family: "Noto Serif JP";
}
/*実績一覧ボタンのアイコン*/
.icon-right {
  display: inline-block;
  vertical-align: middle;
  color: #D7E8E0;
  line-height: 1;
  position: relative;
  width: 0.8em;
  height: 0.8em;
  border: 0.075em solid currentColor;
  background: currentColor;
  border-radius: 50%;
  box-sizing: content-box;
  margin-left: 15px;
}
.icon-right::after {
  content: "";
  color: #2E9568;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.18em 0.31177em;
  border-left-color: currentColor;
  border-right: 0;
  transform: translateX(15%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.section-works ol li h3 {
  margin-bottom: 68px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 5.6rem;
  letter-spacing: 0.1rem;
}
/*実績一覧ボタン*/
.section-works__btn a {
  position: relative;
  top: 0;
  margin-top: 78px;
  padding: 15px 35px 15px 40px;
  text-decoration: none;
  color: #fff;
  background-color: #309B6F;
  box-shadow: 0 6px #1D5F44;
  border-radius: 30px;
  font-size: 1.6rem;
  letter-spacing: 0.3rem;
  transition: .2s ease-in-out;
}
.section-works__btn a:hover {
  top: 6px;
  box-shadow: 0 0 #1D5F44;
}
/*実績:pcサイズ*/
@media(min-width:960px) {
  .section-works {
    padding: 160px 0 190px;
  }
  .section-works .services-english__name {
    left: 125px;
    z-index: 100;
    top: 2px;
  }
  .number02 {
    left: -550px;
    bottom: 18.5px;
  }
  .section-works h1 {
    margin: 26px auto 117px;
    font-size: 4.2rem;
    font-family: "Noto Serif JP";
  }
  .section-works ol {
    display: flex;
    flex-wrap: wrap;
    max-width: 1040px;
    justify-content: center;
    margin: 0 auto;
    gap: 0 40px;
  }
  .section-works ol li {
    list-style: none;
  }
  .section-works ol li h3 {
    margin-bottom: 104px;
    font-size: 2.4rem;
  }
  .section-works__picture {
    height: 374px;
    object-fit: cover;
  }
  .works-box {
    position: relative;
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    width: 470px;
  }
  .section-works__btn a {
    margin-top: 145px;
    padding: 20px 60px 20px 100px;
    box-shadow: 0 7px #1D5F44;
    border-radius: 50px;
    font-size: 3.0rem;
    letter-spacing: 0.5rem;
  }
  .section-works__btn a:hover {
    top: 7px;
  }
}
/*私たちについて*/
.section-about {
  background-image: url("../images/top/about/graph-paper_mobile.png");
  background-color: #EFF1EF;
  background-repeat: repeat;
  background-position: center;
  border-radius: 10px;
  margin: 0 20px;
  padding: 77px 0 80px;
}
.about-heading {
  position: relative;
  z-index: 100;
  margin: 0 auto;
  color: #309B6F;
  opacity: 0.95;
  right: 50px;
  bottom: -1px;
}
.number03 {
  position: absolute;
  color: #A1CCB8;
  bottom: 8px;
}
.section-about h1 {
  margin: 18px auto 50px;
  font-size: 1.8rem;
  font-weight: 550;
  color: #309B6F;
  letter-spacing: 0.2rem;
}
.section-about__description {
  width: 90%;
  padding: 30px 0 40px;
  background-color: #FFF;
  z-index: 0;
}
.section-about__description h2 {
  font-size: 1.2rem;
  line-height: 2.0rem;
  padding: 0 30px 0 20px;
  font-weight: 400;
  text-align: left;
}
.section-about__description span {
  display: inline-block;
  margin-top: 25px;
}
.section-about__box {
  position: relative;
  margin-bottom: 200px;
}
.section-about__img {
  width: 235px;
  position: absolute;
  top: 85%;
  right: -20px;
  z-index: 1;
  box-shadow: 8px 8px 0 rgb(42, 125, 137, 0.5);
  /*下からふわっと*/
  animation: scroll-anim linear;
  animation-timeline: view();
  animation-range: entry 0% contain 20%;
}
@keyframes scroll-anim {
  from {
    opacity: 0;
    scale: 0.9;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}
/*私たちについて:tabletサイズ*/
@media(min-width:600px) {
  .section-about__description {
    width: 50%;
    padding: 73px 0 78px 73px;
  }
  .section-about__description h2 {
    padding: 0 90px 0 0;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 3.0rem;
  }
  .section-about__img {
    top: 50%;
    width: 45%;
    object-fit: cover;
  }
}
/*私たちについて:pcサイズ*/
@media(min-width:960px) {
  .section-about {
    background-image: url("../images/top/about/graph-paper_pc.png");
    padding-bottom: 125px;
  }
  .about-heading {
    right: 107px;
    bottom: -3px;
  }
  .number03 {
    bottom: 22px;
  }
  .section-about h1 {
    margin: 20px auto 103px;
    font-size: 4.2rem;
  }
  .section-about__description {
    width: 60%;
    padding: 73px 0 78px 73px;
  }
  .section-about__description h2 {
    padding: 0 168px 0 0;
    font-size: 2.4rem;
    line-height: 4.0rem;
  }
  .section-about__img {
    top: 30%;
    width: 45%;
  }
  .section-about__box {
    position: relative;
    margin-bottom: 30%;
  }
}
/*特徴*/
.section-feature {
  background-color: #50A483;
  margin: 0 20px;
  padding: 24px 20px 45px;
  box-shadow: 8px 8px 0 rgb(42, 125, 137, 0.5);
  max-width: 960px;
}
.section-feature h3 {
  margin: 0;
  color: #FFF;
  font-size: 4.2rem;
  line-height: 5.1rem;
}
.section-feature h2 {
  margin: 10px 0 20px;
  font-size: 1.4rem;
  color: #D7E8E0;
}
.section-feature ul li {
  max-width: 270px;
  margin: 0 auto 20px;
  padding: 12px 10px 30px 20px;
  list-style: none;
  background-color: #FFF;
  border-radius: 20px;
  border: 2px solid #309B6F;
}
.feature-icon {
  width: 50px;
  height: 50px;
  margin-top: 18px;
  padding: 15px;
  border-radius: 50%;
  object-fit: scale-down;
  background-color: #D7E8E0;
}
.section-feature__box {
  display: flex;
  justify-content: space-between;
}
.feature-text {
  width: 60%;
}
.section-feature h4 {
  width: 20px;
  text-align: center;
  border-bottom: 0.5px solid #2A7D89;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "Arial";
  color: #2A7D89;
}
.section-feature h5 {
  margin-bottom: 15px;
  text-align: left;
  font-size: 1.6rem;
  color: #2E9568;
}
.section-feature p {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.9rem;
  text-align: left;
}
/*特徴:pcサイズ*/
@media(min-width:960px) {
  .section-feature {
    padding: 50px 40px 0;
    margin: 200px auto 0;
    max-width: 1040px;
  }
  .section-feature h3 {
    font-size: 11.0rem;
    line-height: 13.4rem;
  }
  .section-feature h2 {
    margin: 0 auto 53px;
    font-size: 2.8rem;
    line-height: 6.2rem;
  }
  .section-feature ul {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    min-width: 0;
    gap: 0 20px;
  }
  .section-feature ul li {
    width: calc(100% / 3);
    max-height: 536px;
    padding-top: 30px;
    margin: 0 0 100px;
    border: 5px solid #309B6F;
  }
  .feature-icon {
    width: 110px;
    height: 110px;
    padding: 25px;
    margin: 0 auto;
  }
  .section-feature__box {
    display: block;
  }
  .feature-text {
    width: 100%;
  }
  .section-feature h4 {
    width: 45px;
    padding-bottom: 20px;
    border-bottom: 1.0px solid #2A7D89;
    font-size: 3.2rem;
  }
  .section-feature h5 {
    margin: 30px auto 24px;
    font-size: 2.4rem;
    text-align: center;
  }
  .section-feature p {
    font-size: 1.6rem;
    line-height: 3.0rem;
  }
}
/*会社概要*/
.section-company {
  margin: 50px 20px 0;
  padding: 24px 20px 43px;
  background-color: #FFF;
  box-shadow: 8px 8px 0 rgb(42, 125, 137, 0.5);
}
.section-company h3 {
  margin: 0;
  font-size: 4.2rem;
  line-height: 5.1rem;
  color: #2E9568;
}
.section-company h2 {
  margin: 7px 0 38px;
  font-size: 1.2rem;
  line-height: 2.5rem;
  color: #2E9568;
}
.section-company table {
  margin: 0 auto;
  text-align: left;
  max-width: 959px;
}
.section-company th {
  padding-left: 5px;
  font-size: 1.2rem;
  vertical-align: middle;
  color: #1E7B4E;
}
.section-company td {
  padding: 10px 0 10px 20px;
  vertical-align: middle;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2.0rem;
}
.company-br1 {
  display: none;
}
.company-br3 {
  display: none;
}
table {
  max-width: 330px;
  border-collapse: collapse
}
table tr {
  height: 43px;
  border: 1px solid #2E9568;
  border-right: none;
  border-left: none;
}
/*会社概要:pcサイズ*/
@media(min-width:960px) {
  .section-company {
    margin: 128px auto 0;
    padding: 80px 50px 76px;
    max-width: 1040px;
  }
  .section-company h3 {
    font-size: 11.0rem;
    line-height: 13.4rem;
  }
  .section-company h2 {
    margin: 0 auto 53px;
    font-size: 2.8rem;
    line-height: 6.2rem;
  }
  .section-company table {
    max-width: 960px;
  }
  .section-company th {
    width: 30%;
    padding-left: 50px;
    font-size: 1.8rem;
    line-height: 8.0rem;
    vertical-align: middle;
  }
  .section-company td {
    padding-left: 100px;
    vertical-align: middle;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.4rem;
  }
  .company-br1 {
    display: block;
  }
  .company-br2 {
    display: none;
  }
  .company-br3 {
    display: block;
  }
  .company-box {
    display: table;
    justify-content: space-between;
    padding-right: 70px;
  }
  .company-box span {
    display: none;
  }
  table tr {
    height: 80px;
  }
  .company-address, .company-number1 {
    height: 80px;
    display: table-cell;
    padding-left: 100px;
    vertical-align: middle;
  }
  .company-number1 {
    padding-left: 50px;
  }
  .company-number2 {
    height: 80px;
    display: table-cell;
    vertical-align: inherit;
    padding-left: 50px;
  }
}
/*お問い合わせ*/
.contact-background {
  position: relative;
  bottom: 32px;
  width: 100%;
  height: 330px;
  background-image: url("../images/top/contact/biwa-lake.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}
.heading-ruler__contact {
  position: relative;
  display: flex;
  margin-top: 120px;
}
.contact-heading {
  position: relative;
  margin: 120px auto 0;
  right: -42px;
  bottom: -1px;
  color: #FFF;
  z-index: 100;
}
.number04 {
  position: absolute;
  top: -8px;
  left: -93px;
  color: #C1D4E5;
  z-index: -1;
}
.section-contact h1 {
  color: #FFF;
}
.section-contact__description {
  width: 180px;
  margin: 0 auto;
  padding: 25px 65px 86px;
  background-color: #FFF;
  border-radius: 20px;
  font-size: 1.2rem;
  line-height: 2.0rem;
}
.section-contact__description h2 {
  font-weight: 450;
}
.contact-box {
  position: relative;
  bottom: 7%;
  z-index: 100;
}
/*電話ボタン*/
.section-contact__tel {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 270px;
  margin: 0 auto;
  padding: 20px 0 15px;
  background-color: #2E9568;
  border-radius: 20px;
  font-size: 1.2rem;
  color: #FFF;
  box-shadow: 0 4px #1D5F44;
  transition: .2s ease-in-out;
  z-index: 110;
}
.section-contact__tel:hover {
  bottom: -55px;
  box-shadow: 0 0 #1D5F44;
}
.tel-main__number {
  position: relative;
  font-family: "Helvetica Neue";
}
.section-contact__tel a {
  margin-left: 15px;
  letter-spacing: 0.1rem;
  pointer-events: auto;
}
.section-contact__tel p {
  font-weight: 400;
}
.tel-icon1 {
  position: absolute;
  display: block;
  margin: auto;
  width: 12px;
  height: 12px;
  top: 0;
  bottom: 0;
  left: 35px;
}
.section-contact a {
  text-decoration: none;
  font-size: 1.8rem;
  color: #FFF;
  pointer-events: auto;
}
.section-contact__tel span {
  font-size: 1.2rem;
}
.contact-white__background {
  height: 704px;
}
/*お問い合わせ:pcサイズ*/
@media(min-width:960px) {
  .contact-background {
    bottom: 60px;
    height: 826px;
  }
  /*見出し04のみ個別に余白設定*/
  .ruler04-box {
    padding-top: 125px;
  }
  .contact-heading {
    max-width: 1040px;
    right: -110px;
    bottom: -2px;
  }
  .number04 {
    top: -19px;
    left: -43%;
  }
  .section-contact h1 {
    font-size: 4.2rem;
  }
  .section-contact__description {
    min-width: 960px;
    padding: 90px 0 385px;
    border-radius: 50px;
    font-size: 2.8rem;
    line-height: 5.0rem;
  }
  .section-contact__description h2 br {
    display: block;
  }
  .contact-box {
    position: relative;
    bottom: 10%;
  }
  .section-contact__tel {
    position: absolute;
    bottom: 15%;
    width: 750px;
    padding: 65px 0 55px;
    border-radius: 50px;
    font-size: 1.9rem;
    box-shadow: none;
    pointer-events: none;
  }
  .section-contact__tel br {
    display: none;
  }
  .section-contact__tel span {
    font-size: 2.8rem;
  }
  .section-contact a {
    font-size: 5.5rem;
    line-height: 6.8rem;
  }
  .section-contact__tel a {
    letter-spacing: 0.3rem;
    font-weight: 500;
    pointer-events: none;
  }
  .section-contact__tel span {
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
  }
  .section-contact__tel p {
    font-weight: 500;
  }
  .tel-icon1 {
    width: 40px;
    height: 40px;
    left: 75px;
  }
}
/*店舗情報*/
.store-map__background {
  width: 100%;
  height: 610px;
  background-image: url("../images/top/contact/japan-map.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.store-heading {
  width: 143px;
  margin: 0 0 40px 40px;
}
.section-contact__store h3 {
  width: 143px;
  max-width: 450px;
  padding-top: 25px;
  font-size: 4.2rem;
  line-height: 5.1rem;
  color: #2E9568;
  border-bottom: 1px solid #2E9568;
}
.section-contact__store h2 {
  font-size: 1.2rem;
  color: #2E9568;
}
.store-parent {
  position: relative;
}
.store-box {
  position: absolute;
  min-width: 330px;
  top: 63%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section-contact__kitaotsu, .section-contact__honkatata {
  margin: 30px auto 0;
  padding: 20px 25px 15px;
  background-color: #2E9568;
  border-radius: 10px;
  color: #FFF;
}
.section-contact__honkatata {
  margin-bottom: 50px;
}
.section-contact__kitaotsu {
  margin-top: 130%;
}
.section-contact__store h4 {
  margin-bottom: 13px;
  padding-bottom: 13px;
  font-size: 1.8rem;
  letter-spacing: 0.3rem;
  border-bottom: 1px solid #FFF;
}
.section-contact__store address {
  display: inline-block;
  margin: 0 auto;
  text-align: left;
  font-size: 1.2rem;
  font-style: normal;
}
.tel-icon2 {
  margin: 0 12px 0 7px;
  width: 10px;
  height: 10px;
}
.map-icon {
  width: 23px;
  height: 15px;
  margin-right: 4px;
}
.map-box {
  margin-top: 10px;
}
.kitaotsu-map, .honkatata-map {
  width: 100%;
  height: 200px;
}
.contact-white__background {
  height: 1210px;
}
/*上部 余白調整のため指定*/
@media(max-width:767px) {
  .section-contact__kitaotsu {
    margin-top: 140%;
  }
}
/*店舗情報:tabletサイズ*/
@media(min-width:768px) {
  .store-box {
    top: 67%;
  }
  .section-contact__kitaotsu {
    margin-top: 110%;
  }
  .contact-white__background {
    height: 1300px;
  }
}
/*店舗情報:pcサイズ*/
@media(min-width:960px) {
  .store-map__background {
    position: relative;
    height: 2160px;
  }
  .store-heading {
    width: 450px;
  }
  .section-contact__store h3 {
    width: 450px;
    font-size: 11.0rem;
    line-height: 13.4rem;
    border-bottom: 2px solid #2E9568;
  }
  .section-contact__store h2 {
    font-size: 3.2rem;
    line-height: 4.8rem;
    padding-top: 25px;
  }
  .store-box {
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    top: 82%;
  }
  .section-contact__kitaotsu, .section-contact__honkatata {
    width: 50%;
    margin: 0;
    padding: 40px 0 20px;
  }
  .section-contact__kitaotsu {
    margin-right: 20px;
  }
  .section-contact__store h4 {
    width: 375px;
    margin: 0 40px 27px;
    padding-bottom: 22px;
    font-size: 3.4rem;
    letter-spacing: 0.5rem;
    border-bottom: 1px solid #FFF;
  }
  .section-contact__store address {
    margin: 0 auto;
    font-size: 1.8rem;
    line-height: 4.0rem;
    letter-spacing: 0.1rem;
  }
  .tel-icon2 {
    margin-right: 17px;
    width: 16px;
    height: 16px;
  }
  .map-icon {
    margin-right: 7px;
    width: 30px;
    height: 23px;
  }
  .map-box {
    margin: 27px 20px 0;
    max-width: 460px;
  }
  .kitaotsu-map, .honkatata-map {
    height: 230px;
  }
  .contact-white__background {
    height: 2220px;
  }
}
/*方眼紙と琵琶湖写真の重なり順の設定*/
.section-about {
  position: relative;
  z-index: 2;
}
.back-to__top {
  margin-top: 50px;
}