@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.cdnfonts.com/css/sunday-april');
@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@400;500&family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap');
html {
  background-color: #FFF;
  font-size: 62.5%; /*フォントの基準サイズを10pxにする*/
}
#ps_wrap {
  overflow: hidden;
}
@media (max-width: 768px) {
  body {
    font-size: 1.4rem; /*全体のフォントサイズは14pxとする*/
    -webkit-text-size-adjust: 100%; /*スマホでPC表示した際に勝手に文字が大きくなるのを防ぐ*/
  }
  .hidden_sp {
    display: none;
  }
  .container {
    margin: 0 15px;
  }
}
@media (min-width: 769px) {
  body {
    font-size: 1.7rem; /*全体のフォントサイズは16pxとする*/
  }
  .container {
    max-width: 1200px;
    width: calc(100% - 100px);
    margin: auto;
  }
  .hidden_pc {
    display: none;
  }
}
/***************************************************
ヘッダー　
***************************************************/
.toppage #header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
#header {
  width: 100%;
  position:inherit;
}
#header .headWrap .logo a {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  flex-basis: 140px;
}
#header .headWrap .logo h1 {
  font-size: 1em;
  font-weight: 900;
  line-height: 1.3;
  font-family: 'Noto Sans JP', sans-serif;
}
@media (max-width: 1200px) {}
.header__inner {
  padding: 0 20px; /*左右の余白確保*/
  display: flex; /*ロゴとハンバーガーメニューを横に並べる*/
  align-items: center;
  justify-content: space-between;
  height: inherit; /*親要素の高さを継承*/
  position: relative;
}
/* ヘッダーのロゴ部分 */
.header__title {
  display: flex;
  justify-content: flex-start;
}
.header__title .logo {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
}
.header__title img {
  height: 80px;
}
/* ヘッダーのナビ部分 */
.header__nav {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #fff; /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
  transition: ease .4s; /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/
  opacity: 0;
}
/* ハンバーガーメニュー */
.hamburger {
  width: 60px;
  height: 70px;
  position: fixed;
  top: 0px;
  right: 0;
  padding: 1em;
  border-radius: 0 0 0 10px;
}
.hamburger {
  background-color: #009ad0; /*buttonタグデフォルトスタイルを打ち消し*/
  border-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  z-index: 9999;
    color: #FFF;
}
/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #FFF;
  position: relative;
  transition: ease .4s; /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 8px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}
