@charset "utf-8";

/* 基本
================================================= */
html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  min-height: 100vh;
  height:100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  color: #333;
  font-family: -apple-system, blinkMacSystemFont, /* Macの欧文はSan Francisco (OS X 10.11以降) */
  'Zen Maru Gothic',
  Meiryo,  /* Windowsのメイリオ */
  sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
}
a {
  color: #05577d;
  text-decoration: none;
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.5s ease-out;
}
a:hover {
  color: #1ab2bc;
  text-decoration:underline;
  opacity: 0.7;
}
h1,h2,h3,h4,h5,h6 {
  font-size: 100%;
  font-weight: normal;
}
img{
  max-width: 100%;
  height: auto;
  width /***/:auto;
  border: none;
  vertical-align: bottom;
}
a:hover img { 
  -moz-opacity:0.70;
  opacity:0.50;
  transition: all 0.5s ease-out;
}
strong {
  font-weight: bold;
}
.nopc {
  display: none;
}
.nosp {
  display: block;
}
br.nobr_pc {
  display: none;
}

/* レイアウト
================================================= */
#wrap {
  margin: 0 auto;
  padding-top: 85px;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}
#wrap::before {
  content: "";
  width: 100vw;
  height: 100vh;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9998;
  background: linear-gradient(150deg, #a6d900 0%, #ff4454 100%);
  animation: opening 3s ease-in-out forwards;
}
@keyframes opening {
  0% {
    -webkit-filter: hue-rotate(0deg);
    filter: hue-rotate(0deg);
    height: 100vh;
  }
  80% {
    -webkit-filter: hue-rotate(360deg);
    filter: hue-rotate(360deg);
    height: 100vh;
  }
  82% {
    height: 90vh;
  }
  98% {
    height: 10vh;
  }
  100% {
    height: 0;
  }
}
.opening_logo {
  width: 35%;
  height: auto;
  position: fixed;
  top: 50%;
  right: 10%;
  margin: auto;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-50%);
  animation: openingLogo 3s ease-out forwards;
}
@keyframes openingLogo {
  0% {
  opacity: 1;
  }
  85% {
    opacity: 1;
  }
  86% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
#header {
  width:100%;
}
#gloval_menu {
  width:100%;
}
#contents {
  padding: 0 0 60px;
  width:100%;
}
#footer_wrap {
  margin-top: auto;
  padding: 30px 0 0;
  line-height: 1.2;
  background: #50a9c7;
}

/* コンポーネント
================================================= */
.mds01 {
  display: inline-block;
  margin: 0 auto 40px;
  padding: 10px 15px 0;
  font-family: "Candal", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4.8rem;
  line-height: 1;
  text-align: center;
  position: relative;
}
.mds01::before,
.mds01::after {
  content: "";
  height: 100%;
  width: 5px;
  background: #FF8F00;
  position: absolute;
  bottom: 0;
  transform-origin: bottom;
}
.mds01::before {
  left: 0;
  transform: rotate(-15deg);
}
.mds01::after {
  right: 0;
  transform: rotate(15deg);
}
.mds01 .mds01_sub {
  display: block;
  margin: 10px 0 0;
  padding: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: #664326;
}
.content_wrap {
  padding: 90px 0;
}
.content_box {
  margin: 0 auto;
  width: 90%;
  max-width: 1500px;
}
.flex_between {
  display: flex;
  justify-content: space-between;
}
.keisen01 {
  margin: 20px auto;
  width: 20%;
  height: 5px;
  border: none;
  border-radius: 2px;
  background: #FDD835;
}
.kakudai {
  font-size: 1.5em;
}
.color01 {
  color: #E65100;
}

