@charset "UTF-8";
/******************************************************

old style

******************************************************/
/******************************************************

fonts

******************************************************/
/*! ALL ***************************************************/
html {
  font-size: 62.5%;
  /* 62.5% 10px 1em */
  scroll-behavior: smooth;
}

body {
  color: #323232;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  background: #fff;
  -webkit-text-size-adjust: none;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

a {
  color: #323232;
  text-decoration: none;
  border: 0;
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

a img {
  transition: all 0.5s ease;
  backface-visibility: hidden;
}

a:hover {
  filter: brightness(120%);
}

p {
  font-feature-settings: "palt";
  text-align: justify;
}

#wrap {
  position: relative;
  width: 100%;
}

.animation {
  transform: translate(0px, 10px);
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  backface-visibility: hidden;
}

.animation.active {
  transform: translate(0%, 0%);
  opacity: 1;
}

article {
  padding-bottom: 160px;
}

article.no_bottom {
  padding-bottom: 0;
}

article section {
  width: auto;
  overflow: hidden;
}

article section.nohidden {
  overflow: visible;
}

@media screen and (max-width: 740px) {
  article {
    padding-bottom: 60px;
  }
  article.no_bottom {
    padding-bottom: 0;
  }
}

/*! SP ***************************************************/
@media screen and (max-width: 740px) {
  body {
    min-width: 320px;
    font-size: 1.4rem;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 741px) {
  body {
    min-width: 1200px;
  }
  .sp {
    display: none !important;
  }
}

header {
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  position: relative;
}

header .logo {
  padding-left: 37px;
}

header .logo svg {
  width: 153px;
  height: 40px;
}

header .header_btn {
  width: 220px;
  height: 40px;
  border-radius: 20px;
  background: #DA380C;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  margin-left: auto;
  margin-right: 20px;
}

header .header_btn.wide {
  width: 260px;
}

header .header_btn + .header_btn {
  margin-left: 0;
}

header #menu {
  width: 90px;
  height: 90px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #323232;
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

header #menu > span {
  width: 48px;
  height: 48px;
  position: relative;
}

header #menu > span span {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  transition: all 0.2s ease;
  backface-visibility: hidden;
  position: absolute;
}

header #menu > span span.c1 {
  left: 3px;
  top: 3px;
}

header #menu > span span.c2 {
  left: 19.5px;
  top: 3px;
}

header #menu > span span.c3 {
  left: 36px;
  top: 3px;
}

header #menu > span span.c4 {
  left: 3px;
  top: 19.5px;
}

header #menu > span span.c5 {
  left: 19.5px;
  top: 19.5px;
}

header #menu > span span.c6 {
  left: 36px;
  top: 19.5px;
}

header #menu > span span.c7 {
  left: 3px;
  top: 36px;
}

header #menu > span span.c8 {
  left: 19.5px;
  top: 36px;
}

header #menu > span span.c9 {
  left: 36px;
  top: 36px;
}

header #menu:hover {
  background: #000;
}

header #menu:hover span.c1, header #menu:hover span.c2, header #menu:hover span.c3, header #menu:hover span.c4, header #menu:hover span.c5, header #menu:hover span.c6, header #menu:hover span.c7, header #menu:hover span.c8, header #menu:hover span.c9 {
  left: 19.5px;
  top: 19.5px;
}

header #menu.on > span {
  width: 48px;
  height: 48px;
  position: relative;
}

header #menu.on > span span.c1 {
  left: 19.5px;
  top: 19.5px;
}

header #menu.on > span span.c2 {
  left: 19.5px;
  top: 19.5px;
}

header #menu.on > span span.c3 {
  left: 19.5px;
  top: 19.5px;
}

header #menu.on > span span.c4 {
  left: 19.5px;
  top: 19.5px;
}

header #menu.on > span span.c5 {
  left: -1px;
  top: 21px;
  width: 50px;
  height: 6px;
  border-radius: 3px;
  transform: rotate(45deg);
  opacity: 1;
}

header #menu.on > span span.c6 {
  left: -1px;
  top: 21px;
  width: 50px;
  height: 6px;
  border-radius: 3px;
  transform: rotate(-45deg);
  opacity: 1;
}

header #menu.on > span span.c7 {
  left: 19.5px;
  top: 19.5px;
}

header #menu.on > span span.c8 {
  left: 19.5px;
  top: 19.5px;
}

header #menu.on > span span.c9 {
  left: 19.5px;
  top: 19.5px;
}

@media screen and (max-width: 740px) {
  header {
    height: 50px;
  }
  header .logo {
    padding-left: 10px;
    height: 30px;
  }
  header .logo svg {
    width: auto;
    height: 30px;
  }
  header .header_btn.wide {
    display: none;
  }
  header .header_btn.login {
    width: 120px;
    height: 30px;
    border-radius: 15px;
    margin-right: 10px;
    font-size: 1.1rem;
  }
  header #menu {
    width: 50px;
    height: 50px;
  }
  header #menu > span {
    width: 26px;
    height: 26px;
  }
  header #menu > span span {
    width: 6px;
    height: 6px;
  }
  header #menu > span span.c1 {
    left: 0;
    top: 0;
  }
  header #menu > span span.c2 {
    left: 10px;
    top: 0;
  }
  header #menu > span span.c3 {
    left: 20px;
    top: 0;
  }
  header #menu > span span.c4 {
    left: 0;
    top: 10px;
  }
  header #menu > span span.c5 {
    left: 10px;
    top: 10px;
  }
  header #menu > span span.c6 {
    left: 20px;
    top: 10px;
  }
  header #menu > span span.c7 {
    left: 0;
    top: 20px;
  }
  header #menu > span span.c8 {
    left: 10px;
    top: 20px;
  }
  header #menu > span span.c9 {
    left: 20px;
    top: 20px;
  }
  header #menu:hover span.c1 {
    left: 10px;
    top: 10px;
  }
  header #menu:hover span.c2 {
    left: 10px;
    top: 10px;
  }
  header #menu:hover span.c3 {
    left: 10px;
    top: 10px;
  }
  header #menu:hover span.c4 {
    left: 10px;
    top: 10px;
  }
  header #menu:hover span.c5 {
    left: 10px;
    top: 10px;
  }
  header #menu:hover span.c6 {
    left: 10px;
    top: 10px;
  }
  header #menu:hover span.c7 {
    left: 10px;
    top: 10px;
  }
  header #menu:hover span.c8 {
    left: 10px;
    top: 10px;
  }
  header #menu:hover span.c9 {
    left: 10px;
    top: 10px;
  }
  header #menu.on > span {
    width: 26px;
    height: 26px;
  }
  header #menu.on > span span.c1 {
    left: 10px;
    top: 10px;
  }
  header #menu.on > span span.c2 {
    left: 10px;
    top: 10px;
  }
  header #menu.on > span span.c3 {
    left: 10px;
    top: 10px;
  }
  header #menu.on > span span.c4 {
    left: 10px;
    top: 10px;
  }
  header #menu.on > span span.c5 {
    left: -1px;
    top: 11px;
    width: 28px;
    height: 4px;
    border-radius: 1.5px;
  }
  header #menu.on > span span.c6 {
    left: -1px;
    top: 11px;
    width: 28px;
    height: 4px;
    border-radius: 1.5px;
  }
  header #menu.on > span span.c7 {
    left: 10px;
    top: 10px;
  }
  header #menu.on > span span.c8 {
    left: 10px;
    top: 10px;
  }
  header #menu.on > span span.c9 {
    left: 10px;
    top: 10px;
  }
}

#slideMenu {
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  position: absolute;
  right: 0;
  top: 90px;
  width: 376px;
  transition: all 0.2s ease;
  pointer-events: none;
}

#slideMenu.open {
  visibility: visible;
  z-index: 100;
  transform: translateY(0px);
  opacity: 1;
  pointer-events: auto;
  transition: all 0.5s ease;
  backface-visibility: hidden;
}

#slideMenu ul li {
  border-bottom: #464646 solid 1px;
}

#slideMenu ul li a {
  width: 100%;
  height: 54px;
  padding-left: 50px;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
  font-size: 1.8rem;
  background: #323232;
}

#slideMenu ul li.sub a {
  padding-left: 74px;
  background: #3C3C3C;
}

@media screen and (max-width: 740px) {
  #slideMenu {
    top: 50px;
    width: 100%;
  }
  #slideMenu ul li a {
    width: 100%;
    height: 44px;
    padding-left: 30px;
    font-size: 1.6rem;
  }
  #slideMenu ul li.sub a {
    padding-left: 54px;
  }
}

