@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

@font-face {
  font-family: 'Line Seed JP';
  src: url('../../font/LINESeedJP_OTF_Rg.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Line Seed JP';
  src: url('../../font/LINESeedJP_OTF_Bd.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --main-color: #ff0000;
  --black: #1b1b1b;
}

/* common
============================================ */
@media (prefers-main-coloruced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
body {
  width: 100%;
  font-size: 16px;
  font-family: 'Line Seed JP', 'Helvetica Neue', 'Arial', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'BIZ UDPGothic', Meiryo, sans-serif;
  font-weight: 400;
  color: var(--black);
  font-display: swap;
  position: relative;
}

a {
  color: var(--black);
  transition: all .3s;
}
a:hover {
  color: var(--main-color);
}
a img {
  transition: all .3s;
}
a:hover img {
  opacity: .7;
}
img {
  width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

.pc {
  display: none;
}

.align-center {
  text-align: center;
}

/* header
============================================ */
header {
  width: 100%;
  height: 65px;
  background: #fff;
  border-bottom: 5px solid var(--main-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
header .inner {
  margin: 0 auto;
  padding: 0 15px;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
header #logo {
  width: 150px;
  text-align: center;
}
header #logo a {
  text-decoration: none;
}
header #logo a:hover {
  color: var(--black);
  opacity: .7;
}
header #logo span {
  margin-top: .5em;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .03em;
  white-space: nowrap;
  display: block;
  transform: scale(.88);
  transform-origin: center top;
}

header nav {
  width: 100%;
  height: calc(100% - 65px);
  background: #fff;
  position: fixed;
  top: 60px;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate(100vw);
  transition: all .4s ease-out;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  pointer-events: auto;
}
header nav.active {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
  transition: all .4s ease-out;
}
header nav ul {
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
header nav ul::-webkit-scrollbar {
  display:none;
}
header nav li a {
  padding: 1.2em;
  color: #fff;
  font-size: .875rem;
  line-height: 1;
  background: var(--main-color);
  border-bottom: 1px solid #fff;
  display: block;
  text-decoration: none;
}
header nav li a:hover {
  color: #fff;
}
header nav li span {
  display: none;
}

header .sns {
  padding: 20px 5%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}
header .sns p {
  padding: 5px;
  flex-shrink: 0;
}
header .sns p a {
  padding: 0;
  width: 58px;
  height: 58px;
  background: none;
  border-bottom: none;
  border-radius: 2px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
header .sns p img {
  width: auto;
  max-width: 29px;
  max-height: 29px;
}
header div.sns {
  display: none;
}

header .btn {
  height: 100%;
  position: absolute;
  top: 0;
  right: 60px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  flex-shrink: 0;
}
header .btn a {
  padding: .5em;
  color: #fff;
  font-size: .8rem;
  text-align: center;
  line-height: 1.2;
  text-decoration: none;
  background: var(--main-color);
  border-radius: 5px;
  display: block;
}
header .btn a:hover {
  opacity: .7;
}
header .btn span {
  font-size: .67rem;
}

header #menu_btn {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 5px;
  right: 5px;
  pointer-events: auto;
  z-index: 1;
}
header #menu_btn.active {
  background: none;
}
header .menu-trigger,
header .menu-trigger::before,
header .menu-trigger::after {
  width: 32px;
  height: 4px;
  background-color: var(--main-color);
  border-radius: 2px;
  position: absolute;
  left: 10px;
  transition: all .2s ease-in;
}
header .menu-trigger {
  top: 24px;
}
header #menu_btn.active .menu-trigger {
  background-color: transparent;
}
header .menu-trigger:before {
  content: '';
  top: -10px;
  left: 0;
}
header #menu_btn.active .menu-trigger::before {
  background-color: var(--main-color);
  top: 0;
  transform: rotate(-135deg);
}
header .menu-trigger::after {
  content: '';
  top: 10px;
  left: 0;
}
header #menu_btn.active .menu-trigger::after {
  background-color: var(--main-color);
  top: 0;
  transform: rotate(135deg);
}
header #menu_open,
header #menu_close {
  padding: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
header #menu_close {
  display: none;
}

/* content
============================================ */
main {
  padding-top: 65px;
  min-height: calc(100vh - 121px);
  overflow: hidden;
}
main > section {
  padding: 80px 5%;
}
main .inner {
  margin: 0 auto;
  max-width: 1200px;
}

