@charset "UTF-8";

/* common */
html {
  font-size: 62.5%;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 300;
  position: relative;
  color: #333;
}
.lt{
  font-family: 'Lato', sans-serif;
}
a {
  color: #0b3774;
  display: inline-block;
  text-decoration: none;
  transition: .2s;
}
a:hover {
  opacity: .75;
}
.click {
  transition: .2s;
}
.click:hover {
  cursor: pointer;
  opacity: .75;
}
.click a:hover {
  opacity: 1;
}
a[href^="tel:"] {
  pointer-events: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
h1,h2,h3,h4,h5 {
  font-weight: inherit;
}
.cf::after {
  content: "";
  display: block;
  clear: both;
}
.pc {
  display: block;
}
.pc_inline {
  display: inline-block;
}
.sp {
  display: none;
}
.sp_inline {
  display: none;
}

@media screen and (max-width: 599px) {
  body {
    font-size: 1.4rem;
  }
  .pc {
    display: none;
  }
  .pc_inline {
    display: none;
  }
  .sp {
    display: block;
  }
  .sp_inline {
    display: inline-block;
  }
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

.wrap{
  width: 100%;
  max-width: 1100px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 10px;
}


@media screen and (max-width: 599px) {
  .wrap{
    max-width: 100%;
  }

}


.h{
  padding: 20px 0;
}
.h .wrap {
  display: flex;
  justify-content: space-between;
  align-content: center;
}
.h_t{
  display: flex;
  align-items: center;
}
.h_c{
}
.h_c_m{
  display: flex;
  justify-content: space-between;
  align-content: center;
}
.h_c_m li {
  margin: 0 20px;
}
.h_c_m li a {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  position: relative;
  padding: 10px;
  transition: .2s;
}
.h_c_m li a:hover {
  color: #0f3675;
  opacity: 1;
}
.h_c_m li a:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  transition: .2s;
  opacity: 0;
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.h_c_m li a:hover:before {
  background: #0f3675;
  opacity: 1;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .h .wrap{
    justify-content: center;
  }
  .h_t img {
    width: auto;
    height: 16px;
  }
  .h_c_m{
    display: none;
  }

}


.f{
  padding: 120px 10px 30px;
}
.f_add {
  line-height: 1;
  text-align: center;
  margin: 0 0 10px;
}
.f_copyright{
  text-align: center;
}

@media screen and (max-width: 599px) {
  .f{
    padding: 100px 10px 20px;
  }
  .f_copyright{
    font-size: 1.1rem;
  }
}


.m{
}
.m_mv{
  width: 100%;
  box-sizing: border-box;
  padding: 160px 0 0;
  margin: 0 auto 80px;
  position: relative;
}
.m_mv_copy {
  font-size: 5.4rem;
  color: #666;
  text-align: center;
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  z-index: 2;
  margin: 0 auto;
}
.m_mv_bg{
  position: relative;
  text-align: center;
  filter: grayscale(0.2);
  opacity: .75;
}
.m_mv_scroll{
  display: none;
}

@media screen and (min-width: 1921px) {
  .m_mv_copy {
    font-size: 6.4rem;
  }

}

@media screen and (max-width: 1024px) {
  .m_mv{
    padding: 140px 0 0;
  }
  .m_mv_copy {
    font-size: 4.2vw;
  }

}


@media screen and (max-width: 599px) {
  .m_mv{
    height: calc(100vh - 56px);
    margin: 0 auto 80px;
    display: flex;
    align-items: flex-end;
    position: relative;
  }
  .m_mv_copy {
    font-size: 6.4vw;
    top: 16%;
  }
  .m_mv_bg {
    overflow: hidden;
  }
  .m_mv_bg img {
    max-width: none;
    width: 260%;
    margin: 0 0 0 -130%;
  }
  .m_mv_scroll {
    width: 36px;
    height: 36px;
    display: block;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .m_mv_scroll a {
    width: 36px;
    height: 36px;
    display: block;
  }
  .m_mv_scroll a:before {
    content: "";
    width: 16px;
    height: 16px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    top: -36%;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
    animation: scrollFade 1.6s ease-in-out infinite;
    pointer-events: none;
  }
  .m_mv_scroll a:after {
    content: "";
    width: 16px;
    height: 16px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    top: -18%;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
    animation: scrollFade 1.6s ease-in-out infinite;
    pointer-events: none;
  }
}

@keyframes scrollFade{
  0%{
    transform: translateY(0) rotate(45deg);
    opacity: 0;
  }
  80%{
    transform: translateY(20px) rotate(45deg);
    opacity: 1;
  }
  100%{
    transform: translateY(20px) rotate(45deg);
    opacity: 1;
  }
}


.m_p{
}
.m_p_s{
  padding: 40px 0 120px;
  margin: 0 0 80px;
  counter-increment: sec;
}
.m_p_s:last-child {
  padding: 40px 0;
  margin: 0;
}
.m_p_s_wrap {
  max-width: 880px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 10px;
}
.m_p_s_t{
  font-size: 3.2rem;
  font-weight: bold;
  padding: 0 0 0 120px;
  margin: 0 0 40px;
  position: relative;
}
.m_p_s_t:before{
  content: "0"counter(sec);
  font-size: 6.4rem;
  line-height: 1.2;
  font-weight: bold;
  color: #ddd;
  font-family: 'Noto Sans JP', sans-serif;
  position: absolute;
  left: 0;
  bottom: 0;
}
.m_p_page .m_p_s_t {
  padding: 0;
}
.m_p_page .m_p_s_t:before {
  content: "";
  display: none;
}
.m_p_s_c{
  padding: 0 0 0 120px;
}
.m_p_s_c_mission p {
  margin:0 0 10px;
}
.m_p_s_c_mission p:last-child {
  margin:0;
}
.m_p_s_c_info {
  display: table;
}
.m_p_s_c_info dt {
  width: 150px;
  display: table-cell;
  vertical-align: top;
  padding: 10px;
}
.m_p_s_c_info dd {
  display: table-cell;
  vertical-align: top;
  padding: 10px;
}
.co_name {
  text-align: left;
}
.co_name:before {
  content: "樋口 裕之";
  display: inline-block;
}
.address_img {
  text-align: left;
}
.address_img:before {
  content: "〒460-0008 愛知県名古屋市中区栄五丁目26番36号 GS栄Ⅱ 7F";
  display: inline-block;
}
.m_p_s_c_cv {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 80px 0 0;
}
.m_p_s_c_cv_btn a {
  padding: 20px 40px;
  color: #0f3675;
  border: 1px solid #0f3675;
}
.m_p_s_c_cv_btn a:hover {
  background: #0f3675;
  color: #fff;
  border: 1px solid #0f3675;
  opacity: 1;
}
.m_p_s_c_cv_tel a {
  font-size: 2.4rem;
  display: inline-block;
  color: #333;
  margin: 0 20px 0 0;
}


@media screen and (max-width: 599px) {
  .m_p_s{
    padding: 20px 0 80px;
    margin: 0 0 20px;
  }
  .m_p_s_wrap {
    max-width: 100%;
    width: 100%;
  }
  .m_p_s:last-child {
    padding: 20px 0;
    margin: 0;
  }
  .m_p_s_t {
    font-size: 2.4rem;
    padding: 0 10px 0 70px;
    margin: 0 0 30px;
  }
  .m_p_s_t:before {
    font-size: 4.8rem;
    line-height: 1.1;
  }
  .m_p_s_c{
    padding: 0 10px 0 70px;
  }
  .m_p_page .m_p_s_t {
    text-align: center;
  }

  .m_p_s_c_info dt {
    width: 5em;
    padding: 5px;
  }
  .m_p_s_c_info dd {
    padding: 5px;
  }
  .m_p_s_c_cv {
    display: block;
    margin: 30px 0 0;
  }
  .m_p_s_c_cv_btn {
    text-align: center;
    margin: 0 0 30px;
  }
  .m_p_s_c_cv_btn a {
    padding: 12px 20px;
  }
  .m_p_s_c_cv_tel {
    text-align: center;
  }
  .m_p_s_c_cv_tel a {
    font-size: 1.8rem;
  }

}

@media screen and (max-width: 375px) {
  .m_p_s_c_info {
    display: block;
  }
  .m_p_s_c_info+ .m_p_s_c_info {
    margin: 15px 0 0;
  }
  .m_p_s_c_info dt {
    display: block;
    width: 100%;
    padding: 2px;
  }
  .m_p_s_c_info dd {
    display: block;
    padding: 2px;
  }
}



.m_p_page {

}
.m_p_page_form {

}
.googleforms {
  display: block;
  margin: 20px auto;
}
.m_p_s_c_top {
  text-align: center;
}
@media screen and (max-width: 700px) {
  .googleforms {
    width: 100%!important;
    height: 1100px;
  }
}