@charset "UTF-8";
/* CSS Information
---------------------------------------------------------------
Site URL:https://sato-kensetsu.site/
File name:style.css
Summary:base styles
Created:2023-06-26
--------------------------------------------------------------- */
/* Fonts */
/* ------------------------------------------------------------ */
/* Link */
/* ------------------------------------------------------------ */
a {
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* Animation */
/* ------------------------------------------------------------ */
img,
.alpha {
  transition: all 0.3s 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: 1200px) {
  .pc_mode {
    display: none;
  }
  .sp_mode {
    display: inherit;
  }
}
/* Style */
/* ------------------------------------------------------------ */
html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html body {
  font-size: 18px;
}
html body::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 1200px) {
  html body {
    font-size: 14px;
  }
}
html body header {
  overflow: hidden;
}
html body header .inner {
  background: #fff;
  box-sizing: border-box;
  width: 100%;
  padding: 0 50px;
}
html body header .inner .header_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
html body header .inner .header_area > div {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
html body header .inner .header_area > div > h1 {
  width: 310px;
}
html body header .inner .header_area > div > h1 a:hover {
  filter: alpha(opacity=50);
  opacity: 0.5;
}
html body header .inner .header_area #global_nav ul {
  display: flex;
  align-items: center;
}
html body header .inner .header_area #global_nav ul li:nth-of-type(n+2) {
  margin-left: 50px;
}
html body header .inner .header_area #global_nav ul li:nth-of-type(1) a, html body header .inner .header_area #global_nav ul li:nth-of-type(2) a, html body header .inner .header_area #global_nav ul li:nth-of-type(3) a, html body header .inner .header_area #global_nav ul li:nth-of-type(4) a {
  color: #4C441F;
}
html body header .inner .header_area #global_nav ul li:nth-of-type(1) a span, html body header .inner .header_area #global_nav ul li:nth-of-type(2) a span, html body header .inner .header_area #global_nav ul li:nth-of-type(3) a span, html body header .inner .header_area #global_nav ul li:nth-of-type(4) a span {
  position: relative;
}
html body header .inner .header_area #global_nav ul li:nth-of-type(1) a span::after, html body header .inner .header_area #global_nav ul li:nth-of-type(2) a span::after, html body header .inner .header_area #global_nav ul li:nth-of-type(3) a span::after, html body header .inner .header_area #global_nav ul li:nth-of-type(4) 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 #global_nav ul li:nth-of-type(1) a:hover span::after, html body header .inner .header_area #global_nav ul li:nth-of-type(2) a:hover span::after, html body header .inner .header_area #global_nav ul li:nth-of-type(3) a:hover span::after, html body header .inner .header_area #global_nav ul li:nth-of-type(4) a:hover span::after {
  background: #4C441F;
  bottom: -5px;
}
html body header .inner .header_area #global_nav ul li:nth-of-type(5) a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background: #E3A215;
  width: 210px;
  height: 60px;
  color: #fff;
}
html body header .inner .header_area #global_nav ul li:nth-of-type(5) a:hover {
  filter: alpha(opacity=50);
  opacity: 0.5;
}
@media screen and (max-width: 1200px) {
  html body header {
    position: relative;
    z-index: 1;
  }
  html body header .inner {
    position: fixed;
    padding: 0;
  }
  html body header .inner .header_area > div {
    width: 100%;
    height: 55px;
    padding: 0 4vw;
    position: relative;
    z-index: 99;
  }
  html body header .inner .header_area > div > h1 {
    width: 180px;
  }
  html body header .inner .header_area > div #nav_toggle {
    cursor: pointer;
  }
  html body header .inner .header_area > div #nav_toggle > div {
    position: relative;
    background: #E3A215;
    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: #fff;
    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 #global_nav {
    background: rgba(0, 0, 0, 0.9);
    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: 9;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  html body header .inner .header_area #global_nav ul {
    display: block;
  }
  html body header .inner .header_area #global_nav ul li {
    text-align: center;
    font-size: 16px;
    display: block;
    margin: 20px 0 0;
    opacity: 0;
    transform: translateX(200px);
    transition: transform 0.3s ease, opacity 0.1s ease;
  }
  html body header .inner .header_area #global_nav ul li:nth-of-type(n+2) {
    margin: 30px 0 0;
  }
  html body header .inner .header_area #global_nav ul li:nth-of-type(1) {
    transition-delay: 0.1s;
  }
  html body header .inner .header_area #global_nav ul li:nth-of-type(2) {
    transition-delay: 0.2s;
  }
  html body header .inner .header_area #global_nav ul li:nth-of-type(3) {
    transition-delay: 0.3s;
  }
  html body header .inner .header_area #global_nav ul li:nth-of-type(4) {
    transition-delay: 0.4s;
  }
  html body header .inner .header_area #global_nav ul li:nth-of-type(5) {
    transition-delay: 0.5s;
  }
  html body header .inner .header_area #global_nav ul li:nth-of-type(1) a, html body header .inner .header_area #global_nav ul li:nth-of-type(2) a, html body header .inner .header_area #global_nav ul li:nth-of-type(3) a, html body header .inner .header_area #global_nav ul li:nth-of-type(4) a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background: #fff;
    width: 210px;
    height: 40px;
    color: #4C441F;
  }
  html body header .inner .header_area #global_nav ul li:nth-of-type(1) a:hover, html body header .inner .header_area #global_nav ul li:nth-of-type(2) a:hover, html body header .inner .header_area #global_nav ul li:nth-of-type(3) a:hover, html body header .inner .header_area #global_nav ul li:nth-of-type(4) a:hover {
    filter: alpha(opacity=50);
    opacity: 0.5;
  }
  html body header .inner .header_area #global_nav ul li:nth-of-type(1) a span::after, html body header .inner .header_area #global_nav ul li:nth-of-type(2) a span::after, html body header .inner .header_area #global_nav ul li:nth-of-type(3) a span::after, html body header .inner .header_area #global_nav ul li:nth-of-type(4) a span::after {
    content: none;
  }
  html body header .inner .header_area #global_nav ul li:nth-of-type(5) a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background: #E3A215;
    width: 210px;
    height: 40px;
    color: #fff;
  }
  html body header .inner .header_area #global_nav ul li:nth-of-type(5) a:hover {
    filter: alpha(opacity=50);
    opacity: 0.5;
  }
  html body header .inner.open {
    position: fixed !important;
    top: 0px !important;
    margin-top: 0 !important;
    z-index: 99;
  }
  html body header .inner.open .header_area h1 img {
    filter: brightness(0) invert(1);
  }
  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 #global_nav {
    visibility: visible;
    opacity: 1;
  }
  html body header .inner.open .header_area #global_nav li {
    opacity: 1;
    transform: translateX(0);
    transition: transform 0.5s ease, opacity 0.9s ease;
  }
}
html body main section:not(#main):not(#title) {
  padding: 120px 20px;
}
@media screen and (max-width: 1200px) {
  html body main section:not(#main):not(#title) {
    box-sizing: border-box;
    padding: 60px 4vw;
  }
}
html body main section:not(#main):not(#title) .inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
html body main section:not(#main):not(#title) .inner h3 {
  display: flex;
  flex-direction: column;
  font-size: 30px;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  html body main section:not(#main):not(#title) .inner h3 {
    font-size: 18px;
  }
}
html body main section:not(#main):not(#title) .inner h3::before {
  content: attr(data-subtitle);
  font-size: 20px;
  font-weight: 700;
  font-family: "Roboto Slab";
  color: #E3A215;
  margin-bottom: 30px;
}
@media screen and (max-width: 1200px) {
  html body main section:not(#main):not(#title) .inner h3::before {
    font-size: 12px;
    margin-bottom: 15px;
  }
}
html body main section:not(#main):not(#title) .inner h3::after {
  content: "";
  background: #E3A215;
  height: 3px;
  width: 60px;
  margin-top: 30px;
}
@media screen and (max-width: 1200px) {
  html body main section:not(#main):not(#title) .inner h3::after {
    height: 2px;
    margin-top: 15px;
  }
}
html body main section#main .inner {
  background: url(../img/mainvisual.jpg) no-repeat;
  background-position: 100% 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: calc(100vh - 100px);
}
@media screen and (max-width: 1200px) {
  html body main section#main .inner {
    background-position: center center;
    background-size: cover;
    justify-content: flex-end;
    height: 100vh;
    height: 100svh;
  }
}
html body main section#main .inner h2 {
  margin-left: 100px;
}
@media screen and (max-width: 1200px) {
  html body main section#main .inner h2 {
    margin: 0 0 14vw 4vw;
  }
}
html body main section#main .inner h2::before {
  content: attr(data-subtitle);
  display: table;
  background-color: #fff;
  font-size: 28px;
  font-weight: 700;
  font-family: "Roboto Slab";
  margin-bottom: 30px;
  padding: 10px;
}
@media screen and (max-width: 1200px) {
  html body main section#main .inner h2::before {
    background-color: transparent;
    color: #fff;
    text-shadow: 1px 1px 0 #4C441F, -1px 1px 0 #4C441F, 1px -1px 0 #4C441F, -1px -1px 0 #4C441F;
    font-size: 14px;
    margin-bottom: 15px;
    padding: 0;
  }
}
html body main section#main .inner h2 span {
  display: table;
  background-color: #fff;
  font-size: 56px;
  font-weight: 500;
  padding: 10px 0 10px 10px;
}
@media screen and (max-width: 1200px) {
  html body main section#main .inner h2 span {
    font-size: 28px;
  }
}
html body main section#main .inner h2 span em {
  display: contents;
  font-style: normal;
  font-weight: 500;
  color: #E3A215;
}
html body main section#main .inner h2 span:nth-of-type(2) {
  margin-top: 30px;
}
@media screen and (max-width: 1200px) {
  html body main section#main .inner h2 span:nth-of-type(2) {
    margin-top: 15px;
  }
}
html body main section#about .inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 1200px) {
  html body main section#about .inner {
    display: block;
  }
}
html body main section#about .inner div {
  width: 100%;
}
html body main section#about .inner div p {
  margin-top: 60px;
  line-height: 2;
}
@media screen and (max-width: 1200px) {
  html body main section#about .inner div p {
    margin-top: 30px;
  }
}
html body main section#about .inner figure {
  flex-shrink: 0;
  max-width: 602px;
  margin-left: 60px;
}
@media screen and (max-width: 1200px) {
  html body main section#about .inner figure {
    width: 100%;
    margin: 30px auto 0;
  }
}
html body main section#works {
  background: #4C441F;
  overflow: hidden;
}
html body main section#works h3 {
  color: #fff;
}
html body main section#works .swiper {
  margin-top: 60px;
  overflow: visible;
  z-index: 0;
}
@media screen and (max-width: 1200px) {
  html body main section#works .swiper {
    margin-top: 30px;
  }
}
html body main section#works .swiper .swiper-wrapper {
  align-items: stretch;
}
html body main section#works .swiper .swiper-wrapper .swiper-slide {
  background: #fff;
  height: auto;
  overflow: hidden;
  z-index: 0;
}
html body main section#works .swiper .swiper-wrapper .swiper-slide figure {
  width: 100%;
}
html body main section#works .swiper .swiper-wrapper .swiper-slide figcaption {
  padding: 20px;
}
html body main section#works .swiper .swiper-wrapper .swiper-slide figcaption h4 {
  display: flex;
  flex-direction: column;
  font-size: 26px;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  html body main section#works .swiper .swiper-wrapper .swiper-slide figcaption h4 {
    font-size: 16px;
  }
}
html body main section#works .swiper .swiper-wrapper .swiper-slide figcaption h4::before {
  content: attr(data-subtitle);
  font-size: 16px;
  font-weight: 700;
  font-family: "Roboto Slab";
  color: #E3A215;
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  html body main section#works .swiper .swiper-wrapper .swiper-slide figcaption h4::before {
    font-size: 12px;
    margin-bottom: 2vw;
  }
}
html body main section#works .swiper .swiper-wrapper .swiper-slide figcaption p {
  margin-top: 20px;
  line-height: 2;
}
@media screen and (max-width: 1200px) {
  html body main section#works .swiper .swiper-wrapper .swiper-slide figcaption p {
    margin-top: 10px;
  }
}
html body main section#overview {
  padding: 120px 20px 0;
}
@media screen and (max-width: 1200px) {
  html body main section#overview {
    padding: 60px 4vw 0;
  }
}
html body main section#overview .inner > div {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 1200px) {
  html body main section#overview .inner > div {
    margin-top: 30px;
    display: block;
  }
}
html body main section#overview .inner > div > div:nth-of-type(2) {
  padding-left: 73px;
  border-left: 1px #4C441F solid;
}
@media screen and (max-width: 1200px) {
  html body main section#overview .inner > div > div:nth-of-type(2) {
    margin-top: 15px;
    padding: 0;
    border: none;
  }
}
html body main section#overview .inner > div > div dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  html body main section#overview .inner > div > div dl {
    display: block;
    width: 100%;
  }
}
html body main section#overview .inner > div > div dl:nth-of-type(n+2) {
  margin-top: 30px;
}
@media screen and (max-width: 1200px) {
  html body main section#overview .inner > div > div dl:nth-of-type(n+2) {
    margin-top: 15px;
  }
}
html body main section#overview .inner > div > div dl dt {
  display: block;
  text-align: left;
  width: 180px;
  flex-shrink: 0;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 1200px) {
  html body main section#overview .inner > div > div dl dt {
    width: 100%;
  }
}
html body main section#overview .inner > div > div dl dd {
  display: block;
  text-align: left;
  width: 100%;
  line-height: 2;
}
html body main section#overview .inner > div > div dl dd a {
  color: #4C441F;
}
html body main section#form .inner form {
  margin: 60px auto 0;
}
@media screen and (max-width: 1200px) {
  html body main section#form .inner form {
    margin: 30px auto 0;
  }
}
html body main section#form .inner form > p:nth-of-type(1) {
  line-height: 2;
  margin-bottom: 60px;
}
@media screen and (max-width: 1200px) {
  html body main section#form .inner form > p:nth-of-type(1) {
    margin-bottom: 30px;
  }
}
html body main section#form .inner form > p:nth-of-type(2) {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1200px) {
  html body main section#form .inner form > p:nth-of-type(2) {
    line-height: 2;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
