@charset "UTF-8";
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
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;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

ul {
  list-style: none;
}

li {
  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%;
  text-decoration: none;
  vertical-align: baseline;
  background: transparent;
}

img {
  max-width: 100%;
  vertical-align: baseline;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  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;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

main {
  display: block;
}

address {
  font-style: normal;
}

button {
  border: 0;
  box-shadow: none;
  cursor: pointer;
}

pre {
  white-space: pre-wrap;
}

* {
  box-sizing: border-box;
}

/* 共通カラー */
/* ブレイクポイント */
/* メディアクエリ */
html {
  font-size: 62.5%;
}

body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}

p, a {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #000;
}

h2, h3, h4 {
  line-height: 1.5;
}

@media screen and (min-width: 760px) {
  body {
    min-width: 320px;
  }
  html, body {
    height: 100%;
    min-height: 100%;
  }
}
@media screen and (min-width: 960px) {
  body {
    width: 100%;
  }
}
._pc {
  display: none;
}
@media screen and (min-width: 760px) {
  ._pc {
    display: block;
  }
}

._pc-lg {
  display: none;
}
@media screen and (min-width: 960px) {
  ._pc-lg {
    display: block;
  }
}

._sp {
  display: block;
}
@media screen and (min-width: 760px) {
  ._sp {
    display: none;
  }
}

._sp-lg {
  display: block;
}
@media screen and (min-width: 960px) {
  ._sp-lg {
    display: none;
  }
}

.hamburger {
  position: relative;
  height: 63px;
  width: 63px;
  background-color: #FF8500;
  cursor: pointer;
  z-index: 30;
}
.hamburger:hover {
  opacity: 0.6;
}
.hamburger__line {
  display: block;
  position: absolute;
  width: 35px;
  height: 3px;
  border-radius: 2px;
  left: 16px;
  background-color: #fff;
  transition: all 0.5s;
}
.hamburger__line--1 {
  top: 20px;
}
.hamburger__line--2 {
  top: 30px;
}
.hamburger__line--3 {
  top: 40px;
}

.open .hamburger__line--1 {
  transform: translateY(6px) rotate(-45deg);
  top: 25px;
  left: 15px;
}

.open .hamburger__line--2 {
  opacity: 0;
}

.open .hamburger__line--3 {
  transform: translateY(-6px) rotate(45deg);
  top: 37px;
  left: 15px;
}

