@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, button, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  opacity: 1;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

html {
  overflow: hidden;
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

body {
  font-size: 10px;
  margin: 0 auto;
  font-family: 'Noto Sans JP','ヒラギノ角ゴ ProN',Hiragino Kaku Gothic ProN, 'メイリオ', Meiryo, sans-serif;
  overflow-x: hidden;
  height: 100%;
  color: #333333;
}

.link_text {
  text-decoration: none;
  background: linear-gradient(transparent 90%, #00B054 0%);
  padding-bottom: 4px;
}

a:link {
  text-decoration: none;
  color: #333333;
}

a:visited {
  text-decoration: none;
  color: #333333;
}

a:hover {
  text-decoration: none;
  color: #333333;
  opacity: 0.65;
}

a:active {
  text-decoration: none;
  color: #333333;
}

header {
  background-color: #FFFFFF;
  padding: 20px 40px;
}

header .headerWrap {
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo_img {
  width: 100px;
  height: auto;
}

header .headerMenu {
  display: flex;
  font-size: 1.4em;
  font-weight: 600;
}

header .headerMenu li {
  margin-left: 80px;
}

header .headerMenu li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

header .headerMenu li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #00B054;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}

header .headerMenu li a:hover {
  opacity: 1;
}

header .headerMenu li a:hover::after {
  transform: scale(1, 1);
}

.mv {
  padding-left: 20px;
  padding-right: 20px;
}

.mv_wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.mv_wrapper img {
  width: 100%;
}

.content_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.message, .service, .profile, .contact {
  padding-top: 60px;
  padding-bottom: 60px;
}

h3 {
  font-size: 3.6em;
  margin-bottom: 24px;
  line-height: 1.5;
}

p {
  font-size: 1.6em;
  line-height: 1.75;
}

.service {
  background-color: #E9F3F4;
}

.service_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.service_list li {
  width: 48%;
  margin-bottom: 40px;
}

.service_info {
  display: flex;
  align-items: center;
}

.service_img {
  width: 130px;
  height: 130px;
  margin-right: 20px;
}

.service_img img {
  width: 130px;
  height: 130px;
  display: block;
}

.service_text {
  font-size: 1.6em;
  width: 100%;
}

.profile_name {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

.profile_wrapper {
  display: flex;
}

.profile_img {
  display: block;
  width: 160px;
  height: 160px;
  margin-left: 40px;
}

.profile_text {
  margin-bottom: 20px;
}

.profile_sns {
  display: flex;
}

.profile_sns a {
  width: 30px;
  height: 30px;
  margin-right: 20px;
}

.profile_sns a img {
  display: block;
  width: 100%;
  height: 100%;
}

.contact {
  background-color: #E9F3F4;
}

.contact_text {
  margin-bottom: 40px;
}

.contact_button a {
  color: #FFFFFF;
  display: block;
  background-color: #00B054;
  width: 300px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  font-size: 1.6em;
}

.contact_button a:link {
  color: #FFFFFF;
  text-decoration: none;
}

.contact_button a:visited {
  color: #FFFFFF;
  text-decoration: none;
}

.contact_button a:hover {
  color: #FFFFFF;
  text-decoration: none;
  opacity: 1;
}

.contact_button a:active {
  color: #FFFFFF;
  text-decoration: none;
  animation: contact_button_click 0.1s;
  animation-fill-mode: forwards;
}

@keyframes contact_button_click {
  100% {
    transform: scale(0.95);
  }
}

footer {
  text-align: center;
  font-size: 1.4em;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .mv_sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  header {
    width: 100%;
    padding: 20px 20px;
    box-sizing: border-box;
  }
  header .logo_img {
    width: 90px;
    height: auto;
  }
  .headerMenu_profile, .headerMenu_service {
    display: none;
  }
  .headerMenu_contact {
    margin-right: 10px;
  }
  .message, .service, .profile, .contact {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .mv {
    padding-left: 0;
    padding-right: 0;
  }
  .mv_pc {
    display: none;
  }
  .content_wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  h3 {
    font-size: 28px;
  }
  .service_list {
    display: block;
  }
  .service_list li {
    width: 100%;
    margin-bottom: 0;
  }
  .service_img {
    width: 120px;
    height: 120px;
    margin-right: 15px;
  }
  .service_img img {
    width: 100%;
    height: 100%;
  }
  .profile_wrapper {
    flex-wrap: wrap-reverse;
  }
  .profile_img {
    margin-left: 0;
    width: 160px;
    height: 160px;
    margin: 0 auto;
  }
  .profile_name {
    text-align: center;
    margin-top: 15px;
  }
  .contact_button {
    width: 100%;
  }
  .contact_button a {
    width: 100%;
  }
}