/* ヘッダー
================================================= */
#header_wrap {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 9997;
}
#header_wrap header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5px;
}
#header_wrap header .logo {
  width: 300px;
  position: relative;
}
#header_wrap header .logo::before {
  content: "";
  display: block;
  padding-top: calc((132 / 702) *100%);
}
#header_wrap header .logo a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/logo-title.svg) no-repeat center center;
  background-size: 80%;
}
#header_wrap header .logo a::before {
  content: "";
  display: block;
  width: calc((147 / 702) * 100%);
  height: 100%;
  background: url(../images/logo.svg) center center no-repeat;
  background-size: contain;
  animation: logo-kaiten 4s ease-in-out infinite;
}
@keyframes logo-kaiten {
  0% {
    transform: rotate(0) scale(1);
  }
  20% {
    transform: rotate(270deg) scale(0.6);
  }
  21% {
    transform: rotate(272deg) scale(0.6);
  }
  22% {
    transform: rotate(273deg) scale(0.6);
  }
  80% {
    transform: rotate(360deg) scale(1);
  }
  100% {
    transform: rotate(360deg);
  }
}
.visual_wrap {
  margin: 0 auto;
  width: 100%;
  max-height: 800px;
  position: relative;
  z-index: 1;
}
.visual_wrap::before {
  content: "";
  display: block;
  padding-top: calc((9 / 16) * 100%);
}
.visual_wrap .video_wrap {
  width: 80%;
  height: 80%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -5555;
  overflow: hidden;
}
.visual_wrap .video_wrap video {
  display: block;
  margin: 0 -20% 0 auto;
  width: 100%;
  height: 100%;
}
.visual_wrap .visual_catch_wrap {
  padding-top: 30px;
  width: 75%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
}
.visual_catch_wrap .visual_catch_box {
  margin: 0 0 0 5%;
  width: 95%;
  height: 65%;
  position: relative;
  z-index: 3333;
}
.visual_catch_wrap .visual_catch_box .visual_catch_img {
  overflow: hidden;
  position: relative;
}
.visual_catch_wrap .visual_catch_box .catch01 {
  height: 45%;
}
.visual_catch_wrap .visual_catch_box .catch01 img {
  display: block;
  height: 100%;
  animation: catch01 0.5s ease-in-out 1 forwards;
  animation-delay: 3.5s;
  opacity: 0;
}
.visual_catch_wrap .visual_catch_box .catch02 {
  margin-bottom: 20px;
  height: calc(55% - 20px);
}
.visual_catch_wrap .visual_catch_box .catch02 img {
  display: block;
  height: 100%;
  animation: catch02 0.5s ease-in-out 1 forwards;
  animation-delay: 4s;
  opacity: 0;
}
@keyframes catch01 {
  0% {
    transform: translateY(100px) translateX(15%);
    transform-origin: bottom;
    opacity: 0;
  }
  100% {
    transform: translateY(0) translateX(15%);
    opacity: 1;
  }
}
@keyframes catch02 {
  0% {
    transform: translateY(100px);
    transform-origin: bottom;
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.visual_catch_wrap .service_word {
  margin-top: 5%;
  margin-left: 10%;
  width: 90%;
  height: calc(30% - 30px);
  font-size: 2.0rem;
  font-weight: 900;
  color: #000;
  line-height: 1.3;
  opacity: 0;
  animation: opentext 0.1s ease-out forwards;
  animation-delay: 6.5s;
  position: relative;
  z-index: 3333;
}
@keyframes opentext {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.visual_catch_wrap .service_word span.word {
  display: inline-block;
  overflow: hidden;
  position: relative;
  line-height: 1;
  font-size: 1.8rem;
  font-weight: 900;
}
.visual_catch_wrap .service_word .rect {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #000;
  top: 0;
  left: 0;
}
.visual_wrap .visual_effect {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden; /* はみ出しを非表示 */
  z-index: 1111;
}
.visual_wrap .visual_effect .catch_obi01 {
  position: absolute;
  bottom: 30%;
  left:0%;
  width: 0;
  height: 25%;
  background: #FFCA28;
  transform-origin: left bottom;
  animation: drawLine01 1s ease-out forwards;
  animation-delay: 4.5s;
}
@keyframes drawLine01 {
  to {
    width: 50%; 
  }
}
.visual_wrap .visual_effect .catch_obi02 {
  position: absolute;
  bottom: 12%;
  right: 0;
  width: 0;
  height: 10%;
  background: #FFEB3B;
  transform-origin: left bottom;
  animation: drawLine02 0.5s ease-out forwards;
  animation-delay: 5s;
}
@keyframes drawLine02 {
  to {
    width: 15%; 
  }
}
.visual_wrap .visual_effect .catch_obi03 {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 2%;
  background: #0097A7;
  transform-origin: left bottom;
  animation: drawLine03 0.5s ease-out forwards;
  animation-delay: 4s;
}
@keyframes drawLine03 {
  to {
    width: 60%; 
  }
}
.visual_wrap .visual_effect .catch_obi04 {
  position: absolute;
  top: 5%;
  right: 0;
  width: 0;
  height: 1%;
  background: #00796B;
  transform-origin: left bottom;
  animation: drawLine04 0.5s ease-out forwards;
  animation-delay: 4.5s;
}
@keyframes drawLine04 {
  to {
    width: 40%; 
  }
}
.visual_wrap .visual_effect .catch_obi05 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3%;
  background: #2ec700;
  transform-origin: left bottom;
  animation: drawLine05 0.5s ease-out forwards;
  animation-delay: 4s;
}
@keyframes drawLine05 {
  to {
    width: 60%; 
  }
}

/* グローバルメニュー
================================================= */
.menu #gnav_ul {
  display: flex;
}
.menu #gnav_ul li a {
  padding: 10px 10px;
  font-family: "Pompiere", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.2rem;
  color: #000;
  text-decoration: none;
}
.menu #gnav_ul li.gm01 a::before {
  content: "";
  padding-left: 35px;
  background: url(../images/icon_person.svg) no-repeat left center;
  background-size: contain;
}
.menu #gnav_ul li.gm02 a::before {
  content: "";
  padding-left: 30px;
  background: url(../images/icon_service.svg) no-repeat left center;
  background-size: contain;
}
.menu #gnav_ul li.gm03 a::before {
  content: "";
  padding-left: 35px;
  background: url(../images/icon_portfolio.svg) no-repeat left center;
  background-size: contain;
}
.menu #gnav_ul li.gm04 a::before {
  content: "";
  padding-left: 40px;
  background: url(../images/icon_contact.svg) no-repeat left center;
  background-size: contain;
}
.menu #gnav_ul li.gm05 a::before {
  content: "";
  padding-left: 30px;
  background: url(../images/icon_price.svg) no-repeat left center;
  background-size: contain;
}