.title {
  width: 100%;
  height: 500px;
  background: url(../img/title.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.title h1 {
  width: 341px;
  height: 215px;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 42px;
}

@media screen and (max-width: 740px) {
  .title {
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .title h1 {
    width: 220px;
    height: 170px;
    margin-left: 0;
  }
  .title h1 img {
    width: 160px;
    height: auto;
  }
}

.about_box {
  width: 848px;
  height: 202px;
  background: #E6E6E6;
  margin: 70px auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about_box .about_box_ttl {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 225px;
  padding: 20px 0;
  background: #DA380C;
  color: #fff;
  text-align: center;
}

.about_box .about_box_ttl em {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 2.6rem;
  line-height: 1;
}

.about_box .about_box_ttl span {
  font-size: 1.4rem;
}

.about_box p {
  text-align: left;
  font-weight: 400;
}

.about_box .more {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 740px) {
  .about_box {
    width: 100%;
    height: auto;
    padding-bottom: 40px;
    background: #E6E6E6;
    margin: 70px auto;
    position: relative;
    display: block;
  }
  .about_box .about_box_ttl {
    position: static;
    transform: translateY(-50%);
    width: 125px;
    padding: 10px;
    margin: 0 auto;
  }
  .about_box .about_box_ttl em {
    font-size: 2rem;
    line-height: 1;
  }
  .about_box .about_box_ttl span {
    font-size: 1.2rem;
  }
  .about_box p {
    text-align: center;
    font-weight: 400;
  }
  .about_box .more {
    position: absolute;
    right: calc(50% - 100px);
    bottom: -16px;
  }
}

.more {
  width: 200px;
  height: 32px;
  background: #646464;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: all 0.5s ease;
  backface-visibility: hidden;
}

.more:before {
  content: ">";
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  position: absolute;
  right: 10px;
  top: 50%;
  font-weight: normal;
  transform: translateY(-50%);
  color: #fff;
}

.more span {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
  padding-left: 10px;
}

.more:hover {
  background: #DA380C;
}

.more:hover:before {
  animation: arrow 1.5s cubic-bezier(1, 0, 0, 1) 1;
}

@keyframes arrow {
  0% {
    transform: translateY(-50%) scale(1, 1);
    transform-origin: 100% 0;
  }
  50% {
    transform: translateY(-50%) scale(0, 1);
    transform-origin: 100% 0;
  }
  50.1% {
    transform: translateY(-50%) scale(0, 1);
    transform-origin: 0 0;
  }
  100% {
    transform: translateY(-50%) scale(1, 1);
    transform-origin: 0 0;
  }
}

.sect_ttl {
  width: 306px;
  height: 70px;
  margin: 100px auto 50px;
  border-top: #DA380C solid 6px;
  border-left: #DA380C solid 6px;
  box-sizing: border-box;
  text-align: center;
  padding-top: 7px;
  position: relative;
}

.sect_ttl:before {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 40px 0 0;
  border-color: #D5D5D5 transparent transparent transparent;
}

.sect_ttl em {
  display: block;
  line-height: 1;
  font-size: 3.4rem;
  font-family: "JetBrains Mono", monospace;
}

.sect_ttl small {
  padding-top: 2px;
  display: block;
  line-height: 1;
  font-size: 1.4rem;
  color: #707070;
}

@media screen and (max-width: 740px) {
  .sect_ttl {
    width: 243px;
    height: 50px;
    margin: 50px auto 25px;
    border-top: #DA380C solid 4px;
    border-left: #DA380C solid 4px;
    padding-top: 5px;
  }
  .sect_ttl:before {
    left: 5px;
    top: 5px;
    border-width: 30px 30px 0 0;
  }
  .sect_ttl em {
    font-size: 2.4rem;
  }
  .sect_ttl small {
    padding-top: 2px;
    font-size: 1.2rem;
  }
}

.sect_ttl + p {
  text-align: center;
  padding-bottom: 40px;
}

@media screen and (max-width: 740px) {
  .sect_ttl + p {
    text-align: center;
    padding-bottom: 20px;
  }
}

.btn_box .btn {
  width: 400px;
  overflow: hidden;
  height: 90px;
  position: relative;
  background: #000000;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

.btn_box .btn:before {
  content: ">";
  font-family: "Roboto", sans-serif;
  font-size: 2.4rem;
  position: absolute;
  right: 10px;
  top: 50%;
  font-weight: 400;
  transform: translateY(-50%);
  color: #fff;
}

.btn_box .btn:after {
  position: absolute;
  left: -18px;
  top: -18px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100px 100px 0 0;
  border-color: #505050 transparent transparent transparent;
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

.btn_box .btn span {
  padding-left: 20px;
  position: relative;
  z-index: 2;
}

.btn_box .btn span em {
  display: block;
  line-height: 1;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 2.6rem;
  letter-spacing: 2px;
  font-weight: 600;
  padding-bottom: 6px;
}

.btn_box .btn span small {
  display: block;
  line-height: 1;
  font-size: 1.4rem;
  color: #fff;
}

.btn_box .btn:hover {
  background: #DA380C;
}

.btn_box .btn:hover:before {
  animation: arrow 1.5s cubic-bezier(1, 0, 0, 1) 1;
}

.btn_box .btn:hover:after {
  border-color: #fff transparent transparent transparent;
  transform: translate(18px, 18px);
  opacity: 0.1;
}

@media screen and (max-width: 740px) {
  .btn_box .btn {
    width: 260px;
    height: 50px;
  }
  .btn_box .btn:before {
    font-size: 1.6rem;
  }
  .btn_box .btn span {
    padding-left: 10px;
  }
  .btn_box .btn span em {
    font-size: 2rem;
    letter-spacing: 1px;
    padding-bottom: 3px;
  }
  .btn_box .btn span small {
    display: block;
    line-height: 1;
    font-size: 1.1rem;
    color: #fff;
  }
  .btn_box .btn:hover {
    background: #DA380C;
  }
  .btn_box .btn:hover:before {
    animation: arrow 1.5s cubic-bezier(1, 0, 0, 1) 1;
  }
  .btn_box .btn:hover:after {
    border-color: #fff transparent transparent transparent;
    transform: translate(18px, 18px);
    opacity: 0.1;
  }
}

.service {
  width: 100%;
  background: #F0F0F0;
  padding: 60px 0 50px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.service:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-width: 512px 512px 0 0;
  border-style: solid;
  border-color: #DA380C transparent transparent transparent;
}

.service:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  border-width: 0 0 194px 194px;
  border-style: solid;
  border-color: transparent transparent #DA380C transparent;
}

.service .item {
  width: 480px;
  background: #fff;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.3);
  position: relative;
  margin-bottom: 60px;
  z-index: 10;
}

.service .item .cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}

.service .item .cover:hover ~ figure img {
  filter: brightness(110%);
}

.service .item .cover:hover ~ .more {
  background: #DA380C;
}

.service .item .cover:hover ~ .more:before {
  animation: arrow 1.5s cubic-bezier(1, 0, 0, 1) 1;
}

.service .item figure img {
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

.service .item .name {
  padding: 40px 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service .item .name em {
  width: 108px;
  height: 26px;
  background: #DA380C;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.4rem;
  margin-left: 20px;
}

.service .item p {
  padding: 40px 40px 80px;
}

.service .item .more {
  position: absolute;
  right: 0;
  bottom: 0;
}

.service .item + .item {
  margin-left: 40px;
}

.service .btn_box {
  width: 100%;
}

@media screen and (max-width: 740px) {
  .service {
    padding: 30px 20px;
    box-sizing: border-box;
    display: block;
  }
  .service .item {
    width: 100%;
    background: #fff;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    margin-bottom: 30px;
  }
  .service .item .name {
    padding: 20px 20px 0;
    display: block;
    text-align: center;
  }
  .service .item .name img {
    width: 160px;
  }
  .service .item .name em {
    width: 108px;
    height: 20px;
    margin: 10px auto;
    border-radius: 2px;
    font-size: 1.1rem;
  }
  .service .item p {
    padding: 20px 20px 40px;
  }
  .service .item + .item {
    margin-left: 0px;
  }
  .service .btn_box {
    width: 100%;
  }
}

.news_category {
  width: 880px;
  margin: 20px auto 0;
}

.news_category .toggle {
  display: none;
}

.news_category .category_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news_category .category_list li {
  width: 20%;
}

.news_category .category_list li a {
  display: block;
  text-align: center;
  padding: 10px 0;
  border-bottom: #ccc solid 1px;
  font-family: "JetBrains Mono", monospace;
}

.news_category .category_list li a.current {
  color: #DA380C;
  border-color: #DA380C;
}

.news_category .category_list li a:hover {
  border-color: #DA380C;
}

@media screen and (min-width: 741px) {
  .news_category .category_list {
    display: flex !important;
  }
}

@media screen and (max-width: 740px) {
  .news_category {
    width: calc(100% - 40px);
    box-sizing: border-box;
    margin: 20px auto 0;
    position: relative;
  }
  .news_category .toggle {
    width: 100%;
    height: 32px;
    border-radius: 16px;
    background: #f9f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-family: "JetBrains Mono", monospace;
    position: relative;
  }
  .news_category .toggle:before {
    content: "\e91b";
    font-family: "icomoon";
    font-size: 1.5rem;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  .news_category .category_list {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    width: 100%;
    z-index: 10;
    flex-direction: column;
    background: #f9f8f8;
    border-radius: 10px;
  }
  .news_category .category_list li {
    width: 100%;
  }
  .news_category .category_list li a {
    display: block;
    text-align: center;
    padding: 6px;
    border-style: dotted;
  }
  .news_category .category_list li a.current {
    color: #DA380C;
    border-color: #ccc;
  }
  .news_category .category_list li:last-child a {
    border: 0;
  }
}

.news {
  width: 880px;
  margin: 0 auto;
}

.news .item {
  padding: 20px 80px 20px 20px;
  border-bottom: #DA380C solid 1px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.news .item a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

.news .item a:hover {
  background: rgba(217, 58, 14, 0.02);
}

.news .item a:hover:before {
  animation: arrow 1.5s cubic-bezier(1, 0, 0, 1) 1;
}

.news .item a:before {
  content: ">";
  font-family: "Roboto", sans-serif;
  font-size: 2.4rem;
  position: absolute;
  right: 10px;
  top: 50%;
  font-weight: 400;
  transform: translateY(-50%);
  color: #DA380C;
}

.news .item em {
  font-size: 1.8rem;
  font-weight: 600;
}

.news .item .tag {
  width: 112px;
  height: 22px;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  margin-left: 10px;
  color: #DA380C;
  font-family: "JetBrains Mono", monospace;
  font-weight: normal;
}

.news .item .text {
  width: 100%;
  box-sizing: border-box;
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

.news .item .text h3 {
  font-size: 1.8rem;
  font-emphasize: 600px;
}

.news .item:first-child {
  border-top: #DA380C solid 1px;
}

.news .more {
  margin-left: auto;
  margin-top: 40px;
}

@media screen and (max-width: 740px) {
  .news {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .news .item {
    padding: 10px 30px 10px 0;
  }
  .news .item em {
    font-size: 1.5rem;
    font-weight: 600;
  }
  .news .item .tag {
    width: 102px;
    height: 20px;
    font-size: 1rem;
  }
  .news .item .text {
    padding-left: 0px;
  }
  .news .item .text h3 {
    font-size: 1.6rem;
  }
  .news .more {
    margin: 20px auto 0;
  }
}

.recruit {
  width: 881px;
  margin: 0 auto;
}

.recruit .btn_box {
  margin-top: -40px;
}

@media screen and (max-width: 740px) {
  .recruit {
    width: 100%;
    margin: 0 auto;
  }
  .recruit .btn_box {
    margin-top: -20px;
  }
}

.magazine {
  margin: 158px 0 0;
  width: 100%;
  padding: 50px 0 100px;
  background: #F0F0F0;
  position: relative;
  overflow: visible;
}

.magazine h2 {
  text-align: center;
  margin-bottom: 40px;
}

.magazine h2 em {
  display: block;
  line-height: 1;
  color: #DA380C;
  font-family: "JetBrains Mono", monospace;
  font-size: 4.4rem;
  letter-spacing: 4px;
}

.magazine h2 small {
  display: block;
  line-height: 1;
  color: #707070;
  font-size: 1.4rem;
  padding-top: 10px;
}

.magazine .magazine_box {
  width: 1000px;
  margin: 0 auto;
  border-top: #DA380C solid 6px;
  padding-top: 35px;
  display: flex;
  justify-content: flex-start;
}

.magazine .magazine_box .item {
  width: 310px;
  background: #fff;
  position: relative;
}

.magazine .magazine_box .item a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}

.magazine .magazine_box .item a:hover ~ figure img {
  filter: brightness(110%);
}

.magazine .magazine_box .item figure img {
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

.magazine .magazine_box .item .text {
  padding: 22px;
}

.magazine .magazine_box .item .text h3 {
  color: #DA380C;
  font-weight: 600;
  font-size: 1.4rem;
}

.magazine .magazine_box .item + .item {
  margin-left: 35px;
}

.magazine .btn_box {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -45px;
}

@media screen and (max-width: 740px) {
  .magazine {
    margin: 50px 0 0;
    width: 100%;
    padding: 40px 20px 50px;
    box-sizing: border-box;
    background: #F0F0F0;
    position: relative;
  }
  .magazine h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  .magazine h2 em {
    font-size: 3.4rem;
    letter-spacing: 2px;
  }
  .magazine h2 small {
    font-size: 1.1rem;
  }
  .magazine .magazine_box {
    width: 100%;
    margin: 0 auto;
    border-top: #DA380C solid 3px;
    padding-top: 20px;
    display: block;
  }
  .magazine .magazine_box .item {
    width: 100%;
  }
  .magazine .magazine_box .item figure img {
    width: 100%;
  }
  .magazine .magazine_box .item .text {
    padding: 20px;
  }
  .magazine .magazine_box .item + .item {
    margin-left: 0;
    margin-top: 20px;
  }
  .magazine .btn_box {
    position: static;
    margin-top: 20px;
  }
}

footer {
  background: #DA380C;
  padding: 40px 0;
}

footer .site_map {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

footer .site_map ul {
  width: 33%;
  line-height: 3;
}

footer .site_map ul li {
  color: #fff;
}

footer .site_map ul li.sub {
  padding-left: 1em;
}

footer .site_map ul li a {
  color: #fff;
}

footer .site_map ul li a:hover {
  text-decoration: underline;
}

footer .f_logo {
  text-align: center;
  padding-top: 40px;
}

footer .f_logo .svg {
  width: 166px;
  height: 41px;
}

footer .f_logo .svg path {
  fill: #fff;
}

@media screen and (max-width: 740px) {
  footer {
    background: #DA380C;
    padding: 20px;
  }
  footer .site_map {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  footer .site_map ul {
    width: 50%;
    line-height: 3;
  }
}

@media screen and (max-width: 740px) and (max-width: 340px) {
  footer .site_map ul {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 740px) {
  footer .f_logo {
    text-align: center;
    padding-top: 20px;
  }
  footer .f_logo .svg {
    width: 166px;
    height: 41px;
  }
}

.ttl_landi {
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../img/map.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}

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

.ttl_landi .ttl_landi_txt h1 em {
  display: block;
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.ttl_landi .ttl_landi_txt .btn_box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 68px;
}

.ttl_landi .ttl_landi_txt .btn_box .red_btn_login,
.ttl_landi .ttl_landi_txt .btn_box .red_btn_regist {
  width: 340px;
  height: 60px;
  border-radius: 30px;
  background: #DA380C;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ttl_landi .ttl_landi_txt .btn_box .red_btn_login em,
.ttl_landi .ttl_landi_txt .btn_box .red_btn_regist em {
  width: 60px;
  height: 36px;
  background: #fff;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
  color: #DA380C;
  margin-right: 10px;
}

.ttl_landi .ttl_landi_txt .btn_box .red_btn_login span,
.ttl_landi .ttl_landi_txt .btn_box .red_btn_regist span {
  display: block;
  line-height: 1;
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
}

.ttl_landi .ttl_landi_txt .btn_box .red_btn_regist {
  margin-left: 40px;
}

.ttl_landi small {
  position: absolute;
  left: calc(50% + 20px);
  bottom: 60px;
  font-size: 1.2rem;
  color: #DA380C;
}

@media screen and (max-width: 740px) {
  .ttl_landi {
    width: 100%;
    padding: 50px 0;
    height: auto;
    display: block;
    background: url(../img/map.jpg) no-repeat center center;
  }
  .ttl_landi .ttl_landi_txt {
    text-align: center;
  }
  .ttl_landi .ttl_landi_txt h1 {
    width: 240px;
    margin: 0 auto;
  }
  .ttl_landi .ttl_landi_txt h1 em {
    display: block;
    font-weight: bold;
    font-size: 1.6rem;
  }
  .ttl_landi .ttl_landi_txt .btn_box {
    display: block;
    margin-top: 0px;
    padding: 20px;
  }
  .ttl_landi .ttl_landi_txt .btn_box .red_btn_login,
  .ttl_landi .ttl_landi_txt .btn_box .red_btn_regist {
    width: 100%;
    height: 50px;
    border-radius: 25px;
  }
  .ttl_landi .ttl_landi_txt .btn_box .red_btn_login em,
  .ttl_landi .ttl_landi_txt .btn_box .red_btn_regist em {
    width: 50px;
    height: 36px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #DA380C;
  }
  .ttl_landi .ttl_landi_txt .btn_box .red_btn_login span,
  .ttl_landi .ttl_landi_txt .btn_box .red_btn_regist span {
    font-size: 1.8rem;
  }
  .ttl_landi .ttl_landi_txt .btn_box .red_btn_regist {
    margin-left: 0px;
    margin-top: 20px;
  }
  .ttl_landi small {
    position: absolute;
    left: 0px;
    bottom: 40px;
    padding: 0px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    display: block;
    line-height: 1.5;
    font-size: 1.1rem;
  }
}

.Breadcrumb {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  font-size: 1.3rem;
}

.Breadcrumb li a {
  color: #0076ff;
}

.Breadcrumb li + li:before {
  content: ">";
  margin: 0 8px;
}

@media screen and (max-width: 740px) {
  .Breadcrumb {
    font-size: 1.1rem;
    padding-left: 10px !important;
  }
  .Breadcrumb li + li:before {
    margin: 0 5px;
  }
}

.sect_ttl_02 {
  margin: 100px 0 50px;
  text-align: center;
  position: relative;
}

.sect_ttl_02:before {
  content: "";
  position: absolute;
  left: calc(50% - 10px);
  top: 40px;
  width: 20px;
  height: 4px;
  background: #DA380C;
  border-radius: 2px;
}

.sect_ttl_02 span {
  display: block;
  line-height: 1;
  color: #DA380C;
  font-family: "JetBrains Mono", monospace;
  font-size: 2rem;
  padding-bottom: 40px;
}

.sect_ttl_02 em {
  display: block;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.5;
}

.sect_ttl_02 + p {
  text-align: center;
  margin-bottom: 50px;
}

.sect_ttl_02 + p.left {
  width: 800px;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  text-align: left;
  letter-spacing: 1px;
}

@media screen and (max-width: 740px) {
  .sect_ttl_02 {
    margin: 50px 15px 25px;
  }
  .sect_ttl_02:before {
    top: 30px;
  }
  .sect_ttl_02 span {
    font-size: 1.6rem;
    padding-bottom: 30px;
  }
  .sect_ttl_02 em {
    font-size: 2rem;
  }
  .sect_ttl_02 + p {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 50px;
  }
}

.triangle_bg {
  text-align: center;
  width: 100%;
  padding: 76px 0;
  box-sizing: border-box;
  background: #F0F0F0;
  position: relative;
}

.triangle_bg:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  border-width: 512px 512px 0 0;
  border-style: solid;
  border-color: #D5D5D5 transparent transparent transparent;
}

.triangle_bg:after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  border-width: 0 0 194px 194px;
  border-style: solid;
  border-color: transparent transparent #D5D5D5 transparent;
}

@media screen and (max-width: 740px) {
  .triangle_bg {
    padding: 40px 20px;
  }
  .triangle_bg:before {
    border-width: 206px 206px 0 0;
  }
  .triangle_bg:after {
    border-width: 0 0 96px 96px;
  }
}

.point_list {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.point_list .item {
  width: 300px;
  padding: 10px;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.29);
  position: relative;
}

.point_list .item em {
  width: 66px;
  height: 66px;
  background: #DA380C;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  color: #fff;
  font-size: 3.4rem;
}

.point_list .item figure {
  height: 180px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.point_list .item p {
  padding: 0 20px 20px;
}

.point_list .item .stamp {
  position: absolute;
  right: 20px;
  bottom: -20px;
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  border: #DA380C solid 3px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #DA380C;
  font-weight: bold;
  line-height: 1.5;
  font-size: 1.8rem;
}

.poiint_text {
  padding-top: 60px;
  width: 800px;
  margin: 0 auto;
}

.poiint_text p {
  margin-bottom: 60px;
}

.poiint_text .red_btn_use {
  width: 480px;
  height: 80px;
  border-radius: 40px;
  background: #DA380C;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
}

.poiint_text .red_btn_use em {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #DA380C;
  font-weight: bold;
  position: absolute;
  left: 10px;
  top: 10px;
}

.poiint_text .red_btn_use span {
  color: #fff;
  font-weight: 600;
  font-size: 2.8rem;
}

.poiint_text .red_btn_use + small {
  display: block;
  line-height: 1;
  padding-top: 15px;
}

@media screen and (max-width: 740px) {
  .point_list {
    width: 100%;
    display: block;
  }
  .point_list .item {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.29);
    margin-bottom: 20px;
  }
  .point_list .item em {
    width: 46px;
    height: 46px;
    position: relative;
    z-index: 10;
    font-size: 2rem;
  }
  .point_list .item figure {
    height: 120px;
    width: 100%;
  }
  .point_list .item p {
    padding: 0 20px 20px;
  }
  .point_list .item .stamp {
    position: absolute;
    right: 10px;
    bottom: auto;
    top: 10px;
    width: 80px;
    height: 80px;
    border: #DA380C solid 2px;
    line-height: 1.5;
    font-size: 1.5rem;
  }
  .poiint_text {
    padding-top: 0px;
    width: 100%;
    margin: 0 auto;
  }
  .poiint_text p {
    margin-bottom: 20px;
  }
  .poiint_text .red_btn_use {
    width: 100%;
    height: 60px;
    border-radius: 30px;
  }
  .poiint_text .red_btn_use em {
    width: 40px;
    height: 40px;
    left: 10px;
    top: 10px;
  }
  .poiint_text .red_btn_use span {
    color: #fff;
    font-weight: 600;
    font-size: 1.8rem;
  }
  .poiint_text .red_btn_use + small {
    display: block;
    line-height: 1;
    padding-top: 15px;
    font-size: 1.2rem;
  }
}

.step_list {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.step_list .item {
  width: 300px;
  padding: 10px 10px 0;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.29);
  position: relative;
  margin-bottom: 70px;
}

.step_list .item em {
  width: 66px;
  height: 66px;
  background: #DA380C;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  color: #fff;
  font-size: 3.4rem;
}

.step_list .item p {
  padding: 30px 0;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.5;
}

.step_list .item .item_inner {
  width: calc(100% + 20px);
  margin-left: -10px;
  height: 220px;
  padding: 0 20px;
  box-sizing: border-box;
  background: #E6E6E6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step_list .item .item_inner .selectBox_cover {
  width: 100%;
}

.step_list .item .item_inner .selectBox_cover .selectBox {
  display: block;
  overflow: hidden;
  position: relative;
  vertical-align: top;
}

.step_list .item .item_inner .selectBox_cover .selectBox select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: medium none;
  border-radius: 0px;
  box-sizing: border-box;
  font-size: 1.6rem;
  height: 50px;
  margin: 0;
  padding: 0 20px;
  box-sizing: border-box;
  background: #fff;
  border: none;
  padding-right: 50px;
  color: #323232;
  width: 100%;
  max-width: none;
  box-shadow: none;
  border-radius: 25px;
  background: #fff;
}

.step_list .item .item_inner .selectBox_cover .selectBox select option {
  color: #323232;
  text-align: center;
}

.step_list .item .item_inner .selectBox_cover .selectBox:after {
  background: #fff;
  color: #323232;
  content: "▼";
  font-size: 1rem;
  height: 100%;
  line-height: 50px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  width: 50px;
  border-radius: 25px;
  box-sizing: border-box;
  border: 0;
  display: inline-block;
}

.step_list .item .item_inner .selectBox_cover .selectBox + .selectBox {
  margin-top: 40px;
}

@media screen and (max-width: 740px) {
  .step_list {
    width: 100%;
    display: block;
  }
  .step_list .item {
    width: 100%;
    padding: 10px 10px 0;
    box-sizing: border-box;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.29);
    margin-bottom: 20px;
  }
  .step_list .item em {
    width: 46px;
    height: 46px;
    position: relative;
    z-index: 10;
    font-size: 2rem;
  }
  .step_list .item p {
    padding: 15px 0;
    font-size: 1.6rem;
  }
  .step_list .item .item_inner {
    height: auto;
    padding: 20px;
  }
  .step_list .item .item_inner .selectBox_cover {
    width: 100%;
  }
  .step_list .item .item_inner .selectBox_cover .selectBox + .selectBox {
    margin-top: 20px;
  }
}

.red_btn_large {
  width: 480px;
  height: 80px;
  border-radius: 40px;
  background: #DA380C;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.red_btn_large.long {
  width: 580px;
}

.red_btn_large span {
  color: #fff;
  font-size: 2.8rem;
  font-weight: bold;
}

.red_btn_large + small {
  display: block;
  width: 100%;
  line-height: 1;
  text-align: center;
  font-size: 1.4rem;
  margin-top: 20px;
}

@media screen and (max-width: 740px) {
  .red_btn_large {
    width: 100%;
    max-width: calc(100vw - 40px);
    height: 60px;
    border-radius: 30px;
    position: relative;
    z-index: 10;
  }
  .red_btn_large.long {
    width: 100%;
  }
  .red_btn_large span {
    color: #fff;
    font-weight: 600;
    font-size: 1.8rem;
  }
  .red_btn_large + small {
    font-size: 1.1rem;
    margin-top: 10px;
  }
}

.account_flow {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.account_flow .item {
  width: 300px;
  padding: 0;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.29);
  position: relative;
  margin-bottom: 70px;
}

.account_flow .item em {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 66px;
  height: 66px;
  background: #DA380C;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  color: #fff;
  font-size: 3.4rem;
}

.account_flow .item p {
  padding: 30px;
  text-align: left;
  line-height: 2;
}

.account_flow .item .mini_btn {
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  width: 220px;
  height: 40px;
  border-radius: 20px;
  background: #DA380C;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  margin: 0 auto;
}

@media screen and (max-width: 740px) {
  .account_flow {
    width: 100%;
    display: block;
  }
  .account_flow .item {
    width: 100%;
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.29);
    position: relative;
    margin-bottom: 20px;
  }
  .account_flow .item em {
    width: 46px;
    height: 46px;
    font-size: 2rem;
  }
  .account_flow .item figure img {
    width: 100%;
  }
  .account_flow .item p {
    padding: 20px;
    text-align: left;
    line-height: 2;
  }
  .account_flow .item .mini_btn {
    position: static;
    transform: none;
    width: 220px;
    height: 40px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 20px;
  }
}

.faq {
  width: 800px;
  margin: 0 auto;
}

.faq em {
  font-weight: normal;
  display: block;
  margin-bottom: 0.5em;
}

.faq .item + .item {
  margin-top: 1.5em;
}

.company_name {
  width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.company_name ul {
  width: 30%;
}

.company_name .red_btn_large {
  margin-top: 100px;
}

.Recruitment {
  width: 800px;
  margin: 0 auto;
}

.Recruitment .sect_ttl_02 {
  margin-bottom: 66px;
}

.Recruitment figure {
  width: 521px;
  margin: 0 auto;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
}

.Recruitment p {
  padding: 80px 0 40px;
  text-align: left;
}

@media screen and (max-width: 740px) {
  .faq {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .company_name {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto 50px;
    display: block;
  }
  .company_name ul {
    width: 100%;
  }
  .company_name .red_btn_large {
    margin-top: 50px;
  }
  .Recruitment {
    width: 100%;
    margin: 0 auto;
  }
  .Recruitment .sect_ttl_02 {
    margin-bottom: 66px;
  }
  .Recruitment figure {
    width: 100%;
  }
  .Recruitment p {
    padding: 40px 20px 40px;
    text-align: left;
  }
}

.ttl_subpage_01 {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.ttl_subpage_02 {
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #DA380C;
  position: relative;
}

.ttl_subpage_02:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.4;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 123px 123px 0 0;
  border-color: #D5D5D5 transparent transparent transparent;
}

.ttl_subpage_02 h1 {
  color: #fff;
  text-align: center;
}

.ttl_subpage_02 h1 em {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 4.6rem;
  line-height: 1;
}

.ttl_subpage_02 h1 span {
  display: block;
  font-size: 2rem;
  line-height: 1;
  padding-top: 10px;
}

.sect_ttl_03 {
  text-align: center;
  margin: 90px 0;
}

.sect_ttl_03 em {
  display: block;
  font-weight: bold;
  font-size: 2.8rem;
}

.sect_ttl_03 + p {
  margin-top: -70px;
  margin-bottom: 90px;
  text-align: center;
}

@media screen and (max-width: 740px) {
  .ttl_subpage_01 {
    width: 100%;
    height: 120px;
  }
  .ttl_subpage_02 {
    width: 100%;
    height: 120px;
  }
  .ttl_subpage_02:before {
    border-width: 62px 62px 0 0;
  }
  .ttl_subpage_02 h1 em {
    font-size: 3rem;
  }
  .ttl_subpage_02 h1 span {
    font-size: 1.5rem;
    padding-top: 5px;
  }
  .sect_ttl_03 {
    text-align: center;
    margin: 50px 0;
  }
  .sect_ttl_03 em {
    display: block;
    font-weight: bold;
    font-size: 2rem;
  }
  .sect_ttl_03 + p {
    margin-top: -30px;
    margin-bottom: 50px;
    padding: 0 20px;
    text-align: center;
  }
}

.stores {
  width: 910px;
  margin: 0 auto;
}

.stores .stores_inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 100px;
}

.stores .stores_inner .item {
  width: 400px;
  border-bottom: #DA380C solid 1px;
  text-align: center;
  padding-bottom: 50px;
}

.stores .stores_inner .item figure {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stores .stores_inner .item figure img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.stores .stores_inner .item h3 {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 40px;
}

.stores .stores_inner .item p {
  text-align: center;
  margin-bottom: 40px;
}

.stores .stores_inner .item .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 40px;
  border-radius: 20px;
  background: #DA380C;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto;
}

.stores .stores_inner .item:nth-child(1),
.stores .stores_inner .item:nth-child(2) {
  border-top: #DA380C solid 1px;
}

@media screen and (max-width: 740px) {
  .stores {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
  }
  .stores .stores_inner {
    display: block;
    margin-bottom: 50px;
  }
  .stores .stores_inner .item {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    padding-bottom: 25px;
  }
  .stores .stores_inner .item figure {
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .stores .stores_inner .item h3 {
    font-weight: bold;
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .stores .stores_inner .item p {
    text-align: center;
    margin-bottom: 10px;
  }
  .stores .stores_inner .item .btn {
    width: 100%;
    font-size: 1.6rem;
  }
}

.topMargin {
  margin-top: 80px;
}

@media screen and (max-width: 740px) {
  .topMargin {
    margin-top: 40px;
  }
}

.page {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.page a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #DA380C;
  font-size: 2.6rem;
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  background: #E6E6E6;
}

.page a:hover,
.page a.current {
  color: #fff;
  background: #DA380C;
}

.page a + a {
  margin-left: 20px;
}

@media screen and (max-width: 740px) {
  .page {
    margin-top: 20px;
  }
  .page a {
    width: 40px;
    height: 40px;
    font-size: 1.7rem;
  }
  .page a + a {
    margin-left: 10px;
  }
}

.news_detail {
  width: 880px;
  margin: 0 auto;
  border-top: #DA380C solid 1px;
}

.news_detail .date_tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.news_detail .date_tag .date {
  line-height: 1;
  font-size: 2rem;
}

.news_detail .date_tag .tag {
  width: 112px;
  height: 22px;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  color: #DA380C;
  font-family: "JetBrains Mono", monospace;
}

.news_detail .news_detail_inner {
  width: 600px;
  margin: 100px auto 0;
}

.news_detail .news_detail_inner h2 {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

.news_detail .news_detail_inner p {
  margin-bottom: 2em;
  line-height: 2;
}

.news_detail .news_detail_inner p a {
  color: #0090FF;
  text-decoration: underline;
  font-size: 1.8rem;
}

.news_detail .news_detail_inner figure {
  text-align: center;
  margin-top: 70px;
}

@media screen and (max-width: 740px) {
  .news_detail {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .news_detail .date_tag {
    padding: 20px 0;
  }
  .news_detail .date_tag .date {
    line-height: 1;
    font-size: 1.5rem;
  }
  .news_detail .date_tag .tag {
    width: 102px;
    height: 20px;
    font-size: 1rem;
  }
  .news_detail .news_detail_inner {
    width: 100%;
    margin: 30px auto 0;
  }
  .news_detail .news_detail_inner h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .news_detail .news_detail_inner p {
    margin-bottom: 1em;
    line-height: 2;
  }
  .news_detail .news_detail_inner p a {
    color: #0090FF;
    text-decoration: underline;
    font-size: 1.5rem;
  }
  .news_detail .news_detail_inner figure {
    text-align: center;
    margin-top: 35px;
  }
}

.ttl_company {
  width: 100%;
  height: 180px;
  background: url(../img/ttl_company.png) no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ttl_company:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
  background: #000;
  opacity: 0.6;
}

.ttl_company h1 {
  position: relative;
  z-index: 10;
  color: #fff;
  font-size: 3.6rem;
  font-weight: normal;
  text-align: center;
  line-height: 1.5;
}

@media screen and (max-width: 740px) {
  .ttl_company {
    width: 100%;
    height: 120px;
  }
  .ttl_company h1 {
    font-size: 2rem;
  }
}

.triangle_left {
  position: relative;
  width: auto;
  overflow: hidden;
}

.triangle_left:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 340px 340px 0 0;
  border-color: #F0F0F0 transparent transparent transparent;
}

.triangle_right {
  position: relative;
  width: auto;
  overflow: hidden;
}

.triangle_right:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 340px 340px 0;
  border-color: transparent #F0F0F0 transparent transparent;
}

.company_page section + section {
  margin-top: 80px;
}

@media screen and (max-width: 740px) {
  .triangle_left:before {
    border-width: 170px 170px 0 0;
  }
  .triangle_right:before {
    border-width: 0 170px 170px 0;
  }
  .company_page section + section {
    margin-top: 40px;
  }
}

.message {
  width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
}

.message figure {
  flex-shrink: 0;
  margin-right: 40px;
}

@media screen and (max-width: 740px) {
  .message {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
    display: block;
    text-align: center;
  }
  .message figure {
    flex-shrink: 0;
    margin-right: 0px;
    margin-bottom: 40px;
  }
}

table.type01 {
  width: 800px;
  margin: 0 auto;
}

table.type01 th {
  text-align: right;
  font-weight: normal;
  width: 240px;
  padding-right: 20px;
  box-sizing: border-box;
}

table.type01 td {
  width: 560px;
}

@media screen and (max-width: 740px) {
  table.type01 {
    width: calc(100% - 40px);
    margin: 0 auto;
    display: block;
  }
  table.type01 tbody, table.type01 tr {
    display: block;
    width: 100%;
  }
  table.type01 th {
    display: block;
    width: 100%;
    font-weight: bold;
    text-align: left;
    padding-right: 0px;
    box-sizing: border-box;
  }
  table.type01 td {
    display: block;
    width: 100%;
    padding-left: 1em;
    box-sizing: border-box;
  }
}

.Group {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: -80px;
}

.Group .item {
  width: 480px;
  margin-bottom: 80px;
}

.Group .item figure a {
  width: 100%;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: #323232 solid 1px;
  box-sizing: border-box;
}

.Group .item p a {
  font-size: 2rem;
  color: #0077FF;
}

@media screen and (max-width: 740px) {
  .Group {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    display: block;
    margin-bottom: -40px;
  }
  .Group .item {
    width: 100%;
    margin-bottom: 40px;
  }
  .Group .item figure a {
    width: 100%;
    height: 220px;
    text-align: center;
  }
  .Group .item figure a img {
    width: 90%;
    max-height: 90px;
  }
  .Group .item figure a .gluee {
    width: 50%;
  }
  .Group .item p {
    text-align: center;
  }
  .Group .item p a {
    font-size: 1.5rem;
  }
}

.recruit_area {
  background: #F5F5F5;
  width: 100%;
  overflow: hidden;
}

.recruit_area .recruit_box {
  width: 100%;
  background: #F5F5F5;
  padding: 70px 0;
}

.recruit_area .recruit_box .recruit_box_inner {
  width: 940px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recruit_area .recruit_box .recruit_box_inner figure {
  flex-shrink: 0;
}

.recruit_area .recruit_box .recruit_box_inner .text h3 small {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 1.6rem;
  position: relative;
  line-height: 1.25;
}

.recruit_area .recruit_box .recruit_box_inner .text h3 small:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #DA380C;
}

.recruit_area .recruit_box .recruit_box_inner .text h3 em {
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1em;
}

.recruit_area .recruit_box .recruit_box_inner .text p {
  width: 550px;
  margin-bottom: 50px;
}

.recruit_area .recruit_box .recruit_box_inner .text .modal_btn {
  width: 312px;
  height: 56px;
  background: #000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

.recruit_area .recruit_box .recruit_box_inner .text .modal_btn:hover {
  background: #DA380C;
}

.recruit_area .recruit_box .recruit_box_inner .text .modal_btn:before {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 12px;
  height: 1px;
  background: #fff;
}

.recruit_area .recruit_box .recruit_box_inner .text .modal_btn:after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 12px;
  height: 1px;
  background: #fff;
  transform: rotate(90deg);
}

.recruit_area .recruit_box .recruit_box_inner .text .modal_btn span {
  color: #fff;
  padding-left: 15px;
}

.recruit_area .recruit_box:nth-child(2n) {
  background: #fff;
}

.recruit_area .red_btn_large {
  margin: 70px auto;
}

@media screen and (max-width: 740px) {
  .recruit_area .recruit_box {
    width: 100%;
    padding: 30px 20px;
    box-sizing: border-box;
  }
  .recruit_area .recruit_box .recruit_box_inner {
    width: 100%;
    margin: 0 auto;
    display: block;
    text-align: center;
  }
  .recruit_area .recruit_box .recruit_box_inner figure {
    flex-shrink: 0;
    margin-top: 3em;
  }
  .recruit_area .recruit_box .recruit_box_inner .text h3 small {
    display: inline-block;
    font-size: 1.2rem;
  }
  .recruit_area .recruit_box .recruit_box_inner .text h3 em {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 1em;
  }
  .recruit_area .recruit_box .recruit_box_inner .text p {
    width: 100%;
    text-align: left;
  }
  .recruit_area .recruit_box .recruit_box_inner .text .modal_btn {
    width: 100%;
    height: 46px;
  }
  .recruit_area .red_btn_large {
    margin: 50px auto;
  }
}

article.old_type {
  width: auto;
  overflow: hidden;
  padding-top: 70px;
  /*! registration ***************************************************/
}

article.old_type.bg {
  background: #f5f5e9;
}

article.old_type .Breadcrumb {
  margin-top: -56px;
  margin-bottom: 10px;
  padding-left: 37px;
}

article.old_type section {
  max-width: 100%;
  width: 1000px;
  margin: 0 auto;
}

article.old_type section.wide {
  width: 100%;
}

article.old_type section.large_section {
  width: 950px;
  margin-bottom: 30px;
}

article.old_type section.middle_section {
  width: 900px;
  margin-bottom: 30px;
}

article.old_type section.narrow_section {
  width: 800px;
  margin-bottom: 30px;
}

article.old_type .text_box {
  padding: 40px 25px;
  box-sizing: border-box;
  border-radius: 10px;
}

article.old_type .text_box *:last-child {
  margin-bottom: 0;
}

article.old_type .text_box h2.line {
  font-size: 1.9rem;
  font-weight: bold;
  border-bottom: #000 solid 2px;
  margin-bottom: 30px;
  padding-bottom: 10px;
}

article.old_type .text_box h2.line.redline {
  border-color: #DA380C;
}

article.old_type .text_box p {
  margin-bottom: 4em;
  line-height: 2;
}

article.old_type .text_box p.middle {
  font-size: 1.5rem;
}

article.old_type .registration {
  width: 800px;
  margin: 0 auto;
  max-width: 100%;
}

article.old_type .registration h1 {
  margin: 60px 0 50px;
  text-align: center;
}

article.old_type .registration .registration_white_Box {
  background: #fff;
  padding: 60px 35px 35px;
  border-radius: 10px;
  text-align: center;
}

article.old_type .registration .registration_white_Box h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 50px;
  line-height: 1;
}

article.old_type .registration .registration_white_Box .merit {
  border: #999999 solid 2px;
  border-radius: 8px;
  position: relative;
  padding: 35px 50px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

article.old_type .registration .registration_white_Box .merit h3 {
  position: absolute;
  top: -1em;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 1.65rem;
  color: #00b900;
  font-weight: bold;
}

article.old_type .registration .registration_white_Box .merit h3 span {
  display: inline-block;
  padding: 0 15px;
  background: #fff;
}

article.old_type .registration .registration_white_Box .merit .item i {
  display: inline-block;
  color: #00b900;
  height: 40px;
  font-size: 3.5rem;
  margin-bottom: 25px;
  line-height: 40px;
}

article.old_type .registration .registration_white_Box .merit .item .icon-karte {
  font-size: 4rem;
}

article.old_type .registration .registration_white_Box .merit .item .icon-map {
  font-size: 4rem;
}

article.old_type .registration .registration_white_Box .merit .item p {
  font-size: 1.35rem;
  color: #333;
  font-weight: bold;
  font-feature-settings: "palt";
}

article.old_type .registration .registration_white_Box .line_Btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 56px;
  border-radius: 28px;
  background: #00b900;
  margin: 0 auto 50px;
  color: #fff;
}

article.old_type .registration .registration_white_Box .line_Btn i {
  font-size: 2.4rem;
}

article.old_type .registration .registration_white_Box .line_Btn span {
  font-size: 1.6rem;
  font-weight: bold;
  margin-left: 5px;
  letter-spacing: 1px;
}

article.old_type .registration .registration_white_Box .registration_mail {
  background: #f6f6f6;
  padding: 35px;
}

article.old_type .registration .registration_white_Box .registration_mail h3 {
  font-size: 1.6rem;
  font-weight: bold;
  padding-bottom: 35px;
  line-height: 1;
  border-bottom: #cccccc solid 1px;
}

article.old_type .registration .footer_link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

article.old_type .registration .footer_link li a {
  font-size: 1.4rem;
  color: #000;
  margin: 0 1em;
}

article.old_type .registration .footer_link li a:hover {
  text-decoration: underline;
}

article.old_type .registration .copy {
  text-align: center;
  font-size: 1.1rem;
  color: #888888;
  margin-bottom: 20px;
}

article.old_type .registration.login_box {
  width: 500px;
}

article.old_type .registration.login_box .registration_white_Box {
  padding: 40px 20px 30px;
}

article.old_type .registration.login_box .registration_white_Box h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

article.old_type .registration.login_box .registration_white_Box .line_Btn span {
  font-feature-settings: "palt";
  text-align: justify;
  margin-left: 10px;
}

article.old_type .registration.login_box .registration_white_Box .registration_mail h3 {
  border-bottom: 0;
}

article.old_type .registration.login_box .registration_white_Box .form_box {
  padding: 0;
}

article.old_type .registration.login_box .registration_white_Box .form_box input + input {
  margin-top: 15px;
}

article.old_type .registration.login_box .registration_white_Box .form_box .form_box_text_link {
  margin-top: 30px;
  padding-top: 25px;
  border-top: #cccccc solid 1px;
}

article.old_type .registration.login_box .registration_white_Box .form_box .form_box_text_link a {
  color: #000;
  font-size: 1.2rem;
  text-decoration: underline;
}

article.old_type .registration.login_box .registration_white_Box .form_box .form_box_text_link a + a {
  margin-left: 15px;
}

article.old_type .error {
  width: 100%;
  font-size: 1.2rem !important;
  -webkit-animation: blink 1s ease infinite;
  animation: blink 1s ease infinite;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

article.old_type .button {
  width: 580px;
  height: 80px;
  border: #555555 solid 1px;
  border-radius: 40px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #DA380C;
  margin: 0 auto 0;
  transition: all 0.2s ease;
  backface-visibility: hidden;
  cursor: pointer;
  font-size: 2.6rem;
  font-weight: 600;
}

article.old_type .button:hover {
  border-color: #DA380C;
  filter: brightness(110%);
}

article.old_type .back_cont {
  width: 250px;
  height: 46px;
  border-radius: 23px;
  border: #555555 solid 1px;
  background: #f6f6f6;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #323232;
  margin: 0 auto 0;
  transition: all 0.2s ease;
  backface-visibility: hidden;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 600;
}

article.old_type .back_cont:hover {
  filter: brightness(110%);
}

article.old_type input ~ .button {
  margin-top: 25px;
}

article.old_type .form_box {
  padding: 25px 0px 0;
}

article.old_type .form_box .inputBox ~ p {
  text-align: left;
  font-size: 1.3rem;
  color: #000;
  line-height: 2;
  margin-bottom: 25px;
  margin-top: 50px;
}

article.old_type .form_box .inputBox ~ p a {
  color: #000;
  text-decoration: underline;
}

article.old_type .form_box .inputBox ~ p a:hover {
  color: #DA380C;
}

article.old_type .form_box2 {
  padding: 25px 0px 0;
}

article.old_type .form_box2 label.wide {
  padding-left: 20px;
  box-sizing: border-box;
}

article.old_type form {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
}

article.old_type form label {
  width: 130px;
  line-height: 45px;
  flex-shrink: 0;
  font-size: 1.4rem;
  text-align: left;
  margin-bottom: 25px;
}

article.old_type form label[for="check"] {
  width: auto;
}

article.old_type form label.wide {
  width: 270px;
  padding-right: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
}

article.old_type form label.wide > span {
  display: inline-block;
  line-height: 1.5;
}

article.old_type form label.wide > span span {
  display: block;
  font-size: 1.2rem;
}

article.old_type form label.wide small {
  flex-shrink: 0;
}

article.old_type form label small {
  color: #DA380C;
  font-size: 1rem;
  margin-left: 1em;
}

article.old_type form label ~ .inputBox {
  width: calc(100% - 130px);
  margin-bottom: 25px;
}

article.old_type form label ~ .inputBox .inputBox_iner {
  margin-bottom: 25px;
}

article.old_type form label ~ .inputBox > *:last-child {
  margin-bottom: 0;
}

article.old_type form label.wide ~ .inputBox {
  width: calc(100% - 270px);
}

article.old_type form label.wide ~ .inputBox .radio {
  padding: 8px 0;
}

article.old_type form label.wide ~ .inputBox .radio + .inputBox_iner {
  margin-top: 20px;
}

article.old_type form label.wide ~ .inputBox .inputBox_iner {
  margin-bottom: 15px;
}

article.old_type form label.wide ~ .inputBox .inputBox_iner.flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

article.old_type form label.wide ~ .inputBox .inputBox_iner.flex .radio {
  width: 200px;
  padding: 0;
}

article.old_type form label.wide ~ .inputBox > *:last-child {
  margin-bottom: 0;
}

article.old_type form label.wide ~ .inputBox.flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  min-height: 46px;
}

article.old_type form label.wide ~ .inputBox.flex .radio {
  padding: 0;
}

article.old_type form label.wide ~ .inputBox.flex .radio + .radio {
  margin-left: 25px;
}

article.old_type form label.wide ~ .inputBox .selectBox {
  min-width: 198px;
}

article.old_type form label.wide ~ .inputBox .selectBox.wide {
  width: 396px;
}

article.old_type form label.wide ~ .inputBox input[type=text] + span {
  padding-left: 10px;
  font-size: 1.4rem;
}

article.old_type form label.wide ~ .inputBox input[type=text] + input[type=text],
article.old_type form label.wide ~ .inputBox .selectBox + .selectBox {
  margin-left: 10px;
}

article.old_type form label.wide ~ .inputBox small.note {
  display: block;
  font-size: 1.2rem;
  padding-top: 10px;
}

article.old_type form .inputBox2 ~ hr {
  margin: 20px 0;
  width: 100%;
  border: 0;
  border-top: #dddddd solid 1px;
}

article.old_type form .scroll_btn {
  margin: 40px auto 80px;
}

article.old_type form .scroll_btn .icon-arrow {
  transform: rotate(90deg);
}

article.old_type form .privacy_text {
  margin-bottom: 4em;
  line-height: 2;
  font-size: 1.4rem;
}

article.old_type form .privacy_text a {
  text-decoration: underline;
}

article.old_type .form_back {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  margin-top: 30px;
}

article.old_type .form_back a {
  color: #009ee8;
}

article.old_type .form_back a .icon-arrow1 {
  font-size: 1rem;
  margin-right: 0.5em;
}

article.old_type .form_back a span {
  text-decoration: underline;
}

article.old_type input[type="email"],
article.old_type input[type="text"],
article.old_type input[type="password"],
article.old_type input[type="tel"] {
  width: 100%;
  height: 45px;
  border: #999999 solid 1px;
  padding: 0 10px;
  box-sizing: border-box;
  font-size: 1.3rem;
}

article.old_type input[type="email"]::placeholder,
article.old_type input[type="text"]::placeholder,
article.old_type input[type="password"]::placeholder,
article.old_type input[type="tel"]::placeholder {
  color: #888;
}

article.old_type input[type="email"][readonly="readonly"],
article.old_type input[type="text"][readonly="readonly"],
article.old_type input[type="password"][readonly="readonly"],
article.old_type input[type="tel"][readonly="readonly"] {
  border: #d0d0d0 dotted 1px;
  background: none;
  outline: 0;
}

article.old_type input[type="email"].middle,
article.old_type input[type="text"].middle,
article.old_type input[type="password"].middle,
article.old_type input[type="tel"].middle {
  width: 80%;
}

article.old_type input[type="email"].small,
article.old_type input[type="text"].small,
article.old_type input[type="password"].small,
article.old_type input[type="tel"].small {
  width: 30%;
}

article.old_type input[type="email"].bg,
article.old_type input[type="text"].bg,
article.old_type input[type="password"].bg,
article.old_type input[type="tel"].bg {
  background: #fff2e4;
}

article.old_type textarea {
  width: 100%;
  padding: 10px;
  height: 250px;
  border: #999999 solid 1px;
  box-sizing: border-box;
  vertical-align: top;
}

article.old_type textarea[readonly="readonly"] {
  border: #d0d0d0 dotted 1px;
  background: none;
  outline: 0;
}

article.old_type .selectBox {
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: top;
}

article.old_type .selectBox select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: medium none;
  border-radius: 0px;
  box-sizing: border-box;
  font-size: 1.3rem;
  height: 45px;
  margin: 0;
  box-sizing: border-box;
  background: #fff;
  border: #999999 solid 1px;
  padding-left: 10px;
  padding-right: 45px;
  width: 100%;
  max-width: none;
  box-shadow: none;
  background: #fff;
}

article.old_type .selectBox _:lang(x)::-ms-backdrop, article.old_type .selectBox select {
  width: 110%;
}

article.old_type .selectBox:after {
  background: #fff;
  content: "\e901";
  font-family: "icomoon";
  font-size: 1rem;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 45px;
  height: 45px;
  box-sizing: border-box;
  border: #999999 solid 1px;
  border-left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

article.old_type .selectBox.bg select {
  background: #fff2e4;
}

article.old_type .selectBox.bg:after {
  background: #fff2e4;
}

article.old_type .mw_wp_form_confirm .selectBox:after {
  content: none !important;
}

@media screen and (max-width: 740px) {
  article.old_type .registration {
    padding: 0 15px 15px;
    box-sizing: border-box;
  }
  article.old_type .registration h1 {
    margin: 30px 0;
  }
  article.old_type .registration .registration_white_Box {
    padding: 25px 15px 15px;
  }
  article.old_type .registration .registration_white_Box h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  article.old_type .registration .registration_white_Box .merit {
    padding: 15px 0 35px;
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
  article.old_type .registration .registration_white_Box .merit h3 {
    font-size: 1.5rem;
    white-space: nowrap;
  }
  article.old_type .registration .registration_white_Box .merit h3 span {
    padding: 0 10px;
  }
  article.old_type .registration .registration_white_Box .merit .item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 22px;
  }
  article.old_type .registration .registration_white_Box .merit .item i {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #00b900;
    height: auto;
    width: 40px;
    font-size: 3.5rem;
    margin-bottom: 0px;
    line-height: 40px;
  }
  article.old_type .registration .registration_white_Box .merit .item p {
    padding-left: 1.5em;
    width: 13em;
    font-size: 1.25rem;
    font-feature-settings: "palt";
    text-align: justify;
  }
  article.old_type .registration .registration_white_Box .line_Btn {
    max-width: 100%;
  }
  article.old_type .registration .registration_white_Box .line_Btn i {
    font-size: 2.4rem;
  }
  article.old_type .registration .registration_white_Box .line_Btn span {
    font-size: 1.6rem;
    font-weight: bold;
    margin-left: 5px;
    letter-spacing: 1px;
  }
  article.old_type .registration .registration_white_Box .registration_mail {
    padding: 30px 15px;
  }
  article.old_type .registration .registration_white_Box .registration_mail h3 {
    font-size: 1.5rem;
    padding-bottom: 20px;
    border-bottom: 0;
  }
  article.old_type .registration .footer_link {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px 0;
  }
  article.old_type .registration .footer_link li a {
    font-size: 1.2rem;
    color: #000;
    margin: 0 0.5em;
  }
  article.old_type .registration .footer_link li a:hover {
    text-decoration: underline;
  }
  article.old_type .registration .copy {
    text-align: center;
    font-size: 1.1rem;
    color: #888888;
    margin-bottom: 0px;
  }
  article.old_type .registration.login_box {
    width: 100%;
  }
  article.old_type .registration.login_box h1 img {
    width: 108px;
  }
  article.old_type .registration.login_box .registration_white_Box {
    padding: 30px 20px 25px;
  }
  article.old_type .registration.login_box .registration_white_Box h2 {
    font-size: 1.9rem;
    margin-bottom: 30px;
  }
  article.old_type .registration.login_box .registration_white_Box .line_Btn {
    margin-bottom: 40px;
    height: 45px;
  }
  article.old_type .registration.login_box .registration_white_Box .line_Btn span {
    font-size: 1.5rem;
  }
  article.old_type .registration.login_box .registration_white_Box .registration_mail h3 {
    border-bottom: 0;
  }
  article.old_type .registration.login_box .registration_white_Box .form_box {
    padding: 0;
  }
  article.old_type .registration.login_box .registration_white_Box .form_box input {
    margin-bottom: 15px;
  }
  article.old_type .registration.login_box .registration_white_Box .form_box input + input {
    margin-top: 0;
  }
  article.old_type .registration.login_box .registration_white_Box .form_box .button {
    width: 180px;
    height: 40px;
  }
  article.old_type .registration.login_box .registration_white_Box .form_box .button span {
    font-size: 1.5rem;
  }
  article.old_type .registration.login_box .registration_white_Box .form_box .form_box_text_link {
    margin-top: 25px;
    padding-top: 20px;
    border-top: #cccccc solid 1px;
    text-align: left;
  }
  article.old_type .registration.login_box .registration_white_Box .form_box .form_box_text_link a {
    display: inline-block;
    color: #000;
    font-size: 1.2rem;
    text-decoration: underline;
    margin-right: 20px;
  }
  article.old_type .registration.login_box .registration_white_Box .form_box .form_box_text_link a + a {
    margin-left: 0px;
  }
  article.old_type .button {
    width: 250px;
    height: 46px;
    border: #555555 solid 1px;
    border-radius: 23px;
    background: #fff;
    font-size: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #DA380C;
    margin: 0 auto;
    transition: all 0.2s ease;
    backface-visibility: hidden;
    cursor: pointer;
  }
  article.old_type .button .icon-arrow {
    font-size: 1rem;
  }
  article.old_type .button span {
    font-size: 1.6rem;
    font-weight: bold;
    margin-left: 0.5em;
  }
  article.old_type .button:hover {
    border-color: #DA380C;
    filter: brightness(110%);
  }
  article.old_type input ~ .button {
    margin-top: 10px;
  }
  article.old_type .form_box {
    padding: 0;
  }
  article.old_type .form_box .inputBox ~ p {
    text-align: left;
    font-size: 1.2rem;
    margin-bottom: 20px;
    margin-top: 0px;
  }
  article.old_type form label {
    width: 100% !important;
    line-height: 1;
    flex-shrink: 0;
    font-size: 1.4rem;
    text-align: left;
    margin-bottom: 10px;
  }
  article.old_type form label.wide {
    padding-left: 0 !important;
    align-items: center;
  }
  article.old_type form label ~ .inputBox {
    width: 100% !important;
  }
  article.old_type form label.wide ~ .inputBox {
    width: 100%;
  }
  article.old_type form label.wide ~ .inputBox .inputBox_iner {
    margin-bottom: 0;
  }
  article.old_type form label.wide ~ .inputBox .inputBox_iner.flex {
    display: block;
  }
  article.old_type form label.wide ~ .inputBox .inputBox_iner.flex .radio {
    width: 100%;
    padding: 8px 0;
  }
  article.old_type form label.wide ~ .inputBox .inputBox_iner + .inputBox_iner {
    margin-top: 10px;
  }
  article.old_type form label.wide ~ .inputBox.flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
  }
  article.old_type form label.wide ~ .inputBox.flex .radio {
    padding: 8px 0;
    width: 50%;
  }
  article.old_type form label.wide ~ .inputBox.flex .radio + .radio {
    margin-left: 0px;
  }
  article.old_type form label.wide ~ .inputBox .selectBox {
    min-width: 100%;
  }
  article.old_type form label.wide ~ .inputBox .selectBox.wide {
    width: 100%;
  }
  article.old_type form label.wide ~ .inputBox input[type=text] + span {
    padding-left: 10px;
    font-size: 1.4rem;
  }
  article.old_type form label.wide ~ .inputBox input[type=text] + input[type=text],
  article.old_type form label.wide ~ .inputBox .selectBox + .selectBox {
    margin-left: 0px;
  }
  article.old_type form label.wide ~ .inputBox small.note {
    display: block;
    font-size: 1rem;
    padding-top: 0px;
  }
  article.old_type form label.wide ~ .inputBox.age {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  article.old_type form label.wide ~ .inputBox.age input {
    margin-bottom: 0;
  }
  article.old_type form label.wide ~ .inputBox.age span {
    margin-bottom: 0px;
    font-size: 1.3rem;
  }
  article.old_type form .scroll_btn {
    margin: 20px auto 40px;
  }
  article.old_type form .privacy_text {
    font-size: 1.3rem;
  }
  article.old_type input[type="email"],
  article.old_type input[type="text"],
  article.old_type input[type="password"],
  article.old_type input[type="tel"],
  article.old_type .selectBox {
    margin-bottom: 10px;
    width: 100%;
  }
  article.old_type input[type="email"]::placeholder,
  article.old_type input[type="text"]::placeholder,
  article.old_type input[type="password"]::placeholder,
  article.old_type input[type="tel"]::placeholder,
  article.old_type .selectBox::placeholder {
    color: #888;
  }
  article.old_type input[type="email"].middle,
  article.old_type input[type="text"].middle,
  article.old_type input[type="password"].middle,
  article.old_type input[type="tel"].middle,
  article.old_type .selectBox.middle {
    width: 100%;
  }
  article.old_type input[type="email"].small,
  article.old_type input[type="text"].small,
  article.old_type input[type="password"].small,
  article.old_type input[type="tel"].small,
  article.old_type .selectBox.small {
    width: 100%;
  }
}

article.old_type .check {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

article.old_type .check.disabled label {
  pointer-events: none;
  opacity: 0.4;
}

article.old_type .check label {
  width: auto;
  line-height: 16px;
  position: relative;
  padding-left: 26px;
  font-size: 1.5rem;
  font-weight: 600;
  white-space: nowrap;
}

article.old_type .check label:before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 0px;
  border: #999999 solid 1px;
  box-sizing: border-box;
  margin-right: 10px;
  background: #fff;
}

article.old_type .check label:after {
  content: "\e916";
  font-family: "icomoon";
  width: 14px;
  height: 14px;
  font-size: 1rem;
  color: #fff;
  background: #0076ff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 1px;
  top: 1px;
  transition: all 0.2s ease;
  backface-visibility: hidden;
  transform: scale(0);
}

article.old_type .check input[type="checkbox"] {
  display: none;
}

article.old_type .check input[type="checkbox"]:checked ~ label:after {
  transform: scale(1);
}

article.old_type .mail_check {
  width: 100%;
  margin-bottom: 70px;
  text-align: center;
  justify-content: center;
}

article.old_type .mail_check.disabled label {
  pointer-events: none;
  opacity: 0.4;
}

article.old_type .mail_check label {
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

article.old_type .mail_check label input[type="checkbox"] {
  display: none;
}

article.old_type .mail_check label input[type="checkbox"]:checked ~ span:after {
  transform: scale(1);
}

article.old_type .mail_check label .mwform-checkbox-field-text {
  width: auto;
  line-height: 16px;
  position: relative;
  padding-left: 26px;
  font-size: 1.5rem;
  font-weight: 400;
  white-space: nowrap;
}

article.old_type .mail_check label .mwform-checkbox-field-text:before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 0px;
  border: #999999 solid 1px;
  box-sizing: border-box;
  margin-right: 10px;
  background: #fff;
}

article.old_type .mail_check label .mwform-checkbox-field-text:after {
  content: "\e916";
  font-family: "icomoon";
  width: 14px;
  height: 14px;
  font-size: 1rem;
  color: #fff;
  background: #0076ff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 1px;
  top: 1px;
  transition: all 0.2s ease;
  backface-visibility: hidden;
  transform: scale(0);
}

@media screen and (max-width: 740px) {
  article.old_type .mail_check {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    margin-bottom: 30px;
  }
  article.old_type .mail_check label .mwform-checkbox-field-text {
    line-height: 1.5;
    padding-left: 26px;
    font-size: 1.3rem;
    white-space: normal;
  }
  article.old_type .mail_check label .mwform-checkbox-field-text:before {
    top: 4px;
  }
  article.old_type .mail_check label .mwform-checkbox-field-text:after {
    top: 5px;
  }
}

article.old_type .inputBox .mwform-checkbox-field {
  display: inline-block;
  margin-right: 20px;
  margin-top: 14px;
  margin-left: 0 !important;
}

article.old_type .inputBox .mwform-checkbox-field label {
  width: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

article.old_type .inputBox .mwform-checkbox-field label input[type="checkbox"] {
  display: none;
}

article.old_type .inputBox .mwform-checkbox-field label input[type="checkbox"]:checked ~ span:after {
  transform: scale(1);
}

article.old_type .inputBox .mwform-checkbox-field label .mwform-checkbox-field-text {
  width: auto;
  line-height: 16px;
  position: relative;
  padding-left: 26px;
  font-size: 1.5rem;
  font-weight: 400;
  white-space: nowrap;
}

article.old_type .inputBox .mwform-checkbox-field label .mwform-checkbox-field-text:before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 0px;
  border: #999999 solid 1px;
  box-sizing: border-box;
  margin-right: 10px;
  background: #fff;
}

article.old_type .inputBox .mwform-checkbox-field label .mwform-checkbox-field-text:after {
  content: "\e916";
  font-family: "icomoon";
  width: 14px;
  height: 14px;
  font-size: 1rem;
  color: #fff;
  background: #0076ff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 1px;
  top: 1px;
  transition: all 0.2s ease;
  backface-visibility: hidden;
  transform: scale(0);
}

article.old_type .inputBox .mwform-radio-field {
  display: inline-block;
  margin-right: 20px;
}

article.old_type .inputBox .mwform-radio-field label {
  width: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

article.old_type .inputBox .mwform-radio-field label input[type="radio"] {
  display: none;
}

article.old_type .inputBox .mwform-radio-field label input[type="radio"]:checked ~ span:after {
  transform: scale(1);
}

article.old_type .inputBox .mwform-radio-field label .mwform-radio-field-text {
  width: auto;
  line-height: 16px;
  position: relative;
  padding-left: 26px;
  font-size: 1.5rem;
  font-weight: 400;
  white-space: nowrap;
}

article.old_type .inputBox .mwform-radio-field label .mwform-radio-field-text:before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0px;
  border: #999999 solid 1px;
  box-sizing: border-box;
  margin-right: 10px;
  background: #fff;
}

article.old_type .inputBox .mwform-radio-field label .mwform-radio-field-text:after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  color: #fff;
  background: #0076ff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: all 0.2s ease;
  backface-visibility: hidden;
  transform: scale(0);
}

article.old_type .inputBox .mwform-radio-field + .mwform-radio-field {
  margin-top: 14px;
  margin-left: 0 !important;
}

@media screen and (max-width: 740px) {
  article.old_type .inputBox .mwform-radio-field {
    display: block;
    margin-right: 0px;
  }
  article.old_type .inputBox .mwform-radio-field + .mwform-radio-field {
    margin-top: 15px;
  }
  article.old_type .inputBox .mwform-checkbox-field {
    display: block;
    margin-right: 0px;
    margin-top: 0;
  }
  article.old_type .inputBox .mwform-checkbox-field + .mwform-checkbox-field {
    margin-top: 15px;
  }
}

article.old_type .radio {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

article.old_type .radio .horizontal-item {
  margin-left: 0 !important;
  margin-right: 30px;
}

article.old_type .radio .horizontal-item label {
  white-space: normal;
}

article.old_type .radio .horizontal-item label input[type="radio"] {
  display: none;
}

article.old_type .radio .horizontal-item label input[type="radio"]:checked ~ span:after {
  transform: scale(1);
}

article.old_type .radio .horizontal-item label span {
  width: auto;
  line-height: 20px;
  position: relative;
  padding-left: 30px;
  font-size: 1.4rem;
  font-weight: 500;
  white-space: nowrap;
}

article.old_type .radio .horizontal-item label span:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  border: #999999 solid 1px;
  box-sizing: border-box;
  margin-right: 10px;
  background: #fff;
}

article.old_type .radio .horizontal-item label span:after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: absolute;
  left: 1px;
  top: 1px;
  border: #0076ff solid 6px;
  box-sizing: border-box;
  margin-right: 10px;
  background: #fff;
  transition: all 0.2s ease;
  backface-visibility: hidden;
  transform: scale(0);
}

@media screen and (max-width: 740px) {
  article.old_type .radio .horizontal-item {
    width: 100%;
    margin: 0;
  }
  article.old_type .radio .horizontal-item + .horizontal-item {
    margin-top: 10px;
  }
}

.swiper-container {
  width: 100%;
  height: 100%;
  padding: 10px 0 60px;
}

.swiper-container .swiper-slide {
  text-align: center;
  font-size: 18px;
  width: 600px;
  position: relative;
  margin: 0 20px;
}

.swiper-container .swiper-slide a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
  z-index: 10;
}

.swiper-container .swiper-slide a:hover ~ figure img {
  filter: brightness(110%);
}

.swiper-container .swiper-slide .swiper_text {
  position: absolute;
  padding: 20px 25px;
  width: 100%;
  box-sizing: border-box;
  left: 0px;
  bottom: 0px;
  color: #fff;
  z-index: 1;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-container .swiper-slide .swiper_text .category {
  text-align: left;
}

.swiper-container .swiper-slide .swiper_text .category em {
  font-size: 1.5rem;
  font-weight: bold;
}

.swiper-container .swiper-slide .swiper_text .category span {
  padding-left: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
}

.swiper-container .swiper-slide .swiper_text p {
  text-align: left;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
}

.swiper-container .swiper-slide figure {
  width: 100%;
  height: 400px;
}

.swiper-container .swiper-slide figure img {
  border-radius: 10px;
  transition: all 0.2s ease;
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

@media screen and (max-width: 740px) {
  .swiper-container {
    width: 100%;
    height: 100%;
    padding: 25px 0 30px;
  }
  .swiper-container .swiper-slide {
    text-align: center;
    font-size: 18px;
    width: 80%;
    position: relative;
    margin: 0 10px;
  }
  .swiper-container .swiper-slide a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    z-index: 10;
  }
  .swiper-container .swiper-slide a:hover ~ figure img {
    filter: brightness(110%);
  }
  .swiper-container .swiper-slide .swiper_text {
    position: absolute;
    left: 0;
    top: 50%;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 0;
    background: none;
    transform: translate(0, -25%);
  }
  .swiper-container .swiper-slide .swiper_text .category {
    display: inline-block;
    text-align: center;
    border-bottom: #fff solid 2px;
    margin-bottom: 10px;
  }
  .swiper-container .swiper-slide .swiper_text .category em {
    font-size: 1rem;
    font-weight: bold;
  }
  .swiper-container .swiper-slide .swiper_text .category span {
    padding-left: 5px;
    font-size: 1.1rem;
  }
  .swiper-container .swiper-slide .swiper_text p {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.5;
  }
  .swiper-container .swiper-slide figure {
    position: relative;
    width: 100%;
    height: auto;
  }
  .swiper-container .swiper-slide figure:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    background: #000;
    z-index: 0;
    border-radius: 10px;
    opacity: 0.2;
  }
}

.List_articles {
  padding-bottom: 26px;
}

.List_articles .item_wrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-left: -35px;
}

.List_articles .item_wrap .item {
  width: 310px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 35px;
  margin-left: 35px;
}

.List_articles .item_wrap .item a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
  z-index: 10;
}

.List_articles .item_wrap .item a:hover ~ figure img {
  filter: brightness(110%);
}

.List_articles .item_wrap .item figure {
  width: 100%;
  height: 230px;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.List_articles .item_wrap .item figure img {
  transition: all 0.2s ease;
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.List_articles .item_wrap .item .item_text {
  padding: 20px;
}

.List_articles .item_wrap .item .item_text .category {
  text-align: left;
  color: #DA380C;
}

.List_articles .item_wrap .item .item_text .category em {
  font-size: 1.2rem;
  font-weight: bold;
}

.List_articles .item_wrap .item .item_text .category span {
  padding-left: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.List_articles .item_wrap .item .item_text p {
  font-feature-settings: "palt";
  text-align: justify;
}

@media screen and (max-width: 740px) {
  .List_articles {
    padding: 0 10px 20px;
  }
  .List_articles .item_wrap {
    justify-content: space-between;
    align-items: inherit;
    margin-left: 0;
  }
  .List_articles .item_wrap .item {
    width: calc((100% - 10px)/2);
    border-radius: 8px;
    margin-bottom: 10px;
    margin-left: 0;
  }
  .List_articles .item_wrap .item figure {
    width: 100%;
    height: 130px;
  }
  .List_articles .item_wrap .item .item_text {
    padding: 10px;
  }
  .List_articles .item_wrap .item .item_text .category em {
    font-size: 1rem;
  }
  .List_articles .item_wrap .item .item_text .category span {
    padding-left: 5px;
    font-size: 1.1rem;
  }
}

.pick_up {
  background: #ebb3a6;
  margin-bottom: 60px;
}

.pick_up .pick_up_inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 0;
}

.pick_up .pick_up_inner h3 {
  color: #fff;
  padding-bottom: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.pick_up .pick_up_inner h3 i {
  font-size: 3rem;
}

.pick_up .pick_up_inner h3 .icon-light {
  font-size: 2.6rem;
}

.pick_up .pick_up_inner h3 .icon-interview {
  font-size: 2rem;
}

.pick_up .pick_up_inner h3 .icon-money {
  font-size: 2.4rem;
}

.pick_up .pick_up_inner h3 em {
  font-size: 2.25rem;
  font-weight: bold;
  padding: 0 12px;
  display: inline-block;
  line-height: 1;
}

.pick_up .pick_up_inner h3 small {
  font-size: 1.4rem;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1;
}

.pick_up .pick_up_inner .pick_up_articles {
  display: flex;
  justify-content: space-between;
}

.pick_up .pick_up_inner .pick_up_articles .item {
  width: calc((100% - 40px)/2);
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.pick_up .pick_up_inner .pick_up_articles .item a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
  z-index: 10;
}

.pick_up .pick_up_inner .pick_up_articles .item a:hover ~ figure img {
  filter: brightness(110%);
}

.pick_up .pick_up_inner .pick_up_articles .item figure {
  width: 100%;
  height: 360px;
}

.pick_up .pick_up_inner .pick_up_articles .item figure img {
  transition: all 0.2s ease;
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.pick_up .pick_up_inner .pick_up_articles .item .item_text {
  padding: 20px;
}

.pick_up .pick_up_inner .pick_up_articles .item .item_text .category {
  text-align: left;
  color: #DA380C;
}

.pick_up .pick_up_inner .pick_up_articles .item .item_text .category em {
  font-size: 1.2rem;
  font-weight: bold;
}

.pick_up .pick_up_inner .pick_up_articles .item .item_text .category span {
  padding-left: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pick_up .pick_up_inner .pick_up_articles .item .item_text p {
  font-feature-settings: "palt";
  text-align: justify;
}

@media screen and (max-width: 740px) {
  .pick_up {
    margin-bottom: 30px;
  }
  .pick_up .pick_up_inner {
    max-width: 100%;
    padding: 30px 10px 10px;
  }
  .pick_up .pick_up_inner h3 {
    color: #fff;
    padding-bottom: 20px;
  }
  .pick_up .pick_up_inner h3 .icon-light {
    font-size: 2.2rem;
  }
  .pick_up .pick_up_inner h3 .icon-interview {
    font-size: 1.8rem;
  }
  .pick_up .pick_up_inner h3 .icon-pin {
    font-size: 2.2rem;
  }
  .pick_up .pick_up_inner h3 .icon-money {
    font-size: 2rem;
  }
  .pick_up .pick_up_inner h3 em {
    font-size: 1.9rem;
    padding: 0 12px;
  }
  .pick_up .pick_up_inner h3 small {
    font-size: 1.1rem;
  }
  .pick_up .pick_up_inner .pick_up_articles {
    display: block;
  }
  .pick_up .pick_up_inner .pick_up_articles .item {
    width: 100%;
    margin-bottom: 15px;
  }
  .pick_up .pick_up_inner .pick_up_articles .item figure {
    width: 100%;
    height: 260px;
  }
  .pick_up .pick_up_inner .pick_up_articles .item .item_text {
    padding: 10px;
  }
  .pick_up .pick_up_inner .pick_up_articles .item .item_text .category {
    text-align: left;
    color: #DA380C;
  }
  .pick_up .pick_up_inner .pick_up_articles .item .item_text .category em {
    font-size: 1.2rem;
    font-weight: bold;
  }
  .pick_up .pick_up_inner .pick_up_articles .item .item_text .category span {
    padding-left: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
  }
  .pick_up .pick_up_inner .pick_up_articles .item .item_text p {
    font-feature-settings: "palt";
    text-align: justify;
  }
}

a.magazine_more {
  width: 350px;
  height: 50px;
  border-radius: 25px;
  border: #888888 solid 1px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  margin: 60px auto;
}

a.magazine_more .icon-load {
  color: #DA380C;
}

a.magazine_more span {
  color: #DA380C;
  font-weight: 600;
  margin-left: 5px;
}

a.magazine_more:hover {
  border-color: #DA380C;
}

a.magazine_more:hover .icon-load {
  -webkit-animation: spin 3s linear infinite;
  -moz-animation: spin 3s linear infinite;
  -ms-animation: spin 3s linear infinite;
  -o-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}

@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
  }
}

@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 740px) {
  a.magazine_more {
    width: 250px;
    height: 40px;
    border-radius: 20px;
    margin: 30px auto;
  }
}

.sub_page_Title {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.sub_page_Title .text {
  width: 50%;
  height: 350px;
  background: #e6b5a8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub_page_Title .text h1 {
  color: #fff;
  text-align: center;
}

.sub_page_Title .text h1 em {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.sub_page_Title .text h1 small {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.sub_page_Title figure {
  width: 50%;
  height: 350px;
}

.sub_page_Title figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

@media screen and (max-width: 740px) {
  .sub_page_Title {
    flex-wrap: wrap;
    width: 100%;
  }
  .sub_page_Title .text {
    order: 1;
    width: 100%;
    height: auto;
    padding: 20px;
    box-sizing: border-box;
  }
  .sub_page_Title .text h1 em {
    font-size: 2rem;
  }
  .sub_page_Title .text h1 small {
    font-size: 1.2rem;
  }
  .sub_page_Title figure {
    order: 0;
    width: 100%;
    height: 200px;
  }
}

.detail_article {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  margin-bottom: 60px;
}

.detail_article.flex {
  flex-wrap: wrap;
}

.detail_article .main_article {
  width: 650px;
}

.detail_article .main_article.wide {
  width: 675px;
}

.detail_article .aside {
  width: 300px;
}

.detail_article .aside.narrow {
  width: 275px;
}

@media screen and (max-width: 740px) {
  .detail_article {
    width: 100%;
    display: block;
    padding-top: 0px;
    margin-bottom: 30px;
  }
  .detail_article .main_article {
    width: 100%;
  }
  .detail_article .aside {
    width: 100% !important;
  }
  .detail_article .aside.narrow {
    margin-top: 20px;
  }
  .detail_article .aside .aside_box .aside_box_item {
    padding: 15px;
  }
  .detail_article .aside .aside_box .aside_box_item h3 {
    font-size: 1.6rem;
  }
  .detail_article.reverse {
    display: flex;
    flex-wrap: wrap;
  }
  .detail_article.reverse .main_article {
    order: 1;
    width: 100%;
  }
  .detail_article.reverse .aside {
    order: 0;
    width: 100%;
  }
  .detail_article.reverse .aside .blue_btn_large {
    height: 35px;
    margin: 20px auto 10px;
  }
  .detail_article.reverse .aside .blue_btn_large span {
    font-size: 1.3rem;
  }
}

.article_title {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 35px;
}

.article_title figure {
  width: 100%;
  height: 400px;
}

.article_title figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.article_title .text {
  padding: 25px;
  border-bottom: #dddddd solid 1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.article_title .text .category {
  text-align: left;
  color: #DA380C;
  width: 100%;
}

.article_title .text .category em {
  font-size: 1.4rem;
  font-weight: bold;
}

.article_title .text .category span {
  padding-left: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
}

.article_title .text h1 {
  width: 100%;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.35;
  padding: 15px 0;
}

.article_title .text .release_time {
  font-size: 1.3rem;
}

.article_title .text .sns {
  display: flex;
  justify-content: center;
  align-items: center;
}

.article_title .text .sns li {
  margin: 0 5px;
}

.article_title .text .sns .icon-facebook {
  font-size: 2.6rem;
  color: #3b578a;
}

.article_title .text .sns .icon-twitter {
  font-size: 2.6rem;
  color: #43aedf;
}

.article_title .text .sns .icon-line {
  font-size: 2.6rem;
  color: #00b900;
}

.article_title .tag_list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding: 17px 19px;
}

.article_title .tag_list li a {
  height: 28px;
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ececec;
  border-radius: 14px;
  font-size: 1.3rem;
  color: #323232;
  margin: 8px 6px;
}

.article_title .tag_list li a:hover {
  background: #888888;
  color: #fff;
  filter: none;
}

.article_contents {
  background: #fff;
  padding: 35px 25px 25px;
  border-radius: 10px;
}

.article_contents .large_headline {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  padding-bottom: 6px;
  border-bottom: #323232 solid 2px;
  margin-bottom: 30px;
  margin-top: 60px;
}

.article_contents .large_headline:first-child {
  margin-top: 0;
}

.article_contents .heading {
  font-size: 1.5rem;
  font-weight: bold;
  padding-bottom: 1em;
}

.article_contents .article_text {
  padding-bottom: 2em;
  font-size: 1.4rem;
  line-height: 2.15;
}

.article_contents .article_text a {
  color: #009ee8;
  text-decoration: underline;
}

.article_contents .article_text_center {
  text-align: center;
  font-size: 1.4rem;
  line-height: 2.15;
}

.article_contents .article_bold {
  font-weight: bold;
  color: #DA380C;
}

.article_contents .article_image {
  padding-bottom: 2em;
}

.article_contents .article_image figcaption {
  font-size: 1.1rem;
  color: #888888;
  padding-top: 1em;
}

.article_contents .table_contents {
  padding: 20px;
  background: #f6f6f6;
  margin-bottom: 60px;
}

.article_contents .table_contents li {
  font-size: 1.4rem;
}

.article_contents .table_contents li:before {
  content: "\e901";
  font-family: "icomoon";
  font-size: 1rem;
  margin-right: 5px;
}

.article_contents .table_contents li a {
  color: #323232;
  text-decoration: underline;
}

.article_contents .table_contents li a:hover {
  color: #DA380C;
}

.article_contents .table_contents li + li {
  padding-top: 8px;
}

.article_contents .article_advertise {
  padding: 15px;
  background: #f0f0f0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 60px;
}

.article_contents .article_advertise figure {
  width: 228px;
  flex-shrink: 0;
}

.article_contents .article_advertise figure img {
  width: 100%;
}

.article_contents .article_advertise .text {
  padding-left: 15px;
}

.article_contents .article_advertise .text em {
  font-weight: bold;
  font-size: 1.3rem;
}

.article_contents .article_advertise .text p {
  padding: 10px 0;
  font-size: 1.2rem;
}

.article_contents .article_advertise .text a {
  font-size: 1.2rem;
  color: #323232;
  text-decoration: underline;
}

.article_contents .article_advertise .text a:hover {
  color: #DA380C;
}

.article_contents .article_table {
  width: 100%;
  font-size: 1.4rem;
  border-bottom: #cccccc solid 1px;
  margin-bottom: 60px;
}

.article_contents .article_table thead tr th {
  padding: 15px;
  text-align: left;
  font-weight: bold;
  background: #f3f3f3;
  border-left: #cccccc solid 1px;
  border-top: #cccccc solid 1px;
}

.article_contents .article_table thead tr th:last-child {
  border-right: #cccccc solid 1px;
}

.article_contents .article_table tbody tr th {
  padding: 15px;
  text-align: left;
  font-weight: bold;
  background: #f3f3f3;
  border-left: #cccccc solid 1px;
  border-top: #cccccc solid 1px;
}

.article_contents .article_table tbody tr td {
  padding: 15px;
  text-align: left;
  border-left: #cccccc solid 1px;
  border-top: #cccccc solid 1px;
}

.article_contents .article_table tbody tr td:last-child {
  border-right: #cccccc solid 1px;
}

.article_contents .article_btn {
  width: 350px;
  height: 50px;
  border-radius: 25px;
  border: #555555 solid 1px;
  box-sizing: border-box;
  background: #f6f6f6;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #DA380C;
  margin: 0 auto 60px;
}

.article_contents .article_btn .icon-arrow {
  font-size: 1rem;
  margin-right: 5px;
}

.article_contents .article_btn span {
  font-weight: bold;
  font-size: 1.6rem;
}

.article_contents .article_btn:hover {
  border-color: #DA380C;
}

.article_contents .article_red_box {
  border: #ebb3a6 solid 4px;
  padding: 25px;
  margin-bottom: 2em;
}

.article_contents .article_red_box .article_text:last-child {
  padding-bottom: 0;
}

.article_contents .check_point {
  padding: 15px;
  background: #f0f0f0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 2em;
}

.article_contents .check_point figure {
  width: 224px;
  flex-shrink: 0;
}

.article_contents .check_point figure img {
  width: 100%;
}

.article_contents .check_point .text {
  padding-left: 20px;
}

.article_contents .check_point .text p {
  font-weight: bold;
  font-size: 1.3rem;
}

.article_contents .check_point .text a {
  font-size: 1.2rem;
  text-decoration: underline;
  color: #323232;
}

.article_contents .check_point .text a:hover {
  color: #DA380C;
}

.article_contents .related_article {
  border: #555555 solid 2px;
  padding: 20px;
  margin-bottom: 25px;
}

.article_contents .related_article h3 {
  font-weight: bold;
  line-height: 1;
  padding-bottom: 10px;
}

.article_contents .related_article .item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 15px;
}

.article_contents .related_article .item figure {
  width: 100px;
  flex-shrink: 0;
}

.article_contents .related_article .item figure img {
  border-radius: 4px;
}

.article_contents .related_article .item .text {
  padding-left: 15px;
}

.article_contents .related_article .item .text .category {
  text-align: left;
  color: #DA380C;
  width: 100%;
  line-height: 1.2;
}

.article_contents .related_article .item .text .category em {
  font-size: 1.2rem;
  font-weight: bold;
}

.article_contents .related_article .item .text .category span {
  padding-left: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.article_contents .related_article .item .text p a {
  font-size: 1.5rem;
  color: #323232;
  text-decoration: underline;
}

.article_contents .related_article .item .text p a:hover {
  color: #DA380C;
}

.article_contents .pages {
  border: #555555 solid 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article_contents .pages .item {
  width: 50%;
  text-align: center;
  padding: 30px 30px 30px 40px;
  position: relative;
}

.article_contents .pages .item a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
  z-index: 10;
}

.article_contents .pages .item a:hover ~ em,
.article_contents .pages .item a:hover ~ p,
.article_contents .pages .item a:hover ~ i {
  color: #DA380C;
}

.article_contents .pages .item em {
  font-weight: bold;
  font-size: 1.4rem;
  padding-bottom: 10px;
  display: block;
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

.article_contents .pages .item p {
  line-height: 1.5;
  font-size: 1.5rem;
  text-align: left;
  color: #323232;
  text-decoration: underline;
  transition: all 0.2s ease;
  backface-visibility: hidden;
  font-feature-settings: "palt";
  text-align: justify;
}

.article_contents .pages .item .icon-left {
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -0.5em;
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

.article_contents .pages .item .icon-right {
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -0.5em;
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

.article_contents .pages .item + .item {
  padding: 30px 40px 30px 30px;
}

.article_contents .pages .item + .item:before {
  content: "";
  width: 1px;
  height: calc(100% - 40px);
  position: absolute;
  left: 0;
  top: 20px;
  background: #888888;
}

.article_contents .partner_slide.swiper-container {
  margin: 0px 0 2em;
  padding: 0;
}

.article_contents .partner_slide.swiper-container .swiper-slide {
  width: auto;
  margin: 0;
}

.article_contents .partner_slide.swiper-container .swiper-button-next {
  background-image: none;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 50px;
}

.article_contents .partner_slide.swiper-container .swiper-button-next i {
  font-size: 3rem;
}

.article_contents .partner_slide.swiper-container .swiper-button-prev {
  background-image: none;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 50px;
}

.article_contents .partner_slide.swiper-container .swiper-button-prev i {
  font-size: 3rem;
}

.article_contents .partner_feature {
  border-top: #aaaaaa dotted 2px;
  padding: 20px 0;
}

.article_contents .partner_feature h3 {
  font-weight: bold;
  padding-bottom: 20px;
}

.article_contents .partner_feature .partner_feature_list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -9px;
  margin-bottom: -9px;
}

.article_contents .partner_feature .partner_feature_list li {
  font-size: 1.3rem;
  border: #999999 solid 2px;
  line-height: 1;
  padding: 6px 10px;
  margin-left: 9px;
  margin-bottom: 9px;
}

.article_contents .branch {
  background: #f3f3f3;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.article_contents .branch figure {
  flex-shrink: 0;
  width: 150px;
}

.article_contents .branch figure a {
  display: block;
  border: #000 solid 1px;
}

.article_contents .branch .text {
  width: calc(100% - 150px);
  padding-left: 20px;
  box-sizing: border-box;
}

.article_contents .branch .text h3 {
  margin-bottom: 15px;
}

.article_contents .branch .text h3 i {
  color: #DA380C;
  font-size: 1rem;
  margin-right: 5px;
}

.article_contents .branch .text h3 a {
  color: #DA380C;
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: underline;
}

.article_contents .branch .text table {
  width: 100%;
  border-bottom: #999999 dotted 1px;
}

.article_contents .branch .text table th {
  text-align: left;
  border-top: #999999 dotted 1px;
  padding: 8px 0;
  font-size: 1.2rem;
  width: 90px;
}

.article_contents .branch .text table td {
  text-align: left;
  border-top: #999999 dotted 1px;
  padding: 5px 0;
  font-size: 1.2rem;
}

.article_contents .branch:last-child {
  margin-bottom: 0;
}

.article_contents .case_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-bottom: -20px;
}

.article_contents .case_box figure {
  margin-left: 20px;
  margin-bottom: 20px;
}

.article_contents .case_box figure figcaption {
  font-size: 1.4rem;
  padding-top: 5px;
}

.article_contents + .article_contents {
  margin-top: 30px;
}

.area_box_toggle {
  margin-top: 10px;
  margin-bottom: 15px;
}

.area_box_toggle dl {
  margin-top: 5px;
  width: 100%;
}

.area_box_toggle dl dt.toggle {
  background: #f3f3f3;
  height: 40px;
  padding-left: 10px;
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.area_box_toggle dl dt.toggle:before {
  content: "";
  width: 12px;
  height: 3px;
  background: #000;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -2px;
}

.area_box_toggle dl dt.toggle:after {
  content: "";
  width: 12px;
  height: 3px;
  background: #000;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -2px;
  transition: all 0.2s ease;
  backface-visibility: hidden;
  transform: rotate(90deg);
}

.area_box_toggle dl dt.toggle.on:after {
  transform: rotate(0deg);
}

.area_box_toggle dl dd {
  display: none;
  padding: 0 10px 10px;
  background: #f3f3f3;
  font-size: 1.4rem;
}

.aside .aside_rectangle {
  margin-bottom: 20px;
}

.aside .aside_box {
  background: #fff;
  border-radius: 10px;
  border: #888888 solid 2px;
  margin-bottom: 20px;
}

.aside .aside_box .aside_box_item {
  padding: 25px;
}

.aside .aside_box .aside_box_item h3 {
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
}

.aside .aside_box .aside_box_item p {
  font-size: 1.3rem;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 1px;
  padding: 20px 0;
}

.aside .aside_box .aside_box_item p.area_text {
  text-align: left;
  padding-top: 10px;
}

.aside .aside_box .aside_box_item .blue_btn {
  margin: 0 auto;
  width: 200px;
  height: 35px;
}

.aside .aside_box .aside_box_item .blue_btn span {
  font-size: 1.4rem;
}

.aside .aside_box .aside_box_item .blue_btn_large {
  margin: 20px 0 10px;
}

.aside .aside_box .aside_box_item .red.bold {
  color: #DA380C;
  font-weight: bold;
}

.aside .aside_box .aside_box_item .btn_box .blue_btn_large + .blue_btn_large {
  margin-top: 0;
}

.aside .aside_box .aside_box_item .unit_price {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 600;
}

.aside .aside_box .aside_box_item .unit_price em {
  font-size: 2.5rem;
  font-weight: 600;
}

.aside .aside_box .aside_box_item .area_tag {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin: 20px 0 10px;
}

.aside .aside_box .aside_box_item .area_tag li {
  margin-right: 10px;
  margin-bottom: 10px;
}

.aside .aside_box .aside_box_item .area_tag li a {
  font-size: 1.3rem;
  padding: 6px 8px;
  line-height: 1;
  border: #999999 solid 2px;
  display: inline-block;
  color: #323232;
}

.aside .aside_box .aside_box_item + .aside_box_item {
  border-top: #aaaaaa dotted 2px;
  padding: 15px 25px 10px;
}

.aside .aside_box .aside_nav li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #DA380C;
  padding: 15px 0;
}

.aside .aside_box .aside_nav li a i {
  flex-shrink: 0;
  font-size: 2.8rem;
  width: 40px;
  text-align: center;
}

.aside .aside_box .aside_nav li a i.icon-partners {
  font-size: 2.5rem;
}

.aside .aside_box .aside_nav li a span {
  padding-left: 10px;
}

.aside .aside_box .aside_nav li a span em {
  line-height: 1;
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
}

.aside .aside_box .aside_nav li a span small {
  padding-top: 5px;
  display: block;
  line-height: 1;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.aside .aside_box .aside_pick_up_list {
  padding: 20px 18px;
}

.aside .aside_box .aside_pick_up_list h3 {
  font-weight: 700;
  font-size: 1.6rem;
  text-transform: uppercase;
  padding-bottom: 20px;
}

.aside .aside_box .aside_pick_up_list .list_item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
}

.aside .aside_box .aside_pick_up_list .list_item figure {
  width: 100px;
  flex-shrink: 0;
}

.aside .aside_box .aside_pick_up_list .list_item figure img {
  border-radius: 4px;
}

.aside .aside_box .aside_pick_up_list .list_item .text {
  padding-left: 10px;
}

.aside .aside_box .aside_pick_up_list .list_item .text .category {
  text-align: left;
  color: #DA380C;
  width: 100%;
  line-height: 1.2;
}

.aside .aside_box .aside_pick_up_list .list_item .text .category em {
  font-size: 1.1rem;
  font-weight: bold;
}

.aside .aside_box .aside_pick_up_list .list_item .text .category span {
  padding-left: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.aside .aside_box .aside_pick_up_list .list_item .text p {
  line-height: 1.35;
}

.aside .aside_box .aside_pick_up_list .list_item .text p a {
  font-size: 1.2rem;
  color: #323232;
  text-decoration: underline;
}

.aside .aside_box .aside_pick_up_list .list_item .text p a:hover {
  color: #DA380C;
}

.aside .aside_box .aside_pick_up_list .list_item:last-child {
  margin-bottom: 0;
}

.content_heading {
  font-size: 1.7rem;
  padding-bottom: 20px;
  font-weight: bold;
}

@media screen and (max-width: 740px) {
  .article_title {
    border-radius: 0px;
    margin-bottom: 30px;
  }
  .article_title figure {
    height: 280px;
  }
  .article_title .text {
    padding: 20px;
  }
  .article_title .text .category em {
    font-size: 1.2rem;
  }
  .article_title .text .category span {
    padding-left: 5px;
    font-size: 1.1rem;
  }
  .article_title .text h1 {
    font-size: 2rem;
  }
  .article_title .text .release_time {
    font-size: 1.2rem;
  }
  .article_title .tag_list {
    padding: 12px 14px;
  }
  .article_title .tag_list li a {
    height: 24px;
    padding: 0 10px;
    border-radius: 12px;
    font-size: 1.2rem;
    margin: 8px 6px;
  }
  .article_contents {
    padding: 25px 15px 15px;
    border-radius: 0px;
  }
  .article_contents .large_headline {
    padding-left: 15px;
    font-size: 1.7rem;
    margin: 60px -15px 30px;
  }
  .article_contents .large_headline:first-child {
    margin-top: 0;
  }
  .article_contents .heading {
    font-size: 1.4rem;
  }
  .article_contents .table_contents {
    padding: 15px;
  }
  .article_contents .article_advertise {
    padding: 15px;
    background: #f0f0f0;
    display: block;
    margin-bottom: 60px;
  }
  .article_contents .article_advertise figure {
    width: 100%;
    flex-shrink: 0;
  }
  .article_contents .article_advertise figure img {
    width: 100%;
  }
  .article_contents .article_advertise .text {
    padding-left: 0px;
    padding-top: 15px;
  }
  .article_contents .article_advertise .text p {
    padding: 5px 0;
  }
  .article_contents .article_table {
    font-size: 1.2rem;
  }
  .article_contents .article_table thead tr th {
    padding: 10px;
  }
  .article_contents .article_table tbody tr th {
    padding: 10px;
  }
  .article_contents .article_table tbody tr td {
    padding: 10px;
  }
  .article_contents .article_btn {
    max-width: 100%;
    width: 300px;
    height: 40px;
    border-radius: 20px;
  }
  .article_contents .article_btn span {
    font-size: 1.4rem;
  }
  .article_contents .article_red_box {
    padding: 15px;
  }
  .article_contents .check_point {
    padding: 15px;
    display: block;
    margin-bottom: 2em;
  }
  .article_contents .check_point figure {
    width: 100%;
    flex-shrink: 0;
  }
  .article_contents .check_point figure img {
    width: 100%;
  }
  .article_contents .check_point .text {
    padding-left: 0px;
    padding-top: 10px;
  }
  .article_contents .related_article {
    padding: 15px;
    margin-bottom: 25px;
  }
  .article_contents .related_article h3 {
    font-size: 1.4rem;
    padding-bottom: 0;
  }
  .article_contents .related_article .item .text {
    padding-left: 10px;
  }
  .article_contents .related_article .item .text .category em {
    font-size: 1.1rem;
  }
  .article_contents .related_article .item .text .category span {
    padding-left: 5px;
    font-size: 1.1rem;
  }
  .article_contents .related_article .item .text p a {
    font-size: 1.4rem;
  }
  .article_contents .pages {
    align-items: flex-start;
  }
  .article_contents .pages .item {
    width: 50%;
    text-align: center;
    padding: 15px 15px 15px 15px;
    position: relative;
  }
  .article_contents .pages .item em {
    font-size: 1.4rem;
  }
  .article_contents .pages .item p {
    font-size: 1.3rem;
  }
  .article_contents .pages .item .icon-left {
    left: 15px;
    top: 20px;
    margin-top: 0;
  }
  .article_contents .pages .item .icon-right {
    right: 15px;
    top: 20px;
    margin-top: 0;
  }
  .article_contents .pages .item + .item {
    padding: 15px 15px 15px 15px;
  }
  .article_contents .pages .item + .item:before {
    height: calc(100% - 30px);
    top: 15px;
  }
  .article_contents .partner_slide.swiper-container .swiper-slide img {
    max-width: 250px;
  }
  .article_contents .partner_slide.swiper-container .swiper-button-next {
    right: 10px;
  }
  .article_contents .partner_slide.swiper-container .swiper-button-next i {
    font-size: 2.5rem;
  }
  .article_contents .partner_slide.swiper-container .swiper-button-prev {
    left: 10px;
  }
  .article_contents .partner_slide.swiper-container .swiper-button-prev i {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 740px) and (max-width: 320px) {
  .article_contents .partner_slide.swiper-container .swiper-slide img {
    max-width: 200px;
  }
  .article_contents .partner_slide.swiper-container .swiper-button-next {
    right: 10px;
  }
  .article_contents .partner_slide.swiper-container .swiper-button-next i {
    font-size: 2rem;
  }
  .article_contents .partner_slide.swiper-container .swiper-button-prev {
    left: 10px;
  }
  .article_contents .partner_slide.swiper-container .swiper-button-prev i {
    font-size: 2rem;
  }
}

@media screen and (max-width: 740px) {
  .article_contents .partner_feature h3 {
    font-size: 1.4rem;
    color: #DA380C;
    padding-bottom: 10px;
  }
  .article_contents .partner_feature .partner_feature_list {
    padding-top: 10px;
    margin-left: -8px;
    margin-bottom: -8px;
  }
  .article_contents .partner_feature .partner_feature_list li {
    font-size: 1.2rem;
    padding: 6px 8px;
    margin-left: 8px;
    margin-bottom: 8px;
  }
  .article_contents .partner_feature .unit_price {
    font-size: 1.6rem;
    font-weight: 600;
  }
  .article_contents .partner_feature .unit_price em {
    font-size: 2.2rem;
    font-weight: 600;
  }
  .article_contents .branch {
    border-radius: 10px;
    padding: 20px;
    display: block;
    margin-bottom: 15px;
    position: relative;
  }
  .article_contents .branch figure {
    width: 70px;
  }
  .article_contents .branch .text {
    width: 100%;
    padding-left: 0px;
  }
  .article_contents .branch .text h3 {
    position: absolute;
    left: 110px;
    top: 30px;
    margin-bottom: 0px;
    line-height: 1.35;
    padding-right: 20px;
  }
  .article_contents .branch .text h3 a {
    font-size: 1.4rem;
  }
  .article_contents .branch .text table {
    margin-top: 20px;
  }
  .article_contents .branch .text table th {
    padding: 6px 0;
    font-size: 1.2rem;
    width: 80px;
  }
  .article_contents .branch .text table td {
    padding: 6px 0;
    font-size: 1.2rem;
  }
  .article_contents .case_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-left: 0px;
    margin-bottom: -20px;
  }
  .article_contents .case_box figure {
    width: calc((100% - 15px)/2);
    margin-left: 0px;
    margin-bottom: 20px;
  }
  .article_contents .case_box figure img {
    width: 100%;
  }
  .aside {
    box-sizing: border-box;
    padding: 0 20px;
    margin-top: 40px;
  }
  .aside .aside_rectangle {
    text-align: center;
    margin-bottom: 40px;
  }
  .aside .aside_box {
    border-radius: 8px;
  }
  .aside .aside_box .aside_box_item + .aside_box_item {
    padding: 15px 20px 10px;
  }
  .aside .aside_box .btn_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0;
  }
  .aside .aside_box .btn_box .blue_btn_large {
    margin: 0;
    height: 50px;
    width: calc(50% - 6px);
    border-radius: 7px;
  }
  .aside .aside_box .btn_box .blue_btn_large span {
    line-height: 1.2;
    text-align: center;
  }
  .aside .aside_box .aside_pick_up_list {
    padding: 16px 16px 16px;
  }
  .aside .aside_box .aside_pick_up_list h3 {
    padding-bottom: 10px;
  }
  .content_heading {
    font-size: 1.4rem;
    padding-bottom: 15px;
    padding-left: 10px;
  }
}

.ttl_landi_counter {
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F5F5F5;
  position: relative;
}

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

.ttl_landi_counter .ttl_landi_txt h1 em {
  display: block;
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 1;
  padding-bottom: 30px;
}

.ttl_landi_counter .ttl_landi_txt h1 span {
  width: 275px;
  height: 40px;
  border-radius: 20px;
  background: #DA380C;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  margin: 15px auto 0;
}

.ttl_landi_counter figure {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4520px;
  height: 98px;
  background: url(../img/town.png) repeat-x center center;
  background-size: 2260px 98px;
  animation: slide 60s linear infinite;
}

@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-2260px, 0, 0);
  }
}

@media screen and (max-width: 740px) {
  .ttl_landi_counter {
    width: 100%;
    padding: 30px 0 80px;
    height: auto;
    display: block;
  }
  .ttl_landi_counter .ttl_landi_txt {
    text-align: center;
  }
  .ttl_landi_counter .ttl_landi_txt h1 {
    width: 240px;
    margin: 0 auto;
  }
  .ttl_landi_counter .ttl_landi_txt h1 em {
    display: block;
    font-weight: bold;
    font-size: 1.6rem;
  }
  .ttl_landi_counter .ttl_landi_txt h1 span {
    width: 100%;
    height: 32px;
    border-radius: 16px;
    font-size: 1.6rem;
    margin: 10px auto 0;
  }
}

.point_list.counter .item h3 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 30px;
}

@media screen and (max-width: 740px) {
  .point_list.counter .item h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

.point {
  width: 1040px;
  margin: 0 auto;
  padding: 80px 0;
}

.point .point_ttl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.point .point_ttl em {
  width: 200px;
  height: 66px;
  background: #DA380C;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 3.4rem;
  position: relative;
}

.point .point_ttl em:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 33px 0 33px 24px;
  border-color: transparent transparent transparent #DA380C;
  position: absolute;
  left: 100%;
  top: 0;
}

.point .point_ttl span {
  font-size: 2.8rem;
  font-weight: 600;
  margin-left: 40px;
}

.point .point_ttl + p {
  padding: 20px 0 40px;
}

.point .point_box {
  display: flex;
  justify-content: space-between;
}

.point .point_box .item {
  width: 480px;
  margin-bottom: 60px;
}

.point .point_box .item h4 {
  padding: 20px 0;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.5;
}

.point .point_box .item h4 small {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
}

.point:last-child {
  padding-bottom: 0;
}

@media screen and (max-width: 740px) {
  .point {
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px 0;
    box-sizing: border-box;
  }
  .point .point_ttl {
    display: block;
  }
  .point .point_ttl em {
    width: 160px;
    height: 40px;
    font-size: 2rem;
  }
  .point .point_ttl em:before {
    border-width: 20px 0 20px 16px;
  }
  .point .point_ttl span {
    font-size: 2rem;
    font-weight: 600;
    margin-left: 0px;
    display: block;
    padding-top: 10px;
  }
  .point .point_ttl + p {
    padding: 10px 0 20px;
  }
  .point .point_box {
    display: block;
  }
  .point .point_box .item {
    width: 100%;
    margin-bottom: 30px;
  }
  .point .point_box .item figure {
    width: 100%;
  }
  .point .point_box .item figure img {
    width: 100%;
  }
  .point .point_box .item h4 {
    padding: 15px 0;
    font-size: 1.6rem;
    text-align: center;
  }
  .point .point_box .item h4 small {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
  }
  .point .point_box .item:last-child {
    margin-bottom: 0;
  }
}

.service {
  overflow: hidden;
}

.service .Benefits {
  width: 800px;
  border: #DA380C solid 4px;
  padding: 36px;
  box-sizing: border-box;
  background: #fff;
  position: relative;
  z-index: 10;
  text-align: center;
}

.service .Benefits em {
  width: 238px;
  height: 54px;
  background: #DA380C;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2.6rem;
  font-weight: 600;
  margin: 0 auto;
}

.service .Benefits h2 {
  font-size: 2.8rem;
  color: #DA380C;
  font-weight: 600;
  line-height: 1.5;
  margin: 30px 0;
}

.service .Benefits p {
  text-align: center;
}

@media screen and (max-width: 740px) {
  .service {
    overflow: hidden;
  }
  .service .Benefits {
    width: 100%;
    border: #DA380C solid 2px;
    padding: 16px;
  }
  .service .Benefits em {
    width: 218px;
    height: 38px;
    font-size: 1.6rem;
  }
  .service .Benefits h2 {
    font-size: 2rem;
    color: #DA380C;
    font-weight: 600;
    line-height: 1.5;
    margin: 15px 0;
  }
  .service .Benefits p {
    text-align: center;
  }
}

.counter_exhibition {
  width: 960px;
  margin: 0 auto;
  padding-bottom: 80px;
  display: flex;
  justify-content: space-between;
}

.counter_exhibition .map {
  flex-shrink: 0;
  width: 460px;
  height: 312px;
  position: relative;
}

.counter_exhibition .map iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}

.counter_exhibition .text {
  width: 460px;
}

.counter_exhibition .text p small {
  display: block;
  font-size: 1.4rem;
}

@media screen and (max-width: 740px) {
  .counter_exhibition {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    margin: 0 auto;
    padding-bottom: 40px;
    display: block;
  }
  .counter_exhibition .map {
    flex-shrink: 0;
    width: 100%;
    height: 312px;
    position: relative;
  }
  .counter_exhibition .map iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
  }
  .counter_exhibition .text {
    width: 100%;
    text-align: center;
    padding-top: 15px;
  }
  .counter_exhibition .text p {
    text-align: center;
  }
  .counter_exhibition .text p small {
    display: block;
    font-size: 1.2rem;
  }
}

.reserve {
  width: 960px;
  margin: 0 auto;
  padding-bottom: 80px;
  display: flex;
  justify-content: space-between;
}

.reserve .item {
  width: 460px;
  background: #FAFAFA;
  text-align: center;
  padding: 50px 25px 25px;
  box-sizing: border-box;
}

.reserve .item h3 {
  font-weight: bold;
  font-size: 2rem;
}

.reserve .item p {
  text-align: center;
  padding: 15px 0 30px;
}

.reserve .item a.tel {
  width: 350px;
  height: 78px;
  border-radius: 39px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  pointer-events: none;
}

.reserve .item .rsv_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 200px;
  height: 40px;
  border-radius: 20px;
  background: #DA380C;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}

@media screen and (max-width: 740px) {
  .reserve {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
    padding-bottom: 0px;
    display: block;
  }
  .reserve .item {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
  }
  .reserve .item h3 {
    font-size: 1.8rem;
  }
  .reserve .item p {
    padding: 10px 0 20px;
  }
  .reserve .item a.tel {
    width: 100%;
    height: 58px;
    border-radius: 29px;
    pointer-events: auto;
  }
  .reserve .item a.tel img {
    width: auto;
    height: 38px;
  }
  .reserve .item .rsv_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 200px;
    height: 40px;
    border-radius: 20px;
    background: #DA380C;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
  }
}

.ttl_landi_area {
  width: 100%;
  height: 180px;
  background: #F5F5F5 url(../img/town.png) no-repeat center bottom;
  background-size: auto 98px;
}

@media screen and (max-width: 740px) {
  .ttl_landi_area {
    width: 100%;
    height: 120px;
    background: #F5F5F5 url(../img/town.png) no-repeat center bottom;
    background-size: auto 66px;
  }
}

.area {
  text-align: center;
  margin-top: 90px;
}

.area h2 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.area p {
  text-align: center;
  margin-bottom: 50px;
}

.area .area_list {
  margin: 100px auto;
  display: flex;
  justify-content: center;
}

.area .area_list dl {
  margin: 0 8px;
}

.area .area_list dl dt {
  width: 100px;
  height: 32px;
  background: #F0F0F0;
  border-radius: 16px;
  color: #DA380C;
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.area .area_list dl dd {
  text-align: center;
  line-height: 2.4;
}

.area .area_list dl dd a.disabled {
  pointer-events: none;
  color: #C0C0C0;
}

.area .area_list dl dd a:hover {
  color: #DA380C;
  text-decoration: underline;
}

@media screen and (max-width: 740px) {
  .area {
    text-align: center;
    margin-top: 40px;
  }
  .area h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .area p {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 20px;
  }
  .area figure {
    padding: 0 40px;
  }
  .area .area_list {
    margin: 40px auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .area .area_list dl {
    margin: 0 0 30px;
    min-width: 33%;
  }
  .area .area_list dl dt {
    width: 90px;
    height: 24px;
    border-radius: 12px;
    font-size: 1.2rem;
    margin: 0 auto 10px;
  }
  .area .area_list dl dd {
    text-align: center;
    line-height: 2;
  }
  .area .area_list dl dd a:hover {
    color: #DA380C;
    text-decoration: underline;
  }
}

.exhibition_box {
  margin: 100px 0;
}

.exhibition_box .counter_exhibition {
  padding-bottom: 40px;
}

.exhibition_box .exhibition_reserve {
  width: 1000px;
  padding: 20px 60px 0;
  box-sizing: border-box;
  margin: 0 auto;
  background: #FAFAFA;
}

.exhibition_box .exhibition_reserve .reserve_ttl {
  width: 100%;
  font-size: 2.2rem;
  padding-bottom: 6px;
  font-weight: 600;
  color: #DA380C;
  text-align: center;
  border-bottom: #DA380C solid 2px;
}

.exhibition_box .exhibition_reserve .reserve {
  width: 100%;
  padding: 30px 0;
}

.exhibition_box .exhibition_reserve .reserve .item {
  width: 400px;
  padding: 0px;
}

.exhibition_box .exhibition_reserve .reserve .item .rsv_btn {
  margin: 19px auto;
}

.exhibition_box .exhibition_reserve .reserve .item p {
  padding-bottom: 0;
}

.exhibition_box .red_btn_large {
  margin-top: 100px;
}

@media screen and (max-width: 740px) {
  .exhibition_box {
    margin: 40px 0;
  }
  .exhibition_box .counter_exhibition {
    padding-bottom: 20px;
  }
  .exhibition_box .exhibition_reserve {
    width: calc(100% - 40px);
    padding: 20px 20px 0;
    box-sizing: border-box;
  }
  .exhibition_box .exhibition_reserve .reserve_ttl {
    width: 100%;
    font-size: 1.8rem;
    padding-bottom: 2px;
    border-bottom: #DA380C solid 1px;
  }
  .exhibition_box .exhibition_reserve .reserve {
    width: 100%;
    padding: 20px 0;
  }
  .exhibition_box .exhibition_reserve .reserve .item {
    width: 100%;
    padding: 0px;
  }
  .exhibition_box .exhibition_reserve .reserve .item .rsv_btn {
    margin: 30px auto 0;
  }
  .exhibition_box .exhibition_reserve .reserve .item p {
    padding-bottom: 0;
  }
  .exhibition_box .red_btn_large {
    margin-top: 40px;
  }
}

.service_box {
  background: #F0F0F0;
  width: 100%;
  overflow: hidden;
  padding-bottom: 80px;
}

.service_box .inner {
  width: 1000px;
  margin: 80px auto 0;
  background: #fff;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.16);
  text-align: center;
  padding: 60px;
  box-sizing: border-box;
}

.service_box .inner .logo {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 55px;
}

.service_box .inner .logo span {
  width: 132px;
  height: 32px;
  background: #DA380C;
  border-radius: 4px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  margin-left: 28px;
}

.service_box .inner .text_box {
  display: flex;
  justify-content: space-between;
}

.service_box .inner .text_box figure {
  flex-shrink: 0;
}

.service_box .inner .text_box .text {
  padding-left: 30px;
  position: relative;
}

.service_box .inner .text_box .text a.more {
  position: absolute;
  right: 0;
  bottom: 0;
}

.service_box .inner .text_box_02 {
  margin-top: 112px;
}

.service_box .inner .text_box_02 h3 {
  font-weight: 600;
  font-size: 2.8rem;
  margin-bottom: 30px;
}

.service_box .inner .text_box_02 figure {
  margin-bottom: 35px;
}

.service_box .inner .text_box_02 .red_btn_large {
  margin-top: 35px;
}

@media screen and (max-width: 740px) {
  .service_box {
    width: 100%;
    padding: 0 15px 20px;
    box-sizing: border-box;
  }
  .service_box .inner {
    width: 100%;
    margin: 40px auto 0;
    background: #fff;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.16);
    text-align: center;
    padding: 25px 15px;
    box-sizing: border-box;
  }
  .service_box .inner .logo {
    display: block;
    margin-bottom: 25px;
  }
  .service_box .inner .logo img {
    width: 170px;
    height: auto;
  }
  .service_box .inner .logo span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 170px;
    height: 22px;
    border-radius: 11px;
    font-size: 1.1rem;
    margin: 10px auto 0;
  }
  .service_box .inner .text_box {
    display: block;
  }
  .service_box .inner .text_box figure {
    flex-shrink: 0;
  }
  .service_box .inner .text_box .text {
    padding-left: 0px;
    position: relative;
  }
  .service_box .inner .text_box .text p {
    padding: 10px 0;
  }
  .service_box .inner .text_box .text a.more {
    position: relative;
    margin: 0 auto;
  }
  .service_box .inner .text_box_02 {
    margin-top: 40px;
  }
  .service_box .inner .text_box_02 h3 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .service_box .inner .text_box_02 figure {
    margin-bottom: 10px;
  }
  .service_box .inner .text_box_02 .red_btn_large {
    margin-top: 15px;
  }
}

.pageTop {
  position: fixed;
  right: 40px;
  bottom: -68px;
  z-index: 100;
  transition: all 0.4s cubic-bezier(1, 0, 0, 1);
  backface-visibility: hidden;
  opacity: 0;
}

.pageTop.on {
  bottom: 60px;
  opacity: 1;
}

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

.youtube_box {
  width: 1040px;
  margin: 0 auto 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.youtube_box .item {
  width: 480px;
  height: 267px;
  position: relative;
}

.youtube_box .item iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}

@media screen and (max-width: 740px) {
  .youtube_box {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto 20px;
    display: block;
  }
  .youtube_box .item {
    width: 100%;
    height: auto;
    padding-top: 55.6%;
  }
  .youtube_box .item + .item {
    margin-top: 20px;
  }
}

.ttl_landi_frontpage {
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  position: relative;
}

.ttl_landi_frontpage .frontpage_txt {
  text-align: left;
  margin-left: -138px;
}

.ttl_landi_frontpage .frontpage_txt h1 em {
  display: block;
  font-weight: bold;
  font-size: 2.9rem;
  line-height: 1.42;
  padding-bottom: 30px;
  font-feature-settings: "palt";
  text-align: justify;
  white-space: nowrap;
}

.ttl_landi_frontpage .frontpage_txt h1 em span {
  font-weight: 200;
  color: #DA380C;
}

.ttl_landi_frontpage #aoi {
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: 120px;
  z-index: 10;
}

.ttl_landi_frontpage #scroll {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4520px;
  height: 98px;
  background: url(../img/town.png) repeat-x center center;
  background-size: 2260px 98px;
  animation: slide 60s linear infinite;
}

@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-2260px, 0, 0);
  }
}