/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
  background: #0053a9;
  opacity: 1;
  display: inherit;
  z-index: 3;
  overscroll-behavior-y: none;
  overflow-y: auto;
}
.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
  background: #534741
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}
.nav-items {}
/* ナビのリンク */
.nav-items__item a {
  color: black;
  display: block;
  text-align: center;
  font-size: 1em;
  text-decoration: none;
}
.nav-items__item:last-child a {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  /*PC時非表示にする*/
  .hamburger {
    width: 80px;
    height: 100px;
  }
  #header {
    height: 100px;
  }
  .header__title {
    width: 100px;
    display: flex;
    justify-content: flex-start;
  }
  #header .header__title .logo a {
    display: block;
  }
  #header .header__title .logo img {
    height: 100px;
    width: 100px;
    max-width: fit-content;
  }
  #header.header__title .logo h1 {}
  .pc_menu {}
  .pc_menu nav {}
  .pc_menu nav ul {
    display: flex;
    gap: 20px;
    margin-right: 80px;
  }
  .pc_menu nav ul li {}
  .pc_menu nav ul li a {
    padding: 1em;
    font-weight: 700;
    text-decoration: none;
    color: #000;
    font-family: 'Noto Sans JP', sans-serif;
  }
}
/***************big menu***********************/
nav .bigmenu {
  max-width: 1500px;
  width: calc(100% - 50px);
  margin: auto;
  display: flex;
  justify-content: space-between;
  color: #FFF;
  gap: 40px;
}
nav .bigmenu .g_menu .menuLogo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin:2em 0;
}
nav .bigmenu .g_menu .menuLogo p {
  margin-left:20px;
}
nav .bigmenu .g_menu .menuLogo p a {
  padding: 0.5em 1em;
  border-radius: 50px;
  color: #FFF;
  border: solid #FFF 1px;
  text-decoration: none;
  font-family: 'Noto Sans JP';
}
nav .bigmenu .g_menu .menuLogo h2 {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 5px;
}
nav .bigmenu .g_menu .menuLogo h2 img {
  height: 50px;
}
nav .bigmenu .g_menu {
  flex: 1 20%;
  position: relative;
}
nav .bigmenu .g_menu .menuWrap {
  column-count: 2;
}
nav .bigmenu .g_menu ul.nav__items {
  text-align-last: left;
}
nav .bigmenu .g_menu ul.nav__items li.nav-items__item a {
  padding: 0.5em 0em 0.5em 1.6em;
  color: #FFF;
  background: url(../img/menuSp_icon.webp) no-repeat;
  background-size: 20px;
  background-position: 0 50%;
  font-size: 1.1em;
  font-weight: 900;
}
nav .bigmenu .g_menu .menuContact {
  column-count: 2;
  margin: 1.5em 0;
}
nav .bigmenu .g_menu .menuContact > div {
  border: 2px solid #ffffff85;
  text-align: center;
  border-radius: 3px;
}
nav .bigmenu .g_menu .menuContact > div a {
  display: flex;
  flex-direction: column;
  padding: 0.7em 1em;
  color: #FFF;
  border-radius: 20px;
  gap: 3px;
  align-items: center;
  text-decoration: none;
  font-weight: 900;
}
nav .bigmenu .g_menu .menuContact > div a img {
  height: 20px;
  max-width: fit-content;
}
nav .bigmenu .service_menu {
  flex: 4 20%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 100px;
}
nav .bigmenu .service_menu h3 {
  font-size: 1.3em;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
	text-align: left;
    color: #009ad0;
}
nav .bigmenu .service_menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
nav .bigmenu .service_menu ul.pickup li {
  flex-basis: calc(50% - 30px);
	background: #0c63bd;
    border-radius: 10px;
    padding: 10px;
}
nav .bigmenu .service_menu ul.pickup li a p {
  margin-top: 10px;
  text-align: justify;
  font-size: 0.9em;
  color: aliceblue;
}
nav .bigmenu .service_menu ul.pickup li a:hover p {
  color: #ffffff;
}
nav .bigmenu .service_menu ul.ownd{
	justify-content:flex-start
}
nav .bigmenu .service_menu ul.ownd li {
  flex-basis: calc(33% - 20px);
}
nav .bigmenu ul.subMenu {
  display: flex;
  flex-wrap: wrap;
}
nav .bigmenu ul.subMenu li {
  flex: 1 50%;
}
nav .bigmenu ul.subMenu li a {
  padding: 0.4em;
  display: block;
  text-decoration: none;
  color: #FFF;
  text-align: left;
  font-size: 0.9em;
}
nav .bigmenu p.add {
  text-align: justify;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  nav .bigmenu {
    flex-direction: column;
    margin: 2em;
  }
  nav .bigmenu .g_menu {
    border-bottom: 1px solid #82b1d7;
    padding-bottom: 1em;
  }
  nav .bigmenu .service_menu ul.pickup li {
    flex-basis: calc(100% - 20px);
    width: 50%;
    margin: auto;
  }
  nav .bigmenu .service_menu ul.ownd li {
    flex-basis: calc(50% - 20px);
    margin: auto;
  }
  nav .bigmenu p.add {
    display: none
  }
}
@media screen and (min-width: 769px) {
  nav .bigmenu {
    gap: 100px;
  }
	nav .bigmenu .g_menu{
		min-width: 400px;
	}
  nav .bigmenu .g_menu::after {
    content: '';
    background: rgb(0 54 136);
    width: calc(100% + 100px);
    height: 100vh;
    position: absolute;
    top: -23vh;
    right: -50px;
    z-index: -1;
    border-radius: 0 0 50px 0;
    min-height: 800px;
  }
  nav .bigmenu .g_menu .menuLogo h2 img {
    height: 70px;
  }
  nav .bigmenu .g_menu .menuLogo {
    margin-right: 50px;
  }
	nav .bigmenu .service_menu{
		min-width: 500px;
	}
  nav .bigmenu .g_menu .menuContact > div a img {
    height: 30px;
    max-width: fit-content;
  }
  nav .bigmenu .g_menu .menuContact > div a {
    font-size: 1em;
  }
}
@media screen and (min-width: 1349px) {
	nav .bigmenu .service_menu ul.pickup li{
    flex-basis: calc(33% - 40px);
}
	  nav .bigmenu .service_menu ul.ownd li {
    flex-basis: calc(25% - 20px);
  }
}
/***************************************************
footer
***************************************************/
footer {
  background-image: linear-gradient(0deg, #000 50%, #0053a9 50%);
}
footer h2 {
  color: #FFF;
}
footer h2 span {
  color: #FFF;
  font-weight: 700;
}
footer > #contact {
  padding-top: 5em;
}
footer > #contact h2 {
	font-family: 'Outfit', sans-serif;
    font-size: 2em;
    font-weight: 900;
    color: #00a0db;
}
footer > #contact h2 span {
  font-size: 0.4em;
  letter-spacing: 1px;