/* レスポンシブメニュー
================================================= */
#gloval_sp-menu {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 80%;
  background: #25b2ce;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 111111;
  opacity: 0;
}
#gloval_sp-menu .logo {
  padding: 30px 0;
  text-align: center;
  background: #0899b6;
}
#gloval_sp-menu .logo img{
  width: 70%;
}
.open #gloval_sp-menu {
  left: 0;
  opacity: 1;
}
#gloval_sp-menu ul {
  padding: 0 0 0 10px;
}
.nav_title {
  margin-bottom: 10px;
  font-size: 2.4rem;
}
#sp-gnav_ul li a {
  display: block;
  padding: 15px 10px 15px 10px;
  font-family: "Pompiere", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.4rem;
  color: #fff;
  border-bottom: 1px solid #ccc;
  position: relative;
}
#sp-gnav_ul li.gm01 a::before {
  content: "";
  padding-left: 50px;
  background: url(../images/icon_person.svg) no-repeat center center;
  background-size: contain;
}
#sp-gnav_ul li.gm02 a::before {
  content: "";
  padding-left: 50px;
  background: url(../images/icon_service.svg) no-repeat center center;
  background-size: contain;
}
#sp-gnav_ul li.gm03 a::before {
  content: "";
  padding-left: 50px;
  background: url(../images/icon_portfolio.svg) no-repeat center center;
  background-size: contain;
}
#sp-gnav_ul li.gm04 a::before {
  content: "";
  padding-left: 50px;
  background: url(../images/icon_contact.svg) no-repeat center center;
  background-size: contain;
}
#sp-gnav_ul li.gm05 a::before {
  content: "";
  padding-left: 50px;
  background: url(../images/icon_price.svg) no-repeat center center;
  background-size: contain;
}

/*============
.toggle_btn
=============*/
.toggle_btn {
  display: none;
  position: fixed;
  top: 25px;
  right: 15px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 10001;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}
/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 10000;
  cursor: pointer;
}