html body main section#form .inner form > p:nth-of-type(3) {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  html body main section#form .inner form > p:nth-of-type(3) {
    margin-top: 30px;
  }
}
html body main section#form .inner form .must {
  color: #E3A215;
}
html body main section#form .inner form dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 0;
}
html body main section#form .inner form dl:nth-of-type(n+2) {
  margin-top: 30px;
}
@media screen and (max-width: 1200px) {
  html body main section#form .inner form dl:nth-of-type(n+2) {
    margin-top: 15px;
  }
}
@media screen and (max-width: 1200px) {
  html body main section#form .inner form dl {
    display: block;
    width: 100%;
  }
}
html body main section#form .inner form dl dt {
  display: block;
  text-align: left;
  width: 300px;
  margin-right: 50px;
  flex-shrink: 0;
}
@media screen and (max-width: 1200px) {
  html body main section#form .inner form dl dt {
    width: 100%;
    margin: 0;
    padding: 0 0 5px;
  }
}
html body main section#form .inner form dl dt .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}
html body main section#form .inner form dl dd {
  display: block;
  text-align: left;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  html body main section#form .inner form dl dd {
    padding: 0;
  }
}
html body main section#form .inner form dl dd .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
html body main section#form .inner form dl dd .wrap2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.5;
}
html body main section#form .inner form span.error {
  text-align: center;
  margin-top: 5px;
}
html body main section#form .inner form input[type=text],
html body main section#form .inner form input[type=tel],
html body main section#form .inner form input[type=email],
html body main section#form .inner form input[type=password],
html body main section#form .inner form input[type=date],
html body main section#form .inner form input[type=number] {
  border-radius: 6px;
  border: 2px #C9CACA solid;
  background: #fff;
  font-size: 18px;
  letter-spacing: 1px;
  width: 100%;
  height: 60px;
  padding: 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  html body main section#form .inner form input[type=text],
  html body main section#form .inner form input[type=tel],
  html body main section#form .inner form input[type=email],
  html body main section#form .inner form input[type=password],
  html body main section#form .inner form input[type=date],
  html body main section#form .inner form input[type=number] {
    font-size: 14px;
  }
}
html body main section#form .inner form input[type=file] {
  font-size: 18px;
}
@media screen and (max-width: 1200px) {
  html body main section#form .inner form input[type=file] {
    font-size: 14px;
  }
}
html body main section#form .inner form select {
  border-radius: 6px;
  border: 2px #C9CACA solid;
  background: #fff;
  color: #000;
  font-size: 18px;
  letter-spacing: 1px;
  width: 100%;
  height: 60px;
  padding: 10px;
  box-sizing: border-box;
  -webkit-appearance: none;
}
@media screen and (max-width: 1200px) {
  html body main section#form .inner form select {
    font-size: 14px;
  }
}
html body main section#form .inner form textarea {
  border-radius: 6px;
  border: 2px #C9CACA solid;
  background: #fff;
  font-size: 18px;
  letter-spacing: 1px;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  html body main section#form .inner form textarea {
    font-size: 14px;
  }
}
html body main section#form .inner form input[type=text].input_number {
  text-align: right;
  width: 5.4em;
}
@media screen and (max-width: 1200px) {
  html body main section#form .inner form input[type=text].input_number {
    width: 3.8em;
  }
}
html body main section#form .inner form input[type=text].zip {
  width: 30%;
  margin-right: 10px;
}
@media screen and (max-width: 1200px) {
  html body main section#form .inner form input[type=text].zip {
    width: 40%;
  }
}
html body main section#form .inner form select.prefecture {
  width: 30%;
  margin-right: 10px;
}
@media screen and (max-width: 1200px) {
  html body main section#form .inner form select.prefecture {
    width: 40%;
  }
}
html body main section#form .inner form .mwform-zip-field {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
html body main section#form .inner form .mwform-zip-field input {
  margin: 0 10px;
}
html body main section#form .inner form .select {
  width: 100%;
  position: relative;
}
html body main section#form .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#form .inner form .radio {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
html body main section#form .inner form .radio input[type=radio] {
  position: absolute;
  visibility: hidden;
  width: auto;
}
html body main section#form .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#form .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 #C9CACA;
  box-sizing: border-box;
  border-radius: 50%;
  vertical-align: middle;
}
html body main section#form .inner form .radio input[type=radio]:checked + .mwform-radio-field-text::before {
  border: 1px solid #df4360;
}
html body main section#form .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: #df4360;
  border-radius: 50%;
  box-sizing: border-box;
  vertical-align: middle;
}
html body main section#form .inner form input[type=checkbox] {
  display: none;
}
html body main section#form .inner form .mwform-checkbox-field {
  display: block;
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 1200px) {
  html body main section#form .inner form .mwform-checkbox-field {
    margin-top: 30px;
  }
}
html body main section#form .inner form .mwform-checkbox-field .mwform-checkbox-field-text {
  font-size: 18px;
  line-height: 1.2;
  text-align: left;
  display: inline-block;
  position: relative;
  padding: 0 0 0 36px;
}
@media screen and (max-width: 1200px) {
  html body main section#form .inner form .mwform-checkbox-field .mwform-checkbox-field-text {
    font-size: 14px;
  }
}
html body main section#form .inner form .mwform-checkbox-field .mwform-checkbox-field-text::before, html body main section#form .inner form .mwform-checkbox-field .mwform-checkbox-field-text::after {
  display: block;
  content: "";
  position: absolute;
}
html body main section#form .inner form .mwform-checkbox-field .mwform-checkbox-field-text::before {
  background: #fff;
  border: 2px solid #C9CACA;
  border-radius: 2px;
  width: 20px;
  height: 20px;
  top: 54%;
  left: 0;
  transform: translateY(-50%);
}
html body main section#form .inner form .mwform-checkbox-field .mwform-checkbox-field-text::after {
  border-width: 3px;
  border-color: transparent transparent #E3A215 #E3A215;
  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#form .inner form input[type=checkbox]:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
}
html body main section#form .inner form .privacypolicy {
  box-sizing: border-box;
  width: 100%;
  height: 360px;
  padding: 60px 100px;
  overflow-y: auto;
  border: 1px #4C441F solid;
}
@media screen and (max-width: 1200px) {
  html body main section#form .inner form .privacypolicy {
    padding: 2vw 4vw;
  }
}
html body main section#form .inner form .privacypolicy strong {
  display: block;
  font-weight: 500;
  margin-top: 60px;
}
@media screen and (max-width: 1200px) {
  html body main section#form .inner form .privacypolicy strong {
    margin-top: 30px;
  }
}
html body main section#form .inner form .privacypolicy p {
  margin-top: 10px;
  line-height: 2;
}
html body main section#form .inner form .btn_area {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px auto 0;
}
@media screen and (max-width: 1200px) {
  html body main section#form .inner form .btn_area {
    margin: 30px auto 0;
  }
}
html body main section#form .inner form .btn_area .btn_submit {
  display: block;
  border-radius: 45px;
  background: #E3A215;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-right: -0.2em;
  width: 500px;
  height: 90px;
  cursor: pointer;
  border: none;
}
@media screen and (max-width: 1200px) {
  html body main section#form .inner form .btn_area .btn_submit {
    font-size: 16px;
    width: 100%;
    height: 60px;
  }
}
html body main section#form .inner form .btn_area .btn_submit:hover {
  background: #d19513;
  color: #fff;
}
html body main section#form .inner .mw_wp_form_complete p {
  line-height: 2;
  margin-top: 60px;
}
@media screen and (max-width: 1200px) {
  html body main section#form .inner .mw_wp_form_complete p {
    margin-top: 30px;
  }
}
html body main section#title {
  background: url(../img/title.jpg) no-repeat center center;
  background-size: cover;
  padding: 0 20px;
}
@media screen and (max-width: 1200px) {
  html body main section#title {
    margin-top: 55px;
    padding: 0 4vw;
  }
}
html body main section#title .inner {
  width: 100%;
  max-width: 1200px;
  height: 480px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  html body main section#title .inner {
    height: 140px;
  }
}
html body main section#title .inner h2 {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 48px;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  html body main section#title .inner h2 {
    font-size: 24px;
  }
}
html body main section#title .inner h2::before {
  content: attr(data-subtitle);
  font-size: 36px;
  font-weight: 700;
  font-family: "Roboto Slab";
  color: #E3A215;
  margin-bottom: 30px;
}
@media screen and (max-width: 1200px) {
  html body main section#title .inner h2::before {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
html body main section#greeting .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
html body main section#greeting .inner h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 30px;
  line-height: 1.5;
}
@media screen and (max-width: 1200px) {
  html body main section#greeting .inner h3 {
    font-size: 18px;
  }
}
html body main section#greeting .inner h3::after {
  width: 120px !important;
}
@media screen and (max-width: 1200px) {
  html body main section#greeting .inner h3::after {
    height: 2px;
    margin-top: 15px;
  }
}
html body main section#greeting .inner p {
  margin-top: 60px;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  html body main section#greeting .inner p {
    margin-top: 30px;
    text-align: left;
  }
}
html body main section#description .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
html body main section#description .inner h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 30px;
}
html body main section#description .inner p {
  margin-top: 60px;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  html body main section#description .inner p {
    margin-top: 30px;
    text-align: left;
  }
}
html body main section#description .inner ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 570px;
  margin: 60px auto 0;
}
@media screen and (max-width: 1200px) {
  html body main section#description .inner ul {
    flex-direction: column;
    width: 100%;
    margin: 30px auto 0;
  }
}
html body main section#description .inner ul li {
  width: 260px;
}
@media screen and (max-width: 1200px) {
  html body main section#description .inner ul li {
    width: 80%;
  }
}
html body main section#description .inner ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  width: 100%;
  height: 60px;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  html body main section#description .inner ul li a {
    border-radius: 20px;
    height: 40px;
  }
}
html body main section#description .inner ul li a:hover {
  filter: alpha(opacity=50);
  opacity: 0.5;
}
html body main section#description .inner ul li:nth-of-type(1) a {
  background: #68C300;
}
html body main section#description .inner ul li:nth-of-type(2) {
  margin-top: 15px;
}
html body main section#description .inner ul li:nth-of-type(2) a {
  background: #45AEFF;
}
html body main section#beginner {
  background: #FDFFF8;
}
html body main section#beginner h3::before {
  color: #68C300 !important;
}
html body main section#beginner h3::after {
  background: #68C300 !important;
}
html body main section#beginner dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 800px;
  margin: 60px auto 0;
}
@media screen and (max-width: 1200px) {
  html body main section#beginner dl {
    display: block;
    width: 100%;
    margin: 30px auto 0;
  }
}
html body main section#beginner dl:nth-of-type(n+2) {
  border-top: 1px #C9CACA solid;
  margin-top: 30px;
  padding-top: 30px;
}
@media screen and (max-width: 1200px) {
  html body main section#beginner dl:nth-of-type(n+2) {
    margin-top: 15px;
    padding-top: 15px;
  }
}
html body main section#beginner dl dt {
  display: block;
  text-align: left;
  width: 180px;
  flex-shrink: 0;
  font-weight: 500;
  line-height: 2;
  color: #68C300;
}
@media screen and (max-width: 1200px) {
  html body main section#beginner dl dt {
    width: 100%;
  }
}
html body main section#beginner dl dd {
  display: block;
  text-align: left;
  width: 100%;
  line-height: 2;
}
html body main section#beginner dl dd a {
  color: #4C441F;
}
html body main section#beginner p {
  width: 366px;
  margin: 60px auto 0;
}
@media screen and (max-width: 1200px) {
  html body main section#beginner p {
    width: 80%;
    margin: 30px auto 0;
  }
}
html body main section#beginner p a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background: #68C300;
  width: 100%;
  height: 60px;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  html body main section#beginner p a {
    border-radius: 20px;
    height: 40px;
  }
}
html body main section#beginner p a:hover {
  filter: alpha(opacity=50);
  opacity: 0.5;
}
html body main section#experienced {
  background: #F5FFFC;
}
html body main section#experienced h3::before {
  color: #45AEFF !important;
}
html body main section#experienced h3::after {
  background: #45AEFF !important;
}
html body main section#experienced dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 800px;
  margin: 60px auto 0;
}
@media screen and (max-width: 1200px) {
  html body main section#experienced dl {
    display: block;
    width: 100%;
    margin: 30px auto 0;
  }
}
html body main section#experienced dl:nth-of-type(n+2) {
  border-top: 1px #C9CACA solid;
  margin-top: 30px;
  padding-top: 30px;
}
@media screen and (max-width: 1200px) {
  html body main section#experienced dl:nth-of-type(n+2) {
    margin-top: 15px;
    padding-top: 15px;
  }
}
html body main section#experienced dl dt {
  display: block;
  text-align: left;
  width: 180px;
  flex-shrink: 0;
  font-weight: 500;
  line-height: 2;
  color: #45AEFF;
}
@media screen and (max-width: 1200px) {
  html body main section#experienced dl dt {
    width: 100%;
  }
}
html body main section#experienced dl dd {
  display: block;
  text-align: left;
  width: 100%;
  line-height: 2;
}
html body main section#experienced dl dd a {
  color: #4C441F;
}
html body main section#experienced p {
  width: 366px;
  margin: 60px auto 0;
}
@media screen and (max-width: 1200px) {
  html body main section#experienced p {
    width: 80%;
    margin: 30px auto 0;
  }
}
html body main section#experienced p a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background: #45AEFF;
  width: 100%;
  height: 60px;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  html body main section#experienced p a {
    border-radius: 20px;
    height: 40px;
  }
}
html body main section#experienced p a:hover {
  filter: alpha(opacity=50);
  opacity: 0.5;
}
html body main hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 14px solid #F8F7F2;
}
@media screen and (max-width: 1200px) {
  html body main hr {
    border-top: 7px solid #F8F7F2;
  }
}
html body footer {
  background: #4C441F;
  color: #fff;
  padding: 60px 0 60px;
}
@media screen and (max-width: 1200px) {
  html body footer {
    padding: 30px 4vw 30px;
  }
}
html body footer .inner {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  html body footer .inner {
    width: 100%;
  }
}
html body footer .inner h1 {
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  html body footer .inner h1 {
    width: 120px;
  }
}
html body footer .inner h1 a:hover {
  filter: alpha(opacity=50);
  opacity: 0.5;
}
html body footer .inner h1 a img {
  filter: brightness(0) invert(1);
}
html body footer .inner > div {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 1200px) {
  html body footer .inner > div {
    margin-top: 30px;
    display: block;
  }
}
html body footer .inner > div a {
  color: #fff;
}
html body footer .inner > div > div {
  width: 50%;
}
@media screen and (max-width: 1200px) {
  html body footer .inner > div > div {
    width: 100%;
  }
}
html body footer .inner > div > div address {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
}
@media screen and (max-width: 1200px) {
  html body footer .inner > div > div address {
    font-size: 16px;
  }
}
html body footer .inner > div > div p {
  margin-top: 30px;
}
@media screen and (max-width: 1200px) {
  html body footer .inner > div > div p {
    margin-top: 15px;
  }
}
@media screen and (max-width: 1200px) {
  html body footer .inner > div > nav {
    width: 100%;
    margin-top: 30px;
  }
}
html body footer .inner > div > nav div {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 1200px) {
  html body footer .inner > div > nav div {
    display: none;
  }
}
html body footer .inner > div > nav div ul {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1200px) {
  html body footer .inner > div > nav div ul {
    display: block;
  }
}
html body footer .inner > div > nav div ul:nth-of-type(2) {
  margin-left: 50px;
}
@media screen and (max-width: 1200px) {
  html body footer .inner > div > nav div ul:nth-of-type(2) {
    margin-left: 0;
  }
}
html body footer .inner > div > nav div ul li {
  box-sizing: border-box;
  list-style-type: none;
  position: relative;
  padding-left: 1.5em;
}
html body footer .inner > div > nav div ul li::before {
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: block;
  position: absolute;
  left: 0;
  top: 0.1em;
  content: "";
  background: #E3A215;
}
@media screen and (max-width: 1200px) {
  html body footer .inner > div > nav div ul li::before {
    width: 14px;
    height: 14px;
  }
}
html body footer .inner > div > nav div ul li:nth-of-type(n+2) {
  margin-top: 30px;
}
@media screen and (max-width: 1200px) {
  html body footer .inner > div > nav div ul li:nth-of-type(n+2) {
    margin-top: 15px;
  }
}
html body footer .inner > div > nav div ul li a {
  color: #fff;
}
html body footer .inner > div > nav div ul li a span {
  position: relative;
}
html body footer .inner > div > nav div 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 > div > nav div ul li a:hover span::after {
  background: #fff;
  bottom: -5px;
}
html body footer .inner > div > nav p {
  margin-top: 50px;
}
@media screen and (max-width: 1200px) {
  html body footer .inner > div > nav p {
    margin: 30px auto 0;
    width: 80%;
  }
}
html body footer .inner > div > nav p a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background: #E3A215;
  width: 100%;
  height: 60px;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  html body footer .inner > div > nav p a {
    border-radius: 20px;
    background: #E3A215;
    height: 40px;
  }
}
html body footer .inner > div > nav p a:hover {
  filter: alpha(opacity=50);
  opacity: 0.5;
}
html body footer .inner .copyright {
  color: #fff;
  text-align: center;
  font-size: 14px;
  margin-top: 60px;
}
@media screen and (max-width: 1200px) {
  html body footer .inner .copyright {
    line-height: 1.3;
    font-size: 9px;
    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: 40px;
  right: 50px;
  width: 66px;
}
@media screen and (max-width: 1200px) {
  .pagetop {
    bottom: 4vw;
    right: 4vw;
    width: 33px;
  }
}
.pagetop a {
  display: block;
}
.pagetop a img {
  width: 100%;
  height: auto;
}/*# sourceMappingURL=style.css.map */