@charset "UTF-8";
/*
*
* Copyright (c) 2016, AD Line Inc. All rights reserved.
* Data : 2016.04.20
*
*/
/* Googleフォント　Noto Sans,Robot,Open Sans */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
/* アイコンフォント　Font Awesome */
/*****************************************************

 SCSS用
 
*****************************************************/
/*****************************************************

 Common - Layout
 
*****************************************************/
html {
  font-size: 10px;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  background-image: linear-gradient(90deg, #f2f2f2, white 20% 80%, #f2f2f2);
  z-index: 0;
  color: #333333;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  line-height: 1.65;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 896px) {
  body {
    font-size: 1.2rem;
  }
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #0071BC;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

/*****************************************************

 Page - Home
 
*****************************************************/
.main_content {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 2%;
}
.main_content .logo {
  position: relative;
  width: 18%;
  height: auto;
  min-width: 240px;
}
.main_content .title {
  position: relative;
  margin-top: 20px;
  font-size: 5.0rem;
  font-weight: bold;
  line-height: 1.4;
}
.main_content .btn_link {
  position: relative;
  margin-top: 120px;
  padding: 12px 88px 14px;
  color: #00773D;
  font-weight: bold;
  font-size: 1.5rem;
  border: 2px #00773D solid;
  border-radius: 4px;
  background: #fff;
  line-height: 1;
}
.main_content .btn_link:hover {
  opacity: 1;
  color: #fff;
  background: #00773D;
}

@media screen and (max-width: 896px) {
  .main_content .title {
    margin-top: 16px;
    font-size: 3.0rem;
  }
  .main_content .btn_link {
    margin-top: 80px;
    padding: 10px 72px 12px;
    font-size: 1.3rem;
  }
}
.global_footer {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: auto;
  padding: 0 2% 16px;
  text-align: center;
}