/*--HOME
================================================= */
/*--service
----------------*/
#service {
  margin-top: 30px;
  text-align: center;
  background: url(../images/haikei01.jpg) repeat-x center center;
  background-size: cover;
}
#service .lead {
  margin: 0 auto;
  padding: 10px;
  width: 600px;
  font-size: 2.2rem;
  font-size: clamp(1.80rem, calc(0.60vw + 1.66rem), 2.20rem);
  font-weight: 600;
  line-height: 1.4;
  background: #fff;
  border-radius: 15px;
}
#service .lead span {
  color: #E91E63;
}
#service ul.client {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  margin: 30px auto 0;
  width: 80%;
}
#service ul.client li {
  margin: 0;
  width: calc((100% - 30px) / 3);
  background: #fff;
}
#service ul.client li h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 5px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  background: #4d9eb9;
}
#service ul.client li h3 img {
  margin-right: 10px;
  height: 40px;
}
#service ul.client li p {
  padding: 20px;
  line-height: 1.4;
  text-align: left;
  font-weight: 600;
}
#service ul.items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 30px auto 0;
  width: 80%;
}
#service ul.items li {
  margin-bottom: 5px;
  padding: 20px;
  width: 49%;
  background: #fff;
}
#service ul.items li h3 {
  padding: 15px 10px;
  font-size: 2.0rem;
  font-size: clamp(1.60rem, calc(0.60vw + 1.46rem), 2.00rem);
  font-weight: 600;
  line-height: 1.2;
  color: #0097A7;
  border-top: 2px solid #FFEB3B;
  border-left: 2px solid #FFEB3B;
  border-right: 2px solid #FFEB3B;
  border-radius: 30px 30px 0 0;
}
#service ul.items li p {
  display: block;
  margin-top: 5px;
  padding: 0 10px;
  font-size: 1.4rem;
  text-align: left;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
  text-align: justify; /* 両端揃え */
  text-justify: inter-ideograph; /* 両端揃えの種類 */
}
#service .text_wrap {
  margin: 30px auto 0;
  padding: 30px 0 0;
  width: 800px;
  background: #fff;
}
#service .text_wrap .text {
  margin: 0 auto;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}
#service .text_wrap video {
  width: 90%;
}

/*--portfolio
----------------*/
#portfolio {
  text-align: center;
}
#portfolio ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
#portfolio ul::before {
  content:"";
  display: block;
  width: calc(90% / 4);
  order:1;
}
#portfolio ul::after {
  content:"";
  display: block;
  width: calc(90% / 4);
}
#portfolio ul li {
  margin-bottom: 10px;
  padding: 0 0 15px 0;
  width: calc(90% / 4);
  position: relative;
  border: 1px solid #ccc;
}
#portfolio ul li::before,
#portfolio ul li::after {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  border-radius: 50%;
  background-color: #000;
}
#portfolio ul li::before {
  bottom: 10px;
  left: 10px;
}
#portfolio ul li::after {
  bottom: 10px;
  right: 10px;
}

#portfolio ul li .pict {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
#portfolio ul li .pict img {
  object-fit: cover;
  object-position: center top;
  width: 100%;
  height: 100%;
  transition: 0.5s ease-in-out;
}
#portfolio ul li:hover .pict img {
  object-fit: cover;
  transform: scale(110%);
}
#portfolio ul li .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 5px 5px;
  font-size: 1.4rem;
  position: relative;
}
#portfolio ul li .text h2 {
  padding: 5px;
  width: 90%;
  position: absolute;
  top: calc(-1em - 15px);
  right: -10px;
  color: #fff;
  background-color: rgba(212, 19, 106, 0.9);
  z-index: 10;
}
#portfolio ul li .text h3 {
  margin-bottom: 10px;
  font-weight: 600;
  color: #664326;
}
#portfolio ul li .text span {
  display: inline-block;
  margin: 0 5px 5px;
}

