@charset "UTF-8";

/* ======================================================

   Reset Stylesheet

========================================================= */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body { line-height: 1; }

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { display: block; }

nav ul { list-style: none; }

blockquote, q { quotes: none; }

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del { text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;  
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select { vertical-align: middle; }

strong { font-weight: bold; }
em { font-style: italic; }

caption {
  padding-bottom: .5em;
  text-align: right;
}

dfn { font-style: normal; }
address {
  font-style: normal;
  line-height: 1.0;
}

.clear { clear: both; }
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix { display: inline-block; }

* html .clearfix { height: 1%; }
.clearfix { display: block; }


/* ======================================================

   common-Setting

========================================================= */
html {
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  color: #333;
  -webkit-text-size-adjust: 100%;
  font-family: "IBM Plex Sans", "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.2em;
}
h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea,
select,
p,
blockquote,
table,
th,
td,
pre,
address,
ul,
ol,
li,
dl,
dt,
dd {
  font-size: 14px;
  font-weight: normal;
  text-align: left;
  line-height: 2;
}
li {
  list-style: none;
}
th,
td {
  vertical-align: middle;
}
select {
  visibility: visible !important;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #0484ED;
  text-decoration: none;
}
a:hover {
  color: #0484ED;
  text-decoration: underline;
}

.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1500ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.pc_area {
  display: none;
}

.wrapper {
  padding-top: 60px;
  overflow-x: hidden;
  position: relative;
}

@media screen and (min-width: 1025px) {
  .pc_area {
    display: block;
  }
  .sp_area {
    display: none;
  }
  .wrapper {
    padding-top: 80px;
  }
}

/* ======================================================

   header

========================================================= */
.header_cover {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: #FFF;
}
.header_inner {
  width: 90%;
  margin: 0 auto;
}
.header_inner .logo {
  width: 110px;
  height: 30px;
  margin-top: 15px;
}
.g_navi_cover {
  display: none;
}
@media screen and (min-width: 1025px) {
  .header_cover {
    width: 100%;
    height: auto;
  }
  .header_inner {
    width: 100%;
	padding: 20px 30px;
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
	-webkit-align-items: stretch;
	align-items: stretch;
  }
  .header_inner .logo {
    width: 150px;
    height: 40px;
	margin: 0;
  }

  .g_navi_cover {
    width: calc(100% - 250px);
    display: block;
  }
  .g_navi {
	height: 100%;
    display: -webkit-flex;
    display: flex;
	-webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .g_navi li.menu_item {
	height: 100%;
	display: table;
	font-size: 16px;
	font-weight: bold;
  }
  .g_navi li.menu_item a {
    display: table-cell;
	vertical-align: middle;
    color: #333333;
	cursor: pointer;
    text-decoration: none;
	padding: 0 15px;
    transition: 0.3s;
  }
  .g_navi li.menu_item:last-child a {
	padding: 0 0 0 15px;
  }
  .g_navi li.menu_item a:hover {
    color: #0484ED;
    transition: 0.3s;
  }
}

/* hamburger menu */
.hamburger_menu_cover {
  position: fixed;
  top: 0;
  right: 0;
  background: #0484ED;
  z-index: 999;
}
.hamburger_menu {
  display: flex;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 15px;
  cursor: pointer;
  box-sizing: content-box;
}
.hamburger_menu__line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #FFF;
  position: relative;
  transition: all 0.5s;
}
.hamburger_menu__line::before,
.hamburger_menu__line::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #FFF;
  position: absolute;
  transition: all 0.5s;
}
.hamburger_menu__line::before {
  transform: translateY(-8px);
}
.hamburger_menu__line::after {
  transform: translateY(8px);
}
.hamburger_menu.open .hamburger_menu__line {
  background-color: transparent;
}
.hamburger_menu.open .hamburger_menu__line::before {
  transform: rotate(45deg);
}
.hamburger_menu.open .hamburger_menu__line::after {
  transform: rotate(-45deg);
}
@media screen and (min-width: 1025px) {
  .hamburger_menu_cover {
    display: none;
  }
}

.nav_sp {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  padding: 100px 30px 80px;
  background: #FFF;
  text-align: left;
  transition: right 0.5s;
  overflow: scroll;
  z-index: 998;
}
.nav_sp.open {
  right: 0;
}
.nav_sp li {
  font-size: 16px;
  line-height: 1.4;
  position: relative;
}
.nav_sp li {
  margin-bottom: 1em;
}
.nav_sp li a {
  display: block;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}
.nav_sp li a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  margin: -4px 2px 0 0;
  border-top: solid 2px #0484ED;
  border-right: solid 2px #0484ED;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* ======================================================

   footer

========================================================= */
.footer_cover {
  background: #333333;
}
.copy {
  color: #FFFFFF;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  padding: 30px 5%;
}
@media screen and (min-width: 1025px) {
  .copy {
    padding: 40px 5%;
  }
}