main .ttl_box,
main h2,
body#access main h1 {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
  align-items: flex-end;
}
main .ttl_box {
  margin-bottom: 25px;
}
main .ttl_box h2 p,
body#access main h1 p {
  margin-right: auto;
  color: var(--main-color);
  font-family: 'Bebas Neue';
  font-size: 3.125rem;
  font-weight: 500;
  line-height: .6;
  flex-shrink: 0;
}
main .ttl_box h2 span,
body#access main h1 span {
  margin-left: 1em;
  padding: .4em 1.5em;
  color: #fff;
  font-size: .75rem;
  background: var(--black);
  flex-shrink: 0;
}
main .ttl_box div {
  margin-bottom: .7em;
  margin-right: -5vw;
  height: 1px;
  background: var(--black);
  display: block;
  -webkit-box-flex: 1;
  flex: 1;
  position: relative;
}
main .ttl_box div::before {
  content: '';
  width: 8px;
  aspect-ratio: 10 / 11;
  background: url(../img/arrow.svg) no-repeat center left;
  background-size: cover;
  display: block;
  position: absolute;
  top: -4px;
  left: -1px;
}

main h3 {
  margin: 0 auto 15px;
  max-width: 1200px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}
main h3 em {
  color: var(--main-color);
  font-style: normal;
}
main > section .txt {
  font-size: .875rem;
}

/* slide */
.sec_mv {
  width: 100%;
}
.sec_mv .slick-slide {
  height: auto;
}
.sec_mv .slide .slide-dot {
	margin-top: 5px;
	font-size: 0;
	text-align: center;
}
.sec_mv .slide .slide-dot li {
	margin: 0 4px;
	display: inline-block;
}
.sec_mv .slide .slide-dot li button {
  margin: 0;
	padding: 0;
	width: 8px;
	height: 8px;
	background-color: #ddd;
	border: none;
	outline: none;
	border-radius: 50%;
	text-indent:100%;
	white-space:nowrap;
	overflow:hidden;
	cursor: pointer;
}
.sec_mv .slide .slide-dot .slick-active button {
	background-color: var(--main-color);
}

/* more */
.more {
  margin: 35px auto 0;
  width: 65%;
  max-width: 270px;
}
.more a {
  padding: .7em;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--black);
  display: block;
  position: relative;
}
.more a::before,
.more a::after {
  content: '';
  width: 1em;
  height: 1px;
  background: var(--black);
  display: block;
  position: absolute;
  top: 50%;
  transition: all .3s;
}
.more a::before {
  left: 0;
}
.more a::after {
  right: 0;
}
.more a:hover {
  color: var(--black);
  letter-spacing: .1em;
}
.more a:hover::before,
.more a:hover::after {
  width: .7em;
}

/* table */
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
table th,
table td {
  padding: .5em;
  vertical-align: middle;
  background: #fff;
  border: 1px solid #ddd;
}
table th {
  font-weight: 500;
  background: #eee;
}

/* pagetop */
#page-top {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9;
}
#page-top a {
  width: 40px;
  height: 40px;
  text-indent: 100%;
  white-space: nowrap;
  background: var(--main-color);
  overflow: hidden;
  display: block;
  position: relative;
  opacity: .7;
}
#page-top a::before {
  content: '';
  margin: -3px 0 0 -5px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 50%;
}