/*--about
----------------*/
#about {
  background-color: rgb(236, 226, 213);
  text-align: center;
}
#about .content_box {
  width: 800px;
}
#about .text_box {
  width: 70%;
  line-height: 1.5;
  text-align: left;
  font-size: 1.6rem;
}
#about .text h2 {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  font-size: 1.8rem;
  font-weight: 600;
  background: #fff;
}
#about .text p {
  margin-bottom: 30px;
}
#about .pict {
  padding-right: 20px;
  width: 25%;
}
#about .pict p {
  position: relative;
  z-index: 333;
}
#about .pict p::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 10px;
  left: 10px;
  background: repeating-linear-gradient(45deg, #786e65, #786e65 2px, transparent 2px, transparent 6px);
  z-index: -222;
}

/*--price
----------------*/
#price {
  text-align: center;
}
#price .price_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#price .price_list .items {
  margin: 0 0 20px;
  padding: 20px 10px;
  width: 49%;
  line-height: 1.4;
  text-align: left;
  border-top: 30px solid #3ca0c1;
  border-bottom: 10px solid #f3ce16;
}
#price .price_list .items h2 {
  padding: 10px 0;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.2;
}
.color01 {
  color: #2ec700;
}
.color02 {
  color: #10b6ed;
}
.color03 {
  color: #ff02a2;
}
.color04 {
  color: #0230ff;
}
#price .price_list .items .text {
  margin-top: 15px;
}
#price .price_list .items .text span {
  display: inline-block;
  margin-right: 5px;
  padding: 2px 5px;
  font-size: 1.3rem;
  color: #fff;
  background: #473f39;
}
#price .price_list .items .text .pagetype {
  margin-bottom: 15px;
  padding: 10px 0;
  font-weight: 600;
  text-align: center;
  border-top: 3px dotted #E91E63;
  border-bottom: 3px dotted #E91E63;
}
#price .price_list .items .text .opt {
  margin-top: 15px;
  font-size: 1.8rem;
  font-weight: 600;
}
#price .price_list .items .text .opt span {
  font-weight: 400;
  background: #038798;
}
#price .price_omoi {
  margin-top: 30px;
  padding: 20px;
  line-height: 1.5;
  text-align: left;
  border: 1px solid #ccc;
}


/*--contact
----------------*/
#contact {
  padding: 60px 0;
  text-align: center;
  background: #ebe8e1;
}
#contact .content_box {
  width: 60%;
}
.contact_form {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact_form dt, .contact_form dd {
  padding: 15px 10px;
  border-bottom: 1px solid #ccc;
}
.contact_form dt {
  display: flex;
  align-items: center;
  width: 40%;
}
.contact_form dd {
  width: 60%;
}
.req {
  margin-right: 5px;
  padding: 2px;
  font-size: 1.2rem;
  color: #fff;
  background: #ff0000;
}
.contact_form dd input[type="text"], .contact_form dd input[type="email"],
.contact_form dd textarea {
  padding: 5px;
  width: 100%;
}
.form_btn {
  margin: 30px auto 0;
  width: 300px;
}
.form_btn input[type="submit"] {
  padding: 10px 5px;
  width: 300px;
  color: #fff;
  text-align: center;
  border: 0;
  background: #000;
}
.ggl, .ggl a {
  font-size: 1.0rem;
  color: #ccc;
  text-align: center;
}

/* フッター
================================================= */
.credit {
  padding: 10px 5px;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  background: #bdab9d;
}


/*--エフェクト系
================================================= */
.effect-fade {
  opacity : 0;
  -webkit-transform : translate(0, 45px);
  transform : translate(0, 45px);
  -webkit-transition : all 400ms;
  transition : all 400ms;
}
.effect-fade.effect-scroll {
  opacity : 1;
  -webkit-transform : translate(0, 0);
  transform : translate(0, 0);
}
.object-fit-img {
  -o-object-fit: contain;
  object-fit: contain;
  font-family: 'object-fit: contain;'
}
.parallax-window {
  min-height: 550px;
  background: transparent;
}
.parallax-slider {
  top: 90px;
  left: 0;
}

/*--pagetop
================================================= */
#page-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 9999;
  bottom: -100px;
  right: 15px;
  width: 80px;
  height: 80px;
  padding: 10px;
  color: #fff;
  font-size: 1.4rem;
  background-color: #74c128;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  transition: .5s;
  line-height: 1.2;
}
#page-top span {
  line-height: 1em;
}
#page-top:hover { 
  background: rgba(0,0,0,.8);
}