/* ======================================================

   contents

========================================================= */
.fv_cover {
  background: url("../images/fv.jpg") no-repeat center;
  background-size: cover;
}
.fv_img {
  width: 100%;
  height: calc(100vh - 60px);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.fv_img .logo_img {
  width: 180px;
  margin: 0 auto 30px;
}
.fv_img h2 {
  width: 90%;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
}
.fv_img h2 span {
  display: block;
  font-size: 16px;
  margin-top: 5px;
}
@media screen and (min-width: 1025px) {
  .fv_img {
	height: 750px;
  }
  .fv_img .logo_img {
    width: 240px;
  }
  .fv_img h2 {
    width: 100%;
	font-size: 34px;
  }
  .fv_img h2 span {
    font-size: 18px;
    margin-top: 5px;
  }
}

.common_ttl {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #0a008b, #1582ed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 1025px) {
  .common_ttl {
    font-size: 60px;
    margin-bottom: 30px;
  }
}

#aboutus::after {
  content: '';
  display: block;
  width: 100%;
  height: 200px;
  background: url("../images/about_img01.jpg") no-repeat center bottom;
  background-size: cover;
}
.aboutus_contents {
  width: 90%;
  margin: 0 auto;
  padding: 60px 0;
}
.aboutus_contents h3 {
  text-align: center;
}
.aboutus_list_cover .concept_img {
  width: 80%;
  max-width: 600px;
  margin: 0 auto 30px;
}
.aboutus_list_cover .concept_list li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 0 20px 20px;
  border-bottom: #CCCCCC 1px solid;
}
.aboutus_list_cover .concept_list li span {
  display: inline-block;
  font-size: 22px;
  font-weight: bold;
  background: linear-gradient(to right, #4086f5, #35a954, #fbbd08, #ed4336);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (min-width: 1025px) {
  #aboutus::after {
    height: 350px;
  }
  .aboutus_contents {
    max-width: 1000px;
    padding: 100px 0;
  }
  .aboutus_list_cover {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
  }
  .aboutus_list_cover .concept_img {
    width: 45%;
    margin: 0;
  }
  .aboutus_list_cover .concept_list {
    width: 55%;
  }
  .aboutus_list_cover .concept_list li {
    font-size: 18px;
    margin-bottom: 30px;
    padding: 0 30px 30px;
  }
  .aboutus_list_cover .concept_list li span {
    font-size: 32px;
  }

}

.business_contents {
  width: 90%;
  margin: 0 auto;
  padding: 60px 0;
}
.business_contents .txt_blc {
  margin-bottom: 40px;
}
.business_contents .txt_blc p {
  margin-bottom: 1em;
}
.business_list {
  padding: 30px;
  margin-bottom: 20px;
}
.business_list:last-child {
  margin-bottom: 0;
}
.business_list h4,
.business_list p {
  color: #FFFFFF;
}
.business_list h4 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 10px;
}
.business_list h4 span {
  font-size: 14px;
}
.business_list p {
  line-height: 2.2;
}
.business_list p span {
  font-weight: bold;
}
.business_list01 {
  background: url("../images/business_img01.jpg") no-repeat center;
  background-size: cover;
}
.business_list02 {
  background: url("../images/business_img02.jpg") no-repeat center;
  background-size: cover;
}
.business_list03 {
  background: url("../images/business_img03.jpg") no-repeat center;
  background-size: cover;
}
.business_list04 {
  background: url("../images/business_img04.jpg") no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 1025px) {
  .business_contents {
    max-width: 1200px;
    padding: 110px 0;
  }
  .business_contents_list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
	-webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .business_list {
    width: calc(50% - 10px);
	  padding: 70px 60px 80px;
  }
  .business_list:nth-child(3) {
    margin-bottom: 0;
  }
  .business_list h4 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .business_list h4 span {
    font-size: 16px;
  }
}

#company {
  background: #f7f7f7;
}
.company_contents .common_ttl {
  text-align: center;
}
.company_contents .lft_blc {
  padding: 50px 5%;
}
.company_contents .lft_blc .txt_blc {
  padding-top: 100px;
  background: url("../images/logo.png") no-repeat top center;
  background-size: auto 80px;
}
.company_contents .lft_blc .txt_blc p {
  text-align: center;
}
.company_contents .lft_blc .company_name {
  font-size: 16px;
  font-weight: bold;
}
.company_contents .rgt_blc {
  height: 0;
  overflow: hidden;
  padding-bottom: 250px;
  position: relative;
}
.company_contents .rgt_blc iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .company_contents {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .company_contents .common_ttl {
    text-align: left;
  }
  .company_contents .lft_blc {
    width: 45%;
	box-sizing: border-box;
  }
  .company_contents .lft_blc .txt_blc {
    min-height: 82px;
	padding: 0 0 0 140px;
    background: url("../images/logo.png") no-repeat top left;
    background-size: 100px auto;
  }
  .company_contents .lft_blc .txt_blc p {
    text-align: left;
  }
  .company_contents .rgt_blc {
    width: 55%;
    padding-bottom: 600px;
  }
}