/* form */
form dl {
  margin: 0 auto;
}
form dl:not(:first-of-type) {
  margin-top: 1.5em;
}
form dt {
  margin-bottom: .7em;
  font-weight: 500;
}
form dt .require {
  margin-top: -.2em;
  margin-left: .5em;
  padding: .2em .5em;
  color: #fff;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1;
  vertical-align: middle;
  background: var(--main-color);
  border-radius: 2px;
  display: inline-block;
}
form input,
form select,
form textarea {
  padding: .5em;
  width: 100%;
  font-size: 16px;
  line-height: 1;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 2px;
}
form input:focus,
form select:focus,
form textarea:focus {
  border-color: var(--main-color);
  outline: none;
}
form select {
  width: auto;
  cursor: pointer;
}
form textarea {
  line-height: 1.5;
}
form .switch_box {
  display: -webkit-box;
  display: flex;
}
form .switch_box input[type="radio"] {
  display: none;
}
form .switch_box label {
	width: 50%;
  padding: 1em;
	background: #bdc3c7;
	color: #869198;
	text-align: center;
  display: block;
  cursor: pointer;
	transition: .2s;
}
form .switch_box label:first-of-type {
	border-radius: 2px 0 0 2px;
}
form .switch_box label:last-of-type {
	border-radius: 0 2px 2px 0;
}
form .switch_box input[type="radio"]:checked + label {
	color: #fff;
	background-color: var(--main-color);
}
form .check_box {
  width: fit-content;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  cursor: pointer;
}
form .check_box:not(:first-of-type) {
  margin-top: 1em;
}
form .check_box input[type="checkbox"] {
  margin-right: 5px;
  width: 20px;
  height: 20px;
  border: 1px solid #ddd;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  appearance: none;
}
form .check_box input[type="checkbox"]:checked {
  background-color: var(--main-color);
  border-color: var(--main-color);
}
form .check_box input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 2px;
  width: 14px;
  height: 8px;
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(-45deg);
}
form dd {
  font-size: .875rem;
  line-height: 1.5;
}
button:not(.mfp-close) {
  margin: 40px auto;
  padding: 1em 2em;
  width: 70%;
  max-width: 260px;
  color: #fff;
  background: var(--main-color);
  border: none;
  border-radius: 2px;
  display: block;
  position: relative;
  transition: all .3s;
  cursor: pointer;
}
button:hover {opacity: .7;}
button.contact_back {
  width: auto;
  font-size: .875rem;
  background-color: #aaa;
}

.parsley-error {
  background-color: #fff0f0;
  border-color: var(--main-color);
}
.parsley-errors-list {
  margin-top: .5em;
  color: var(--main-color);
  font-size: .75rem;
}
.parsley-errors-list li::before {content: '※';}

/* footer
============================================ */
footer {
  padding: 30px 15px;
  color: #fff;
  background: var(--black);
}
footer a {
  color: #fff;
  text-decoration: none;
}
footer nav ul {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}
footer nav li {
  font-size: .875rem;
}
footer nav li:not(:last-of-type) {
  margin-right: .7em;
}
footer nav li:not(:last-of-type)::after {
  content: '|';
  margin-left: .7em;
}
footer small {
  margin-top: 20px;
  font-size: .625rem;
  text-align: center;
  display: block;
}


@media (max-width: 320px) {
  main {
    min-height: calc(100vh - 145px);
  }
  main .ttl_box {
    margin-bottom: 50px;
  }
  main .ttl_box h2 p,
  body#access main h1 p {
    font-size: 2.65rem;
  }
  main .ttl_box h2 span,
  body#access main h1 span {
    font-size: .625rem;
  }
  main .ttl_box div {
    margin-bottom: .6em;
  }
  main h3 {
    font-size: 1rem;
  }
}


@media (min-width: 601px) {
  .sp {
    display: none;
  }

  /* content
  ============================================ */
  main {
    min-height: calc(100vh - 84px);
  }
  main > section {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  main .ttl_box {
    margin-bottom: 50px;
  }
  main .ttl_box h2 p,
  body#access main h1 p {
    font-size: 4rem;
  }
  main .ttl_box h2 span,
  body#access main h1 span {
    font-size: .875rem;
  }

  main h3 {
    margin-bottom: 30px;
    font-size: 1.75rem;
  }

  /* more */
  .more {
    margin-top: 50px;
  }
  .more a {
    font-size: 1.5rem;
  }

  /* form */
  form dt {
    margin-bottom: .7em;
  }
  form dl:not(:first-of-type) {
    margin-top: 1.7em;
  }
  form input,
  form select,
  form textarea {
    padding: .7em;
  }

  /* footer
  ============================================ */
  footer {
    padding-left: 5%;
    padding-right: 5%;
    display: -webkit-box;
    display: flex;
    align-content: flex-end;
  }
  footer nav li:not(:last-of-type) {
    margin-right: 1em;
  }
  footer nav li:not(:last-of-type)::after {
    margin-left: 1em;
  }
  footer small {
    margin: 0 0 0 auto;
    font-size: .75rem;
    text-align: right;
  }
}