@media screen and (max-width: 740px) {
  .ttl_landi_frontpage {
    width: 100%;
    padding: 33.33333vw 0 38.66667vw;
    height: auto;
    display: block;
  }
  .ttl_landi_frontpage .frontpage_txt {
    text-align: left;
    margin: 0;
  }
  .ttl_landi_frontpage .frontpage_txt h1 {
    width: 49.8%;
    margin: 0;
    padding-left: 20px;
    box-sizing: border-box;
  }
  .ttl_landi_frontpage .frontpage_txt h1 em {
    text-align: center;
    display: block;
    font-weight: bold;
    font-size: 3.2vw;
    padding-bottom: 10px;
    white-space: nowrap;
  }
  .ttl_landi_frontpage #aoi {
    position: absolute;
    left: auto;
    right: 10px;
    bottom: 0;
    margin-left: 0;
    z-index: 10;
    width: 49.8%;
  }
  .ttl_landi_frontpage #aoi img {
    width: 100%;
    height: auto;
  }
}

.modal_box {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  transition: all 0.5s ease;
  backface-visibility: hidden;
  opacity: 0;
  transform: scale(1.1);
  pointer-events: none;
}

.modal_box.on {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.modal_box .modal_box_item {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 924px;
  max-width: 100%;
  box-sizing: border-box;
  height: 70%;
  background: #fff;
  z-index: 10;
  transition: all 0.4s ease;
  backface-visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.modal_box .modal_box_item.on {
  opacity: 1;
  pointer-events: auto;
}

.modal_box .modal_box_item .modal_box_cover {
  overflow-y: auto;
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
}

.modal_box .modal_box_item .modal_box_cover:before {
  content: "";
  position: absolute;
  right: 0;
  top: -50px;
  width: 45px;
  height: 2px;
  background: #fff;
  z-index: 100;
  transform: rotate(45deg);
  pointer-events: none;
}

.modal_box .modal_box_item .modal_box_cover:after {
  content: "";
  position: absolute;
  right: 0;
  top: -50px;
  width: 45px;
  height: 2px;
  background: #fff;
  z-index: 100;
  transform: rotate(-45deg);
  pointer-events: none;
}

.modal_box .modal_box_item .modal_box_cover .modal_box_inner {
  width: 100%;
  padding: 76px 76px 100px;
  box-sizing: border-box;
}

.modal_box .modal_box_item .modal_box_cover .modal_box_inner h3 small {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 1.6rem;
  position: relative;
  line-height: 1.25;
}

.modal_box .modal_box_item .modal_box_cover .modal_box_inner h3 small:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #DA380C;
}

.modal_box .modal_box_item .modal_box_cover .modal_box_inner h3 em {
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
}

.modal_box .modal_box_item .modal_box_cover .modal_box_inner h4 {
  background: #646464;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  margin-bottom: 30px;
  margin-top: 76px;
}

.modal_box .modal_box_item .modal_box_cover .modal_box_inner ol li {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1em;
}

.modal_box .modal_box_item .modal_box_cover .modal_box_inner ol li em {
  width: 240px;
  flex-shrink: 0;
}

.modal_box .modal_box_item .modal_box_cover .modal_box_inner .red_btn_large {
  margin-top: 100px;
}

.modal_box #modal_box_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
  background: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 740px) {
  .modal_box .modal_box_item {
    width: 96%;
    max-width: 100%;
    box-sizing: border-box;
    height: 86%;
    position: fixed;
    left: 2%;
    top: auto;
    bottom: 1.5%;
    transform: none;
  }
  .modal_box .modal_box_item .modal_box_cover:before {
    top: -30px;
  }
  .modal_box .modal_box_item .modal_box_cover:after {
    top: -30px;
  }
  .modal_box .modal_box_item .modal_box_cover .modal_box_inner {
    width: 100%;
    padding: 15px 15px 30px;
    box-sizing: border-box;
  }
  .modal_box .modal_box_item .modal_box_cover .modal_box_inner h3 small {
    display: inline-block;
    font-family: "JetBrains Mono", monospace;
    font-size: 1.6rem;
    position: relative;
    line-height: 1.25;
  }
  .modal_box .modal_box_item .modal_box_cover .modal_box_inner h3 small:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #DA380C;
  }
  .modal_box .modal_box_item .modal_box_cover .modal_box_inner h3 em {
    display: block;
    font-size: 2.4rem;
    font-weight: bold;
  }
  .modal_box .modal_box_item .modal_box_cover .modal_box_inner h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-top: 36px;
  }
  .modal_box .modal_box_item .modal_box_cover .modal_box_inner ol li {
    display: block;
    margin-bottom: 1em;
  }
  .modal_box .modal_box_item .modal_box_cover .modal_box_inner ol li em {
    display: block;
    width: 100%;
    flex-shrink: 0;
  }
  .modal_box .modal_box_item .modal_box_cover .modal_box_inner ol li p {
    padding-left: 1em;
  }
  .modal_box .modal_box_item .modal_box_cover .modal_box_inner .red_btn_large {
    margin-top: 30px;
  }
  .modal_box #modal_box_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    background: rgba(0, 0, 0, 0.6);
  }
}