.snav {
  position: absolute;
  top: 63px;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(#FF8500 80%, #F55B5B);
  border-radius: 50px 0 0 0;
  padding: 20px;
  transition: all 0.6s;
  z-index: 25;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 760px) {
  .snav {
    width: 650px;
  }
}
@media screen and (min-width: 1100px) {
  .snav {
    padding: 50px 40px 200px 40px;
  }
}
.snav.open {
  right: 0;
}
.snav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.snav__list a {
  position: relative;
  width: 48%;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: solid 1px #fff;
  padding: 20px 0;
}
@media screen and (min-width: 960px) {
  .snav__list a {
    font-size: 1.4rem;
  }
}
.snav__list a::after {
  position: relative;
  content: "";
  background-image: url(../img/module/arrow_icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 16px;
  height: 8px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.snav__link::after {
  background-image: url(../img/module/link_icon.svg) !important;
  width: 16px !important;
  height: 16px !important;
}
.snav__group {
  border-bottom: solid 1px #fff;
  margin-top: 25px;
  padding-bottom: 20px;
}
.snav__group a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  color: #FF000F;
  font-weight: bold;
  background-color: #fff;
}
@media screen and (min-width: 960px) {
  .snav__group a {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 960px) and (min-width: 960px) {
  .snav__group a {
    font-size: 2.2rem;
  }
}
.snav__group p {
  color: #fff;
  font-size: 1.4rem;
}
@media screen and (min-width: 960px) {
  .snav__group p {
    font-size: 1.6rem;
  }
}
.snav__group p a {
  display: inline-block;
  color: #fff;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  background-color: transparent;
}
@media screen and (min-width: 960px) {
  .snav__group p a {
    font-size: 1.6rem;
  }
}
.snav__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.snav__flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 10px;
}
.snav__flex a {
  width: 48%;
  font-size: 1.2rem;
  padding: 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 960px) {
  .snav__flex a {
    font-size: 1.4rem;
  }
}
.snav a:hover {
  opacity: 0.6;
}

.breadcrumb {
  width: 100%;
  margin-bottom: 10px;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb__item {
  color: #fff;
  font-size: 1.2rem;
  padding: 0 6px;
  margin-top: 10px;
}
@media screen and (min-width: 960px) {
  .breadcrumb__item {
    font-size: 1.4rem;
  }
}
.breadcrumb__item a {
  color: #fff;
  font-size: 1.2rem;
}
@media screen and (min-width: 960px) {
  .breadcrumb__item a {
    font-size: 1.4rem;
  }
}

.footer {
  position: relative;
}
.footer__bold {
  font-weight: bold;
  margin-bottom: 20px !important;
}
.footer--pc {
  display: none;
}
@media screen and (min-width: 760px) {
  .footer--pc {
    display: block;
  }
}
.footer--sp {
  display: block;
}
@media screen and (min-width: 760px) {
  .footer--sp {
    display: none;
  }
}
.footer__img {
  display: none;
}
@media screen and (min-width: 760px) {
  .footer__img {
    display: block;
    position: absolute;
    top: -65px;
    z-index: 2;
  }
}
.footer__inner {
  background: linear-gradient(90deg, transparent 0%, transparent 50%, #262B2C 50%, #262B2C);
}
.footer__wrap {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.footer__logo {
  text-align: center;
}
@media screen and (min-width: 760px) {
  .footer__logo {
    padding: 40px 0 0 0;
    width: 200px;
  }
}
@media screen and (min-width: 960px) {
  .footer__logo {
    width: 380px;
  }
}
.footer__logo img {
  width: 90%;
}
@media screen and (min-width: 960px) {
  .footer__logo img {
    width: auto;
  }
}
.footer__logo a:first-of-type {
  display: inline-block;
}
.footer__unit {
  flex: 1;
  background-color: #262B2C;
  padding: 30px;
}
@media screen and (min-width: 760px) {
  .footer__unit {
    padding: 50px 0 50px 30px;
  }
}
.footer__unit a, .footer__unit p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  color: #fff;
  font-size: 1.4rem;
}
@media screen and (min-width: 960px) {
  .footer__unit a, .footer__unit p {
    font-size: 1.5rem;
  }
}
.footer__unit a {
  margin-bottom: 10px;
}
.footer__unit a:hover {
  opacity: 0.6;
}
.footer__unit .footer__flex {
  align-items: flex-start;
}
.footer__group {
  max-width: 1100px;
  width: 96%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.footer__flex {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 760px) {
  .footer__item {
    margin-bottom: 30px;
    margin-right: 20px;
  }
}
.footer__item--half {
  width: 50%;
}
.footer__paragraph {
  margin-left: 1.4rem;
}
.footer__submenu {
  display: flex;
  justify-content: center;
  background-color: #EFEFEF;
  padding: 10px 0;
}
@media screen and (min-width: 760px) {
  .footer__submenu {
    justify-content: left;
    border-top: solid 1px #fff;
    background-color: unset;
    padding: 40px 0 0 0;
  }
}
.footer__submenu a {
  font-size: 1.2rem;
  padding: 0 10px;
  border-right: 1px solid #000;
}
@media screen and (min-width: 760px) {
  .footer__submenu a {
    border-right: none;
    font-size: 1.4rem;
    margin-left: 20px;
  }
}
@media screen and (min-width: 960px) {
  .footer__submenu a {
    font-size: 1.5rem;
  }
}
.footer__submenu a:first-child {
  margin-left: 0;
  border-left: none;
}
.footer__btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: inline-flex;
  justify-content: space-between;
  color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
  background-color: #FF000F;
  border: solid 2px #FF000F;
  padding: 10px 50px;
  display: flex !important;
  align-items: baseline;
  padding: 4px 20px;
  margin-left: 20px;
}
@media screen and (min-width: 760px) {
  .footer__btn {
    margin-top: 20px;
    margin-left: 0;
  }
}
.footer__btn p {
  font-size: 1.6rem;
  letter-spacing: 6px;
  color: #fff;
}
@media screen and (min-width: 960px) {
  .footer__btn p {
    font-size: 1.8rem;
  }
}
.footer__btn span {
  display: block;
  font-size: 1rem;
  letter-spacing: 4px;
}
.footer__copyright {
  background-color: #FF000F;
  padding: 4px 0;
}
.footer__copyright p {
  color: #fff;
  font-size: 1rem;
  text-align: center;
  padding: 0 30px;
}
@media screen and (min-width: 760px) {
  .footer__copyright p {
    text-align: end;
  }
}

.scroll {
  width: 60px;
  position: fixed;
  bottom: 50px;
  right: 0;
  cursor: pointer;
  z-index: 10;
}
.scroll:hover {
  opacity: 0.6;
}

.recruit {
  display: none;
  width: 100%;
  position: fixed;
  bottom: 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 12px 0;
  z-index: 10;
  overflow: hidden;
}
.recruit a {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: inline-flex;
  justify-content: space-between;
  color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
  background-color: #FF000F;
  border: solid 2px #FF000F;
  border-radius: 50px;
  padding: 10px 50px;
  padding: 10px 14px;
  margin: 0 5px;
  font-size: 1rem;
}
@media screen and (min-width: 960px) {
  .recruit a {
    padding: 10px 50px;
    margin: 0 15px;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 960px) and (min-width: 960px) {
  .recruit a {
    font-size: 1.6rem;
  }
}
.recruit a img {
  width: 10px;
}
@media screen and (min-width: 960px) {
  .recruit a img {
    width: auto;
  }
}

.is-hidden {
  visibility: hidden;
  opacity: 0;
}