.contact_contents {
  width: 90%;
  margin: 0 auto;
  padding: 50px 0;
}
.contact_ttl {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}
.contact_ttl span {
  display: block;
  font-size: 16px;
}
.contact_form input,
.contact_form textarea {
  width: 100%;
  padding: 5px 15px;
  border: #CCCCCC 1px solid;
}
.privacypolicy {
  height: 130px;
  border: #cccccc 1px solid;
  padding: 30px;
  margin-top: 20px;
  overflow: scroll;
}
.privacypolicy h5 {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
.privacypolicy p,
.privacypolicy dd {
  font-size: 12px;
  line-height: 2;
}
.privacypolicy dl {
  margin-top: 30px;
}
.privacypolicy dt {
  font-weight: 700;
}
.mailform_btn {
  width: 80%;
  margin: 20px auto 0;
}
.mailform_btn button,
.mailform_btn input {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  padding: 20px 40px 20px 25px;
  border: none;
  outline: none;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #FFFFFF;
  background: #0a008b url("../images/arrow01.png") no-repeat center right 20px;
  background-size: 6px 10px;
}
@media screen and (min-width: 1025px) {
  .contact_contents {
    max-width: 900px;
    padding: 100px 0;
  }
  .contact_ttl {
    font-size: 34px;
	margin-bottom: 30px;
  }
  .privacypolicy {
    height: 150px;
    padding: 30px 40px;
  }
  .mailform_btn {
    max-width: 230px;
    margin: 30px auto 0;
  }
  .mailform_btn button,
  .mailform_btn input {
    transition: all 0.3s;
	cursor: pointer;
  }
  .mailform_btn button:hover,
  .mailform_btn input:hover {
    transition: all 0.3s;
	background: #1582ed url("../images/arrow01.png") no-repeat center right 20px;
    background-size: 6px 10px;
  }
}

/*--- お問合せ送信完了画面 ---*/
.contact_thanks {
  width: 90%;
  margin: 0 auto 50px;
}
.contact_thanks h4 {
  font-size: 26px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}
.contact_thanks h4 span {
  display: block;
  font-size: 16px;
  font-weight: 400;
}
.contact_thanks .contact_txt {
  text-align: center;
}
.contact_thanks .mailform_btn a {
  display: block;
  width: 100%;
  padding: 20px 40px 20px 25px;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 2;
  text-decoration: none;
  background: #0a008b url("../images/arrow01.png") no-repeat center right 20px;
  background-size: 6px 10px;
}
.company_profile p {
  text-align: center;
  line-height: 2;
  margin-bottom: 1em;
}
.contact_thanks .logo {
  width: 120px;
  margin: 80px auto 20px;
}
@media screen and (min-width: 1025px) {
  .contact_thanks {
    max-width: 900px;
	margin: 0 auto 100px;
  }
  .contact_thanks h4 {
    font-size: 34px;
  }
  .contact_thanks h4 span {
    font-size: 18px;
  }
  .contact_thanks .mailform_btn {
    max-width: 230px;
	margin: 30px auto 0;
  }
  .contact_thanks .mailform_btn a {
    transition: all 0.3s;
  }
  .contact_thanks .mailform_btn a:hover {
    transition: all 0.3s;
	  background: #1582ed url("../images/arrow01.png") no-repeat center right 20px;
    background-size: 6px 10px;
  }
}


/* ======================================================

   table

========================================================= */
.common_tbl {
  width: 100%;
  border-right: #cccccc solid 1px;
  border-top: #cccccc solid 1px;
}
.common_tbl th,
.common_tbl td {
  padding: 15px 20px;
  position: relative;
  border-left: #cccccc solid 1px;
  border-bottom: #cccccc solid 1px;
}
.common_tbl tr,
.common_tbl th,
.common_tbl td {
  display: block;
  box-sizing: border-box;
}
.common_tbl th {
  font-weight: 700;
  background: #f7f7f7;
}
.common_tbl th.required {
  padding: 15px 70px 15px 20px;
}
.common_tbl th.required::before {
  content: '必須';
  display: block;
  padding: 0 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  background: #333333;
}
@media screen and (min-width: 1025px) {
  .common_tbl th,
  .common_tbl td {
    padding: 20px 30px;
  }
  .common_tbl tr {
    display: table-row;
  }
  .common_tbl th {
    width: 30%;
  }
  .common_tbl th,
  .common_tbl td {
    display: table-cell;
  }
  .common_tbl th.required {
    padding: 20px 80px 20px 30px;
  }
}

