@charset "UTF-8";
/* ===================================================================
CSS information

 file name  :reset.css
 style info :リセット用CSS
=================================================================== */

/*要素のフォントサイズやマージン・パディングをリセットしています*/
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;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section.small {
    display:block;
}

/* --HTML-- */
html {
	background:#fff;
	color:#0A0000;
}

/* --BODY-- */
body {
	margin:0;
	padding:0;
	line-height:1;
}

/* --OTHER TAGS-- */
a img,img {
	border:0;
	vertical-align:bottom;
}

blockquote,dd,div,dl,dt,h1,h2,h3,h4,h5,h6,li,ol,p,pre,span,td,th,ul {
	margin:0;
	padding:0;
}

abbr,acronym {
	border:0;
}

address,caption,cite,code,dfn,em,th,strong,var {
	font-style:normal;
	font-weight:400;
}

caption,th {
	text-align:left;
}

code,kbd,pre,samp,tt {
	font-family:monospace;
	line-height:100%;
}

*+html code,kbd,pre,samp,tt {
	font-size:108%;
}

h1,h2,h3,h4,h5,h6 {

}

ol,ul {
	list-style:none;
}

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

img {
	vertical-align: top;
	font-size:0;
	line-height: 0;
}

/* form */
button,fieldset,form,input,label,legend,select,textarea {
	font-family:inherit;
	font-size:100%;
	font-style:inherit;
	font-weight:inherit;
	vertical-align:baseline;
	margin:0;
	padding:0;
}

/* tables */
table {
	font-size:100%;
	line-height:1.5;
	border-collapse:collapse;
}

/*
---------------------------------------------
base
---------------------------------------------
*/

* {
  box-sizing: border-box;
  min-height: 0%;
}

*:focus {
  outline: none;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #090808;
  -webkit-text-size-adjust: 100%;
}

a {
  text-decoration: none;
}

/*
---------------------------------------------
helper
---------------------------------------------
*/

.main {
  display: block;
}

.pc {
	display:block;
}

.md {
	display:none;
}

.sp {
	display:none;
}

br.sp,
img.sp,
span.sp {
	display:none;
}

br.pc,
img.pc,
span.pc {
	display:inline;
}

@media screen and (max-width: 1000px) {
  .md {
		display:block;
  }
}

@media screen and (max-width: 767px) {
	.pc {
		display:none;
  }

	.sp {
		display:block;
	}

  br.sp,
  img.sp,
  span.sp {
		display:inline;
	}

  br.pc,
  img.pc,
  span.pc {
		display:none;
	}
}

/*
---------------------------------------------
common
---------------------------------------------
*/

.main {
  margin-top: 128px;
}

.contents-inner {
  width: 1340px;
  min-width: 1340px;
  margin: auto;
}

@media screen and (max-width: 1640px) {
  .main {
    margin-top: 125px;
  }
}

@media screen and (max-width: 1360px) {
  .contents-inner {
    min-width: 100%;
    width: 100%;
    padding: 0 20px;
  }
}

@media screen and (max-width: 1000px) {
  .main {
    margin-top: 64px;
  }

  .wrapper {
    min-width: 1000px;
  }

  .contents-inner {
    min-width: 1000px;
    width: 1000px;
  }
}

@media screen and (max-width: 767px) {
  .wrapper {
    min-width: 100%;
  }

  .contents-inner {
    min-width: 100%;
    width: 100%;
    padding: 0 15px;
  }
}

/*
---------------------------------------------
hedaer
---------------------------------------------
*/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 3;
  width: 100%;
  background: white;
  top: 0;
  padding: 27px 60px;
}

.header .header-logo {
  width: 277px;
}

.header .header-logo img {
  width: 100%;
}

.header .header-leftbox {
	display:flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  margin-left: 20px;
}

.header .header-nav {
  flex: 1;
}

.header .header-nav .list {
  display: flex;
  gap: 60px;
  margin-right: 50px;
  justify-content: flex-end;
}

.header .header-nav .list li a {
  font-size: 16px;
  color: #090808;
  font-weight: bold;
  text-decoration: none;
  transition: .3s;
}

.header .header-nav .list li a:hover {
  text-decoration: none;
  opacity: .7;
}

.header .contact {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
	width: 280px;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  background: #00B900;
  border-radius: 6px;
  z-index: 1;
  transition: .3s;
  padding: 21px 0 22px 30px;
  border: solid 2px #00B900;
}

.header .contact::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background: url(../images/common/icon-line-w.png) center/cover no-repeat;
  width: 36px;
  height: 40px;
  transition: .3s;
}

.header .contact::after {
  content: "";
  position: absolute;
  top: 51%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  border-top: solid 2px white;
  border-right: solid 2px white;
  width: 8px;
  height: 8px;
  transition: .3s;
}

.header .contact:hover {
  color: #00B900;
  background: white;
}

.header .contact:hover::before {
  background: url(../images/common/icon-line-g.png) center/cover no-repeat;
}

.header .contact:hover::after {
  border-top: solid 2px #00B900;
  border-right: solid 2px #00B900;
}

@media screen and (max-width: 1720px) {
  .header .header-nav .list {
    gap: normal;
    margin-right: 20px;
    justify-content: space-between;
  }
}

@media screen and (max-width: 1660px) {
  .header {
    padding: 27px 20px;
  }
}

@media screen and (max-width: 1480px) {
  .header .header-logo {
    width: 200px;
  }

  .header .header-nav .list li {
    line-height: 1.2;
  }

  .header .header-nav .list li a {
    font-size: 14px;
  }

  .header .contact {
    width: 230px;
    font-size: 16px;
  }

  .header .contact::before {
    left: 10px;
  }

  .header .contact::after {
    right: 10px;
  }
}