@media (min-width: 1033px) {
  a[href*="tel:"] {
    text-decoration: none;
    pointer-events: none;
    cursor: default;
  }

  .pc {
    display: initial;
  }

  /* content
  ============================================ */
  main {
    padding-top: 85px;
  }
  main > section {
    padding-top: 180px;
    padding-bottom: 180px;
  }
  main > section .txt {
    font-size: 1.25rem;
  }

  main .ttl_box {
    margin-bottom: 75px;
  }
  main .ttl_box h2 p,
  body#access main h1 p {
    font-size: 5.3rem;
  }
  main .ttl_box h2 span,
  body#access main h1 span {
    font-size: 1.25rem;
  }
  main .ttl_box div {
    margin-bottom: 1.1em;
    height: 2px;
  }
  main .ttl_box div::before {
    width: 16px;
    top: -8px;
  }
  main h3 {
    margin-bottom: 50px;
    font-size: 2.25rem;
  }

  /* slide */
  .sec_mv .slide .slick-prev,
  .sec_mv .slide .slick-next {
    margin-top: -18px;
    position: absolute;
    top: 50%;
    cursor: pointer;
    opacity: .7;
    transition: all .3s;
    z-index: 1;
    display: none;
  }
  .sec_mv .slide .slick-prev:hover,
  .sec_mv .slide .slick-next:hover {
    opacity: 1;
  }
  .sec_mv .slide .slick-prev:before,
  .sec_mv .slide .slick-next:before {
    content: '';
    margin-top: -5px;
    width: 24px;
    height: 24px;
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
    display: block;
  }
  .sec_mv .slide .slick-prev {
    transform: rotate(-135deg);
    left: 30px;
  }
  .sec_mv .slide .slick-next {
    transform: rotate(45deg);
    right: 30px;
  }
  .sec_mv .slide .slide-dot {
  margin-top: 10px;
  }
  .sec_mv .slide .slide-dot li {
    margin: 0 5px;
  }
  .sec_mv .slide .slide-dot li button {
    width: 12px;
    height: 12px;
  }

  /* form */
  form dl:not(:first-of-type) {
    margin-top: 2em;
  }
  form dt {
    font-size: 1.25rem;
  }
  form dd {
    font-size: 1rem;
  }
}


@media (min-width: 1310px) {
  /* header
  ============================================ */
  header {
    height: 85px;
  }
  header .inner {
    padding: 0 30px;
  }
  header #logo {
    width: 170px;
  }
  header #logo span {
    margin-left: 0;
    transform: scale(1);
  }
  header .navi {
    height: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    flex-grow: 1;
  }
  header nav {
    margin-left: 30px;
    width: auto;
    height: 100%;
    position: relative;
    top: auto;
    right: auto;
    opacity: 1;
    visibility: visible;
    transform: translate(0);
  }
  header nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    overflow: hidden;
  }
  header nav li {
    flex-shrink: 0;
  }
  header nav li a {
    padding: 1em;
    height: 100%;
    color: var(--black);
    font-size: .75rem;
    text-align: center;
    background: #fff;
    border-bottom: none;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
  }
  header nav li a:hover {
    background: var(--main-color);
  }
  header nav li span {
    margin-bottom: .2em;
    font-family: 'Bebas Neue';
    font-size: 1.125rem;
    display: block;
  }
  header .btn {
    margin-left: 15px;
    height: auto;
    position: relative;
    top: auto;
    right: auto;
  }
  header .btn a {
    padding: .5em 1em;
  }
  header .btn span {
    font-size: .73rem;
  }
  header li.sns {
    display: none;
  }
  header div.sns {
    margin-left: auto;
    padding-left: 10px;
    padding: 0;
    display: flex;
  }
  header div.sns p {
    padding: 8px;
  }
  header div.sns p a {
    width: 29px;
    height: 29px;
  }
  header #menu_btn {
    display: none;
  }
}

@media (min-width: 1366px) {
  header .btn a {
    padding: .5em 1em;
    font-size: .875rem;
  }
  main .ttl_box {
    margin-left: calc((100% - 1200px) / 2);
  }
}

@media (min-width: 1440px) {
  header nav li a {
    padding: 1em 1.5em;
  }
}

@media (min-width: 1536px) {
  header nav li a {
    padding: 1em 2em;
  }
}

@media (min-width: 1600px) {
  header nav {
    margin-left: 50px;
  }
  header nav li a {
    min-width: 8em
  }
  header div.sns p {
    padding: 15px;
  }
}

@media (min-width: 1720px) {
  header .inner {
    padding: 0 5%;
  }
  header nav {
    margin-left: 70px;
  }
}