@charset "UTF-8";
/* CSS Information
---------------------------------------------------------------
Site URL:https://tsunagu-japan.works/
File name:style.css
Summary:base styles
Created:2023-06-26
--------------------------------------------------------------- */
/* Fonts */
/* ------------------------------------------------------------ */
/* Link */
/* ------------------------------------------------------------ */
a {
  text-decoration: none;
}

a[href^="tel:"] {
  pointer-events: none;
  cursor: text;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

/* Animation */
/* ------------------------------------------------------------ */
img,
.alpha {
  transition: all 0.5s ease;
}

.alpha:hover {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

/* Font */
/* ------------------------------------------------------------ */
sup {
  font-size: 66%;
  vertical-align: top;
}

sub {
  font-size: 66%;
  vertical-align: baseline;
}

/* インデント1文字分 */
/* ------------------------------------------------------------ */
.indent {
  text-indent: -1em;
  margin-left: 1em;
}

/* Clear */
/* ------------------------------------------------------------ */
.clfx:after {
  content: "";
  height: 0;
  clear: both;
  display: block;
  visibility: hidden;
}

/* pc_mode / sp_mode */
/* ------------------------------------------------------------ */
.pc_mode {
  display: inherit;
}

.sp_mode {
  display: none;
}

@media screen and (max-width: 1024px) {
  .pc_mode {
    display: none;
  }
  .sp_mode {
    display: inherit;
  }
}
/* Style */
/* ------------------------------------------------------------ */
html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html body {
  font-size: 16px;
}
html body::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 1024px) {
  html body {
    font-size: 14px;
  }
}
html body header {
  position: relative;
  z-index: 2;
}
html body header .inner {
  width: 100%;
  height: 100px;
  position: fixed;
}
html body header .inner .header_area {
  border-top: 6px #7B9E29 solid;
  background: rgb(255, 255, 255);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  transition: all 0.5s ease;
}
html body header .inner .header_area > div {
  height: 94px;
  display: flex;
  align-items: center;
}
html body header .inner .header_area > div > h1 {
  background: url(../img/logo.svg) no-repeat center center;
  width: 150px;
  height: 28px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
html body header .inner .header_area > nav#global_nav > h2 {
  display: none;
}
html body header .inner .header_area > nav#global_nav > ul {
  display: flex;
  align-items: center;
}
html body header .inner .header_area > nav#global_nav > ul > li {
  margin-left: 60px;
}
html body header .inner .header_area > nav#global_nav > ul > li:first-child {
  margin-left: 0;
}
html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(1) a, html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(2) a, html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(3) a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  padding: 0;
}
html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(1) a span, html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(2) a span, html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(3) a span {
  font-weight: 700;
  white-space: nowrap;
  position: relative;
}
html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(1) a span::after, html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(2) a span::after, html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(3) a span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s ease;
}
html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(1) a:hover span::after, html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(2) a:hover span::after, html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(3) a:hover span::after {
  background: #000;
  bottom: -5px;
}
html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(4) {
  width: 170px;
}
html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(4) a {
  background: #7B9E29;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  width: 100%;
  height: 52px;
  color: #fff;
  font-weight: 700;
  transition: all 0.3s ease;
}
html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(4) a span {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(4) a:hover {
  background: #5c751e;
}
@media screen and (max-width: 1024px) {
  html body header .inner {
    height: 50px;
  }
  html body header .inner .header_area {
    border-top: 3px #7B9E29 solid;
    padding: 0 4vw;
  }
  html body header .inner .header_area > div {
    justify-content: space-between;
    box-sizing: border-box;
    width: 100%;
    height: 47px;
    z-index: 5;
  }
  html body header .inner .header_area > div > h1 {
    background: url(../img/logo.svg) no-repeat center center;
    width: 90px;
    height: 17px;
  }
  html body header .inner .header_area > div #nav_toggle {
    cursor: pointer;
  }
  html body header .inner .header_area > div #nav_toggle > div {
    position: relative;
    border-radius: 31px;
    width: 31px;
    height: 31px;
  }
  html body header .inner .header_area > div #nav_toggle > div span {
    width: 21px;
    height: 1px;
    left: 5px;
    display: block;
    background: #7B9E29;
    position: absolute;
    transition: transform 0.3s ease-in-out, top 0.2s ease;
  }
  html body header .inner .header_area > div #nav_toggle > div span:nth-child(1) {
    top: 10px;
  }
  html body header .inner .header_area > div #nav_toggle > div span:nth-child(2) {
    top: 15px;
  }
  html body header .inner .header_area > div #nav_toggle > div span:nth-child(3) {
    top: 20px;
  }
  html body header .inner .header_area > nav#global_nav {
    background: rgb(255, 255, 255);
    color: #fff;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    z-index: 4;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  html body header .inner .header_area > nav#global_nav > h2 {
    display: block;
    color: #7B9E29;
    font-size: 18px;
    font-weight: 700;
  }
  html body header .inner .header_area > nav#global_nav > ul {
    display: block;
    width: 100%;
  }
  html body header .inner .header_area > nav#global_nav > ul > li {
    text-align: center;
    font-size: 16px;
    margin: 30px auto 0;
    display: block;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.1s ease;
  }
  html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(1) {
    transition-delay: 0.1s !important;
  }
  html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(2) {
    transition-delay: 0.2s !important;
  }
  html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(3) {
    transition-delay: 0.3s !important;
  }
  html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(4) {
    transition-delay: 0.4s !important;
  }
  html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(1) a, html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(2) a, html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(3) a {
    color: #000;
  }
  html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(1) a span, html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(2) a span, html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(3) a span {
    font-size: 16px;
    font-weight: 700;
    position: relative;
  }
  html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(1) a span::after, html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(2) a span::after, html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(3) a span::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0px;
    left: 0;
    transition: all 0.3s ease;
  }
  html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(1) a:hover span::after, html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(2) a:hover span::after, html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(3) a:hover span::after {
    background: #000;
    bottom: -5px;
  }
  html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(4) {
    width: 170px;
  }
  html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(4) a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #7B9E29;
    border-radius: 20px;
    width: 100%;
    height: 40px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
  }
  html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(4) a span {
    font-size: 16px;
    font-weight: 700;
  }
  html body header .inner .header_area > nav#global_nav > ul > li:nth-of-type(4) a:hover {
    background: #5c751e;
  }
  html body header .inner.open {
    position: fixed !important;
    top: 0px !important;
    margin-top: 0 !important;
    z-index: 3;
  }
  html body header .inner.open .header_area #nav_toggle span:nth-child(1) {
    top: 15px;
    transform: rotate(45deg);
  }
  html body header .inner.open .header_area #nav_toggle span:nth-child(2) {
    top: 15px;
    width: 0;
    left: 50%;
  }
  html body header .inner.open .header_area #nav_toggle span:nth-child(3) {
    top: 15px;
    transform: rotate(-45deg);
  }
  html body header .inner.open .header_area > nav#global_nav {
    visibility: visible;
    opacity: 1;
  }
  html body header .inner.open .header_area > nav#global_nav > ul > li {
    opacity: 1;
    transform: translateX(0);
    transition: transform 0.5s ease, opacity 0.9s ease;
  }
}
html body main section:not(#swiper-wrap) {
  margin: 120px 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section:not(#swiper-wrap) {
    margin: 60px 0 0;
  }
}
html body main section:not(#swiper-wrap) .inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  html body main section:not(#swiper-wrap) .inner {
    box-sizing: border-box;
    padding: 0 4vw;
  }
}
html body main section:not(#swiper-wrap) .inner > h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  html body main section:not(#swiper-wrap) .inner > h3 {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
html body main section:not(#swiper-wrap) .inner > h3::before {
  content: attr(data-subtitle);
  display: block;
  font-size: 14px;
  font-weight: 900;
  color: #7B9E29;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  html body main section:not(#swiper-wrap) .inner > h3::before {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
html body main section#swiper-wrap {
  max-width: 100vw;
  position: relative;
  overflow: hidden;
}
html body main section#swiper-wrap .swiper-slide-active .slide-img > img,
html body main section#swiper-wrap .swiper-slide-duplicate-active .slide-img > img,
html body main section#swiper-wrap .swiper-slide-prev .slide-img > img {
  animation: zoom-in 10s linear 0s 1 normal both;
  overflow: hidden;
}
@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
html body main section#swiper-wrap .swiper-slide .slide-img > h2 {
  position: absolute;
  bottom: 10%;
  left: 10%;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  html body main section#swiper-wrap .swiper-slide .slide-img > h2 {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 90%;
    max-width: 524px;
    margin: 0 auto;
    top: 0;
    right: 0;
    bottom: 14%;
    left: 0;
  }
}
html body main section#swiper-wrap .swiper-slide .slide-img > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100vw;
  height: 100vh;
}
html body main section#swiper-wrap .hero_scroll_outer {
  width: 90px;
  height: 94px;
  position: absolute;
  right: 20px;
  bottom: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transition: opacity 0.5s;
}
@media screen and (max-width: 1024px) {
  html body main section#swiper-wrap .hero_scroll_outer {
    display: none;
  }
}
html body main section#swiper-wrap .hero_scroll_outer p {
  letter-spacing: 1px;
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  position: absolute;
  top: -40px;
  left: 20px;
  transform: rotate(90deg);
}
html body main section#swiper-wrap .hero_scroll_outer .hero_scroll_bar {
  height: 94px;
  width: 1px;
  background: none;
  margin: 10px auto 0;
  position: relative;
}
html body main section#swiper-wrap .hero_scroll_outer .hero_scroll_bar::after {
  content: "";
  display: block;
  width: 1px;
  height: 94px;
  position: absolute;
  left: 5px;
  top: 10px;
  background: #fff;
  transform-origin: center top;
  transform: scale(0);
  animation: heroScroll 2s ease infinite;
}
@keyframes heroScroll {
  0%, 15% {
    transform: scale(0);
    opacity: 0;
  }
  30% {
    transform: scale(1);
    opacity: 1;
  }
  80% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
html body main section#greeting .inner {
  background: url(../img/greeting_bg.png) no-repeat;
  background-position: 100% center;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  html body main section#greeting .inner {
    background-position: calc(50% + 250px) center;
    background-size: cover;
  }
}
html body main section#greeting .inner > h3 {
  align-items: flex-start;
}
html body main section#greeting .inner > p:nth-of-type(1) {
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  html body main section#greeting .inner > p:nth-of-type(1) {
    text-align: left;
  }
}
html body main section#greeting .inner > p:nth-of-type(2) {
  width: 288px;
  margin: 40px 0 0 auto;
}
@media screen and (max-width: 1024px) {
  html body main section#greeting .inner > p:nth-of-type(2) {
    width: 144px;
    margin: 20px 0 0 auto;
  }
}
html body main section#business .inner {
  max-width: 1200px;
}
html body main section#business .inner > div {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner > div {
    display: block;
  }
}
html body main section#business .inner > div article {
  width: 100%;
  max-width: 31%;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner > div article {
    max-width: 100%;
    margin: 0 auto;
  }
  html body main section#business .inner > div article:nth-of-type(n+2) {
    margin-top: 30px;
  }
}
html body main section#business .inner > div article figure {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  max-width: 458px;
  margin: 0 auto;
}
html body main section#business .inner > div article figure::before {
  content: "";
  display: block;
  padding-top: 85%;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner > div article figure::before {
    padding-top: 85%;
  }
}
html body main section#business .inner > div article figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
html body main section#business .inner > div article figcaption {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner > div article figcaption {
    margin-top: 15px;
  }
}
html body main section#business .inner > div article figcaption h4 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #7B9E29;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner > div article figcaption h4 {
    font-size: 18px;
  }
}
html body main section#business .inner > div article figcaption h4::after {
  content: attr(data-subtitle);
  display: block;
  font-size: 14px;
  font-weight: 900;
  margin-left: 20px;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner > div article figcaption h4::after {
    font-size: 12px;
    margin-left: 10px;
  }
}
html body main section#business .inner > div article figcaption p {
  line-height: 2;
  margin-top: 15px;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner > div article figcaption p {
    margin-top: 10px;
  }
}
html body main section#business .inner > div article .btn {
  width: 100%;
  margin: 30px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner > div article .btn {
    margin: 15px auto 0;
  }
}
html body main section#business .inner > div article .btn a {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  width: 100%;
  height: 78px;
  color: #000;
  font-weight: 700;
  border: 1px #DBDBDB solid;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner > div article .btn a {
    height: 40px;
  }
}
html body main section#business .inner > div article:nth-of-type(1) figure {
  border: 1px #DBDBDB solid;
}
html body main section#business .inner > div article:nth-of-type(1) .btn a {
  background: #fff url(../img/arrow1.svg) no-repeat right 20px center;
  background-size: 20px;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner > div article:nth-of-type(1) .btn a {
    background: #fff url(../img/arrow1.svg) no-repeat right 10px center;
    background-size: 14px;
  }
}
html body main section#business .inner > div article:nth-of-type(1) .btn a:hover {
  background: #5c751e url(../img/arrow1.svg) no-repeat right 20px center;
  background-size: 20px;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner > div article:nth-of-type(1) .btn a:hover {
    background: #5c751e url(../img/arrow1.svg) no-repeat right 10px center;
    background-size: 14px;
  }
}
html body main section#business .inner > div article:nth-of-type(2) .btn a, html body main section#business .inner > div article:nth-of-type(3) .btn a {
  background: #fff url(../img/pdf.svg) no-repeat left 20px center;
  background-size: 20px;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner > div article:nth-of-type(2) .btn a, html body main section#business .inner > div article:nth-of-type(3) .btn a {
    background: #fff url(../img/pdf.svg) no-repeat left 10px center;
    background-size: 14px;
  }
}
html body main section#business .inner > div article:nth-of-type(2) .btn a:hover, html body main section#business .inner > div article:nth-of-type(3) .btn a:hover {
  background: #5c751e url(../img/pdf.svg) no-repeat left 20px center;
  background-size: 20px;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner > div article:nth-of-type(2) .btn a:hover, html body main section#business .inner > div article:nth-of-type(3) .btn a:hover {
    background: #5c751e url(../img/pdf.svg) no-repeat left 10px center;
    background-size: 14px;
  }
}
html body main section#companyprofile {
  background: #7B9E29 url(../img/company_bg.jpg) no-repeat center center;
  background-size: cover;
  color: #fff;
  margin: 120px 0 0;
  padding: 120px 0 120px;
}
@media screen and (max-width: 1024px) {
  html body main section#companyprofile {
    margin: 60px 0 0;
    padding: 60px 0 60px;
  }
}
html body main section#companyprofile .inner > h3 {
  align-items: flex-start;
}
html body main section#companyprofile .inner > h3::before {
  color: #fff !important;
}
html body main section#companyprofile .inner dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  html body main section#companyprofile .inner dl {
    display: block;
  }
}
html body main section#companyprofile .inner dl > dt {
  box-sizing: border-box;
  flex-shrink: 0;
  display: block;
  text-align: left;
  width: 230px;
  font-weight: 700;
  margin: 0 60px 0 0;
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#companyprofile .inner dl > dt {
    width: 100%;
    padding: 20px 0 10px;
  }
}
html body main section#companyprofile .inner dl > dd {
  box-sizing: border-box;
  display: block;
  text-align: left;
  width: 100%;
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#companyprofile .inner dl > dd {
    padding: 0 0 20px;
  }
}
html body main section#companyprofile .inner dl > dd a {
  color: #fff;
}
html body main section#companyprofile .inner dl > dd .btn a {
  background: url(../img/arrow1-2.svg) no-repeat right 6px;
  background-size: 15px;
  padding-right: 25px;
}
@media screen and (max-width: 1024px) {
  html body main section#companyprofile .inner dl > dd .btn a {
    background: url(../img/arrow1-2.svg) no-repeat right center;
    background-size: 14px;
    padding-right: 25px;
  }
}
html body main section#companyprofile .inner dl > dd .btn a span {
  position: relative;
}
html body main section#companyprofile .inner dl > dd .btn a span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s ease;
}
html body main section#companyprofile .inner dl > dd .btn a:hover span::after {
  background: #fff;
  bottom: -5px;
}
html body main section#companyprofile .inner dl:nth-of-type(n+2) > dt {
  border-top: 1px #DBDBDB solid;
}
html body main section#companyprofile .inner dl:nth-of-type(n+2) > dd {
  border-top: 1px #DBDBDB solid;
}
@media screen and (max-width: 1024px) {
  html body main section#companyprofile .inner dl:nth-of-type(n+2) > dd {
    border: none;
  }
}
html body main section#companyprofile .inner iframe {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  html body main section#companyprofile .inner iframe {
    margin-top: 30px;
  }
}
html body main section#contact .inner .must {
  color: #E60012;
}
html body main section#contact .inner form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 60px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form {
    margin: 30px auto 0;
  }
}
html body main section#contact .inner form > p:nth-of-type(1) {
  line-height: 1.8;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form > p:nth-of-type(1) {
    margin-bottom: 30px;
  }
}
html body main section#contact .inner form > p:nth-of-type(2) {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form > p:nth-of-type(2) {
    text-align: left;
    line-height: 1.8;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