display: block;
}
footer > #contact ul {
  display: flex;
  column-gap: 60px;
  justify-content: space-around;
  margin: 1em auto;
}
footer > #contact ul li {
  background: #FFF;
  border-radius: 20px;
  padding: 2em;
  flex-basis: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
footer > #contact ul li div {}
footer > #contact ul li .icon img {
  height: 50px;
}
footer > #contact ul li a {
  display: block;
}
@media screen and (max-width: 768px) {
  footer > #contact ul {
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (min-width: 769px) {
   footer > #contact h2 {
        font-size: calc(92vw / 20);
    }
}
footer #footInfo {
  color: #4d4d4d;
  width: calc(100% - 100px);
  max-width: 1200px;
  margin: auto;
  padding: 2em 0;
}
footer #footInfo .menu ul {
  padding: 1em;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
footer #footInfo .menu ul li {
  width: 50%;
  text-align: left;
}
footer #footInfo .menu ul li a {
  padding: 0.3em;
  font-size: 0.9em;
  color: #d6d6d6;
  text-decoration: none;
  display: block;
}
footer #footInfo .info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  color: #d6d6d6;
}
footer #footInfo .info h3 {
  font-size: 1.5em;
}
@media screen and (max-width: 768px) {
  footer #footInfo .menu ul {
    display: none
  }
}
@media screen and (min-width: 769px) {
  footer #footInfo {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    align-items: baseline;
  }
  footer #footInfo > div {
    flex: 1 50%
  }
  footer #footInfo .info {
    gap: 20px;
    font-size: 0.9em;
  }
}
/**********************btn************************/
.btn {
  color: #FFF;
  position: relative;
  overflow: hidden;
  padding: 10px 20px;
  border-radius: 50px;
  background: #000000;
  border: 3px solid #000000;
  font-size: 1.2em;
  min-width: 300px;
  display: inline-block;
  text-decoration: none;
  outline: none;
  /*アニメーションの指定*/
  transition: ease .2s;
  font-weight: 900;
  text-align: center;
}
.btn span {
  position: relative;
  z-index: 2; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #FFF;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}
.btn:hover span {
  color: #FFF
}
.bgleft:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #00a0db; /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
/*hoverした際の形状*/
.bgleft:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
@media (max-width: 750px) {
  .btn {
    min-width: 100px;
  }
}

/*******************.flex*********************/
.flex{
display: flex;
	justify-content: center;
	gap:30px;
	flex-wrap: wrap;
	flex-direction: column;
}.flex.col2_1 .item{

}
@media screen and (min-width: 769px) {
	.flex{
flex-direction: row;
}
	.flex.col2_1 .item{
		flex: 1 calc(50% - 30px);
}
}