.docment_box {
  background: #F5F5F5;
  padding: 52px 0;
  width: 100%;
  position: relative;
}

.docment_box:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 50vw;
  height: 100%;
  background: #F5F5F5;
  z-index: -1;
}

.docment_box::after {
  content: "";
  position: absolute;
  right: 50%;
  top: 0;
  width: 50vw;
  height: 100%;
  background: #F5F5F5;
  z-index: -1;
}

.docment_box .docment_box_inner {
  display: flex;
  justify-content: flex-start;
}

.docment_box .docment_box_inner .text {
  width: calc(100% - 400px);
  padding-left: 50px;
  box-sizing: border-box;
}

.docment_box .docment_box_inner .text h3 {
  line-height: 1.5;
  font-feature-settings: "palt";
  text-align: justify;
}

.docment_box .docment_box_inner .text h4 {
  font-size: 1.6rem;
  margin-top: 1em;
}

.docment_box .docment_box_inner .text ol {
  font-size: 1.4rem;
}

.form_ttl {
  text-align: center;
  color: #DA380C;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  margin: 90px 0 60px;
}

@media screen and (max-width: 740px) {
  .docment_box {
    padding: 25px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
  }
  .docment_box:before {
    content: none;
  }
  .docment_box::after {
    content: none;
  }
  .docment_box .docment_box_inner {
    flex-direction: column;
  }
  .docment_box .docment_box_inner .text {
    width: 100%;
    padding-left: 0px;
    padding-top: 20px;
    box-sizing: border-box;
  }
  .docment_box .docment_box_inner .text h3 {
    line-height: 1.5;
    font-feature-settings: "palt";
    text-align: justify;
  }
  .docment_box .docment_box_inner .text h4 {
    font-size: 1.4rem;
    margin-top: 1em;
  }
  .docment_box .docment_box_inner .text ol {
    font-size: 1.3rem;
  }
  .form_ttl {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1;
    margin: 45px 0 30px;
  }
}