@media screen and (max-width: 1160px) {
  .header .header-logo {
    width: 160px;
  }

  .header .header-leftbox {
    margin-left: 10px;
  }

  .header .header-nav .list {
    margin-right: 10px;
  }

  .header .contact {
    width: 190px;
    font-size: 14px;
  }

  .header .contact::before {
    left: 5px;
  }

  .header .contact::after {
    right: 5px;
  }
}

@media screen and (max-width: 1000px) {
  .header .header-leftbox {
    display: none;
  }

  .header {
    padding: 15px 0 19px 12px
  }

  .header .header-logo {
    width: 156px;
  }
}

/*
---------------------------------------------
hamburger
---------------------------------------------
*/

.header-menu {
  display: none;
}

.header-menu {
  display: block;
  position: fixed;
  right: 13px;
  top: 8px;
  z-index:99999;
  cursor: pointer;
}

.header-menu .trigger {
  display: block;
  transition-duration: .5s;
  width: 48px;
  height: 48px;
  background: #d30e1c;
  border-radius: 50%;
}

.header-menu .trigger.active {
  border: solid 1px #D9D9D9;
  background: white;
}

.header-menu .trigger span {
  display: inline-block;
  transition: all 0.4s !important;
  box-sizing: border-box;
}

.header-menu .trigger span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 1px;
  background-color: white;
}

.header-menu .trigger span:nth-of-type(1) {
  top: 20px;
}

.header-menu .trigger span:nth-of-type(2) {
  top: 26px;
}

.header-menu .trigger span:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background-color: white;
  border-radius: 3px;
  transition: all 0.4s;
}

.header-menu .trigger.active span {
  background-color: white;
}

.header-menu .trigger.active span:nth-of-type(1) {
  transform: scale(0) translateY(20px);
  background-color: white;
}

.header-menu .trigger.active span:nth-of-type(2) {
  transform: rotate(-45deg);
  background-color: #707070;
  top: 23px;
  left: 15px;
}

.header-menu .trigger.active span:nth-of-type(2)::after {
  transform: rotate(90deg);
  background-color: #707070;
}

/*
---------------------------------------------
drawer
---------------------------------------------
*/

.header-drawer {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  height: calc(100% - 64px);
  width: 100%;
  background: white;
  z-index: 100;
  padding: 45px 24px 0;
  overflow-y: scroll;
  z-index: 1;
}

.header-drawer .header-nav .list {
  display: block;
  padding-right: 0;
  margin-right: 0;
}

.header-drawer .header-nav .list li:not(:first-child) {
  margin-left: 0;
}

.header-drawer .header-nav .list li {
  padding: 0 20px 30px;
  margin-bottom: 30px;
  border-bottom: solid 1px #D9D9D9;
}

.header-drawer .header-nav .list li a {
  color: #090808;
  font-weight: bold;
  position: relative;
  display: block;
  font-size: 16px;
  text-decoration: none;
}

.header-drawer .header-nav .list li a::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 2px;
  border-top: solid 2px #D30E1C;
  border-right: solid 2px #D30E1C;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
}

.header-drawer .btn {
  color: white;
  width: 100%;
  max-width: 327px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 21px 0 22px;
  position: relative;
  background: #00B900;
  border-radius: 6px;
  z-index: 1;
  transition: .3s;
  display: block;
  margin: 40px auto 20px;
  border: solid 2px #00B900;
}

.header-drawer .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background: url(../images/common/icon-line-w.png) center/cover no-repeat;
  width: 36px;
  height: 40px;
  transition: .3s;
}

.header-drawer .btn::after {
  content: "";
  position: absolute;
  top: 52%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  border-top: solid 2px white;
  border-right: solid 2px white;
  width: 8px;
  height: 8px;
  transition: .3s;
}

.header-drawer .btn:hover {
  background: white;
  color: #00B900;
}

.header-drawer .btn:hover::before {
  background: url(../images/common/icon-line-g.png) center/cover no-repeat;
}

.header-drawer .btn:hover::after {
  border-top: solid 2px #00B900;
  border-right: solid 2px #00B900;
}

/*
---------------------------------------------
footer
---------------------------------------------
*/

.footer {
  position: relative;
  margin-top: 152px;
}

.footer .contents-inner {
  position: relative;
}

.footer .footer-body {
  padding: 73px 0;
}

.footer .footer-body .contents-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer .footer-logo {
  display: block;
  width: 235px;
}

.footer .footer-logo img {
  width: 100%;
}

.footer .footer-list {
  display: flex;
  gap: 60px;
}

.footer .footer-list li a {
  font-weight: bold;
  color: #090808;
  transition: .3s;
}

.footer .footer-list li a:hover {
  opacity: .8;
}

.footer .footer-bottom {
  background: #F7F7F7;
  padding: 25px 0;
  font-size: 14px;
}

.footer .footer-bottom a {
  color: #555555;
  text-decoration: underline;
  margin-right: 42px;
  display: inline-block;
  transition: .3s;
}

.footer .footer-bottom a:hover {
  opacity: .8;
}

@media screen and (max-width: 1280px) {
  .footer .footer-list {
    gap: 20px;
  }
}

@media screen and (max-width: 1080px) {
  .footer .footer-list {
    gap: 15px;
    font-size: 15px;
  }

}

@media screen and (max-width: 767px) {
  .footer {
    margin-top: 110px;
  }

  .footer .footer-body {
    padding: 40px 0 20px;
  }

  .footer .footer-body .contents-inner {
    display: block;
  }

  .footer .footer-logo {
    width: 156px;
    margin-bottom: 20px;
  }

  .footer .footer-list {
    display: block;
  }

  .footer .footer-list li {
    margin-bottom: 30px;
  }

  .footer .footer-bottom a {
    display: block;
    margin-bottom: 15px;
  }
}