@charset "UTF-8";
/* font $size
====================================== */
/* font family
====================================== */
/* colors 色管理
====================================== */
/* border 色管理
====================================== */
/* お知らせのカテゴリの色分け
====================================== */
/* breakpoint ブレイクポイント
====================================== */
html,
body {
  height: 100%;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-wrap: anywhere;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #000;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-size: 16px;
  font-size: 1.6rem;
}

ol,
li {
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

/*----------------------------------------------------
	LAYOUT
----------------------------------------------------*/
.center {
  text-align: center;
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.right {
  text-align: right;
}

.mb30 {
  margin-bottom: 30px;
}

.pt60 {
  padding-top: 60px !important;
}

.pb30 {
  padding-bottom: 30px;
}

.inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5px;
}
@media screen and (max-width: 1300px) {
  .inner {
    width: 100%;
    padding: 0 15px;
  }
}

.inner-small {
  max-width: 1076px;
  margin: 0 auto;
  padding: 0 5px;
}
@media screen and (max-width: 1300px) {
  .inner-small {
    width: 100%;
    padding: 0 15px;
  }
}

.flex {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.en {
  font-family: "Poppins", serif;
}

.column {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .column {
    padding: 40px 0;
  }
}

.column_middle {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .column_middle {
    padding: 40px 0;
  }
}

.column_wide {
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .column_wide {
    padding: 80px 0;
  }
}

.column_xwide {
  padding: 180px 0;
}
@media screen and (max-width: 820px) {
  .column_xwide {
    padding: 120px 0;
  }
}
@media screen and (max-width: 767px) {
  .column_xwide {
    padding: 80px 0;
  }
}

/*----------------------------------------------------
    animation
----------------------------------------------------*/
/* TriggerClass　*/
.fadeUpTrigger,
.fadeInTrigger,
.fadeInLeftTrigger {
  opacity: 0;
}

/* 遅れて表示させる */
.delay1 {
  animation-delay: 0.2s;
}

.delay2 {
  animation-delay: 0.4s;
}

.delay3 {
  animation-delay: 0.6s;
}

.delay4 {
  animation-delay: 0.8s;
}

.delay5 {
  animation-delay: 1s;
}

.delay6 {
  animation-delay: 1.2s;
}

.delay7 {
  animation-delay: 1.4s;
}

/*---------------------AnimationClass------------------*/
/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* fadeInLeft */
.fadeInLeft {
  animation-name: fadeInLeftAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*----------------------------------------------------
	PARTS
----------------------------------------------------*/
@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*----------------------------------------------------
	HEADER
----------------------------------------------------*/
.header {
  background: #C50018;
  position: fixed;
  width: 100%;
  z-index: 100;
}
@media screen and (max-width: 1023px) {
  .header {
    height: 75px;
  }
}
.header .logo_area {
  top: 1.5vh;
  left: 30px;
  z-index: 100;
  position: absolute;
}
@media screen and (max-width: 1023px) {
  .header .logo_area {
    padding-top: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-weight: 600;
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .header .logo_area {
    top: 1.8vh;
    gap: 10px;
    left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .header .logo_area img {
    width: 101px;
  }
}
.header .recruitment_name {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .header .recruitment_name {
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: 15px;
  }
}

.side-menu {
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.side-menu .com-btn-01 {
  margin-left: 20px;
}

/* hamburger*/
a,
a:visited,
a:hover,
a:active {
  font-weight: 600;
  color: inherit;
  text-decoration: none;
}

.outer-menu-inner {
  align-items: center;
  gap: 10px;
}

.outer-menu {
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 2vh;
  right: 3vw;
  z-index: 10;
  background: #fff;
  border-radius: 50px;
  padding: 0 15px 0 30px;
}
@media screen and (max-width: 1023px) {
  .outer-menu {
    top: 1.3vh;
    right: 0;
    background: none;
    box-shadow: none;
  }
}
@media screen and (max-width: 767px) {
  .outer-menu {
    padding-right: 5px;
    top: 1.5vh;
    height: 75px;
  }
}
.outer-menu .checkbox-toggle {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
  width: 60px;
  height: 60px;
  opacity: 0;
}
.outer-menu .checkbox-toggle:checked + .hamburger > div {
  transform: rotate(135deg);
}
@media screen and (max-width: 820px) {
  .outer-menu .checkbox-toggle:checked + .hamburger > div {
    background: #000;
    width: 40px;
  }
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:before, .outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}
@media screen and (max-width: 820px) {
  .outer-menu .checkbox-toggle:checked + .hamburger > div:before, .outer-menu .checkbox-toggle:checked + .hamburger > div:after {
    background: #000;
    width: 40px;
  }
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  opacity: 0;
}
.outer-menu .checkbox-toggle:checked ~ .menu {
  pointer-events: auto;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .outer-menu .checkbox-toggle:checked ~ .menu {
    top: 8vh;
  }
}
.outer-menu .checkbox-toggle:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: 0.75s;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div > div {
  opacity: 1;
  transition: opacity 0.4s ease 0.4s;
}
.outer-menu .checkbox-toggle:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}
.outer-menu .hamburger {
  z-index: 1;
  width: 60px;
  height: 60px;
  padding: 0.5em 1em;
  cursor: pointer;
  transition: box-shadow 0.4s ease;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: #000;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1023px) {
  .outer-menu .hamburger > div {
    background: #fff;
    width: 40px;
  }
}
.outer-menu .hamburger > div:before, .outer-menu .hamburger > div:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1023px) {
  .outer-menu .hamburger > div:before, .outer-menu .hamburger > div:after {
    background: #fff;
    width: 40px;
  }
}
.outer-menu .hamburger > div:after {
  top: 10px;
}
@media screen and (max-width: 1023px) {
  .outer-menu .hamburger > div:after {
    content: none;
  }
}
.outer-menu .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  backface-visibility: hidden;
  outline: 1px solid transparent;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .outer-menu .menu {
    overflow-y: auto;
    overflow-x: hidden;
    height: 92vh;
  }
  .outer-menu .menu::before {
    content: "";
    background: #fff;
    width: 100%;
    height: 75px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
.outer-menu .menu > div {
  width: 200vw;
  height: 220vw;
  transition: all 0.4s ease;
  flex: none;
  transform: scale(0);
  backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .outer-menu .menu > div {
    overflow: auto;
    margin-top: 250px;
    align-items: flex-start;
  }
}
.outer-menu .menu > div > div {
  max-width: 90vw;
  max-height: 120vh;
  opacity: 0;
  transition: opacity 0.4s ease;
  flex: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
  width: 100%;
}
@media screen and (max-width: 820px) {
  .outer-menu .menu > div > div {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .outer-menu .menu > div > div {
    gap: 15px;
  }
}
.outer-menu .menu > div > div > ul {
  list-style: none;
  padding: 0 1em;
  margin: 0;
  gap: 30px;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  width: calc(33.3333333333% - 60px);
}
@media screen and (max-width: 820px) {
  .outer-menu .menu > div > div > ul {
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 767px) {
  .outer-menu .menu > div > div > ul {
    width: 100%;
    gap: 20px;
  }
}
.outer-menu .menu > div > div > ul > li > a {
  font-size: 16px;
  font-size: 1.6rem;
  border-bottom: 0.5px solid #707070;
  padding-bottom: 30px;
  text-align: left;
  position: relative;
  display: inline;
  cursor: pointer;
  transition: color 0.4s ease;
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .outer-menu .menu > div > div > ul > li > a {
    padding-bottom: 15px;
  }
}
.outer-menu .menu > div > div > ul > li > a:before {
  content: "";
  position: absolute;
  top: 22%;
  right: 5%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  transition: 0.3s;
}
.outer-menu .menu > div > div > ul > li > a:hover {
  color: #000;
}
.outer-menu .menu > div > div > ul > li > a:hover:after {
  width: 100%;
}

/*----------------------------------------------------
	TITLE
----------------------------------------------------*/
.com-tit-01 {
  color: #C50018;
  font-size: 40px;
  font-size: 4rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .com-tit-01 {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 1023px) {
  .com-tit-01 .tit_mark {
    display: block;
    margin: 0 auto 30px auto;
  }
}

.com-tit-02, .com-tit-03 {
  font-size: 48px;
  font-size: 4.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .com-tit-02, .com-tit-03 {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
.com-tit-02 .en, .com-tit-03 .en {
  font-size: 16px;
  font-size: 1.6rem;
  color: #C50018;
  display: block;
  font-weight: 500;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .com-tit-02 .en, .com-tit-03 .en {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.com-tit-02 .hight_adj, .com-tit-03 .hight_adj {
  line-height: 1.3;
  display: inline-table;
}

.com-tit-03 {
  text-align: center;
}
@media screen and (max-width: 820px) {
  .com-tit-03 {
    text-align: left;
  }
}
.com-tit-03 .catch {
  color: #fff;
  padding: 0 15px;
  display: inline-block;
  background: #C50018;
  font-size: 19px;
  font-size: 1.9rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .com-tit-03 .catch {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}

.com-tit-04 {
  font-size: 180px;
  font-size: 18rem;
  font-family: "Poppins", serif;
  color: #fff;
  font-weight: 300;
  text-align: center;
  text-shadow: 1px 1px 0 rgba(197, 0, 24, 0.08), -1px -1px 0 rgba(197, 0, 24, 0.08), 1px -1px 0 rgba(197, 0, 24, 0.08), -1px 1px 0 rgba(197, 0, 24, 0.08);
}
@media screen and (max-width: 820px) {
  .com-tit-04 {
    text-align: left;
  }
}
@media screen and (max-width: 820px) {
  .com-tit-04 {
    font-size: 150px;
    font-size: 15rem;
  }
}
@media screen and (max-width: 767px) {
  .com-tit-04 {
    font-size: 60px;
    font-size: 6rem;
  }
}

.com-tit-05 {
  font-size: 30px;
  font-size: 3rem;
  margin-bottom: 10px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .com-tit-05 {
    font-size: 20px;
    font-size: 2rem;
  }
}
.com-tit-05 .en {
  text-align: center;
  font-size: 23px;
  font-size: 2.3rem;
  display: block;
  font-weight: 400;
}

.com-tit-06 {
  text-align: center;
  margin-bottom: 20px;
  color: #C50018;
}
.com-tit-06 img {
  display: block;
}
@media screen and (max-width: 820px) {
  .com-tit-06 img {
    margin: 0 auto;
  }
}

.com-tit-07 {
  font-size: 30px;
  font-size: 3rem;
  color: #C50018;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .com-tit-07 {
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}

.com-tit-08 {
  margin-bottom: 30px;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .com-tit-08 {
    font-size: 20px;
    font-size: 2rem;
  }
}

.com-tit-09 {
  font-size: 48px;
  font-size: 4.8rem;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .com-tit-09 {
    font-size: 20px;
    font-size: 2rem;
  }
}

.com-tit-10 {
  color: #C50018;
  margin-bottom: 15px;
  font-size: 32px;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .com-tit-10 {
    font-size: 20px;
    font-size: 2rem;
  }
}

/*----------------------------------------------------
	BTN
----------------------------------------------------*/
.com-btn-01 a {
  background: #C50018;
  border: 1px solid #C50018;
  color: #fff;
  text-align: center;
  font-weight: 600;
  padding: 5px 0;
  width: 160px;
  font-size: 16px;
  font-size: 1.6rem;
  border-radius: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", serif;
  letter-spacing: 0.2em;
  transition: all 0.3s ease;
}
.com-btn-01:hover a {
  background: #fff;
  color: #C50018;
  border: 1px solid #C50018;
}

.com-btn-02 a, .com-btn-03 a, .com-btn-05 a, .com-btn-06 a, .com-btn-08 a, .com-btn-04 a {
  font-size: 14px;
  font-size: 1.4rem;
  color: #C50018;
  display: flex;
  gap: 30px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .com-btn-02 a, .com-btn-03 a, .com-btn-05 a, .com-btn-06 a, .com-btn-08 a, .com-btn-04 a {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.com-btn-03 a, .com-btn-05 a, .com-btn-06 a, .com-btn-08 a, .com-btn-04 a {
  margin-top: 30px;
  color: #fff;
}
.com-btn-03 .circle, .com-btn-05 .circle, .com-btn-06 .circle, .com-btn-08 .circle, .com-btn-04 .circle, .com-btn-03 .line, .com-btn-05 .line, .com-btn-06 .line, .com-btn-08 .line, .com-btn-04 .line, .com-btn-03 .path, .com-btn-05 .path, .com-btn-06 .path, .com-btn-08 .path, .com-btn-04 .path {
  stroke: #fff;
}

.com-btn-04 a {
  color: #000;
}
.com-btn-04 .circle, .com-btn-04 .line, .com-btn-04 .path {
  stroke: #000;
}

.com-btn-05 a, .com-btn-06 a, .com-btn-08 a {
  width: 220px;
  height: 60px;
  background: #C50018;
  justify-content: center;
  gap: 15px;
  margin: 30px auto 0 auto;
  border: 1px solid #C50018;
  transition: all 0.3s ease;
}
.com-btn-05:hover a, .com-btn-06:hover a, .com-btn-08:hover a {
  background: #fff;
  color: #C50018;
  border: 1px solid #C50018;
}
.com-btn-05:hover a .circle, .com-btn-06:hover a .circle, .com-btn-08:hover a .circle, .com-btn-05:hover a .line, .com-btn-06:hover a .line, .com-btn-08:hover a .line, .com-btn-05:hover a .path, .com-btn-06:hover a .path, .com-btn-08:hover a .path {
  stroke: #C50018;
}

@media screen and (max-width: 767px) {
  .com-btn-06, .com-btn-08 {
    width: 100%;
  }
}
.com-btn-06 a, .com-btn-08 a {
  width: 306px;
}
@media screen and (max-width: 820px) {
  .com-btn-06 a, .com-btn-08 a {
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .com-btn-06 a, .com-btn-08 a {
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  .com-btn-06 svg, .com-btn-08 svg {
    position: absolute;
    right: 30px;
  }
}

.com-btn-07 a {
  background: #fff;
  border-radius: 25px;
  height: 40px;
  color: #C50018;
  margin-top: 30px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-size: 1.4rem;
}
.com-btn-07 a .circle {
  stroke: #fff;
}

.com-btn-08 a {
  background: #000;
  border: 1px solid #000;
  width: 244px;
}
.com-btn-08:hover a {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}
.com-btn-08:hover a .circle, .com-btn-08:hover a .line, .com-btn-08:hover a .path {
  stroke: #000;
}

.com-btn-09 {
  width: 100%;
}
.com-btn-09 a {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  background: #C50018;
  border: 2px solid #fff;
  border-radius: 60px;
  margin: 30px auto;
  max-width: 320px;
  width: 100%;
  display: block;
  padding: 20px 0;
  filter: drop-shadow(0 0 5px #b5aeae);
}

/*----------------------------------------------------
	FOOTER
----------------------------------------------------*/
.entry_area {
  background: #C50018;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 820px) {
  .entry_area {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .entry_area {
    padding: 40px 0;
  }
}
.entry_area::before {
  content: "";
  background: url("../img/top/car_red.svg") no-repeat;
  position: absolute;
  top: -45px;
  right: 150px;
  width: 108px;
  height: 45px;
}
@media screen and (max-width: 1300px) {
  .entry_area::before {
    right: 20px;
  }
}
@media screen and (max-width: 820px) {
  .entry_area::before {
    content: none;
  }
}
.entry_area:after {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background-color: #fff;
}
@media screen and (max-width: 820px) {
  .entry_area:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    width: calc(100% - 30px);
    height: 1px;
    background-color: #fff;
    transform: translateY(-50%);
  }
}

.entry_area_wrap {
  justify-content: space-around;
}
@media screen and (max-width: 820px) {
  .entry_area_wrap {
    flex-wrap: wrap;
    gap: 100px;
  }
}
.entry_area_wrap .e_title {
  font-size: 40px;
  font-size: 4rem;
  text-align: left;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 1300px) {
  .entry_area_wrap .e_title {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 820px) {
  .entry_area_wrap .e_title {
    margin-bottom: 0;
    font-size: 40px;
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .entry_area_wrap .e_title {
    font-size: 20px;
    font-size: 2rem;
  }
}
.entry_area_wrap .e_title:before {
  content: "";
  background: url("../img/common/icon01.svg") no-repeat;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: -80px;
  transform: translateY(-50%);
}
@media screen and (max-width: 1300px) {
  .entry_area_wrap .e_title:before {
    left: -50px;
    width: 40px;
    height: 40px;
    background-size: contain;
  }
}
@media screen and (max-width: 820px) {
  .entry_area_wrap .e_title:before {
    left: -80px;
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 820px) {
  .entry_area_wrap .e_title:after {
    content: "";
    background: url("../img/common/btn_white.svg") no-repeat;
    width: 22px;
    height: 18px;
    position: absolute;
    top: 50%;
    right: 35px;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 820px) {
  .entry_area_wrap .left, .entry_area_wrap .right {
    width: 100%;
  }
}
.entry_area_wrap .left .e_title, .entry_area_wrap .right .e_title {
  margin-left: 80px;
}
@media screen and (max-width: 820px) {
  .entry_area_wrap .left .e_title, .entry_area_wrap .right .e_title {
    margin-left: 100px;
  }
}
.entry_area_wrap .right .e_title:before {
  content: "";
  background: url("../img/common/icon02.svg") no-repeat;
}
@media screen and (max-width: 1300px) {
  .entry_area_wrap .right .e_title:before {
    background-size: contain;
  }
}
@media screen and (max-width: 820px) {
  .entry_area_wrap .right .e_title:before {
    left: -75px;
  }
}
@media screen and (max-width: 820px) {
  .entry_area_wrap .com-btn-07 {
    display: none;
  }
}

.footer_wrap {
  background: #000;
  color: #fff;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .footer_wrap {
    padding: 80px 0;
  }
}
.footer_wrap .logo_area {
  margin-bottom: 30px;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 820px) {
  .footer_wrap .logo_area {
    flex-direction: column;
    gap: 10px;
  }
}
.footer_wrap .logo_area > a {
  display: contents;
}
@media screen and (max-width: 820px) {
  .footer_wrap .info_left {
    text-align: center;
  }
}
.footer_wrap .footer_info {
  justify-content: space-around;
}
@media screen and (max-width: 820px) {
  .footer_wrap .footer_info {
    flex-wrap: wrap;
  }
}
.footer_wrap .f_access {
  text-align: left;
  display: inline-block;
}
.footer_wrap .banner {
  margin-top: 50px;
  width: 250px;
}
@media screen and (max-width: 820px) {
  .footer_wrap .banner {
    margin: 50px auto 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .footer_wrap .banner {
    width: 200px;
  }
}
.footer_wrap .banner img {
  background: #fff;
  padding: 10px;
}

.nav_list {
  line-height: 3;
}
@media screen and (max-width: 820px) {
  .nav_list {
    gap: 80px;
  }
}
@media screen and (max-width: 767px) {
  .nav_list {
    flex-direction: column;
    gap: 0;
  }
}
.nav_list > ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nav_list > ul > li {
  position: relative;
  line-height: 1.6;
}
.nav_list > ul > li::before {
  content: "■";
  color: #DB4557;
}
.nav_list > ul > li a {
  padding-left: 5px;
}
.nav_list .child {
  line-height: 1.8;
  margin-top: 15px;
}
.nav_list .child li a {
  font-weight: 400;
  margin-left: 18px;
}

.external-icon {
  width: 20px;
  height: 20px;
  margin-left: 10px;
}

/*----------------------------------------------------
	404
----------------------------------------------------*/
.column-other-page {
  background: #fff;
}
.column-other-page.page_title_wrap .com-tit-04 {
  color: #fff;
}

.error-404 {
  text-align: center;
  padding: 80px 0 200px;
  color: #5c5c5c;
  font-weight: 600;
}
@media screen and (max-width: 820px) {
  .error-404 {
    padding: 70px 0 80px;
  }
}
.error-404 .btn {
  margin-top: 50px;
}
.error-404 .icon_404 {
  background: #fff;
  font-size: 90px;
  font-size: 9rem;
  text-align: center;
  letter-spacing: 1px;
}
@media screen and (max-width: 820px) {
  .error-404 .icon_404 {
    font-size: 7rem;
  }
}
.error-404 .icon_404 span {
  color: #fff;
}

/*----------------------------------------------------
	#pageTop
----------------------------------------------------*/
#pagetop {
  position: fixed;
  z-index: 100;
  bottom: 120px;
  right: 150px;
}
#pagetop a {
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  position: relative;
  letter-spacing: 2px;
  display: block;
  width: 50px;
  height: 50px;
  background: #C50018;
  border-radius: 50%;
}
#pagetop a:after {
  transform: rotate(-45deg);
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -6px;
  margin-top: -5px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

@media screen and (max-width: 1023px) {
  #pagetop {
    right: 50px;
  }
}
@media screen and (max-width: 820px) {
  #pagetop {
    right: 10px;
    bottom: 90px;
  }
  #pagetop a {
    width: 48px;
    height: 48px;
  }
  #pagetop a:after {
    width: 10px;
    height: 10px;
    margin-left: -5px;
    margin-top: -5px;
  }
}
/*----------------------------------------------------
	SET
----------------------------------------------------*/
@media screen and (min-width: 1022px) {
  .pc_hide {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .tab_hide {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .smart_hide {
    display: none !important;
  }
}/*# sourceMappingURL=common.css.map */