.btn_to-top {
  margin: 40px auto;
  width: 100px;
  height: 50px;
  font-size: 1.6rem;
  color: #527b47;
  text-align: center;
}
.btn_to-top img {
  display: block;
  margin: 0 auto 10px;
}
.btn_to-top a {
  display: block;
  color: #527b47;
  text-align: center;
  text-decoration: none;
}
.btn_to-top a:hover {
  text-decoration: none;
}

/* clearfix
================================================= */
.clearfix {
  width: 100%;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* 文字・画像系・その他
================================================= */
.bold {
  font-weight: bold;
}
.red {
  color: #ff0000;
}
.blue {
  color: #4d9eb9;
}
.orng {
  color: #fb5116;
}
.orng_b {
  color: #fb5116;
}

/* font Awesom */
.fas {
  margin-right: 5px;
}
/*
.aaa:before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
*/
.mds_lrg { font-size: 2.4rem;}
.fnt_s20 {font-size: 2.0rem;}
.fnt_s18 { font-size: 1.8rem;}
.fnt_s16 { font-size: 1.6rem;}
.fnt_s12 { font-size: 1.2rem;}
.txt_center {text-align: center;}
.txt_right {text-align: right;}

.img_cntr { margin: 10px auto; display: block;}
.img_rght { float: right; margin: 0 0 5px 10px; display: block;}
.img_lft { float: left; margin: 0 10px 5px 0; display: block;}
.img_w30 { width: 30%; height: auto;}
.img_w40 { width: 40%; height: auto;}

/* 画像の回り込み */
.alignnone {
padding: 4px;
margin: 0px 15px 0 15px;
}
.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
padding: 4px;
}
.alignright {
float: right;
display: inline;
padding: 4px;
margin: 0px 15px 0 15px;
}
.alignleft {
float: left;
display: inline;
padding: 4px;
margin: 0px 15px 0 15px;
}
.clear {
clear: both;
}

/* スペース共通
================================================= */
.mr0 {margin-right: 0;}
.mr5 {margin-right: 5px;}
.mr10 {margin-right: 10px;}
.mr15 {margin-right: 15px;}
.mr20 {margin-right: 20px;}
.mr25 {margin-right: 25px;}
.mr30 {margin-right: 30px;}
.mr35 {margin-right: 35px;}
.mr40 {margin-right: 40px;}
.mr45 {margin-right: 45px;}
.mr50 {margin-right: 50px;}
.mr55 {margin-right: 55px;}
.mr60 {margin-right: 60px;}
.mr65 {margin-right: 65px;}
.mr70 {margin-right: 70px;}
.mr75 {margin-right: 75px;}
.mr80 {margin-right: 80px;}
.mr85 {margin-right: 85px;}
.mr90 {margin-right: 90px;}
.mr95 {margin-right: 95px;}

.ml0 {margin-left: 0;}
.ml5 {margin-left: 5px;}
.ml10 {margin-left: 10px;}
.ml15 {margin-left: 15px;}
.ml20 {margin-left: 20px;}
.ml25 {margin-left: 25px;}
.ml30 {margin-left: 30px;}
.ml35 {margin-left: 35px;}
.ml40 {margin-left: 40px;}
.ml45 {margin-left: 45px;}
.ml50 {margin-left: 50px;}
.ml55 {margin-left: 55px;}
.ml60 {margin-left: 60px;}
.ml65 {margin-left: 65px;}
.ml70 {margin-left: 70px;}
.ml75 {margin-left: 75px;}
.ml80 {margin-left: 80px;}
.ml85 {margin-left: 85px;}
.ml90 {margin-left: 90px;}
.ml95 {margin-left: 95px;}

.mb0 {margin-bottom: 0;}
.mb5 {margin-bottom: 5px;}
.mb10 {margin-bottom: 10px;}
.mb15 {margin-bottom: 15px;}
.mb20 {margin-bottom: 20px;}
.mb25 {margin-bottom: 25px;}
.mb30 {margin-bottom: 30px;}
.mb35 {margin-bottom: 35px;}
.mb40 {margin-bottom: 40px;}
.mb45 {margin-bottom: 45px;}
.mb50 {margin-bottom: 50px;}
.mb55 {margin-bottom: 55px;}
.mb60 {margin-bottom: 60px;}
.mb65 {margin-bottom: 65px;}
.mb70 {margin-bottom: 70px;}
.mb75 {margin-bottom: 75px;}
.mb80 {margin-bottom: 80px;}
.mb85 {margin-bottom: 85px;}
.mb90 {margin-bottom: 90px;}
.mb95 {margin-bottom: 95px;}

