@charset "UTF-8";

:root {
  --color1: #1a1a1a;
  --color2: #004e9e;
  --color3: #1b1464;
  --color4: #e8f1fc;
  --color5: #e41d24;
  --color6: #FFFF00;
  --color7: #808080;
  --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);
  background-color: #fff;
  -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: #999;
}
.noscroll {
  overflow: hidden;
}

/* 共通 */
.wrap {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.section {
  padding: 100px 0;
}
.sp {
  display: none !important;
}
.center {
	text-align: center;
}
.flex {
	display: flex;
}
.flex_reverse {
	flex-direction: row-reverse;
}
.font_bold {
	font-weight: 700;
}
.font_hbold {
	font-weight: 900;
}
.font_en {
  line-height: 1;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width:768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .section {
    padding: 60px 0;
  }
}

/* ヘッダー */
.hdlogo {
  width: 150px;
  position: absolute;
  top: 15px;
  left: 20px;
  z-index: 1;
}
.hdlogo img {
  width: 100%;
}
.header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  padding: 0 20px;
}
@media screen and (max-width:768px) {
  .hdlogo {
    width: 120px;
  }
}

/* ドロワーメニュー */
.nav_wrapper {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  transition: opacity .5s ease, visibility .5s ease;
  display: block;
}
.nav_wrapper.fade {
  opacity: 1;
  visibility: visible;
}
.header_nav {
  width: 100%;
  max-width: 380px;
  height: 100%;
  background-color: var(--color2);
  box-sizing: border-box;
  padding: 60px 0 100px;
  overflow-y: scroll;
  margin-left: auto;
  position: relative;
}
.header_nav .nav_list {
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
.nav_item {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}
.nav_item a {
  font-size: 14px;
  color: #fff;
  display: block;
}
.nav_item a span {
  font-size: 20px;
  letter-spacing: .05em;
  margin-bottom: 5px;
  display: block;
  transition: all .3s;
}
.nav_item a:hover span {
  color: var(--color6);
}
.burger_btn {
  width: 60px;
  height: 60px;
  background-color: var(--color2);
  border: none;
  padding: 0;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 3;
  transition: all .3s;
  cursor: pointer;
}
.bar {
  width: 30px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all .3s;
  display: block;
}
.bar_top {
  top: 20px;
}
.burger_btn.close .bar_top {
  transform: translate(-50%, 10px) rotate(45deg);
}
.bar_mid {
  top: 50%;
}
.burger_btn.close .bar_mid {
  opacity: 0;
}
.bar_bottom {
  bottom: 18px;
}
.burger_btn.close .bar_bottom {
  transform: translate(-50%, -10px) rotate(-45deg);
}
@media screen and (max-width:480px) {
  .header_nav {
    max-width: none;
  }
}

/* フッター */
.footer {
  background-color: var(--color2);
  padding: 3rem 0;
}
.footer .flex_inn {
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.footer .logo {
  width: 150px;
  box-sizing: border-box;
}
.footer .logo img {
  width: 100%;
}
.footer .area {
  gap: 40px;
  box-sizing: border-box;
}
.footer .box {
  color: #fff;
}
.footer .box .txt {
  font-size: 12px;
}
.footer .list {
  border-left: solid 1px #fff;
  padding-left: 1rem;
  margin-top: 1rem;
}
.footer .item {
  font-size: 10px;
}
.copyright {
  line-height: 25px;
  font-size: 11px;
  color: #fff;
  background-color: var(--color1);
}
@media screen and (max-width:960px) {
  .footer .flex_inn {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .footer .area {
    justify-content: center;
    margin: 0;
  }
}
@media screen and (max-width:768px) {
  .footer .area {
    flex-wrap: wrap;
    gap: 30px;
  }
  .footer .box {
    width: 100%;
    text-align: center;
    position: relative;
  }
  .footer .box:nth-child(1)::after,
  .footer .box:nth-child(2)::after {
    content: "";
    width: 270px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .footer .box:last-child::after {
    content: none;
  }
  .footer .box .txt {
    font-size: 14px;
  }
  .footer .list {
    border-left: none;
    padding-left: 0;
    margin-top: .2em;
  }
  .footer .item {
    font-size: 12px;
  }
  .copyright {
    margin-bottom: 50px;
  }
}

/* セクションタイトル */
.sectitlebox {
  margin-bottom: 40px;
}
.sectitlebox .flex_title {
  align-items: center;
}
.sectitlebox .sub {
  font-size: 50px;
}
.sectitlebox .title {
  font-size: 18px;
  font-weight: normal;
  margin-left: 1em;
}
.sectitlebox .sec_txt {
  line-height: 1.75;
  margin-top: 2em;
}
@media screen and (max-width:768px) {
  .sectitlebox {
    text-align: center;
  }
  .sectitlebox .flex_title {
    display: block;
  }
  .sectitlebox .title {
    font-size: 14px;
    display: block;
    margin-top: 5px;
    margin-left: 0;
  }
  .sectitlebox .sub {
    font-size: 35px;
  }
  .sectitlebox .sec_txt {
    font-size: 14px;
  }
}

/* ページトップ */
#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);
  }
}

/* スマホフローティングバナー */
.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: 100%;
  box-sizing: border-box;
}
.flbnr .item a {
  height: 50px;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(180deg, #F87300 0%, #F87300 50%, #E45000 50%, #E45000 100%);
  /* background-color: var(--color2); */
  align-items: center;
  justify-content: center;
}
.flbnr .item:nth-child(2) a {
  background-color: var(--color3);
}
.flbnr .txt i {
  margin-right: 5px;
}

/* お問い合わせ */
.contact {
  background-color: #f6f6f6;
}
.form_area {
  max-width: 600px;
  margin: 0 auto;
}
.form_area .box {
  font-size: 14px;
	margin-bottom: 30px;
}
.form_area .box .title {
  font-weight: bold;
	margin-bottom: 10px;
}
.form_area .box .title span.req {
	font-size: 13px;
	color: var(--color5);
	margin-left: 0.5em;
}
.form_area .box input[type="text"],
.form_area .box input[type="email"],
.form_area .box input[type="tel"] {
	width: 100%;
	height: 50px;
	font-size: 14px;
	box-sizing: border-box;
	background: none;
	background-color: #fff;
	border: none;
	border-radius: 0;
	padding: 10px;
	outline: none;
}
.form_area .box input[type="tel"] {
  width: 50%;
}
.form_area .box textarea {
	width: 100%;
	font-size: 14px;
	background: none;
	background-color: #fff;
	border: none;
	border-radius: 0;
	padding: 10px;
	outline: none;
}
.form_area .privacybox {
  height: 350px;
  border-radius: 0;
  background-color: #fff;
  padding: 30px;
  margin-bottom: 20px;
  overflow-y: scroll;
  box-sizing: border-box;
}
.form_area .privacybox .inn {
  margin-bottom: 40px;
}
.form_area .privacybox .inn:last-child {
  margin-bottom: 0;
}
.form_area .privacybox .sub {
  font-size: 14px;
  margin-bottom: 10px;
}
.form_area .privacybox .txt {
  font-size: 14px;
  line-height: 1.75;
  text-align: justify;
  margin-bottom: 0;
}
.formbtn {
	width: 100%;
	max-width: 380px;
	margin: 50px auto 0;
}
.formbtn input[type="submit"] {
	width: 100%;
	line-height: 60px;
  font-size: 16px;
	font-weight: bold;
  letter-spacing: .1em;
  text-align: center;
  color: #fff;
  display: block;
  box-sizing: border-box;
  border: none;
  background-color: var(--color2);
  border-radius: 0;
  padding: 0 10px;
  cursor: pointer;
}
.formbtn button {
	margin-top: 20px;
}
@media screen and (max-width:960px) {
  .form_area .privacybox {
    height: 280px;
    padding: 20px;
  }
  .form_area .privacybox .sub,
  .privacytxt {
    font-size: 14px;
  }
  .form_area .privacybox .txt {
    font-size: 13px;
  }
	.formbtn input[type="submit"] {
		line-height: 50px;
		font-size: 14px;
		appearance: none;
		-webkit-appearance: none;
	}
}
@media screen and (min-width:961px)  {
	.formbtn input[type="submit"] {
		transition: all .3s;
	}
	.formbtn input[type="submit"]:hover {
		background-color: var(--color3);
	}
}

/* コンバージョン */
.conversion {
  color: #fff;
  background: linear-gradient(120deg, var(--color3) 10%, var(--color2) 50%, var(--color3));
  padding: 60px 0;
}
.conversion .title {
  font-size: 30px;
  margin-bottom: 15px;
}
.conversion .txt {
  font-size: 18px;
  line-height: 1.75;
}
.conversion .btn {
  width: 100%;
  max-width: 350px;
  margin: 40px auto 0;
  box-sizing: border-box;
}
.conversion .btn a {
  width: 100%;
  line-height: 60px;
  font-size: 25px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  background: linear-gradient(180deg, #F87300 0%, #F87300 50%, #E45000 50%, #E45000 100%);
  display: block;
  transition: all .3s;
}
.conversion .btn a:hover {
  opacity: .75;
}
@media screen and (max-width:768px) {
  .conversion .title {
    font-size: 20px;
  }
  .conversion .txt {
    font-size: 14px;
  }
  .conversion .btn {
    max-width: 250px;
  }
  .conversion .btn a {
    font-size: 16px;
    line-height: 50px;
  }
}