.thanks_section {
  width: 1000px;
  background: #fff;
  margin: 0 auto;
  text-align: center;
  padding: 40px 40px 60px;
  box-sizing: border-box;
}

.thanks_section h2 {
  font-weight: bold;
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.thanks_section p {
  text-align: center;
}

.thanks_section p + .btn_box {
  margin-top: 50px;
}

.thanks_section + .thanks_section {
  margin-top: 40px;
}

@media screen and (max-width: 740px) {
  .thanks_section {
    width: calc(100% - 40px) !important;
    padding: 20px;
  }
  .thanks_section h2 {
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .thanks_section p {
    text-align: left;
  }
  .thanks_section p + .btn_box {
    margin-top: 20px;
  }
  .thanks_section + .thanks_section {
    margin-top: 20px;
  }
}

.qa_contact {
  text-align: center;
  padding-top: 135px;
}

.qa_contact h2 {
  font-weight: bold;
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 40px;
}

.qa_contact .qa_contact_box {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}

.qa_contact .qa_contact_box .item {
  width: 175px;
  text-align: center;
}

.qa_contact .qa_contact_box .item h3 {
  font-size: 1.8rem;
  font-weight: bold;
}

.qa_contact .qa_contact_box .item p {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.5;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qa_contact .qa_contact_box .item .red_btn {
  width: 100%;
  height: 40px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #DA380C;
}

.qa_contact .qa_contact_box .item .red_btn span {
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
}

@media screen and (max-width: 740px) {
  .qa_contact {
    text-align: center;
    padding-top: 50px;
  }
  .qa_contact h2 {
    font-weight: bold;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0px;
  }
  .qa_contact .qa_contact_box {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .qa_contact .qa_contact_box .item {
    width: calc(50% - 10px);
    text-align: center;
    margin-top: 25px;
  }
  .qa_contact .qa_contact_box .item h3 {
    font-size: 1.6rem;
    font-weight: bold;
  }
  .qa_contact .qa_contact_box .item p {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.5;
    height: 50px;
  }
  .qa_contact .qa_contact_box .item .red_btn {
    width: 100%;
    height: 40px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #DA380C;
  }
  .qa_contact .qa_contact_box .item .red_btn span {
    color: #fff;
    font-weight: bold;
    font-size: 1.4rem;
  }
}

.recruitment_box {
  display: flex;
  justify-content: center;
  padding-top: 70px;
}

.recruitment_box .item figure {
  margin-bottom: 38px;
}

.recruitment_box .item .btn {
  width: 330px;
}

.recruitment_box .item + .item {
  margin-left: 70px;
}

@media screen and (max-width: 740px) {
  .recruitment_box {
    display: block;
    padding: 30px 20px;
  }
  .recruitment_box .item figure {
    margin-bottom: 16px;
  }
  .recruitment_box .item .btn {
    width: 100%;
  }
  .recruitment_box .item + .item {
    margin-left: 0px;
    margin-top: 50px;
  }
}

.interview_box {
  display: flex;
  justify-content: center;
  padding-top: 70px;
  padding-bottom: 100px;
}

.interview_box .item {
  width: 216px;
}

.interview_box .item figure {
  margin-bottom: 28px;
}

.interview_box .item .text .name {
  padding-bottom: 10px;
  border-bottom: #323232 solid 1px;
}

.interview_box .item .text .name em {
  display: block;
  font-size: 1.8rem;
}

.interview_box .item .text .name small {
  font-size: 1.3rem;
  display: block;
  line-height: 1;
}

.interview_box .item .text h3 {
  padding: 20px 0;
  line-height: 1.5;
  font-weight: bold;
}

.interview_box .item .text p {
  font-size: 1.4rem;
}

.interview_box .item + .item {
  margin-left: 46px;
}

@media screen and (max-width: 740px) {
  .interview_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30px 20px;
  }
  .interview_box .item {
    width: calc(50% - 10px);
    padding-bottom: 30px;
  }
  .interview_box .item figure {
    margin-bottom: 18px;
  }
  .interview_box .item .text .name {
    padding-bottom: 10px;
    border-bottom: #323232 solid 1px;
  }
  .interview_box .item .text .name em {
    display: block;
    font-size: 1.5rem;
  }
  .interview_box .item .text .name small {
    font-size: 1.1rem;
    line-height: 1.3;
  }
  .interview_box .item .text h3 {
    padding: 20px 0;
    line-height: 1.5;
    font-weight: bold;
  }
  .interview_box .item .text p {
    font-size: 1.2rem;
  }
  .interview_box .item + .item {
    margin-left: 0px;
  }
}
