@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
img {
  width: 100px;
}
body {
  color: #333; /* RGB */
  font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO"; 
  font-weight: 400;
  font-style: normal;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
html {
    scroll-behavior: smooth;
}
.pagetop {
    height: 30px;
    width: 30px;
    position: fixed;
    right: 15px;
    bottom: 15px;
    background: #fff;
    border: solid 2px #41a995;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
  opacity: 0.8;
}
.pagetop__arrow {
    height: 5px;
    width: 5px;
    border-top: 3px solid #41a995;
    border-right: 3px solid #41a995;
    transform: translateY(20%) rotate(-45deg);
    opacity: 0.8;
}
@media (hover: hover) and (pointer: fine) {
    .pagetop:hover, .pagetop:hover .pagetop__arrow {
        border-color: #70d0bd;
    }
}

h2 {
  font-size: 6.0rem;
  color: #41a995;
  margin: 0px auto;
  line-height: 50px;
  letter-spacing: 0.2rem;
  position: relative;
  top: -60px;
}
h2 span {
  font-size: 2.6rem;
}
@media(max-width:800px) {
  h2 {
  font-size: 2.4rem;
  line-height: 20px;
  letter-spacing: 0.3rem;
  position: relative;
  top: 0px;
    margin-bottom: 10px;
}
h2 span {
  font-size: 1.2rem;
}
}
/*--------------------------------------
utility class
--------------------------------------*/
.wrapper {
  display: flex;
  position: relative;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
}