.mt0 {margin-top: 0;}
.mt5 {margin-top: 5px;}
.mt10 {margin-top: 10px;}
.mt15 {margin-top: 15px;}
.mt20 {margin-top: 20px;}
.mt25 {margin-top: 25px;}
.mt30 {margin-top: 30px;}
.mt35 {margin-top: 35px;}
.mt40 {margin-top: 40px;}
.mt45 {margin-top: 45px;}
.mt50 {margin-top: 50px;}
.mt55 {margin-top: 55px;}
.mt60 {margin-top: 60px;}
.mt65 {margin-top: 65px;}
.mt70 {margin-top: 70px;}
.mt75 {margin-top: 75px;}
.mt80 {margin-top: 80px;}
.mt85 {margin-top: 85px;}
.mt90 {margin-top: 90px;}
.mt95 {margin-top: 95px;}

.pdd_s5 {padding: 0 5px;}
.pdd_s10 {padding: 0 10px;}
.pdd_s15 {padding: 0 15px;}
.pdd_s20 {padding: 0 20px;}

.pr0 {padding-right: 0;}
.pr5 {padding-right: 5px;}
.pr10 {padding-right: 10px;}
.pr15 {padding-right: 15px;}
.pr20 {padding-right: 20px;}
.pr25 {padding-right: 25px;}
.pr30 {padding-right: 30px;}
.pr35 {padding-right: 35px;}
.pr40 {padding-right: 40px;}
.pr45 {padding-right: 45px;}
.pr50 {padding-right: 50px;}

.pl0 {padding-left: 0;}
.pl5 {padding-left: 5px;}
.pl10 {padding-left: 10px;}
.pl15 {padding-left: 15px;}
.pl20 {padding-left: 20px;}
.pl25 {padding-left: 25px;}
.pl30 {padding-left: 30px;}
.pl35 {padding-left: 35px;}
.pl40 {padding-left: 40px;}
.pl45 {padding-left: 45px;}
.pl50 {padding-left: 50px;}
.pb0 {padding-bottom: 0;}

.pb5 {padding-bottom: 5px;}
.pb10 {padding-bottom: 10px;}
.pb15 {padding-bottom: 15px;}
.pb20 {padding-bottom: 20px;}
.pb25 {padding-bottom: 25px;}
.pb30 {padding-bottom: 30px;}
.pb35 {padding-bottom: 35px;}
.pb40 {padding-bottom: 40px;}
.pb45 {padding-bottom: 45px;}
.pb50 {padding-bottom: 50px;}
.pb55 {padding-bottom: 55px;}
.pb60 {padding-bottom: 60px;}
.pb65 {padding-bottom: 65px;}
.pb70 {padding-bottom: 70px;}
.pb75 {padding-bottom: 75px;}
.pb80 {padding-bottom: 80px;}
.pb85 {padding-bottom: 85px;}
.pb90 {padding-bottom: 90px;}
.pb95 {padding-bottom: 95px;}

.pt0 {padding-top: 0;}
.pt5 {padding-top: 5px;}
.pt10 {padding-top: 10px;}
.pt15 {padding-top: 15px;}
.pt20 {padding-top: 20px;}
.pt25 {padding-top: 25px;}
.pt30 {padding-top: 30px;}
.pt35 {padding-top: 35px;}
.pt40 {padding-top: 40px;}
.pt45 {padding-top: 45px;}
.pt50 {padding-top: 50px;}
.pt55 {padding-top: 55px;}
.pt60 {padding-top: 60px;}
.pt65 {padding-top: 65px;}
.pt70 {padding-top: 70px;}
.pt75 {padding-top: 75px;}
.pt80 {padding-top: 80px;}
.pt85 {padding-top: 85px;}
.pt90 {padding-top: 90px;}
.pt95 {padding-top: 95px;}