html body main section#contact .inner form > p:nth-of-type(3) {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form > p:nth-of-type(3) {
    margin-top: 20px;
  }
}
html body main section#contact .inner form dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 0;
}
html body main section#contact .inner form dl:nth-of-type(n+2) {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form dl:nth-of-type(n+2) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form dl {
    display: block;
    width: 100%;
  }
}
html body main section#contact .inner form dl dt {
  display: block;
  text-align: left;
  width: 300px;
  margin-right: 50px;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form dl dt {
    width: 100%;
    margin: 0;
    padding: 0 0 5px;
  }
}
html body main section#contact .inner form dl dt .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}
html body main section#contact .inner form dl dd {
  display: block;
  text-align: left;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form dl dd {
    padding: 0;
  }
}
html body main section#contact .inner form dl dd .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.8;
}
html body main section#contact .inner form span.error {
  text-align: center;
  margin-top: 5px;
}
html body main section#contact .inner form input[type=text],
html body main section#contact .inner form input[type=tel],
html body main section#contact .inner form input[type=email],
html body main section#contact .inner form input[type=password],
html body main section#contact .inner form input[type=date],
html body main section#contact .inner form input[type=number] {
  border-radius: 6px;
  border: 1px #DBDBDB solid;
  background: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  width: 100%;
  height: 60px;
  padding: 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form input[type=text],
  html body main section#contact .inner form input[type=tel],
  html body main section#contact .inner form input[type=email],
  html body main section#contact .inner form input[type=password],
  html body main section#contact .inner form input[type=date],
  html body main section#contact .inner form input[type=number] {
    font-size: 14px;
  }
}
html body main section#contact .inner form input[type=file] {
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form input[type=file] {
    font-size: 14px;
  }
}
html body main section#contact .inner form select {
  border-radius: 6px;
  border: 1px #DBDBDB solid;
  background: #fff;
  color: #000;
  font-size: 16px;
  letter-spacing: 1px;
  width: 100%;
  height: 60px;
  padding: 10px;
  box-sizing: border-box;
  -webkit-appearance: none;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form select {
    font-size: 14px;
  }
}
html body main section#contact .inner form textarea {
  border-radius: 6px;
  border: 1px #DBDBDB solid;
  background: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form textarea {
    font-size: 14px;
  }
}
html body main section#contact .inner form input[type=text].input_number {
  text-align: right;
  width: 5.4em;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form input[type=text].input_number {
    width: 3.8em;
  }
}
html body main section#contact .inner form input[type=text].zip {
  width: 30%;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form input[type=text].zip {
    width: 40%;
  }
}
html body main section#contact .inner form select.prefecture {
  width: 30%;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form select.prefecture {
    width: 40%;
  }
}
html body main section#contact .inner form .mwform-zip-field {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
html body main section#contact .inner form .mwform-zip-field input {
  margin: 0 10px;
}
html body main section#contact .inner form .select {
  width: 100%;
  position: relative;
}
html body main section#contact .inner form .select::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-width: 0 2px 2px 0;
  border-color: #727171;
  border-style: solid;
  position: absolute;
  right: 20px;
  top: 15px;
  transform-origin: center;
  transform: rotate(45deg);
}
html body main section#contact .inner form .radio {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
html body main section#contact .inner form .radio input[type=radio] {
  position: absolute;
  visibility: hidden;
  width: auto;
}
html body main section#contact .inner form .radio .mwform-radio-field-text {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  margin-right: 20px;
  cursor: pointer;
  position: relative;
}
html body main section#contact .inner form .radio .mwform-radio-field-text::before {
  display: inline-block;
  position: relative;
  left: 0;
  top: 0;
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background: #fff;
  border: 1px solid #DBDBDB;
  box-sizing: border-box;
  border-radius: 50%;
  vertical-align: middle;
}
html body main section#contact .inner form .radio input[type=radio]:checked + .mwform-radio-field-text::before {
  border: 1px solid #7B9E29;
}
html body main section#contact .inner form .radio input[type=radio]:checked + .mwform-radio-field-text::after {
  display: inline-block;
  position: absolute;
  left: 5px;
  top: 5px;
  content: "";
  width: 10px;
  height: 10px;
  background: #7B9E29;
  border-radius: 50%;
  box-sizing: border-box;
  vertical-align: middle;
}
html body main section#contact .inner form input[type=checkbox] {
  display: none;
}
html body main section#contact .inner form .mwform-checkbox-field {
  display: block;
  text-align: center;
}
html body main section#contact .inner form .mwform-checkbox-field .mwform-checkbox-field-text {
  font-size: 16px;
  text-align: left;
  display: inline-block;
  position: relative;
  padding: 0 0 0 36px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form .mwform-checkbox-field .mwform-checkbox-field-text {
    font-size: 14px;
  }
}
html body main section#contact .inner form .mwform-checkbox-field .mwform-checkbox-field-text::before, html body main section#contact .inner form .mwform-checkbox-field .mwform-checkbox-field-text::after {
  display: block;
  content: "";
  position: absolute;
}
html body main section#contact .inner form .mwform-checkbox-field .mwform-checkbox-field-text::before {
  background: #fff;
  border: 2px solid #DBDBDB;
  border-radius: 2px;
  width: 20px;
  height: 20px;
  top: 54%;
  left: 0;
  transform: translateY(-50%);
}
html body main section#contact .inner form .mwform-checkbox-field .mwform-checkbox-field-text::after {
  border-width: 3px;
  border-color: transparent transparent #7B9E29 #7B9E29;
  border-style: solid;
  width: 20px;
  height: 10px;
  margin-top: -0.2em;
  top: 30%;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 0;
}
html body main section#contact .inner form input[type=checkbox]:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
}
html body main section#contact .inner form .privacypolicy {
  box-sizing: border-box;
  border-radius: 6px;
  background: #fff;
  width: 100%;
  height: 360px;
  padding: 20px 30px;
  overflow-y: auto;
  border: 1px #DBDBDB solid;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form .privacypolicy {
    padding: 2vw 4vw;
  }
}
html body main section#contact .inner form .privacypolicy strong {
  display: block;
  font-weight: 700;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form .privacypolicy strong {
    margin-top: 30px;
  }
}
html body main section#contact .inner form .privacypolicy p {
  margin-top: 10px;
  line-height: 1.8;
}
html body main section#contact .inner form .btn_area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 40px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form .btn_area {
    margin: 20px auto 0;
  }
}
html body main section#contact .inner form .btn_area .btn_submit {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff url(../img/arrow2.svg) no-repeat right 30px center;
  background-size: 8px 14px;
  border-radius: 4px;
  width: 100%;
  max-width: 600px;
  height: 78px;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  border: 1px #DBDBDB solid;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form .btn_area .btn_submit {
    background: #fff url(../img/arrow2.svg) no-repeat right 10px center;
    background-size: 4px 7px;
    height: 40px;
    font-size: 14px;
  }
}
html body main section#contact .inner form .btn_area .btn_submit:hover {
  background: #5c751e url(../img/arrow2.svg) no-repeat right 30px center;
  background-size: 8px 14px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form .btn_area .btn_submit:hover {
    background: #5c751e url(../img/arrow2.svg) no-repeat right 10px center;
    background-size: 4px 7px;
  }
}
html body main section#contact .inner .mw_wp_form_complete p {
  line-height: 1.8;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner .mw_wp_form_complete p {
    margin-top: 30px;
  }
}
html body footer {
  background: #7B9E29;
  color: #fff;
  margin: 120px 0 0;
  padding: 60px 0;
}
@media screen and (max-width: 1024px) {
  html body footer {
    margin: 60px 0 0;
    padding: 30px 0;
  }
}
html body footer .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  html body footer .inner {
    box-sizing: border-box;
    padding: 0 4vw;
  }
}
html body footer .inner a {
  color: #fff;
}
html body footer .inner > h1 {
  width: 150px;
}
@media screen and (max-width: 1024px) {
  html body footer .inner > h1 {
    width: 90px;
  }
}
html body footer .inner > nav {
  margin: 60px auto 0;
}
@media screen and (max-width: 1024px) {
  html body footer .inner > nav {
    width: 100%;
    margin: 30px auto 0;
  }
}
html body footer .inner > nav > ul {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  html body footer .inner > nav > ul {
    display: block;
    width: 100%;
  }
}
html body footer .inner > nav > ul > li {
  margin: 0 30px;
}
@media screen and (max-width: 1024px) {
  html body footer .inner > nav > ul > li {
    text-align: center;
    width: 100%;
    margin: 0;
  }
  html body footer .inner > nav > ul > li:nth-of-type(n+2) {
    margin: 15px 0 0;
  }
}
html body footer .inner > nav > ul > li a span {
  font-weight: 700;
  position: relative;
}
html body footer .inner > nav > ul > li a span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s ease;
}
html body footer .inner > nav > ul > li a:hover span::after {
  background: #fff;
  bottom: -5px;
}
html body footer .inner > nav > ul > li > ul.child {
  display: block;
  margin-left: 1em;
}
@media screen and (max-width: 1024px) {
  html body footer .inner > nav > ul > li > ul.child {
    margin: 0;
  }
}
html body footer .inner > nav > ul > li > ul.child > li {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  html body footer .inner > nav > ul > li > ul.child > li {
    margin-top: 15px;
  }
}
html body footer .inner > nav > ul > li > ul.child > li a {
  color: #898989;
}
html body footer .inner > nav > ul > li > ul.child > li a span {
  font-size: 14px;
  font-weight: 700;
  position: relative;
}
html body footer .inner > nav > ul > li > ul.child > li a span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s ease;
}
html body footer .inner > nav > ul > li > ul.child > li a:hover span::after {
  background: #898989;
  bottom: -5px;
}
html body footer .inner .copyright {
  text-align: center;
  font-size: 14px;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  html body footer .inner .copyright {
    line-height: 1.3;
    font-size: 10px;
    margin-top: 30px;
  }
}

/* fadein */
/* ------------------------------------------------------------ */
.fadein {
  transform: translate(0, 40px);
  transition: all 700ms;
  opacity: 0;
}

/* scrollin */
/* ------------------------------------------------------------ */
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/* トップページに戻るボタン */
/* ------------------------------------------------------------ */
.pagetop {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 50px;
  width: 70px;
}
@media screen and (max-width: 1024px) {
  .pagetop {
    bottom: 2vw;
    right: 4vw;
    width: 35px;
  }
}
.pagetop a {
  display: block;
}
.pagetop a img {
  width: 100%;
  height: auto;
}/*# sourceMappingURL=style.css.map */