@charset "UTF-8";

:root {
  --color1: #1a1a1a;
  --color2: #0055a8;
  --color3: #14425c;
  --color4: #0392d3;
  --color5: #d9e6f2;
  --color6: #E45000;
  --hr-color: #ccc;
}

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;
}
html {
  font-size: 10px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
body {
  line-height: 1.5;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
	font-style: normal;
  color: var(--color1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
* {
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
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;
  text-decoration: none;
  color: var(--color1);
}
a:hover {
  text-decoration: none;
}
a:visited {
  color: var(--color1);
}
a:link {
  color: var(--color1);
}
a img:hover {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75;
  transition: all .3s;
}
ins {
  background-color: #ff9;
  color: var(--color1);
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: var(--color1);
  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 var(--hr-color);
  margin: 1em 0;
  padding: 0;
}
input, select {
  vertical-align: middle;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
::placeholder {
  color: var(--hr-color);
}
.picthover {
	transform: scale(1, 1);
	transition: all 0.3s 0s ease-Out;
}
a:hover .picthover {
	transform: scale(1.018, 1.018);
	transition: all 0.3s 0s ease-Out;
	filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75;
}
.noscroll {
  overflow: hidden;
}

/* 共通 */
.ank {
  padding-top: 80px;
  margin-top: -80px;
}
.wrap {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.section {
  padding: 60px 0;
}
.sp {
  display: none !important;
}
.center {
	text-align: center;
}
.flex {
	display: flex;
}
.font_bold {
	font-weight: 700;
}
.font_en {
	font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.font_en_bold {
	font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}
.sectitlebox {
  margin-bottom: 40px;
}
.sectitlebox .secicon {
  font-size: 30px;
  color: var(--color2);
  margin-bottom: 5px;
}
.sectitlebox .sectitle {
  font-size: 35px;
  line-height: 1;
}
.sectitlebox .sectitle span {
  color: var(--color2);
  display: inline-block;
}
.sectitlebox .sectitle span::before,
.sectitlebox .sectitle span::after {
  content: "";
  width: 2px;
  height: 25px;
  background-color: var(--color2);
  display: inline-block;
}
.sectitlebox .sectitle span::before {
  transform: rotate(-25deg);
  margin-right: 20px;
}
.sectitlebox .sectitle span::after {
  transform: rotate(25deg);
  margin-left: 20px;
}
.sectitlebox .secsub {
  line-height: 1.75;
  margin-top: 30px;
}
.pagetitlebox {
  color: #fff;
  background-color: var(--color3);
  padding: 80px 0;
  position: relative;
}
.pagetitlebox .title {
  font-size: 40px;
  line-height: 1;
}
.pagetitlebox .sub {
  font-size: 18px;
  margin-top: 10px;
}
@media screen and (max-width:768px) {
  .ank {
    padding-top: 120px;
    margin-top: -120px;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .sectitlebox {
    margin-bottom: 40px;
  }
  .sectitlebox .sectitle {
    font-size: 30px;
  }
  .sectitlebox .sectitle span::before,
  .sectitlebox .sectitle span::after {
    height: 22px;
  }
  .sectitlebox .secsub {
    font-size: 14px;
    margin-top: 20px;
  }
  .pagetitlebox {
    padding-bottom: 30px;
  }
  .pagetitlebox .title {
    font-size: 30px;
  }
  .pagetitlebox .sub {
    font-size: 14px;
  }
}

/* ヘッダー */
.header {
  width: 100%;
  padding-top: 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.header .wrap {
  max-width: 1500px;
}
.header .flex_inn {
  justify-content: space-between;
}
.header .logo {
  width: 120px;
  box-sizing: border-box;
}
.header .list {
  gap: 15px;
}
.header .item a {
  font-size: 14px;
  color: var(--color2);
  border-radius: 5px;
  background-color: #fff;
  padding: 5px 10px;
  display: block;
  transition: all .3s;
}
.header .item a:hover {
  opacity: .75;
}
.header .item i {
  font-size: 16px;
  margin-right: 5px;
  position: relative;
  top: 1px;
}
@media screen and (max-width:768px) {
  .header .list {
    display: none;
  }
}

/* ナビゲーション */
.nav {
  width: 100%;
  background-color: var(--color2);
  position: sticky;
  top: 0;
  z-index: 5;
}
.nav .item {
  width: 16.6666%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: all .3s;
}
.nav .item:hover {
  background-color: var(--color4);
}
.nav .item a {
  width: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav .sub {
  font-size: 20px;
}
.nav .txt {
  font-size: 13px;
}
@media screen and (max-width:960px) {
  .nav .sub {
    font-size: 14px;
  }
  .nav .txt {
    font-size: 12px;
  }
}
@media screen and (max-width:768px) {
  .nav .wrap {
    width: 100%;
  }
  .nav .list {
    flex-wrap: wrap;
  }
  .nav .item {
    width: 33.3333%;
    height: 60px;
  }
  .nav .item:nth-child(even) {
    background-color: var(--color4);
  }
  .nav .item a {
    height: 100%;
  }
  .nav .sub {
    font-size: 16px;
  }
}
@media screen and (min-width:769px) {
  .nav .item a {
    border-right: solid 1px #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav .item:nth-child(1) a {
    border-left: solid 1px #fff;
  }
}

/* フッター */
.footer {
  background-color: var(--color2);
}
.footer .txt {
  font-size: 14px;
  color: #fff;
  padding: 20px 0;
}
.footer .txt a {
  color: #fff;
}
.footer .txt span {
  font-size: 16px;
  margin-bottom: 5px;
  display: block;
}
.copyright {
  line-height: 25px;
  font-size: 12px;
  color: #fff;
  background-color: var(--color1);
}
@media screen and (max-width:768px) {
  .footer {
    margin-bottom: 50px;
  }
}

/* スマホフローティングバナー */
.flbnr {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.flbnr.scroll {
  opacity: 1;
  visibility: visible;
}
.flbnr .item {
  width: 50%;
  box-sizing: border-box;
}
.flbnr .item a {
  height: 50px;
  font-size: 16px;
  color: #fff;
  background-color: var(--color2);
  align-items: center;
  justify-content: center;
}
.flbnr .item:nth-child(2) a {
  background-color: var(--color4);
}
.flbnr .txt i {
  margin-right: 5px;
}

/* ページトップ */
#page-top {
  position: fixed;
  right: 20px;
  bottom:40px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
#page-top a {
  font-size: 12px;
  color: #fff;
  background: var(--color1);
  border-radius: 5px;
  padding: 10px;
  display: inline-block;
  transition: all .3s;
}
#page-top a:hover {
  opacity: .75;
}
@media screen and (max-width:768px) {
  #page-top {
    right: 10px;
    bottom: 60px;
  }
}
@keyframes UpAnime {
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(100px);
  }
}

/* コンバージョン */
.conversion {
  background: linear-gradient(-50deg,var(--color3) 0%, var(--color3) 50%, var(--color2) 50%, var(--color2) 100%);
  padding: 20px 0;
}
.conversion .wrap {
  max-width: 800px;
}
.conversion .box {
  box-shadow: 0 4px 8px rgba(0,0,0,.25);
  background-color: #fff;
  padding: 20px;
}
.conversion .title {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 10px;
}
.conversion .title span {
  color: var(--color2);
}
.conversion .list {
  gap: 20px;
  margin-top: 20px;
}
.conversion .item {
  width: calc((100% - 20px)/2);
  box-sizing: border-box;
}
.conversion .item a {
  height: 65px;
  font-size: 20px;
  color: #fff;
  background-color: var(--color2);
  align-items: center;
  justify-content: center;
  transition: all .3s;
}
.conversion .item:nth-child(2) a {
  background-color: var(--color3);
}
.conversion .item a:hover {
  opacity: .75;
}
.conversion .txt i {
  margin-right: 10px;
}
@media screen and (max-width:768px) {
  .conversion .title {
    font-size: 23px;
  }
  .conversion .sub {
    font-size: 14px;
  }
  .conversion .list {
    flex-wrap: wrap;
    gap: 15px;
  }
  .conversion .item {
    width: 100%;
  }
  .conversion .item a {
    font-size: 18px;
  }
}

/* フェードイン */
.fadein {
  opacity: 0;
}
.fadein.scrollin {
  animation: popup 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes popup {
  0% {
    transform: translateY(50px) scale(0.9);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1.0);
  }
  80%, 100% {
    opacity: 1;
  }
}

/* パンくず */
.breadcrumbs_area {
  margin-top: 30px;
  margin-bottom: 60px;
}
.breadcrumbs {
  font-size: 12px;
  position: relative;
  z-index: 1;
}
.breadcrumbs span:hover a {
  color: var(--color2);
  text-decoration: underline;
}
.breadcrumbs span a span:after {
  content: "\e5cc";
  font-family: 'Material Icons';
  display: inline-block;
  position: relative;
  top: 2px;
  margin: 0 5px;
  color: #1a1a1a;
}