@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;700&family=Noto+Serif+JP:wght@200..900&family=Noto+Sans+JP:wght@100..900&display=swap");
/**************
Sass Mixin
**************/
/**************
Basic Setting
**************/
html {
  font-size: 62.5%;
}
html * {
  box-sizing: border-box;
  word-wrap: break-word;
}

body {
  color: #1b1b1b;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  font-family: -apple-system-body, BlinkMacSystemFont, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -moz-osx-font-smoothing: grayscale;
  line-height: var(--lh-base);
  padding: 0;
  margin: 0;
  vertical-align: baseline;
}
body.admin-bar {
  position: relative;
}
@media (min-width: 560px) {
  body {
    font-size: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  body {
    font-size: 15px;
  }
}

select,
input,
button,
textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

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

img {
  max-width: 100%;
}

#pagetop {
  background: url(../images/common/pagetop2.png);
  background-size: contain;
  position: fixed;
  right: 1rem;
  text-indent: -9999px;
  outline: none;
  opacity: 0.7;
  z-index: 10;
}
@media (min-width: 560px) {
  #pagetop {
    width: 6rem;
    height: 6rem;
    bottom: -6rem;
  }
}
@media (max-width: 820.9px) {
  #pagetop {
    right: 8px;
    width: 40px;
    height: 40px;
    bottom: -50px;
  }
}
#pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
}

a {
  text-decoration: none;
  color: #4557a4;
  outline: none;
  font-weight: bold;
}
a:hover {
  color: #358aac;
}

/**************
Layout Set
**************/
.page_section {
  width: 100%;
  overflow: hidden;
  background-color: white;
  padding: 8rem 0;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .page_section {
    padding: 6rem 0;
  }
}
@media (max-width: 559.9px) {
  .page_section {
    padding: 4rem 0;
  }
}
.page_section__lightGray {
  background-color: #f5f5f5;
}
.page_section__bgBlue {
  background-color: #f1f6fa;
}
.page_section__blue {
  background-color: #1a9fba;
}
.page_section.black {
  background-color: #1b1b1b;
}

.wrap {
  width: 92%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .wrap {
    width: 100%;
    padding: 0 6vw;
  }
}
@media (max-width: 559.9px) {
  .wrap {
    width: 100%;
    padding: 0 5.6vw;
  }
}

.middlewrap {
  width: 92%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .middlewrap {
    width: 100%;
    padding: 0 6vw;
  }
}
@media (max-width: 559.9px) {
  .middlewrap {
    width: 100%;
    padding: 0 5.6vw;
  }
}

.shortwrap {
  width: 92%;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .shortwrap {
    width: 100%;
    padding: 0 6vw;
  }
}
@media (max-width: 559.9px) {
  .shortwrap {
    width: 100%;
    padding: 0 5.6vw;
  }
}

.relative {
  position: relative;
  z-index: 1;
}

.tit_404 {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  color: #b3b1b9;
}

/**************
Header
**************/
#header {
  z-index: 10;
  width: 100%;
  height: 10rem;
  padding: 0;
  transition: all 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0);
  border-bottom: 0.1rem white solid;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  #header {
    height: 5.6rem;
  }
}
@media (max-width: 559.9px) {
  #header {
    height: 7rem;
  }
}
#header.fixed {
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  top: 0;
}

.header_inner {
  position: relative;
  height: 100%;
  padding: 0 2.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 820.9px) {
  .header_inner {
    padding: 0 0 0 2.4rem;
  }
}

.header_logo {
  text-align: center;
  transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
@media (min-width: 821px) {
  .header_logo {
    width: 20rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .header_logo {
    width: 13rem;
  }
}
@media (max-width: 559.9px) {
  .header_logo {
    width: 14rem;
  }
}
.header_logo img {
  display: block;
  width: 100%;
}

@media (min-width: 821px) {
  .global_navi {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    margin-left: auto;
  }
}
@media (max-width: 820.9px) {
  .global_navi {
    height: 100%;
    position: fixed;
    top: 0;
    transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    overflow: auto;
    z-index: 11;
    background-color: #1b1b1b;
    box-shadow: -2px 0 3px rgba(0, 0, 0, 0.16);
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .global_navi {
    width: 400px;
    right: -440px;
  }
}
@media (max-width: 559.9px) {
  .global_navi {
    width: 100vw;
    left: 100%;
    top: 0;
    height: 100vh;
    padding-top: 96px;
  }
}

@media (min-width: 560px) and (max-width: 820.9px) {
  .opened .global_navi {
    right: 0;
  }
}
@media (max-width: 559.9px) {
  .opened .global_navi {
    left: 0;
  }
}

.navi_ul {
  position: relative;
}
@media (min-width: 821px) {
  .navi_ul {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0 2rem;
    gap: 1.8rem;
  }
}
@media (max-width: 820.9px) {
  .navi_ul {
    width: 80%;
    margin: 0 auto;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .navi_ul {
    margin-top: 120px;
  }
}
@media (max-width: 559.9px) {
  .navi_ul {
    padding-bottom: 10px;
  }
}
@media (min-width: 821px) {
  .navi_ul > li {
    position: relative;
    height: 100%;
  }
}
@media (min-width: 821px) {
  .navi_ul > li::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: white;
    display: block;
    bottom: -3px;
    left: 0;
    transform: scale(0, 1);
    transform-origin: center center;
    transition: all 0.4s ease;
  }
}
.navi_ul > li.toggle {
  position: relative;
  font-weight: bold;
}
@media (min-width: 821px) {
  .navi_ul > li.toggle:hover .megamenu {
    max-height: 9999px;
    opacity: 1;
  }
}
@media (min-width: 821px) {
  .navi_ul > li:hover::after {
    transform: scale(1, 1);
    transform-origin: center bottom;
  }
}
@media (min-width: 821px) {
  .fixed .navi_ul > li::after {
    background: white;
  }
}

.header-nav-item {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  letter-spacing: 0.04em;
  font-size: 1.5rem;
  gap: 0.4rem;
}
@media (min-width: 821px) {
  .header-nav-item {
    width: 100%;
    height: 100%;
    position: relative;
    font-weight: bold;
    padding: 0 0.3rem;
    cursor: pointer;
    color: white;
  }
  .header-nav-item:hover {
    color: white;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 820.9px) {
  .header-nav-item {
    padding: 10px 0;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: white;
    position: relative;
  }
}
@media (max-width: 559.9px) {
  .header-nav-item {
    font-size: 1.7rem;
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .header-nav-item i {
    display: none;
  }
}

@media (min-width: 821px) {
  .megamenu {
    transition: all 0.6s ease-in;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 4;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
    padding: 1.6rem 2.4rem;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 0.4rem;
  }
}
@media (max-width: 820.9px) {
  .megamenu {
    display: none;
    background-color: white;
    border-radius: 0.4rem;
  }
}
@media (min-width: 821px) {
  .megamenu .inner_ul {
    padding: 0.3rem 0 0;
    width: 12rem;
  }
}
@media (min-width: 821px) {
  .megamenu .inner_ul.w16 {
    width: 16rem;
  }
}
@media (max-width: 820.9px) {
  .megamenu .inner_ul {
    padding: 1.6rem 2.4rem;
  }
}
.megamenu .inner_ul li {
  padding: 4px 0;
}
.megamenu .inner_ul li a {
  letter-spacing: 0.04em;
  padding-bottom: 0.4rem;
}
@media (min-width: 821px) {
  .megamenu .inner_ul li a {
    position: relative;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
  }
}
@media (max-width: 820.9px) {
  .megamenu .inner_ul li a {
    display: block;
    position: relative;
    font-size: 1.3rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: left;
    padding: 0.5rem 0;
    color: #1b1b1b;
  }
}
@media (max-width: 559.9px) {
  .megamenu .inner_ul li a {
    font-size: 1.5rem;
    padding: 0.3rem 0;
  }
}
.megamenu .inner_ul li a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: white;
  display: block;
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
  transform-origin: center bottom;
  transition: all 0.3s ease;
}
@media (max-width: 820.9px) {
  .megamenu .inner_ul li a::after {
    background-color: #1b1b1b;
  }
}
.megamenu .inner_ul li a:hover::after {
  transform: scale(1, 1);
  transform-origin: center bottom;
}

@media (min-width: 821px) {
  .menuBtn {
    display: none;
  }
}
@media (max-width: 820.9px) {
  .menuBtn {
    width: 7rem;
    height: 7rem;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 11;
    transition: all 0.3s ease-in-out 0.2s;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .menuBtn {
    height: 5.6rem;
  }
}
@media (max-width: 820.9px) {
  .menuBtn .nav-open {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
  }
}
@media (max-width: 820.9px) {
  .menuBtn .nav-open span,
.menuBtn .nav-open span:before,
.menuBtn .nav-open span:after {
    position: absolute;
    background: white;
    display: block;
    content: "";
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    height: 0.1rem;
    width: 3.2rem;
  }
}
@media (max-width: 820.9px) {
  .menuBtn .nav-open span::before {
    bottom: 8px;
  }
}
@media (max-width: 820.9px) {
  .menuBtn .nav-open span::after {
    bottom: -8px;
  }
}
.menuBtn.menu-open {
  -webkit-animation: menuClose 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
          animation: menuClose 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}
@media (max-width: 820.9px) {
  .menuBtn.menu-open .nav-open span {
    background-color: transparent;
  }
}
@media (max-width: 820.9px) {
  .menuBtn.menu-open .nav-open span::before, .menuBtn.menu-open .nav-open span::after {
    height: 0.1rem;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    position: absolute;
    top: 0px;
    left: 0;
    content: "";
    background-color: white;
  }
}
.menuBtn.menu-open .nav-open span::before {
  transform: rotate(45deg);
}
.menuBtn.menu-open .nav-open span::after {
  transform: rotate(-45deg);
}

@-webkit-keyframes menuClose {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(0);
  }
  80% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes menuClose {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(0);
  }
  80% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.header_buttons {
  display: flex;
  gap: 0.8rem;
}
@media (max-width: 820.9px) {
  .header_buttons {
    flex-direction: column;
    align-items: center;
    margin-top: 4rem;
  }
}
.header_buttons a {
  display: block;
  width: 18rem;
  height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 0.4rem;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .header_buttons a {
    width: auto;
    padding: 0 16px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .header_buttons a {
    width: 24rem;
  }
}
@media (max-width: 559.9px) {
  .header_buttons a {
    width: 80%;
    height: 6rem;
    font-size: 1.8rem;
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .header_buttons a .text {
    display: none;
  }
}
.header_buttons .header_button-download {
  background-color: #1b1b1b;
  color: white;
}
@media (max-width: 820.9px) {
  .header_buttons .header_button-download {
    border: 0.1rem white solid;
  }
}
.header_buttons .header_button-download:hover {
  background-color: #444444;
}
.header_buttons .header_button-contact {
  color: white;
  background-color: #de0101;
}
.header_buttons .header_button-contact:hover {
  background-color: #ff0000;
}

/**************
WordPressログイン時
**************/
@media (min-width: 560px) {
  .admin-bar #header {
    top: 32px;
  }
}

/**************
Footer
**************/
.foot_cta {
  background: url(../images/common/cta_bg.jpg) no-repeat center;
  background-size: cover;
  padding: 10rem 0 14rem;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .foot_cta {
    padding: 80px 0 100px;
  }
}
@media (max-width: 820.9px) {
  .foot_cta {
    padding: 5rem;
  }
}
@media (max-width: 559.9px) {
  .foot_cta {
    padding: 32px 24px;
  }
}
.foot_cta .cta_title {
  text-align: center;
}
.foot_cta .cta_title .eng {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  color: white;
  margin-bottom: 1rem;
}
@media (max-width: 820.9px) {
  .foot_cta .cta_title .eng {
    font-size: 1.8rem;
  }
}
.foot_cta .cta_title .jp {
  font-size: 4rem;
  font-weight: bold;
  color: white;
}
@media (max-width: 820.9px) {
  .foot_cta .cta_title .jp {
    font-size: 2.4rem;
  }
}
@media (max-width: 559.9px) {
  .foot_cta .cta_title .jp {
    font-size: 2.2rem;
  }
}
.foot_cta .title_under_text {
  text-align: center;
  font-weight: 500;
  color: white;
  margin-top: 4rem;
  font-size: 1.8rem;
}
@media (max-width: 820.9px) {
  .foot_cta .title_under_text {
    font-size: 1.7rem;
    margin-top: 3rem;
    padding: 0 4rem;
  }
}
@media (max-width: 559.9px) {
  .foot_cta .title_under_text {
    font-size: 13px;
    padding: 0;
  }
  .foot_cta .title_under_text br {
    display: none;
  }
}

.cta_columns {
  display: flex;
  width: 100%;
  margin: 5rem auto 0;
  gap: 24px;
  justify-content: space-between;
}
@media (max-width: 820.9px) {
  .cta_columns {
    margin-top: 3rem;
  }
}
@media (max-width: 559.9px) {
  .cta_columns {
    flex-direction: column;
  }
}
.cta_columns .column {
  text-align: center;
  padding: 30px;
  position: relative;
  width: calc(33.3333333333% - 16px);
  border: 0.1rem solid white;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .cta_columns .column {
    padding: 3rem 2rem;
    width: calc(33.3333333333% - 1.2rem);
  }
}
@media (max-width: 559.9px) {
  .cta_columns .column {
    width: 100%;
    padding: 24px 30px;
  }
}
.cta_columns .column .icon {
  display: block;
  width: 4.8rem;
  margin: 0 auto 1.2rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .cta_columns .column .icon {
    width: 4rem;
  }
}
@media (max-width: 559.9px) {
  .cta_columns .column .icon {
    width: 3.2rem;
  }
}
.cta_columns .column .jp_title {
  color: white;
  font-size: 2rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .cta_columns .column .jp_title {
    font-size: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  .cta_columns .column .jp_title {
    font-size: 1.2rem;
  }
}
.cta_columns .column .cta_text {
  color: white;
  padding: 2rem 0;
}
@media (max-width: 820.9px) {
  .cta_columns .column .cta_text {
    display: none;
  }
}
.cta_columns .column .action_area {
  width: 100%;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 820.9px) {
  .cta_columns .column .action_area {
    height: 5rem;
    margin-top: 1.5rem;
  }
}
.cta_columns .column .action_area .button {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #1b1b1b;
  position: relative;
  transition: all 0.3s ease;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .cta_columns .column .action_area .button {
    font-size: 2rem;
  }
}
.cta_columns .column .action_area .button:hover {
  background-color: #f4df35;
}
.cta_columns .column .action_area .button .icon-arrow-black {
  position: absolute;
  right: 2.4rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .cta_columns .column .action_area .button .icon-arrow-black {
    right: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  .cta_columns .column .action_area .button .icon-arrow-black {
    display: none;
  }
}
.cta_columns .column .action_area .tel {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #1b1b1b;
  transition: all 0.3s ease;
}
.cta_columns .column .action_area .tel:hover {
  background-color: #f4df35;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .cta_columns .column .action_area .tel {
    font-size: 2rem;
  }
}
@media (max-width: 559.9px) {
  .cta_columns .column .action_area .tel {
    font-size: 2.2rem;
    letter-spacing: 0.05rem;
  }
}

#footer {
  background-color: #1b1b1b;
  position: relative;
  overflow: hidden;
}
#footer .footer_options {
  position: absolute;
  right: 0;
  top: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 559.9px) {
  #footer .footer_options {
    opacity: 0.3;
  }
}
#footer .footer_options .txt {
  color: white;
  line-height: 1;
  text-align: right;
}
#footer .footer_options .txt::first-letter {
  opacity: 0.6;
}
#footer .footer_options .txt span {
  opacity: 0.3;
}
#footer .footer_options .txt.txt-1 {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 16rem;
  font-weight: 700;
  line-height: 1;
}
#footer .footer_options .txt.txt-2 {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 13rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  top: -2rem;
}
#footer .footer_options .txt.txt-3 {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 10rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  top: -3rem;
}

.footer_inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.footer_inner .footer_inner_upper {
  border-bottom: 1px white solid;
}
@media (min-width: 821px) {
  .footer_inner .footer_inner_upper {
    padding: 5rem 20rem 8rem;
  }
}
@media (max-width: 820.9px) {
  .footer_inner .footer_inner_upper {
    height: auto;
    padding: 40px 0;
  }
}
@media (max-width: 559.9px) {
  .footer_inner .footer_inner_upper {
    padding-bottom: 0;
  }
}
.footer_inner .footer_inner_upper .footer_logo {
  display: block;
  width: 30rem;
  position: relative;
}
@media (min-width: 821px) {
  .footer_inner .footer_inner_upper .footer_logo {
    left: -10rem;
  }
}
@media (max-width: 820.9px) {
  .footer_inner .footer_inner_upper .footer_logo {
    margin: 0 auto 16px 4rem;
    width: 24rem;
  }
}
@media (max-width: 559.9px) {
  .footer_inner .footer_inner_upper .footer_logo {
    width: 160px;
    margin: 0 auto 20px;
  }
}
.footer_inner .footer_inner_upper .footer_info {
  width: 100%;
  margin-top: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 820.9px) {
  .footer_inner .footer_inner_upper .footer_info {
    justify-content: center;
    gap: 4rem;
  }
}
@media (max-width: 559.9px) {
  .footer_inner .footer_inner_upper .footer_info {
    flex-direction: column;
    padding: 0 24px 32px;
    gap: 12px;
    text-align: center;
  }
}
.footer_inner .footer_inner_upper .footer_info .footer_info_text {
  color: white;
  line-height: 1.8;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .footer_inner .footer_inner_upper .footer_info .footer_info_text {
    font-size: 1.4rem;
  }
}
@media (max-width: 559.9px) {
  .footer_inner .footer_inner_upper .footer_info .footer_info_text {
    text-align: center;
    width: 100%;
  }
}
.footer_inner .footer_inner_upper .footer_info .footer_info_text .branch_name {
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (max-width: 559.9px) {
  .footer_inner .footer_inner_upper .footer_info .footer_info_text .branch_name {
    margin-bottom: 4px;
  }
}

.footer_inner_downer {
  width: 100%;
  border-bottom: 1px white solid;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 821px) {
  .footer_inner_downer {
    padding: 5rem 0 8rem;
  }
}
@media (max-width: 820.9px) {
  .footer_inner_downer {
    height: auto;
    padding: 40px 0;
  }
}
@media (max-width: 559.9px) {
  .footer_inner_downer {
    padding: 24px 0;
  }
}
.footer_inner_downer .eng_tit {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  color: white;
  margin-bottom: 4rem;
}
@media (max-width: 820.9px) {
  .footer_inner_downer .eng_tit {
    display: none;
  }
}

.footer_navi {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8rem;
}
@media (max-width: 820.9px) {
  .footer_navi {
    display: none;
  }
}
.footer_navi .footer_navi_column ul li {
  padding-left: 1rem;
  margin-left: 0.5rem;
  position: relative;
}
.footer_navi .footer_navi_column ul li:not(:last-child) {
  margin-bottom: 0.8rem;
}
.footer_navi .footer_navi_column ul li a {
  display: flex;
  font-size: 1.4rem;
  color: #1b1b1b;
  font-weight: bold;
  transition: all 0.3s ease;
  color: white;
}
.footer_navi .footer_navi_column ul li a:hover {
  color: #f4df35;
}
.footer_navi .footer_navi_column ul li::before {
  content: "";
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 0.4rem;
  background-color: white;
  position: absolute;
  left: 0;
  top: 41%;
}

.footer_certs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .footer_certs {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
}
.footer_certs .foot_iso {
  width: 45rem;
}
.footer_certs .emidas {
  display: block;
  width: 16rem;
}
@media (max-width: 559.9px) {
  .footer_certs .emidas {
    width: 128px;
  }
}

.footer_bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 560px) {
  .footer_bottom {
    padding: 4rem 16rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .footer_bottom {
    padding: 4rem;
  }
}
@media (max-width: 559.9px) {
  .footer_bottom {
    height: auto;
    padding: 24px 0;
    flex-direction: column;
  }
}
.footer_bottom .nc-logo {
  display: block;
  width: 20rem;
}
@media (max-width: 559.9px) {
  .footer_bottom .nc-logo {
    width: 180px;
  }
}

.copyright {
  text-align: center;
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: white;
  letter-spacing: 0.04em;
}
@media (max-width: 820.9px) {
  .copyright {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
}

/**************
Common Parts
**************/
/* Titles */
.ej-title {
  display: flex;
  flex-direction: column-reverse;
}
.ej-title .jp {
  font-size: 2.4rem;
  font-weight: bold;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .ej-title .jp {
    font-size: 2rem;
  }
}
@media (max-width: 559.9px) {
  .ej-title .jp {
    font-size: 1.6rem;
  }
}
.ej-title .eng {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .ej-title .eng {
    font-size: 6rem;
  }
}
@media (max-width: 559.9px) {
  .ej-title .eng {
    font-size: 3rem;
    margin-bottom: 8px;
  }
}
.ej-title.white {
  color: white;
}
.ej-title.gold {
  color: #6b613d;
}

.border-title {
  padding: 0 10rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem auto 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .border-title {
    padding: 0 6rem;
  }
}
@media (max-width: 559.9px) {
  .border-title {
    padding: 0 4rem;
    margin: 3rem auto 2.4rem;
  }
}
.border-title::before, .border-title::after {
  content: "";
  display: block;
  width: 16rem;
  height: 0.3rem;
  background-color: #444444;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .border-title::before, .border-title::after {
    width: 5rem;
  }
}
@media (max-width: 559.9px) {
  .border-title::before, .border-title::after {
    width: 3.2rem;
  }
}
.border-title span {
  font-size: 6.4rem;
  font-weight: bold;
  color: #444444;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .border-title span {
    font-size: 4rem;
  }
}
@media (max-width: 559.9px) {
  .border-title span {
    font-size: 2.8rem;
  }
}

.border-title-sm {
  padding: 0 8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .border-title-sm {
    padding: 0 6rem;
    margin: 0 auto 9rem;
  }
}
@media (max-width: 559.9px) {
  .border-title-sm {
    padding: 0 4rem;
    margin: 3rem auto 2.4rem;
  }
}
.border-title-sm::before, .border-title-sm::after {
  content: "";
  display: block;
  width: 16rem;
  height: 0.3rem;
  background-color: #444444;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .border-title-sm::before, .border-title-sm::after {
    width: 5rem;
  }
}
@media (max-width: 559.9px) {
  .border-title-sm::before, .border-title-sm::after {
    width: 3.2rem;
  }
}
.border-title-sm span {
  font-size: 6.4rem;
  font-weight: bold;
  color: #444444;
  font-size: 4rem;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  display: block;
  line-height: 1.4;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .border-title-sm span {
    font-size: 3.2rem;
  }
}
@media (max-width: 559.9px) {
  .border-title-sm span {
    font-size: 2.4rem;
  }
}
.border-title-sm .text-sm {
  font-size: 70%;
}

.center-title {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
}
@media (max-width: 559.9px) {
  .center-title {
    font-size: 2rem;
  }
}

.title1 {
  display: block;
  color: #1b1b1b;
  font-weight: bold;
  font-size: 4rem;
  margin-bottom: 2rem;
  position: relative;
}
@media (max-width: 559.9px) {
  .title1 {
    font-size: 2.8rem;
  }
}

.title2 {
  display: block;
  color: #1b1b1b;
  font-weight: bold;
  font-size: 3.2rem;
  position: relative;
}
@media (max-width: 559.9px) {
  .title2 {
    font-size: 2.4rem;
  }
}

.center-title32 {
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: bold;
}
@media (max-width: 820.9px) {
  .center-title32 br {
    display: none;
  }
}
@media (max-width: 559.9px) {
  .center-title32 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}

.question-title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 5rem auto;
}
.question-title .text {
  font-size: 2.8rem;
  font-weight: 800;
}
.question-title .qa-mark {
  position: absolute;
  top: -4rem;
  right: -8rem;
  width: 7rem;
  transform: rotate(15deg);
}

.thanks-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
}
@media (max-width: 559.9px) {
  .thanks-title {
    font-size: 18px;
  }
}

/* Buttons */
.btn-white {
  width: 32rem;
  height: 9.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.5s ease;
  background-color: white;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .btn-white {
    height: 8rem;
  }
}
@media (max-width: 559.9px) {
  .btn-white {
    width: 280px;
    height: 64px;
  }
}
.btn-white:hover {
  background-color: #fff0f0;
}
.btn-white .txt {
  color: #1b1b1b;
  font-weight: bold;
}
@media (min-width: 821px) {
  .btn-white .txt {
    font-size: 2rem;
  }
}
.btn-white .txt.eng {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 559.9px) {
  .btn-white .txt.eng {
    font-size: 1.8rem;
  }
}
.btn-white .arrow {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: url(../images/icon/icon-arrow-black.png) no-repeat;
  background-size: cover;
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}

.btn-black {
  width: 32rem;
  height: 9.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.5s ease;
  background-color: #1b1b1b;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .btn-black {
    height: 8rem;
  }
}
@media (max-width: 559.9px) {
  .btn-black {
    width: 280px;
    height: 64px;
  }
}
.btn-black:hover {
  background-color: #444444;
}
.btn-black .txt {
  color: white;
  font-weight: bold;
  padding-right: 2rem;
}
@media (min-width: 821px) {
  .btn-black .txt {
    font-size: 1.8rem;
  }
}
.btn-black .txt.eng {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 559.9px) {
  .btn-black .txt.eng {
    font-size: 1.8rem;
  }
}
.btn-black .arrow {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: url(../images/icon/icon-arrow-white.png) no-repeat;
  background-size: cover;
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}
.btn-black .icon-external {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}
.btn-black .arrow-exit {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/icon/icon-arrow-exit.png) no-repeat;
  background-size: cover;
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}

.btn-blue {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24rem;
  height: 6rem;
  background-color: #358aac;
  position: relative;
  padding-right: 2rem;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
}
.btn-blue:hover {
  background-color: #1a9fba;
}
.btn-blue.w30 {
  width: 30rem;
}
.btn-blue .txt {
  color: white;
  font-weight: bold;
  font-size: 1.8rem;
}
.btn-blue .txt.eng {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}
.btn-blue .arrow {
  display: block;
  width: 1rem;
  height: 1rem;
  background: url(../images/icon/icon-arrow-white.png) no-repeat;
  background-size: cover;
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}

.btn-white-small {
  font-size: 1.2rem;
  padding: 0.3rem 2rem;
  background-color: #fff;
  position: relative;
  text-align: center;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  color: #1b1b1b;
  border: 2px #1b1b1b solid;
  line-height: 1.5;
  font-weight: bold;
  cursor: pointer;
}
@media (max-width: 559.9px) {
  .btn-white-small {
    font-size: 1.3rem;
  }
}
.btn-white-small:hover {
  background-color: #eee;
  color: #1b1b1b;
}
.btn-white-small.mauto {
  margin-left: auto;
  margin-right: auto;
}
.btn-white-small.eng {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}

/* Icons */
.icon-mail-white {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/icon/icon-mail.png) no-repeat;
  background-size: cover;
}

.icon-download {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/icon/icon-download.png) no-repeat;
  background-size: cover;
}

.icon-arrow-black {
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  background: url(../images/icon/icon-arrow-black.png) no-repeat;
  background-size: cover;
}

.icon-arrow-down-white {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: url(../images/icon/icon-arrow-down-white.png) no-repeat;
  background-size: cover;
}

.icon-external {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/icon/icon-external.png) no-repeat;
  background-size: cover;
}

/* Tables */
.table-s2 {
  width: 100%;
}
@media (max-width: 820.9px) {
  .table-s2 {
    font-size: 1.3rem;
  }
}
.table-s2 th {
  width: 24rem;
  padding: 1.2rem 0;
  border: 0.1rem #ddd solid;
  text-align: center;
  background-color: #f3f3f3;
}
@media (min-width: 821px) {
  .table-s2 th {
    text-align: left;
    padding: 1.6rem 3rem;
  }
}
@media (max-width: 820.9px) {
  .table-s2 th {
    padding: 3px;
    width: 80px;
  }
}
.table-s2 td {
  border: 0.1rem #ddd solid;
  background-color: white;
}
@media (min-width: 821px) {
  .table-s2 td {
    text-align: left;
    padding: 1.6rem 3rem;
  }
}
@media (max-width: 820.9px) {
  .table-s2 td {
    padding: 3px 5px;
  }
}

.equip_table {
  width: 100%;
}
@media (max-width: 820.9px) {
  .equip_table {
    width: 120rem;
  }
}
.equip_table thead tr th {
  background-color: #f5f5f5;
  padding: 1rem;
  border: 0.2rem solid #ddd;
  text-align: left;
}
@media (max-width: 559.9px) {
  .equip_table thead tr th {
    font-size: 1.5rem;
  }
}
.equip_table thead tr th:first-child {
  width: 20%;
}
.equip_table thead tr th:nth-child(2) {
  width: 20%;
}
.equip_table thead tr th:nth-child(3) {
  width: 20%;
}
.equip_table thead tr th:nth-child(4) {
  width: 35%;
}
.equip_table thead tr th:last-child {
  width: 5%;
}
.equip_table tbody tr td {
  background-color: white;
  padding: 1rem;
  border: 0.2rem solid #ddd;
}
@media (max-width: 559.9px) {
  .equip_table tbody tr td {
    font-size: 1.5rem;
  }
}
.equip_table tbody tr td:first-child {
  width: 20%;
}
.equip_table tbody tr td:nth-child(2) {
  width: 20%;
}
.equip_table tbody tr td:nth-child(3) {
  width: 20%;
}
.equip_table tbody tr td:nth-child(4) {
  width: 35%;
}
.equip_table tbody tr td:last-child {
  width: 5%;
  text-align: center;
}

/* Parts */
.sq_black {
  padding-left: 1.5rem;
  position: relative;
}
.sq_black::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 0.2rem;
  background-color: #1b1b1b;
  position: absolute;
  left: 0;
  top: 0.8rem;
}

/* Lists */
.list-disc {
  margin-left: 15px;
}
.list-disc li {
  list-style: square;
}
.list-disc li b {
  display: inline-block;
  margin-right: 10px;
}

.list-decimal {
  margin-left: 20px;
}
.list-decimal li {
  list-style: decimal;
  padding-left: 0.5rem;
}
.list-decimal li b {
  display: inline-block;
  margin-right: 10px;
}

.list-decimal2 {
  counter-reset: number;
  list-style-type: none !important;
  padding: 0.5em;
}
.list-decimal2 li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 30px;
}
.list-decimal2 li::before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5c9ee7;
  color: white;
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.list-check li {
  position: relative;
  padding: 2px 0 2px 28px;
}
.list-check li::before {
  content: "";
  display: block;
  background: url(../images/common/icon_check_black.png) no-repeat center;
  background-size: contain;
  width: 20px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 6px;
}
.list-check li span {
  font-weight: bold;
  color: #358aac;
}

.list-sq-red li {
  position: relative;
  padding: 0.3rem 0 0.3rem 2rem;
}
.list-sq-red li::before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ff0000;
}

/* Boxes */
.borderBox {
  background-color: #fff6f9;
  border: #ccc solid 1px;
  padding: 24px 40px;
}
@media (max-width: 820.9px) {
  .borderBox {
    padding: 16px;
  }
}

/* Texts */
.grad_text {
  background: linear-gradient(90deg, #368daf 0%, #163b49 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 1200px) {
  .strong_text {
    font-size: 1.8rem;
    text-align: center;
  }
}

.darkGray {
  color: #444444;
}

.text18 {
  font-size: 1.8rem;
}

.text16 {
  font-size: 1.6rem;
}

.text32 {
  font-size: 3.2rem;
}

.text20 {
  font-size: 2rem;
}

.text24 {
  font-size: 2.4rem;
}
@media (max-width: 559.9px) {
  .text24 {
    font-size: 2rem;
  }
}

.text28 {
  font-size: 2.8rem;
}
@media (max-width: 559.9px) {
  .text28 {
    font-size: 2.5rem;
  }
}

.text36 {
  font-size: 3.6rem;
}

.bold {
  font-weight: 700;
}

.medium {
  font-weight: 500;
}

.mt2 {
  margin-top: 2rem;
}

.center {
  text-align: center;
}

.kome {
  font-size: 1.4rem;
}
@media (max-width: 820.9px) {
  .kome {
    font-size: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  .kome {
    font-size: 1.4rem;
  }
}

/* Others */
.mauto {
  margin-left: auto;
  margin-right: auto;
}

.mright {
  margin-left: auto;
  margin-right: 0;
}

.anchor {
  padding-top: 80px;
  margin-top: -80px;
}
@media (max-width: 820.9px) {
  .anchor {
    padding-top: 80px;
    margin-top: -80px;
  }
}

.sp-scroll {
  width: 100%;
  overflow-x: auto;
}

.underconst {
  background-color: #fff;
  text-align: center;
  margin: 50px auto;
  padding: 80px 0;
  border: 1px #ddd solid;
  border-radius: 5px;
}

@media (max-width: 559.9px) {
  .sp_none {
    display: none;
  }
}

@media (max-width: 820.9px) {
  .pc_only {
    display: none;
  }
}

@media (min-width: 560px) {
  .sp_only {
    display: none;
  }
}

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

/* Animations */
@-webkit-keyframes blurIn {
  0% {
    opacity: 0;
    filter: blur(1.5rem);
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
@keyframes blurIn {
  0% {
    opacity: 0;
    filter: blur(1.5rem);
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
@-webkit-keyframes slideIn {
  0% {
    transform: translateX(40px);
    filter: blur(1.5rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes slideIn {
  0% {
    transform: translateX(40px);
    filter: blur(1.5rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    filter: blur(0);
    opacity: 1;
  }
}
@-webkit-keyframes slideInR {
  0% {
    transform: translateX(-40px);
    filter: blur(1.5rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInR {
  0% {
    transform: translateX(-40px);
    filter: blur(1.5rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes cubeIn {
  0% {
    opacity: 0;
    transform: rotate(-145deg);
  }
  10% {
    opacity: 1;
    transform: rotate(-145deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0);
  }
}
@keyframes cubeIn {
  0% {
    opacity: 0;
    transform: rotate(-145deg);
  }
  10% {
    opacity: 1;
    transform: rotate(-145deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0);
  }
}
@-webkit-keyframes zoom-in {
  0% {
    transform: translate(20px);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@keyframes zoom-in {
  0% {
    transform: translate(20px);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@-webkit-keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
/**************
Layouts
**************/
.flex_content {
  width: 100%;
  margin-bottom: 80px;
}
@media (min-width: 560px) {
  .flex_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .flex_content.start {
    align-items: flex-start;
  }
  .flex_content.mt70 {
    margin-top: 70px;
  }
}
@media (min-width: 560px) and (max-width: 1199.9px) {
  .flex_content.mb40 {
    margin-bottom: 40px;
  }
}
@media (max-width: 559.9px) {
  .flex_content {
    margin-bottom: 40px;
  }
}
@media (min-width: 560px) {
  .flex_content_r {
    flex-direction: row-reverse;
  }
}
@media (max-width: 559.9px) {
  .flex_content > .item {
    width: 100%;
  }
  .flex_content > .item:not(:last-child) {
    margin-bottom: 24px;
  }
}
@media (min-width: 560px) {
  .flex_content .item_1 {
    width: 12%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_2 {
    width: 21%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_3 {
    width: 33%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_35 {
    width: 38%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_4 {
    width: 47.5%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_45 {
    width: 56%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_5 {
    width: 62%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_6 {
    width: 73%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_7 {
    width: 84%;
  }
}

/**************
下層ページ Common
**************/
#pageTitle {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 100vh;
  max-height: 56rem;
  background-color: #1b1b1b;
}
#pageTitle::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.24);
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  top: 0;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  #pageTitle {
    height: 64vh;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  #pageTitle {
    height: 35vh;
  }
}
@media (max-width: 559.9px) {
  #pageTitle {
    height: 240px;
    margin: 0 auto;
  }
}
#pageTitle .title_inner {
  margin-top: 80px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 559.9px) {
  #pageTitle .title_inner {
    margin-top: 67px;
  }
}
#pageTitle .imgArea {
  height: 100%;
  width: 100%;
}
#pageTitle .imgArea img,
#pageTitle .imgArea video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#pageTitle .textArea {
  position: absolute;
  z-index: 2;
  color: #ffffff;
  top: 60%;
  left: 4vw;
  transform: translateY(-50%);
}
#pageTitle .textArea .jp {
  line-height: 1.2;
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  #pageTitle .textArea .jp {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}
@media (max-width: 559.9px) {
  #pageTitle .textArea .jp {
    font-size: 2rem;
  }
}
#pageTitle .textArea .eng {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  text-transform: capitalize;
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  #pageTitle .textArea .eng {
    font-size: 1.8rem;
  }
}
@media (max-width: 559.9px) {
  #pageTitle .textArea .eng {
    font-size: 1.6rem;
  }
}
@media (min-width: 821px) {
  #pageTitle.single_page {
    height: 320px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  #pageTitle.single_page {
    height: 25vh;
  }
}
@media (max-width: 559.9px) {
  #pageTitle.single_page {
    height: 220px;
  }
}

.breadcrumbs {
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  height: 6rem;
  width: 100%;
  font-size: 1.2rem;
  font-weight: 500;
  color: #1b1b1b;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 559.9px) {
  .breadcrumbs {
    height: 4.8rem;
  }
}
.breadcrumbs a {
  font-size: 1.2rem;
  font-weight: 500;
  display: inline-block;
  color: #6b613d;
  font-weight: 500;
  transition: all 0.3s ease;
}
.breadcrumbs a:hover,
.breadcrumbs a :active {
  color: #444444;
}

/**************
HOME
**************/
#mainVisual {
  width: 100%;
  display: block;
  position: relative;
  background-color: white;
  aspect-ratio: 4/3;
}
@media (min-width: 821px) {
  #mainVisual {
    max-height: calc(100vh - 100px);
  }
}
@media (max-width: 820.9px) {
  #mainVisual {
    height: 600px;
  }
}
@media (max-width: 559.9px) {
  #mainVisual {
    height: 48vh;
  }
}

.top_main_slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.top_main_slider::after {
  content: "";
  display: block;
  width: 8.8rem;
  height: 33%;
  background: rgba(231, 4, 4, 0.8);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 8;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_main_slider::after {
    width: 40px;
    height: 120px;
  }
}
@media (max-width: 559.9px) {
  .top_main_slider::after {
    width: 16px;
    height: 100px;
  }
}
.top_main_slider .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.top_main_slider .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}
.top_main_slider .swiper-wrapper .swiper-slide img {
  width: auto;
  height: auto;
  min-height: 100%;
  min-width: 100%;
  max-width: 500%;
  max-height: 200%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-48%, -50%);
  transition: all 14s linear;
}
@media (max-width: 559.9px) {
  .top_main_slider .swiper-wrapper .swiper-slide img {
    width: 160%;
  }
}
.top_main_slider .swiper-wrapper .swiper-slide.swiper-slide-active img, .top_main_slider .swiper-wrapper .swiper-slide.swiper-slide-next img, .top_main_slider .swiper-wrapper .swiper-slide.swiper-slide-duplicate-active img, .top_main_slider .swiper-wrapper .swiper-slide.swiper-slide-duplicate-next img {
  transform: translate(-52%, -50%);
}

.mainVisual_inner {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 560px) {
  .mainVisual_inner {
    padding-left: 32rem;
  }
}
.mainVisual_inner .main_message {
  font-family: "Noto+Serif+JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 6vw;
  font-weight: 400;
  color: white;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .mainVisual_inner .main_message {
    font-size: 4rem;
  }
}
@media (max-width: 559.9px) {
  .mainVisual_inner .main_message {
    font-size: 3rem;
  }
}
.mainVisual_inner .main_message_eng {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  color: white;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .mainVisual_inner .main_message_eng {
    font-size: 2.4rem;
  }
}
@media (max-width: 559.9px) {
  .mainVisual_inner .main_message_eng {
    font-size: 2rem;
  }
}

.main_topics {
  position: relative;
  z-index: 6;
  background: var(--white, #fff);
  box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.08);
  background-color: white;
}
@media (min-width: 560px) {
  .main_topics {
    position: absolute;
    width: 64vw;
    height: 10rem;
    right: 0;
    bottom: 0;
    transform: translateY(50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .main_topics {
    width: 80vw;
    height: auto;
    padding: 24px 0 24px 32px;
  }
}
@media (max-width: 559.9px) {
  .main_topics {
    width: 90vw;
    padding: 13px 24px 12px;
    margin: 0 auto;
    transform: translateY(-30px);
  }
}
.main_topics .head {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 559.9px) {
  .main_topics .head {
    margin-bottom: 5px;
  }
}
.main_topics .inner-box {
  height: 100%;
  position: relative;
}
@media (min-width: 821px) {
  .main_topics .inner-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 10rem);
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .main_topics .inner-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 8rem);
  }
}
@media (max-width: 559.9px) {
  .main_topics .inner-box {
    width: 100%;
    padding: 0;
  }
}
.main_topics .inner-box .topic_date {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
}
@media (min-width: 560px) {
  .main_topics .inner-box .topic_date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 2.4rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .main_topics .inner-box .topic_date {
    font-size: 1.6rem;
    margin-right: 12px;
  }
}
@media (max-width: 559.9px) {
  .main_topics .inner-box .topic_date {
    font-size: 1.4rem;
    margin-bottom: 4px;
  }
}
@media (min-width: 560px) {
  .main_topics .inner-box .topic_date::after {
    content: "";
    display: block;
    width: 4rem;
    height: 0.2rem;
    background-color: #de0101;
    margin-left: 2.4rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .main_topics .inner-box .topic_date::after {
    width: 20px;
    margin-left: 12px;
    height: 1px;
  }
}
.main_topics .inner-box .topic_tit {
  font-size: 1.6rem;
  font-weight: 500;
  color: #1b1b1b;
  flex: 1;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .main_topics .inner-box .topic_tit {
    font-size: 1.4rem;
  }
}
@media (max-width: 559.9px) {
  .main_topics .inner-box .topic_tit {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.main_topics .inner-box .topic_tit span {
  padding-bottom: 4px;
  background: linear-gradient(#1b1b1b, #1b1b1b) 0 100%/0 1px no-repeat;
  transition: background 0.3s;
}
.main_topics .inner-box:hover .topic_tit span {
  background-size: 100% 1px;
}
.main_topics .news_link {
  width: 180px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .main_topics .news_link {
    width: 128px;
  }
}
.main_topics .news_link i {
  margin-left: 16px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .main_topics .news_link i {
    margin-left: 6px;
  }
}
@media (max-width: 559.9px) {
  .main_topics .news_link {
    width: auto;
    margin: 10px auto 0;
  }
}

.top_reason_section {
  width: 100%;
  position: relative;
  padding: 8rem 12rem 12rem;
  background: linear-gradient(126deg, #d6c37b 30.21%, #fcf4d4 53.44%, #ccc19a 83.38%);
  overflow: hidden;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_reason_section {
    padding: 8rem 7rem 32rem;
  }
}
@media (max-width: 559.9px) {
  .top_reason_section {
    padding: 6rem 2rem 5rem;
  }
}
.top_reason_section::before {
  content: "";
  display: block;
  width: 8.8rem;
  height: 19rem;
  opacity: 0.5;
  background: var(--Black, #1b1b1b);
  position: absolute;
  left: 0;
  top: 0;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_reason_section::before {
    width: 40px;
    height: 160px;
  }
}
@media (max-width: 559.9px) {
  .top_reason_section::before {
    width: 16px;
    height: 160px;
  }
}
.top_reason_section .tr_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.top_reason_section .content_area {
  width: 100%;
  position: relative;
  z-index: 3;
  height: 70vh;
}
@media (max-width: 1199.9px) {
  .top_reason_section .content_area {
    height: 60vh;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_reason_section .content_area {
    height: 33vh;
  }
}
.top_reason_section .content_area .img_side {
  width: 68%;
  position: relative;
}
@media (max-width: 1199.9px) {
  .top_reason_section .content_area .img_side {
    width: 60%;
  }
}
@media (max-width: 820.9px) {
  .top_reason_section .content_area .img_side {
    width: 88%;
    aspect-ratio: 2/1;
    overflow: hidden;
  }
}
@media (max-width: 559.9px) {
  .top_reason_section .content_area .img_side {
    width: 100%;
  }
}
.top_reason_section .content_area .img_side img {
  display: block;
  width: 100%;
}
.top_reason_section .content_area .text_side {
  width: 35%;
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 12rem;
}
@media (max-width: 1199.9px) {
  .top_reason_section .content_area .text_side {
    width: 59%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_reason_section .content_area .text_side {
    width: 48%;
  }
}
@media (max-width: 559.9px) {
  .top_reason_section .content_area .text_side {
    width: 91%;
    position: relative;
    padding-top: 0;
    margin-left: auto;
    z-index: 8;
  }
}
.top_reason_section .content_area .text_side::after {
  content: "";
  display: block;
  width: 4rem;
  height: 5rem;
  background-color: white;
  position: absolute;
  right: 0;
  top: 7rem;
}
@media (max-width: 559.9px) {
  .top_reason_section .content_area .text_side::after {
    display: none;
  }
}
.top_reason_section .content_area .text_side .bg_white {
  padding: 5rem 6rem 5rem 5rem;
  background-color: white;
  width: 100%;
  position: relative;
}
@media (max-width: 559.9px) {
  .top_reason_section .content_area .text_side .bg_white {
    padding: 3.2rem 6rem 3.2rem 3.2rem;
  }
}
.top_reason_section .content_area .text_side .bg_white::after {
  content: "";
  display: block;
  width: 4rem;
  height: 10rem;
  background-color: #1b1b1b;
  position: absolute;
  right: 0;
  top: 0;
}
@media (min-width: 821px) {
  .top_reason_section .content_area .text_side .bg_white > p {
    font-size: 1.8rem;
    line-height: 3.3rem;
  }
}
.top_reason_section .content_area .abs_sq-1 {
  background: rgba(5, 5, 5, 0.3);
  width: 25.6rem;
  height: 16rem;
  position: absolute;
  left: 0;
  bottom: 2rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_reason_section .content_area .abs_sq-1 {
    bottom: -11rem;
  }
}
.top_reason_section .abs_objects {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 559.9px) {
  .top_reason_section .abs_objects {
    display: none;
  }
}
.top_reason_section .abs_objects .e_text-1 {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  left: 10rem;
  top: 3rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_reason_section .abs_objects .e_text-1 {
    font-size: 5rem;
  }
}
.top_reason_section .abs_objects .e_text-2 {
  color: rgba(107, 97, 61, 0.5);
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  left: 18rem;
  top: 19rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_reason_section .abs_objects .e_text-2 {
    font-size: 3rem;
    left: 6rem;
  }
}
.top_reason_section .abs_objects .e_text-3 {
  color: rgba(107, 97, 61, 0.5);
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  left: 14rem;
  top: 27rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_reason_section .abs_objects .e_text-3 {
    font-size: 5.5rem;
    top: 30rem;
  }
}
.top_reason_section .abs_objects .e_text-4 {
  color: rgba(107, 97, 61, 0.5);
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  right: 16rem;
  top: 16rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_reason_section .abs_objects .e_text-4 {
    font-size: 4rem;
    left: 64rem;
  }
}
.top_reason_section .abs_objects .e_text-5 {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 10rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  right: 10rem;
  top: 31rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_reason_section .abs_objects .e_text-5 {
    font-size: 9rem;
    left: 53rem;
    top: 28rem;
  }
}

.top_reason_head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 4rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 5rem;
}
@media (max-width: 559.9px) {
  .top_reason_head {
    margin-bottom: 2rem;
  }
}
.top_reason_head::before, .top_reason_head::after {
  content: "";
  display: block;
  width: 3rem;
  height: 2rem;
  position: absolute;
  top: 4.8rem;
}
@media (max-width: 559.9px) {
  .top_reason_head::before, .top_reason_head::after {
    width: 1.6rem;
    height: 1.2rem;
    top: 4.2rem;
  }
}
.top_reason_head::before {
  left: -5rem;
  background: url(../images/icon/icon-check-s.png) no-repeat;
  background-size: contain;
}
@media (max-width: 559.9px) {
  .top_reason_head::before {
    left: -2.2rem;
  }
}
.top_reason_head::after {
  right: -5rem;
  background: url(../images/icon/icon-check-e.png) no-repeat;
  background-size: contain;
}
@media (max-width: 559.9px) {
  .top_reason_head::after {
    right: -2.2rem;
  }
}
.top_reason_head p {
  color: #6b613d;
  font-size: 2.8rem;
  font-weight: bold;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_reason_head p {
    font-size: 2.8rem;
  }
}
@media (max-width: 559.9px) {
  .top_reason_head p {
    font-size: 1.8rem;
  }
}

.top_items_section {
  background-color: #1b1b1b;
  width: 100%;
  overflow: hidden;
  display: flex;
}
@media (max-width: 820.9px) {
  .top_items_section {
    flex-direction: column;
  }
}
@media (min-width: 821px) {
  .top_items_section .text_side {
    width: 66%;
    padding: 10rem 2% 12rem 13%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_items_section .text_side {
    padding: 56px;
  }
}
@media (max-width: 559.9px) {
  .top_items_section .text_side {
    padding: 40px 24px;
  }
}
.top_items_section .text_side h3 {
  color: white;
  font-size: 2rem;
  font-weight: bold;
  margin: 6rem 0 2rem;
}
@media (max-width: 559.9px) {
  .top_items_section .text_side h3 {
    margin: 4rem 0 2rem;
    font-size: 1.8rem;
  }
}
.top_items_section .text_side .item_list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2.4rem;
}
@media (max-width: 559.9px) {
  .top_items_section .text_side .item_list {
    gap: 1rem;
  }
}
.top_items_section .text_side .item_list > li {
  width: calc(33.3333333333% - 1.6rem);
}
@media (max-width: 559.9px) {
  .top_items_section .text_side .item_list > li {
    width: calc(33.3333333333% - 0.64rem);
  }
}
.top_items_section .text_side .item_list > li .img {
  width: 100%;
  aspect-ratio: 2/3;
  position: relative;
  transform: skewX(-8deg);
}
.top_items_section .text_side .item_list > li .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.top_items_section .text_side .item_list > li .caption {
  text-align: center;
  color: white;
  font-weight: bold;
  margin: 1rem 4rem 0 0;
}
@media (max-width: 559.9px) {
  .top_items_section .text_side .item_list > li .caption {
    font-size: 12px;
    margin: 8px 12px 0 0;
  }
}
.top_items_section .text_side .other_item_list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem 1.2rem;
}
@media (max-width: 559.9px) {
  .top_items_section .text_side .other_item_list {
    gap: 8px 8px;
  }
}
.top_items_section .text_side .other_item_list > li {
  background-color: white;
  width: calc(25% - 0.9rem);
  height: 5.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: skewX(-8deg);
}
@media (max-width: 559.9px) {
  .top_items_section .text_side .other_item_list > li {
    width: calc(25% - 6px);
  }
}
.top_items_section .text_side .other_item_list > li span {
  transform: skewX(8deg);
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 559.9px) {
  .top_items_section .text_side .other_item_list > li span {
    font-size: 1.2rem;
  }
}
.top_items_section .img_side {
  position: relative;
  overflow: hidden;
}
@media (min-width: 821px) {
  .top_items_section .img_side {
    width: 34%;
    transform: skewX(-8deg);
    right: -8rem;
  }
}
@media (max-width: 820.9px) {
  .top_items_section .img_side {
    width: 100%;
    height: 40rem;
    transform: skewY(-5deg);
    bottom: -3rem;
  }
}
@media (max-width: 559.9px) {
  .top_items_section .img_side {
    height: 28rem;
  }
}
.top_items_section .img_side img {
  display: block;
  position: absolute;
}
@media (min-width: 821px) {
  .top_items_section .img_side img {
    left: 35%;
    top: 50%;
    width: 140%;
    max-width: 140%;
    transform: translate(-50%, -50%) skewX(8deg);
  }
}
@media (max-width: 820.9px) {
  .top_items_section .img_side img {
    left: 50%;
    top: 100%;
    transform: translate(-50%, -50%) skewY(5deg);
  }
}

.top_market_section {
  padding: 10rem 0;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_market_section {
    padding: 8rem 0;
  }
}
@media (max-width: 559.9px) {
  .top_market_section {
    padding: 64px 0;
  }
}
.top_market_section .bg_black {
  background-color: #1b1b1b;
  padding: 5rem 6.4rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem 2.4rem;
  width: 86%;
  margin: 0 auto;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_market_section .bg_black {
    padding: 4rem;
    margin: 4rem auto 0;
  }
}
@media (max-width: 559.9px) {
  .top_market_section .bg_black {
    padding: 3rem;
    margin: 2.4rem auto 0;
  }
}
.top_market_section .bg_black .black_item {
  width: calc((100% - 2.4rem) / 2);
}
@media (max-width: 559.9px) {
  .top_market_section .bg_black .black_item {
    width: 100%;
  }
}
.top_market_section .bg_black .black_item .heading {
  text-align: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 1.2rem;
}
@media (max-width: 820.9px) {
  .top_market_section .bg_black .black_item .heading {
    font-size: 1.6rem;
    font-weight: bold;
  }
}
.top_market_section .bg_black .black_item .white_box {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
}
.top_market_section .bg_black .black_item .white_box .upper_text {
  text-align: center;
  height: 2rem;
}
.top_market_section .bg_black .black_item .white_box .num {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 7.6rem;
  font-weight: 700;
  line-height: 1;
  line-height: 1;
}
.top_market_section .bg_black .black_item .white_box .lower_text {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
}

.bg_dot {
  background: url(../images/top/dot_bg.png);
  background-size: 4vw 200vw;
  padding: 16rem 0 20rem;
}
@media (max-width: 820.9px) {
  .bg_dot {
    background-size: 5rem 250rem;
  }
}
@media (max-width: 559.9px) {
  .bg_dot {
    background-size: 2.8rem 140rem;
    padding: 6rem 0;
  }
}

.top_product_section {
  width: 100%;
  position: relative;
  padding: 8rem 0 12rem;
  background: linear-gradient(126deg, #d6c37b 30.21%, #fcf4d4 53.44%, #ccc19a 83.38%);
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_product_section {
    padding: 6.4rem 0;
  }
}
@media (max-width: 559.9px) {
  .top_product_section {
    padding: 4.8rem 0;
  }
}

.top_p_tus {
  color: #6b613d;
  margin: 4rem 0;
}
@media (max-width: 559.9px) {
  .top_p_tus {
    margin: 24px 0;
    font-weight: bold;
  }
}

.product_list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  gap: 4.8rem 4.8rem;
}
@media (min-width: 560px) {
  .product_list {
    flex-wrap: wrap;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .product_list {
    gap: 4rem 2.4rem;
  }
}
@media (max-width: 559.9px) {
  .product_list {
    flex-direction: column;
  }
}
.product_list .product_item {
  width: calc(33.3333333333% - 3.2rem);
  position: relative;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .product_list .product_item {
    width: calc(33.3333333333% - 1.6rem);
  }
}
@media (max-width: 559.9px) {
  .product_list .product_item {
    width: 100%;
  }
}
.product_list .product_item .thumb {
  width: 100%;
  aspect-ratio: 43/30;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}
.product_list .product_item .thumb img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.product_list .product_item .product_name {
  text-align: center;
  font-weight: bold;
  margin: 1rem 0;
}
.product_list .product_item .product_list_info {
  margin: 2rem auto 0;
}
@media (max-width: 820.9px) {
  .product_list .product_item .product_list_info {
    margin-top: 1rem;
  }
}
@media (min-width: 821px) {
  .product_list .product_item .product_list_info {
    padding: 0 2rem;
  }
}
.product_list .product_item .product_list_info dl {
  display: flex;
}
@media (min-width: 821px) {
  .product_list .product_item .product_list_info dl:not(:last-child) {
    margin-bottom: 1.2rem;
  }
}
.product_list .product_item .product_list_info dl dt {
  width: 8rem;
  border-right: 0.5rem solid #6b613d;
}
@media (max-width: 820.9px) {
  .product_list .product_item .product_list_info dl dt {
    display: none;
  }
}
@media (min-width: 821px) {
  .product_list .product_item .product_list_info dl dd {
    width: calc(100% - 8rem);
    padding-left: 1.6rem;
  }
}

.top_about_section {
  width: 100vw;
  position: relative;
  overflow: hidden;
}
@media (min-width: 821px) {
  .top_about_section {
    padding-bottom: 10vw;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_about_section {
    height: 64rem;
  }
}
.top_about_section .img_side {
  width: 62.5%;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_about_section .img_side {
    width: 80%;
  }
}
@media (max-width: 559.9px) {
  .top_about_section .img_side {
    width: 100%;
  }
}
.top_about_section .text_side {
  width: 55%;
  background-color: #1b1b1b;
  position: absolute;
  right: 0;
  bottom: 4vw;
  display: flex;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_about_section .text_side {
    width: 92%;
    background: rgba(0, 0, 0, 0.8);
  }
}
@media (max-width: 559.9px) {
  .top_about_section .text_side {
    width: 100%;
    position: relative;
    flex-direction: column;
  }
}
.top_about_section .text_side .inner_text {
  padding: 5rem;
}
@media (min-width: 821px) {
  .top_about_section .text_side .inner_text {
    width: 450px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_about_section .text_side .inner_text {
    padding: 4rem 5rem 5rem;
  }
}
@media (max-width: 559.9px) {
  .top_about_section .text_side .inner_text {
    padding: 24px 32px;
  }
}
.top_about_section .text_side .inner_text .inner_text_p {
  color: white;
  margin: 4rem 0;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_about_section .text_side .inner_text .inner_text_p {
    margin: 3rem 0;
  }
}
@media (max-width: 559.9px) {
  .top_about_section .text_side .inner_text .inner_text_p {
    margin: 24px 0;
  }
}
.top_about_section .text_side .text_side_img {
  position: relative;
  overflow: hidden;
}
@media (min-width: 560px) {
  .top_about_section .text_side .text_side_img {
    width: calc(100% - 364px);
    transform: skewX(-8deg);
    right: -8rem;
  }
}
@media (max-width: 559.9px) {
  .top_about_section .text_side .text_side_img {
    width: 100%;
    height: 20rem;
    transform: skewY(-5deg);
    bottom: -3rem;
  }
}
.top_about_section .text_side .text_side_img img {
  display: block;
  position: absolute;
  left: 40%;
  top: 50%;
  width: 100%;
  max-width: 120%;
}
@media (min-width: 560px) {
  .top_about_section .text_side .text_side_img img {
    transform: translate(-50%, -50%) skewX(8deg);
  }
}
@media (max-width: 559.9px) {
  .top_about_section .text_side .text_side_img img {
    left: 50%;
    top: 10%;
    width: 100%;
    transform: translate(-50%, -50%) skewY(5deg);
  }
}

.top_recruit_section {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.top_recruit_section .float_img {
  width: 100%;
}
.top_recruit_section .float_img img {
  display: block;
  width: 100%;
}
.top_recruit_section .top_recruit_textarea {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8rem;
}
@media (min-width: 560px) {
  .top_recruit_section .top_recruit_textarea {
    position: absolute;
    left: 8vw;
    width: 66vw;
    bottom: 0;
    height: 28vw;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_recruit_section .top_recruit_textarea {
    height: 212px;
    left: 5rem;
    gap: 3rem;
    padding-right: 4rem;
  }
}
@media (max-width: 559.9px) {
  .top_recruit_section .top_recruit_textarea {
    background-color: #de0101;
    flex-direction: column;
    gap: 2.4rem;
    padding: 0 24px 32px;
    position: relative;
    top: -40px;
  }
}
.top_recruit_section .top_recruit_textarea .top_recruit_textarea_p {
  color: white;
  margin-top: 2rem;
  font-size: 1.8rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_recruit_section .top_recruit_textarea .top_recruit_textarea_p {
    font-size: 1.5rem;
    margin-top: 1.6rem;
  }
}
@media (max-width: 820.9px) {
  .top_recruit_section .top_recruit_textarea .top_recruit_textarea_p br {
    display: none;
  }
}

.top_news_section_header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5rem;
}
@media (max-width: 559.9px) {
  .top_news_section_header {
    padding: 0 24px;
    margin-bottom: 4rem;
  }
}
@media (max-width: 559.9px) {
  .top_news_section_header .btn-black {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.top_news_section {
  width: 100%;
  padding: 8rem 0;
  position: relative;
}
@media (max-width: 559.9px) {
  .top_news_section {
    width: 100%;
    padding: 32px 0 150px;
    overflow: hidden;
  }
}

.top_news_list {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5rem 3rem;
  flex-wrap: wrap;
}
@media (max-width: 559.9px) {
  .top_news_list {
    overflow-x: scroll;
    overflow-y: hidden;
    flex-wrap: nowrap;
    scrollbar-width: none;
    padding-left: 2.4rem;
  }
}
@media (max-width: 559.9px) {
  .top_news_list .news_item {
    width: 200px;
    flex-shrink: 0;
  }
}

.news_item {
  position: relative;
  transition: all 0.5s ease;
  width: calc((100% - 6rem) / 3);
  max-width: 500px;
}
@media (max-width: 559.9px) {
  .news_item {
    width: 100%;
    margin: 0 auto;
  }
}
.news_item .thumb {
  aspect-ratio: 36/26;
  position: relative;
  width: 100%;
}
.news_item .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.news_item.flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 559.9px) {
  .news_item.flex {
    flex-direction: column;
  }
}
@media (min-width: 560px) {
  .news_item.flex .innerTxt {
    width: calc(100% - 280px);
  }
}
.news_item .news_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 1rem;
}
.news_item .news_info .date {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
  color: #1b1b1b;
}
.news_item .news_info .news_item_cat_tags {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
.news_item .news_info .news_item_cat_tags i {
  width: 15px;
  color: #f4df35;
}
.news_item .news_info .news_item_cat_tags .cat_tag_item {
  font-size: 1.3rem;
  color: #1b1b1b;
  padding: 0 1rem;
  border: 0.1rem #1b1b1b solid;
}
.news_item .tit {
  margin-top: 1rem;
  font-size: 1.5rem;
  color: #1b1b1b;
  font-weight: 600;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: all 0.3s ease;
}
.news_item:hover .tit,
.news_item :active .tit {
  color: #b3b1b9;
}

/**************
選ばれる理由
**************/
.reason_section-1 {
  width: 100%;
  position: relative;
  padding: 10rem;
  margin-top: 7rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .reason_section-1 {
    padding-bottom: 0;
  }
}
@media (max-width: 559.9px) {
  .reason_section-1 {
    padding: 40px 0;
    margin-top: 40px;
  }
}
.reason_section-1::after {
  display: block;
  content: "";
  width: 4.8rem;
  height: 42rem;
  background: linear-gradient(180deg, #de0101 0%, #de0101 70%, #1b1b1b 70%, #1b1b1b 100%);
  position: absolute;
  left: 0;
  bottom: 36rem;
}
@media (max-width: 559.9px) {
  .reason_section-1::after {
    width: 12px;
    height: 200px;
  }
}
.reason_section-1 .inner_wrap {
  padding: 0 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 820.9px) {
  .reason_section-1 .inner_wrap {
    flex-direction: column;
    padding: 0;
  }
}
@media (min-width: 821px) {
  .reason_section-1 .inner_wrap .img_side {
    width: 53.6%;
  }
}
.reason_section-1 .inner_wrap .img_side .v_texts {
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem;
  position: absolute;
  left: 14vw;
  top: 0;
}
@media (max-width: 559.9px) {
  .reason_section-1 .inner_wrap .img_side .v_texts {
    gap: 0.8rem;
  }
}
.reason_section-1 .inner_wrap .img_side .v_texts p {
  writing-mode: vertical-rl;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 2rem 1rem;
  background-color: white;
  font-family: "Noto+Serif+JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 3rem;
  font-weight: normal;
  letter-spacing: 0.2em;
}
@media (max-width: 559.9px) {
  .reason_section-1 .inner_wrap .img_side .v_texts p {
    font-size: 1.5rem;
    padding: 10px 4px;
  }
}
.reason_section-1 .inner_wrap .text_side {
  padding-top: 2rem;
}
@media (min-width: 821px) {
  .reason_section-1 .inner_wrap .text_side {
    width: 40%;
    padding-right: 2vw;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .reason_section-1 .inner_wrap .text_side {
    padding: 4rem 5rem 1rem 10rem;
  }
}
@media (max-width: 559.9px) {
  .reason_section-1 .inner_wrap .text_side {
    padding: 24px 24px 10px 40px;
  }
}
.reason_section-1 .inner_wrap .text_side h2 {
  font-family: "Noto+Serif+JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 3.4rem;
  font-weight: normal;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-bottom: 4rem;
}
@media (max-width: 559.9px) {
  .reason_section-1 .inner_wrap .text_side h2 {
    font-size: 2rem;
    margin-bottom: 24px;
  }
}
.reason_section-1.reverse {
  margin-top: 3rem;
}
.reason_section-1.reverse::after {
  left: auto;
  right: 0;
}
@media (min-width: 821px) {
  .reason_section-1.reverse .inner_wrap {
    flex-direction: row-reverse;
  }
}
@media (min-width: 821px) {
  .reason_section-1.reverse .inner_wrap .text_side {
    padding-right: 0;
    padding-left: 2vw;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .reason_section-1.reverse .inner_wrap .text_side {
    padding: 4rem 10rem 1rem 5rem;
  }
}
@media (max-width: 559.9px) {
  .reason_section-1.reverse .inner_wrap .text_side {
    padding: 24px 40px 10px 24px;
  }
}

.reason_section-2 {
  width: 100%;
  background-color: #1b1b1b;
  margin: 10rem auto;
  padding: 10rem 0;
}
@media (max-width: 559.9px) {
  .reason_section-2 {
    padding: 6rem 0;
    margin: 0;
  }
}
.reason_section-2 .bg_white {
  display: flex;
  background-color: white;
  border-radius: 0.5rem;
  padding: 4rem;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 559.9px) {
  .reason_section-2 .bg_white {
    flex-direction: column;
    padding: 24px;
  }
}
@media (min-width: 560px) {
  .reason_section-2 .bg_white .text_area {
    width: 48%;
    font-size: 1.8rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .reason_section-2 .bg_white .text_area {
    width: 62%;
  }
}
.reason_section-2 .bg_white .images {
  display: flex;
  gap: 2.4rem;
}
@media (min-width: 560px) {
  .reason_section-2 .bg_white .images {
    width: 48%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .reason_section-2 .bg_white .images {
    flex-direction: column;
    width: 32%;
  }
}
@media (max-width: 559.9px) {
  .reason_section-2 .bg_white .images {
    margin-top: 2rem;
  }
}
.reason_section-2 .bg_white .images img {
  display: block;
  width: calc(50% - 1.2rem);
  border-radius: 0.5rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .reason_section-2 .bg_white .images img {
    width: 100%;
  }
}
.reason_section-2 .sect_under {
  display: flex;
  width: 100%;
  gap: 3.2rem;
  justify-content: space-between;
  margin-top: 5rem;
}
@media (max-width: 559.9px) {
  .reason_section-2 .sect_under {
    margin-top: 24px;
    gap: 12px 12px;
    flex-wrap: wrap;
  }
}
@media (min-width: 560px) {
  .reason_section-2 .sect_under .sect_under_column {
    width: calc(25% - 2.4rem);
  }
}
@media (max-width: 559.9px) {
  .reason_section-2 .sect_under .sect_under_column {
    width: calc(50% - 6px);
  }
}
.reason_section-2 .sect_under .sect_under_column .img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
}
.reason_section-2 .sect_under .sect_under_column .caption {
  color: white;
  font-weight: bold;
  text-align: center;
  margin-top: 1rem;
}
@media (min-width: 560px) {
  .reason_section-2 .sect_under .sect_under_column .caption {
    font-size: 2rem;
  }
}

.mincho-title {
  font-family: "Noto+Serif+JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 4rem;
  font-weight: normal;
}
@media (max-width: 559.9px) {
  .mincho-title {
    font-size: 2.2rem;
  }
}
.mincho-title.white {
  color: white;
}

.range_table {
  width: 100%;
  min-width: 960px;
}
.range_table thead tr th {
  background-color: #6b613d;
  color: white;
  padding: 2rem;
  text-align: center;
  vertical-align: middle;
  border: 0.4rem solid white;
  border-radius: 0.4rem;
}
.range_table tbody tr th {
  background-color: #ff0000;
  color: white;
  padding: 2rem;
  text-align: center;
  vertical-align: middle;
  border: 0.4rem solid white;
  border-radius: 0.4rem;
}
.range_table tbody tr td {
  background-color: #f5f5f5;
  padding: 2rem;
  text-align: center;
  vertical-align: middle;
  border: 0.4rem solid white;
  border-radius: 0.4rem;
}

.reason_bg_sect {
  width: 86%;
  margin: 10rem auto 4rem;
  position: relative;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 821px) {
  .reason_bg_sect {
    height: 100vh;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .reason_bg_sect {
    padding-top: 0;
    height: 90vh;
  }
}
@media (max-width: 559.9px) {
  .reason_bg_sect {
    margin: 4rem auto;
  }
}
.reason_bg_sect::after {
  display: block;
  content: "";
  width: 4.8rem;
  height: 42rem;
  background: linear-gradient(180deg, #de0101 0%, #de0101 70%, #1b1b1b 70%, #1b1b1b 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 559.9px) {
  .reason_bg_sect::after {
    width: 12px;
    height: 200px;
    background: linear-gradient(180deg, #de0101 0%, #de0101 70%, #b3b1b9 70%, #b3b1b9 100%);
  }
}
.reason_bg_sect .inner_wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 560px) {
  .reason_bg_sect .inner_wrap {
    background: rgba(0, 0, 0, 0.8);
    width: 50vw;
    height: 80vh;
    padding: 0 8rem;
    position: -webkit-sticky;
    position: sticky;
    top: 10rem;
  }
}
@media (max-width: 1199.9px) {
  .reason_bg_sect .inner_wrap {
    width: 70vw;
  }
}
@media (max-width: 559.9px) {
  .reason_bg_sect .inner_wrap {
    width: 90vw;
    margin-top: 26rem;
    background-color: #1b1b1b;
    padding: 32px 24px 40px 40px;
  }
}
.reason_bg_sect .inner_wrap h3 {
  font-family: "Noto+Serif+JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 3.2rem;
  font-weight: normal;
  color: white;
  margin-bottom: 2rem;
  opacity: 0;
}
@media (max-width: 559.9px) {
  .reason_bg_sect .inner_wrap h3 {
    font-size: 2.4rem;
  }
}
.reason_bg_sect .inner_wrap p {
  color: white;
  opacity: 0;
}
@media (min-width: 560px) {
  .reason_bg_sect .inner_wrap p {
    font-size: 1.8rem;
    line-height: 4rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .reason_bg_sect .inner_wrap p {
    line-height: 3.6rem;
  }
}
.reason_bg_sect .inner_wrap p + h3 {
  margin-top: 8rem;
}
@media (max-width: 820.9px) {
  .reason_bg_sect .inner_wrap p + h3 {
    margin-top: 4rem;
  }
}
.reason_bg_sect .inner_wrap .list-sq-red {
  opacity: 0;
  margin: 2rem 0;
}
.reason_bg_sect .inner_wrap .list-sq-red li {
  color: white;
  font-size: 2.1rem;
}
.reason_bg_sect.moved .inner_wrap h3 {
  -webkit-animation: slideInR 0.4s ease forwards;
          animation: slideInR 0.4s ease forwards;
}
.reason_bg_sect.moved .inner_wrap p {
  -webkit-animation: slideInR 0.4s ease 0.4s forwards;
          animation: slideInR 0.4s ease 0.4s forwards;
}
.reason_bg_sect.moved .inner_wrap .list-sq-red {
  -webkit-animation: slideInR 0.4s ease 0.4s forwards;
          animation: slideInR 0.4s ease 0.4s forwards;
}

.reason_section-3 {
  background: url(../images/page/reason/reason_bg-02.jpg) no-repeat;
  background-size: cover;
}
@media (min-width: 560px) {
  .reason_section-3 {
    background-attachment: fixed;
  }
}
@media (max-width: 559.9px) {
  .reason_section-3 {
    background-size: contain;
    background-position: top;
  }
}

.reason_section-4 {
  background: url(../images/page/reason/reason_bg-04.jpg) no-repeat;
  background-size: cover;
}
@media (min-width: 560px) {
  .reason_section-4 {
    background-attachment: fixed;
  }
}
@media (max-width: 559.9px) {
  .reason_section-4 {
    background-size: contain;
    background-position: top;
  }
}

.reason_section-5 {
  width: 100%;
  position: relative;
  padding: 0 10rem 10rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .reason_section-5 {
    padding: 5rem 5rem 0;
  }
}
@media (max-width: 559.9px) {
  .reason_section-5 {
    padding: 0 3rem 3rem;
  }
}

.case_img .case_img_list {
  display: flex;
  align-items: cente;
  justify-content: flex-start;
  gap: 4rem;
  flex-wrap: wrap;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .case_img .case_img_list {
    gap: 3rem;
  }
}
@media (max-width: 559.9px) {
  .case_img .case_img_list {
    gap: 1.6rem;
  }
}
.case_img .case_img_list li {
  width: calc((100% - 8rem) / 3);
  aspect-ratio: 43/30;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .case_img .case_img_list li {
    width: calc((100% - 6rem) / 3);
  }
}
@media (max-width: 559.9px) {
  .case_img .case_img_list li {
    width: 100%;
  }
}
.case_img .case_img_list li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/**************
取扱商品
**************/
.c_search_area {
  margin-bottom: 8rem;
}
@media (max-width: 559.9px) {
  .c_search_area {
    margin-bottom: 5rem;
  }
}

.search_box_table {
  width: 100%;
}
.search_box_table th {
  width: 16rem;
  background-color: #6b613d;
  padding: 1.2rem;
  border: 0.4rem white solid;
  color: white;
  vertical-align: middle;
}
@media (max-width: 559.9px) {
  .search_box_table th {
    display: block;
    width: 100%;
  }
}
.search_box_table td {
  width: calc(100% - 120px);
  padding: 12px;
  background-color: #f5f5f5;
  border: 4px white solid;
}
@media (max-width: 559.9px) {
  .search_box_table td {
    display: block;
    width: 100%;
  }
}
.search_box_table td .search_item_list {
  width: 100%;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 5px 16px;
}
.search_box_table td .search_item_list:not(:last-of-type) {
  margin-bottom: 10px;
}
.search_box_table td .search_item_list > li {
  width: calc(25% - 12px);
}
@media (max-width: 559.9px) {
  .search_box_table td .search_item_list > li {
    width: calc(50% - 8px);
  }
}

.search_item_title {
  background-color: #c48686;
  padding: 2px 12px;
  margin-bottom: 8px;
  color: white;
}

.search_btn_box {
  text-align: center;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search_btn {
  background-color: #1b1b1b;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 280px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: none;
  transition: all 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  font-weight: bold;
  font-size: 1.8rem;
  border-radius: 4px;
  cursor: pointer;
  margin: 0 10px;
  gap: 10px;
}

.commodity {
  margin-top: 6rem;
}
@media (max-width: 559.9px) {
  .commodity {
    margin-top: 24px;
  }
}

.com_section {
  margin-bottom: 12rem;
}
@media (max-width: 559.9px) {
  .com_section {
    margin-bottom: 64px;
  }
}

.com_header {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 5rem;
}
@media (max-width: 559.9px) {
  .com_header {
    flex-direction: column-reverse;
  }
}
.com_header .img {
  border-radius: 0.8rem;
  overflow: hidden;
}
@media (min-width: 560px) {
  .com_header .img {
    width: 49%;
  }
}
.com_header .title_side {
  position: relative;
  padding-top: 5rem;
}
@media (min-width: 560px) {
  .com_header .title_side {
    width: 46%;
  }
}
@media (max-width: 559.9px) {
  .com_header .title_side {
    padding: 20px 0;
  }
}
.com_header .title_side::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.8rem;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(-90deg, #de0101 0%, #de0101 70%, #1b1b1b 70%, #1b1b1b 100%);
}
@media (max-width: 559.9px) {
  .com_header .title_side::before {
    height: 3px;
  }
}
.com_header .title_side .jp {
  font-size: 3rem;
}
@media (max-width: 559.9px) {
  .com_header .title_side .jp {
    font-size: 24px;
  }
}
.com_header .title_side .eng {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}

.com_listarea {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media (max-width: 559.9px) {
  .com_listarea {
    gap: 3px;
  }
}
.com_listarea dl {
  width: 100%;
  display: flex;
  gap: 0.6rem;
  position: relative;
}
@media (max-width: 559.9px) {
  .com_listarea dl {
    gap: 3px;
  }
}
.com_listarea dl dt {
  width: 30rem;
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 1.2rem 2.4rem;
}
@media (max-width: 559.9px) {
  .com_listarea dl dt {
    width: 80px;
    padding: 10px;
  }
}
.com_listarea dl dd {
  width: calc(100% - 30.6rem);
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: white;
  padding: 1.2rem 2.4rem;
  position: relative;
}
@media (max-width: 559.9px) {
  .com_listarea dl dd {
    width: calc(100% - 83px);
    padding: 10px 24px 10px 10px;
    gap: 3px;
  }
}
.com_listarea dl dd > span {
  background-color: white;
  color: #6b613d;
  padding: 0.5rem 2rem;
  border-radius: 0.4rem;
}
@media (max-width: 559.9px) {
  .com_listarea dl dd > span {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 3px 15px;
  }
}
.com_listarea dl.head dt {
  background-color: #1b1b1b;
}
.com_listarea dl.head dd {
  background-color: #1b1b1b;
  justify-content: center;
}
.com_listarea dl.coms dt {
  background-color: #6b613d;
}
.com_listarea dl.coms dd {
  background-color: #6b613d;
}
.com_listarea dl.coms dd::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  content: "";
  display: block;
  background: url(../images/icon/icon-arrow-white.png) no-repeat;
  width: 1.2rem;
  height: 1.2rem;
  background-size: cover;
}

.pdf-btn_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  margin-top: 5rem;
}
@media (max-width: 559.9px) {
  .pdf-btn_box {
    flex-direction: column;
    gap: 12px;
  }
}
.pdf-btn_box .pdf_btn {
  background-color: #1b1b1b;
  color: white;
  width: 200px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}
.pdf-btn_box .pdf_btn i {
  padding-top: 4px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.pdf-btn_box .pdf_btn:hover {
  background-color: #4d4d4d;
}

/**************
材料相場
**************/
.page_navi {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}
@media (max-width: 559.9px) {
  .page_navi {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 4px;
  }
}
.page_navi > li {
  flex-shrink: 0;
}
@media (max-width: 559.9px) {
  .page_navi > li {
    width: calc(50% - 2px);
  }
}
.page_navi > li > a {
  width: 24rem;
  height: 6rem;
  padding: 0 3rem 0 1.6rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  flex-direction: column;
  background-color: #6b613d;
  transition: all 0.4s ease;
}
.page_navi > li > a:hover {
  background-color: #444444;
}
@media (max-width: 559.9px) {
  .page_navi > li > a {
    width: 100%;
    height: 4.8rem;
    font-size: 1.2rem;
    line-height: 1.6rem;
    padding: 0 8px;
  }
}
.page_navi > li > a::after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: url(../images/icon/icon-arrow-down-white.png) no-repeat;
  background-size: cover;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 559.9px) {
  .page_navi > li > a::after {
    display: none;
  }
}
.page_navi > li > a .font-s {
  color: white;
  font-feature-settings: "palt";
}

.market_section {
  width: 100%;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .market_section {
    padding: 0 6vw;
  }
}
@media (max-width: 559.9px) {
  .market_section {
    padding: 0;
  }
}
.market_section .market_wrap {
  margin-top: 8rem;
}
@media (max-width: 559.9px) {
  .market_section .market_wrap {
    margin-top: 6rem;
  }
  .market_section .market_wrap:first-child {
    margin-top: 3rem;
  }
}
.market_section .market_wrap .bg_black {
  background-color: #1b1b1b;
  padding: 6.4rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem 2.4rem;
  margin-bottom: 5rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .market_section .market_wrap .bg_black {
    padding: 4rem;
    margin: 4rem auto;
  }
}
@media (max-width: 559.9px) {
  .market_section .market_wrap .bg_black {
    padding: 20px;
    margin: 2.4rem auto 3rem;
    gap: 2rem;
  }
}
.market_section .market_wrap .bg_black .black_item {
  width: calc(50% - 1.2rem);
}
@media (max-width: 559.9px) {
  .market_section .market_wrap .bg_black .black_item {
    width: 100%;
  }
}
.market_section .market_wrap .bg_black .black_item .heading {
  text-align: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 1.2rem;
}
@media (max-width: 820.9px) {
  .market_section .market_wrap .bg_black .black_item .heading {
    font-size: 1.6rem;
    font-weight: bold;
  }
}
.market_section .market_wrap .bg_black .black_item .white_box {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
}
.market_section .market_wrap .bg_black .black_item .white_box .upper_text {
  text-align: center;
  height: 2rem;
}
.market_section .market_wrap .bg_black .black_item .white_box .num {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  line-height: 1;
}
.market_section .market_wrap .bg_black .black_item .white_box .lower_text {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}
.market_section .market_wrap .bg_black .black_item .bottoms {
  color: white;
  margin-top: 0.4rem;
  text-align: center;
}

.price_scroll {
  height: 30rem;
  width: 80rem;
  border: 1px #dadada solid;
  overflow-y: scroll;
  margin: 0 auto;
}
@media (max-width: 820.9px) {
  .price_scroll {
    width: 100%;
  }
}

.price_history {
  width: 100%;
  max-width: 80rem;
}
.price_history tr th {
  border-right: 0.1rem solid #eee;
  padding: 1rem 1.5rem;
  text-align: left;
  width: 20rem;
}
@media (max-width: 559.9px) {
  .price_history tr th {
    display: block;
    width: 100%;
    padding: 10px 15px 0;
  }
}
.price_history tr td {
  padding: 1rem 2rem;
}
@media (max-width: 559.9px) {
  .price_history tr td {
    display: block;
    width: 100%;
    padding: 0 15px 10px;
  }
}
.price_history tr:nth-child(odd) th,
.price_history tr:nth-child(odd) td {
  background-color: #f5f5f5;
}
.price_history tr:nth-child(even) th,
.price_history tr:nth-child(even) td {
  background-color: white;
}

/**************
採用情報
**************/
.recruit_top_section {
  width: 100%;
  position: relative;
  padding: 12rem 0;
}
.recruit_top_section::before {
  content: "";
  display: block;
  width: 80vw;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #de0101;
}
@media (max-width: 820.9px) {
  .recruit_top_section::before {
    width: 100%;
  }
}
@media (max-width: 559.9px) {
  .recruit_top_section {
    padding: 4rem 0;
  }
}
.recruit_top_section .eng_title {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  padding-left: 8rem;
  color: white;
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}
@media (max-width: 559.9px) {
  .recruit_top_section .eng_title {
    font-size: 3rem;
    padding-left: 2rem;
    margin-bottom: 2rem;
  }
}
.recruit_top_section .message_text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  color: white;
}
@media (max-width: 820.9px) {
  .recruit_top_section .message_text {
    flex-direction: column;
    gap: 3rem;
  }
}
.recruit_top_section .message_text .rec_message {
  padding-left: 8rem;
  padding-right: 8rem;
}
@media (max-width: 559.9px) {
  .recruit_top_section .message_text .rec_message {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.recruit_top_section .message_text .rec_message .t_whites {
  font-size: 2.4rem;
  font-weight: bold;
}
@media (max-width: 559.9px) {
  .recruit_top_section .message_text .rec_message .t_whites {
    font-size: 1.8rem;
  }
}
.recruit_top_section .message_text .rec_message .t_whites_next {
  margin-top: 4rem;
}
@media (min-width: 560px) {
  .recruit_top_section .message_text .rec_message .t_whites_next {
    font-size: 1.8rem;
    line-height: 3.4rem;
  }
}
@media (max-width: 559.9px) {
  .recruit_top_section .message_text .rec_message .t_whites_next {
    margin-top: 1rem;
  }
}
.recruit_top_section .message_text .rec_message .t_name {
  margin-top: 4rem;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 559.9px) {
  .recruit_top_section .message_text .rec_message .t_name {
    margin-top: 3rem;
    font-size: 1.8rem;
  }
}
@media (max-width: 820.9px) {
  .recruit_top_section .message_text .img_side {
    width: 90%;
    margin: 0 auto;
  }
}

.motomeru_wrap {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 559.9px) {
  .motomeru_wrap {
    flex-direction: column;
    gap: 1rem;
  }
}
.motomeru_wrap .heading {
  width: 37rem;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0090a3;
  color: white;
  font-size: 4rem;
  border-radius: 50%;
}
@media (max-width: 820.9px) {
  .motomeru_wrap .heading {
    width: 20rem;
    font-size: 2.2rem;
  }
}
@media (max-width: 559.9px) {
  .motomeru_wrap .heading {
    width: 14rem;
    font-size: 1.8rem;
  }
}
.motomeru_wrap .inner {
  width: calc(100% - 44rem);
}
@media (max-width: 820.9px) {
  .motomeru_wrap .inner {
    width: calc(100% - 24rem);
  }
}
@media (max-width: 559.9px) {
  .motomeru_wrap .inner {
    width: 100%;
  }
}
.motomeru_wrap .inner .motomeru_list {
  display: flex;
  flex-direction: column;
}
.motomeru_wrap .inner .motomeru_list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.motomeru_wrap .inner .motomeru_list li .num {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  color: #ff0000;
}
@media (max-width: 559.9px) {
  .motomeru_wrap .inner .motomeru_list li .num {
    font-size: 3rem;
  }
}
.motomeru_wrap .inner .motomeru_list li .inner_text {
  width: calc(100% - 8rem);
  font-size: 2.4rem;
  position: relative;
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.motomeru_wrap .inner .motomeru_list li .inner_text::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.5rem;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ff0000;
  opacity: 0.1;
}
.motomeru_wrap .inner .motomeru_list li .inner_text::after {
  content: "";
  display: block;
  width: 8%;
  height: 0.5rem;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ff0000;
}
@media (max-width: 820.9px) {
  .motomeru_wrap .inner .motomeru_list li .inner_text {
    width: calc(100% - 6.6rem);
  }
}
@media (max-width: 559.9px) {
  .motomeru_wrap .inner .motomeru_list li .inner_text {
    height: 9rem;
    font-size: 1.6rem;
    width: calc(100% - 4rem);
  }
}
.motomeru_wrap .inner .motomeru_list li:nth-child(2) .num {
  color: #0090a3;
}
.motomeru_wrap .inner .motomeru_list li:nth-child(2) .inner_text::before, .motomeru_wrap .inner .motomeru_list li:nth-child(2) .inner_text::after {
  background-color: #0090a3;
}
.motomeru_wrap .inner .motomeru_list li:nth-child(3) .num {
  color: #ff7b00;
}
.motomeru_wrap .inner .motomeru_list li:nth-child(3) .inner_text::before, .motomeru_wrap .inner .motomeru_list li:nth-child(3) .inner_text::after {
  background-color: #ff7b00;
}
.motomeru_wrap .inner .motomeru_list li:nth-child(4) .num {
  color: #0ea0ee;
}
.motomeru_wrap .inner .motomeru_list li:nth-child(4) .inner_text::before, .motomeru_wrap .inner .motomeru_list li:nth-child(4) .inner_text::after {
  background-color: #0ea0ee;
}

.work_list {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media (max-width: 559.9px) {
  .work_list {
    gap: 2rem;
  }
}
.work_list li {
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 8rem #de0101 solid;
}
@media (max-width: 559.9px) {
  .work_list li {
    border-bottom: 25rem #de0101 solid;
  }
}
.work_list li .bg-img {
  width: 100%;
  position: relative;
}
.work_list li .bg-img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #625c5c;
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  top: 0;
}
.work_list li .bg-img img {
  display: block;
  width: 100%;
}
.work_list li .work_inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding-top: 8rem;
}
@media (max-width: 820.9px) {
  .work_list li .work_inner {
    padding-top: 4rem;
  }
}
@media (max-width: 559.9px) {
  .work_list li .work_inner {
    padding-top: 2rem;
  }
}
.work_list li .work_inner .eng_title {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: white;
  padding-left: 12rem;
  position: relative;
}
@media (max-width: 820.9px) {
  .work_list li .work_inner .eng_title {
    font-size: 4rem;
    padding-left: 4rem;
  }
}
@media (max-width: 559.9px) {
  .work_list li .work_inner .eng_title {
    font-size: 2.5rem;
  }
}
.work_list li .work_inner .eng_title::before {
  content: "";
  display: block;
  width: 10rem;
  height: 0.1rem;
  position: absolute;
  left: 0;
  top: 50%;
  background-color: white;
}
@media (max-width: 820.9px) {
  .work_list li .work_inner .eng_title::before {
    width: 3rem;
  }
}
.work_list li .work_inner .eng_title::after {
  content: "";
  display: block;
  width: 107rem;
  height: 0.1rem;
  position: absolute;
  right: 0;
  top: 50%;
  background-color: white;
}
@media (max-width: 820.9px) {
  .work_list li .work_inner .eng_title::after {
    width: 60rem;
  }
}
@media (max-width: 559.9px) {
  .work_list li .work_inner .eng_title::after {
    width: 22rem;
  }
}
.work_list li .work_inner .column {
  padding-left: 12rem;
  margin-top: 8rem;
}
@media (max-width: 820.9px) {
  .work_list li .work_inner .column {
    padding-left: 4rem;
    margin-top: 2rem;
  }
}
@media (max-width: 559.9px) {
  .work_list li .work_inner .column {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.work_list li .work_inner .column .tit {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 820.9px) {
  .work_list li .work_inner .column .tit {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 559.9px) {
  .work_list li .work_inner .column .tit {
    margin-bottom: 1rem;
    gap: 1.5rem;
    align-items: normal;
  }
}
.work_list li .work_inner .column .tit .jp {
  font-size: 5rem;
  color: white;
}
@media (max-width: 820.9px) {
  .work_list li .work_inner .column .tit .jp {
    font-size: 3rem;
  }
}
@media (max-width: 559.9px) {
  .work_list li .work_inner .column .tit .jp {
    font-size: 2rem;
  }
}
.work_list li .work_inner .column .tit .eng {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  color: #ff0000;
  position: relative;
  top: 0.7rem;
}
@media (max-width: 820.9px) {
  .work_list li .work_inner .column .tit .eng {
    font-size: 2rem;
  }
}
@media (max-width: 559.9px) {
  .work_list li .work_inner .column .tit .eng {
    font-size: 1.5drem;
  }
}
.work_list li .work_inner .column .l_text {
  font-size: 2.4rem;
  color: white;
  font-weight: bold;
}
@media (max-width: 559.9px) {
  .work_list li .work_inner .column .l_text {
    font-size: 1.8rem;
  }
}
.work_list li .work_inner .column .intro_text {
  color: white;
  width: 50rem;
  margin-top: 5rem;
}
@media (min-width: 560px) {
  .work_list li .work_inner .column .intro_text {
    font-size: 1.7rem;
    line-height: 3.3rem;
  }
}
@media (max-width: 820.9px) {
  .work_list li .work_inner .column .intro_text {
    width: 75rem;
    margin-top: 1rem;
  }
}
@media (max-width: 559.9px) {
  .work_list li .work_inner .column .intro_text {
    width: 100%;
  }
}
.work_list li:nth-child(2) {
  border-bottom: 8rem #0090a3 solid;
}
@media (max-width: 559.9px) {
  .work_list li:nth-child(2) {
    border-bottom: 20rem #0090a3 solid;
  }
}
.work_list li:nth-child(2) .work_inner .column .tit .eng {
  color: #0090a3;
}
.work_list li:nth-child(3) {
  border-bottom: 8rem #ff9430 solid;
}
@media (max-width: 559.9px) {
  .work_list li:nth-child(3) {
    border-bottom: 5rem #ff9430 solid;
  }
}
.work_list li:nth-child(3) .work_inner .column .tit .eng {
  color: #ff9430;
}

.data_container {
  background-color: #f5f5f5;
  padding: 6rem 0;
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 5rem 1.5rem;
  flex-wrap: wrap;
}
@media (max-width: 559.9px) {
  .data_container {
    padding: 4rem 0;
  }
}
.data_container .data_item {
  width: 33rem;
  background-color: #ffffff;
  padding: 4.5rem 2rem 2rem;
  position: relative;
}
.data_container .data_item::before {
  background: url(../images/page/recruit/data-icon01.png) no-repeat center;
  content: "";
  background-size: cover;
  display: block;
  width: 7rem;
  height: 7rem;
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 559.9px) {
  .data_container .data_item {
    width: 30rem;
  }
}
.data_container .data_item .head {
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
}
.data_container .data_item .num_box {
  position: relative;
  width: 100%;
  margin-top: 0.8rem;
}
.data_container .data_item .text01 {
  font-size: 1.6rem;
  font-weight: 700;
  position: absolute;
  left: 7rem;
  bottom: 0;
  line-height: 1;
}
@media (max-width: 559.9px) {
  .data_container .data_item .text01 {
    left: 6rem;
  }
}
.data_container .data_item .num {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 9.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1rem;
  line-height: 0.8;
  color: #0090a3;
  text-align: center;
  padding-left: 1rem;
}
.data_container .data_item .text02 {
  font-size: 1.6rem;
  font-weight: 700;
  position: absolute;
  right: 7.5rem;
  bottom: 0;
  line-height: 1;
}
@media (max-width: 559.9px) {
  .data_container .data_item .text02 {
    right: 6.5rem;
  }
}
.data_container .data_item .gray {
  font-size: 1.3rem;
  color: #777;
  text-align: center;
  line-height: 1.3;
  margin-top: 1.6rem;
}
.data_container .data_item .color {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  margin-top: 2rem;
}
.data_container .data_item .color .siten {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
.data_container .data_item .color .siten .square {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #4557a4;
}
.data_container .data_item .color .siten .square2 {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #ff9650;
}
.data_container .data_item .color .siten p {
  font-size: 1.4rem;
}
.data_container .data_item_2::before {
  background: url(../images/page/recruit/data-icon02.png) no-repeat center;
  background-size: cover;
}
.data_container .data_item_2 .text01 {
  left: 6rem;
}
@media (max-width: 559.9px) {
  .data_container .data_item_2 .text01 {
    left: 5rem;
  }
}
.data_container .data_item_2 .text02 {
  right: 3.5rem;
}
@media (max-width: 559.9px) {
  .data_container .data_item_2 .text02 {
    right: 2.5rem;
  }
}
.data_container .data_item_3::before {
  background: url(../images/page/recruit/data-icon03.png) no-repeat center;
  background-size: cover;
}
.data_container .data_item_3 .text02 {
  right: 4rem;
}
.data_container .data_item_4::before {
  background: url(../images/page/recruit/data-icon04.png) no-repeat center;
  background-size: cover;
}
.data_container .data_item_4 .text02 {
  right: 4rem;
}
.data_container .data_item_5::before {
  background: url(../images/page/recruit/data-icon05.png) no-repeat center;
  background-size: cover;
}
@media (max-width: 820.9px) {
  .data_container .data_item_5 .num_box {
    margin-bottom: 3rem;
  }
}
.data_container .data_item_5 .text01 {
  bottom: -2.7rem;
  left: 6rem;
}
@media (max-width: 559.9px) {
  .data_container .data_item_5 .text01 {
    left: 4.5rem;
  }
}
.data_container .data_item_5 .text02 {
  bottom: -2.7rem;
  right: 5.7rem;
}
@media (max-width: 559.9px) {
  .data_container .data_item_5 .text02 {
    right: 4.2rem;
  }
}
.data_container .data_item_6::before {
  background: url(../images/page/recruit/data-icon06.png) no-repeat center;
  background-size: cover;
}
@media (max-width: 820.9px) {
  .data_container .data_item_6 .num_box {
    margin-bottom: 3rem;
  }
}
@media (max-width: 559.9px) {
  .data_container .data_item_6 .num_box {
    margin-bottom: 4rem;
  }
}
.data_container .data_item_6 .text01 {
  bottom: -2.7rem;
  left: 4.9rem;
}
@media (max-width: 559.9px) {
  .data_container .data_item_6 .text01 {
    left: 3.4rem;
  }
}
.data_container .data_item_6 .text02 {
  bottom: -2.7rem;
  right: 4.8rem;
}
@media (max-width: 559.9px) {
  .data_container .data_item_6 .text02 {
    right: 3.3rem;
  }
}
.data_container .data_item_6 .gray {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 820.9px) {
  .data_container .data_item_6 .gray {
    bottom: 0.8rem;
  }
}
.data_container .data_item_7 {
  width: 102rem;
}
@media (max-width: 820.9px) {
  .data_container .data_item_7 {
    width: 67.5rem;
  }
}
@media (max-width: 559.9px) {
  .data_container .data_item_7 {
    width: 30rem;
  }
}
.data_container .data_item_7::before {
  background: url(../images/page/recruit/data-icon07.png) no-repeat center;
  background-size: cover;
}
.data_container .data_item_8 {
  width: 102rem;
}
@media (max-width: 820.9px) {
  .data_container .data_item_8 {
    width: 67.5rem;
  }
}
@media (max-width: 559.9px) {
  .data_container .data_item_8 {
    width: 30rem;
  }
}
.data_container .data_item_8::before {
  background: url(../images/page/recruit/data-icon08.png) no-repeat center;
  background-size: cover;
}
.data_container .data_item_9 {
  width: 102rem;
}
@media (max-width: 820.9px) {
  .data_container .data_item_9 {
    width: 67.5rem;
  }
}
@media (max-width: 559.9px) {
  .data_container .data_item_9 {
    width: 30rem;
  }
}
.data_container .data_item_9::before {
  background: url(../images/page/recruit/data-icon09.png) no-repeat center;
  background-size: cover;
}

.bar-graph_item {
  position: relative;
  margin-top: 1.5rem;
}
@media (max-width: 559.9px) {
  .bar-graph_item {
    margin-top: 3rem;
  }
}
.bar-graph_item .head {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 559.9px) {
  .bar-graph_item .head {
    left: 0;
    top: -1.2rem;
    font-size: 1.5rem;
  }
}
@media (min-width: 560px) {
  .bar-graph_item .head br {
    display: none;
  }
}
.bar-graph_item .bar-graph-wrap {
  position: relative;
  height: 7rem;
  overflow: hidden;
  margin-left: 10rem;
}
@media (max-width: 1199.9px) {
  .bar-graph_item .bar-graph-wrap {
    height: 8rem;
  }
}
@media (max-width: 559.9px) {
  .bar-graph_item .bar-graph-wrap {
    margin-left: 0;
  }
}
.bar-graph_item .bar-graph-wrap .graph {
  height: 3rem;
  position: absolute;
  left: 0;
  border-radius: 0 4px 4px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  -webkit-animation: graphAnim 2.5s forwards;
  animation: graphAnim 2.5s forwards;
}
@media (max-width: 559.9px) {
  .bar-graph_item .bar-graph-wrap .graph {
    padding: 3px;
  }
}
.bar-graph_item .bar-graph-wrap .graph span {
  font-size: 14px;
  color: #ffffff;
}
.bar-graph_item .bar-graph-wrap .blue {
  top: 0;
  background: #4557a4;
  width: 90%;
}
.bar-graph_item .bar-graph-wrap .red {
  top: 3.5rem;
  background: #f77a27;
  width: 50%;
}
@media (max-width: 1199.9px) {
  .bar-graph_item .bar-graph-wrap .red {
    top: 4rem;
  }
}
@-webkit-keyframes graphAnim {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes graphAnim {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.bar-graph_item .bar-graph-wrap_2 .blue {
  width: 60%;
}
.bar-graph_item .bar-graph-wrap_2 .red {
  width: 30%;
}
.bar-graph_item .bar-graph-wrap_3 .blue {
  width: 30%;
}
.bar-graph_item .bar-graph-wrap_3 .red {
  width: 80%;
}
.bar-graph_item .bar-graph-wrap_4 .blue {
  width: 60%;
}
.bar-graph_item .bar-graph-wrap_4 .red {
  width: 40%;
}
.bar-graph_item_02 .bar-graph-wrap .blue {
  width: 100%;
}
.bar-graph_item_02 .bar-graph-wrap .red {
  width: 25%;
}
.bar-graph_item_02 .bar-graph-wrap_2 .blue {
  width: 10%;
  background-color: #ffffff;
}
@media (max-width: 559.9px) {
  .bar-graph_item_02 .bar-graph-wrap_2 .blue {
    width: 20%;
  }
}
.bar-graph_item_02 .bar-graph-wrap_2 .blue span {
  color: #4557a4;
  font-weight: 500;
}
.bar-graph_item_02 .bar-graph-wrap_2 .red {
  width: 80%;
}
.bar-graph_item_03 .bar-graph-wrap .blue {
  width: 100%;
}
.bar-graph_item_03 .bar-graph-wrap .red {
  width: 70%;
}
.bar-graph_item_03 .bar-graph-wrap_2 .blue {
  width: 20%;
}
.bar-graph_item_03 .bar-graph-wrap_2 .red {
  width: 40%;
}
.bar-graph_item_03 .bar-graph-wrap_3 .blue {
  width: 10%;
}
@media (max-width: 559.9px) {
  .bar-graph_item_03 .bar-graph-wrap_3 .blue {
    width: 15%;
  }
}
.bar-graph_item_03 .bar-graph-wrap_3 .red {
  width: 10%;
}
@media (max-width: 559.9px) {
  .bar-graph_item_03 .bar-graph-wrap_3 .red {
    width: 15%;
  }
}

.interview_section {
  width: 100%;
  background: url(../images/page/recruit/interview_bg.jpg) no-repeat;
  background-size: cover;
  padding: 10rem 0;
}
@media (max-width: 559.9px) {
  .interview_section {
    padding: 4rem 0;
  }
}
.interview_section .interview_navi {
  margin-top: 10rem;
}
@media (max-width: 559.9px) {
  .interview_section .interview_navi {
    margin-top: 3rem;
  }
}

.gallery_wrap {
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  width: 100%;
  margin: 5rem auto;
}
@media (max-width: 559.9px) {
  .gallery_wrap {
    margin: 3rem auto 0;
  }
}
.gallery_wrap .grid {
  display: flex;
  gap: 0.2rem;
  justify-content: space-between;
}
.gallery_wrap .grid.column-2 .column {
  width: calc(50% - 0.1rem);
}
.gallery_wrap .grid.column-3 .column {
  width: calc(33.3333333333% - 0.0666666rem);
}
.gallery_wrap .grid .column {
  position: relative;
}
.gallery_wrap .grid .column::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(107deg, rgba(67, 67, 67, 0.24) 24.64%, rgba(255, 255, 255, 0) 98.71%);
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  top: 0;
}
.gallery_wrap .grid .column .head {
  position: absolute;
  left: 3rem;
  top: 2.5rem;
  z-index: 1;
}
@media (max-width: 559.9px) {
  .gallery_wrap .grid .column .head {
    left: 0.8rem;
  }
}
.gallery_wrap .grid .column .head .eng {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: white;
  text-transform: uppercase;
}
@media (max-width: 559.9px) {
  .gallery_wrap .grid .column .head .eng {
    font-size: 1.4rem;
    font-weight: 500;
  }
}
.gallery_wrap .grid .column .head .jp {
  font-size: 1.7rem;
  font-weight: bold;
  color: white;
  margin-top: 0.3rem;
}
@media (max-width: 559.9px) {
  .gallery_wrap .grid .column .head .jp {
    font-size: 1.5rem;
    font-weight: 500;
  }
}

/***************
社員インタビュー
***************/
.interview_navi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
@media (max-width: 820.9px) {
  .interview_navi {
    gap: 3rem;
  }
}
@media (max-width: 559.9px) {
  .interview_navi {
    flex-direction: column;
    gap: 2rem;
  }
}
.interview_navi .navi_item {
  width: calc((100% - 10rem) / 3);
  position: relative;
  aspect-ratio: 33/46;
}
.interview_navi .navi_item::after {
  width: 100%;
  height: 100%;
  content: "";
  display: inline-block;
  background-color: rgba(255, 255, 255, 0);
  transition: all 0.3s ease;
}
@media (max-width: 820.9px) {
  .interview_navi .navi_item {
    width: calc((100% - 6rem) / 3);
  }
}
@media (max-width: 559.9px) {
  .interview_navi .navi_item {
    width: 30rem;
  }
}
.interview_navi .navi_item .bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(27, 27, 27, 0.7);
  padding: 2rem 3rem;
}
@media (max-width: 820.9px) {
  .interview_navi .navi_item .bg {
    padding: 1rem;
  }
}
.interview_navi .navi_item .bg .staff {
  color: #ffffff;
  font-size: 1.8rem;
}
@media (max-width: 820.9px) {
  .interview_navi .navi_item .bg .staff {
    font-size: 1.6rem;
  }
}
.interview_navi .navi_item .bg .staff span {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: #0090a3;
}
.interview_navi .navi_item_01 {
  background: url(../images/page/interview/interview-staff01-1.jpg) no-repeat center;
  background-size: cover;
}
.interview_navi .navi_item_02 {
  background: url(../images/page/interview/interview-staff02-1.jpg) no-repeat center;
  background-size: cover;
}
.interview_navi .navi_item_03 {
  background: url(../images/page/interview/interview-staff03-1.jpg) no-repeat center;
  background-size: cover;
}
.interview_navi .navi_item:hover::after,
.interview_navi .navi_item :active::after {
  background-color: rgba(255, 255, 255, 0.3);
}

.border-title2 {
  width: 100%;
  height: 0.3rem;
  background-color: #de0101;
  position: relative;
}
.border-title2 span {
  position: absolute;
  left: 20rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
  width: 26rem;
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: #de0101;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 559.9px) {
  .border-title2 span {
    font-size: 2.4rem;
    left: 4rem;
    width: 15rem;
  }
}

.interview_content {
  background-color: rgba(222, 1, 1, 0.05);
  border-radius: 1.6rem;
  padding: 6rem;
  width: 100%;
  margin-top: 20rem;
}
@media (max-width: 820.9px) {
  .interview_content {
    margin-top: 16rem;
  }
}
@media (max-width: 820.9px) and (max-width: 559.9px) {
  .interview_content {
    margin-top: 10rem;
    padding: 2rem;
  }
}
.interview_content .staff_img {
  width: 76rem;
  aspect-ratio: 76/51;
  margin-right: 0;
  margin-left: auto;
  position: relative;
  transform: translateY(-15rem);
}
@media (max-width: 820.9px) {
  .interview_content .staff_img {
    width: 45rem;
  }
}
@media (max-width: 559.9px) {
  .interview_content .staff_img {
    width: 28rem;
    transform: translateY(-7rem);
  }
}
.interview_content .staff_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.interview_content .staff_img .staff_text {
  background-color: #de0101;
  position: absolute;
  bottom: 9rem;
  left: -24rem;
  padding: 4rem;
  z-index: 2;
}
@media (max-width: 820.9px) {
  .interview_content .staff_img .staff_text {
    padding: 2rem;
    bottom: 5rem;
    left: -18rem;
  }
}
@media (max-width: 820.9px) and (max-width: 559.9px) {
  .interview_content .staff_img .staff_text {
    padding: 1rem;
    bottom: -5rem;
    left: -3rem;
  }
}
.interview_content .staff_img .staff_text .text {
  color: #ffffff;
}
.interview_content .staff_img .staff_text .text span {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 559.9px) {
  .interview_content .staff_img .staff_text .text span {
    font-size: 1.8rem;
  }
}
.interview_content .staff_img .bg {
  position: absolute;
  bottom: -8rem;
  left: -12rem;
  background-color: rgba(222, 1, 1, 0.3);
  width: 27rem;
  aspect-ratio: 27/23;
  z-index: 1;
}
@media (max-width: 820.9px) {
  .interview_content .staff_img .bg {
    width: 22rem;
  }
}
@media (max-width: 559.9px) {
  .interview_content .staff_img .bg {
    display: none;
  }
}
.interview_content .interview {
  width: 100%;
}
.interview_content .interview .item {
  background-color: #ffffff;
  margin-bottom: 3rem;
  padding: 2.5rem;
}
.interview_content .interview .item:last-child {
  margin-bottom: 0;
}
.interview_content .interview .item.yellow {
  background-color: #fff7dd;
  border-radius: 3rem;
}
.interview_content .interview .item.pink {
  background-color: #ffdddd;
  border-radius: 3rem;
}
.interview_content .interview .item.orange {
  background-color: #fffcf0;
  border-radius: 3rem;
}
.interview_content .interview .item .question {
  font-size: 2rem;
  font-weight: 700;
  width: 100%;
  display: flex;
}
@media (max-width: 559.9px) {
  .interview_content .interview .item .question {
    font-size: 1.6rem;
  }
}
.interview_content .interview .item .question.white {
  color: #ffffff;
}
.interview_content .interview .item .question span {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 1;
  color: #de0101;
  width: 5rem;
  height: 4rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 559.9px) {
  .interview_content .interview .item .question span {
    font-size: 2.5rem;
    width: 3rem;
    height: 3rem;
  }
}
.interview_content .interview .item .question i {
  color: #de0101;
  font-size: 3.5rem;
  margin-right: 2rem;
}
@media (max-width: 559.9px) {
  .interview_content .interview .item .question i {
    font-size: 2.5rem;
    margin-right: 1rem;
  }
}
.interview_content .interview .item .answer {
  margin-left: 5rem;
  margin-top: 1rem;
}
@media (max-width: 559.9px) {
  .interview_content .interview .item .answer {
    margin-left: 0;
  }
}
.interview_content .interview .item .answer.ml0 {
  margin-left: 0;
}
.interview_content .interview .flex_box {
  display: flex;
  align-items: center;
  gap: 5rem;
  margin-bottom: 5rem;
}
@media (max-width: 820.9px) {
  .interview_content .interview .flex_box {
    flex-direction: column;
    gap: 3rem;
  }
}
@media (max-width: 559.9px) {
  .interview_content .interview .flex_box {
    margin-bottom: 3rem;
  }
}
.interview_content .interview .flex_box .left_item {
  width: 55%;
}
@media (max-width: 820.9px) {
  .interview_content .interview .flex_box .left_item {
    width: 100%;
  }
}
.interview_content .interview .flex_box .right_item {
  width: calc(100% - 5rem - 55%);
}
@media (max-width: 820.9px) {
  .interview_content .interview .flex_box .right_item {
    width: 80%;
    margin: 0 auto;
  }
}
.interview_content_2 {
  background-color: rgba(255, 148, 48, 0.05);
}
.interview_content_2 .staff_img .staff_text {
  background-color: #ff9650;
}
.interview_content_2 .staff_img .bg {
  background-color: rgba(255, 148, 48, 0.3);
}
.interview_content_3 {
  background-color: rgba(0, 144, 163, 0.05);
}
.interview_content_3 .staff_img .staff_text {
  background-color: #0090a3;
}
.interview_content_3 .staff_img .bg {
  background-color: rgba(0, 144, 163, 0.3);
}

.page_recruit_section {
  background: url(../images/page/interview/recruit-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 16rem 0 12rem;
}
@media (max-width: 559.9px) {
  .page_recruit_section {
    padding: 4rem 0;
  }
}

.recruit_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 559.9px) {
  .recruit_info {
    flex-direction: column;
    gap: 2.5rem;
  }
}
.recruit_info .item {
  width: 50%;
}
@media (max-width: 559.9px) {
  .recruit_info .item {
    width: 100%;
  }
}
.recruit_info .item .head {
  color: #de0101;
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 5.8rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  margin-bottom: 5rem;
}
@media (max-width: 559.9px) {
  .recruit_info .item .head {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }
}
.recruit_info .item .btn-black {
  background-color: #ffffff;
}
.recruit_info .item .btn-black .txt {
  color: #1b1b1b;
}
.recruit_info .item .btn-black .arrow {
  background: url(../images/icon/icon-arrow-black.png) no-repeat;
  background-size: cover;
}
.recruit_info .item .btn-black:hover,
.recruit_info .item .btn-black :active {
  background-color: #dadada;
}

.recruit_navi {
  margin-top: 7rem;
}
@media (max-width: 559.9px) {
  .recruit_navi {
    margin-top: 4rem;
    padding: 0 2rem;
  }
}
.recruit_navi .recruit_navi_item {
  width: 85rem;
  height: 7.9rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  background-color: #1b1b1b;
  padding: 2rem 3rem;
  margin: 0 auto 3rem;
  gap: 1rem;
  transition: all 0.3s ease;
}
@media (max-width: 820.9px) {
  .recruit_navi .recruit_navi_item {
    width: 100%;
  }
}
@media (max-width: 559.9px) {
  .recruit_navi .recruit_navi_item {
    padding: 2rem;
    gap: 0;
  }
}
.recruit_navi .recruit_navi_item .tate {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
  writing-mode: vertical-lr;
}
.recruit_navi .recruit_navi_item .line {
  width: 5.6rem;
  height: 0.1rem;
  background-color: #ffffff;
  transform: rotate(-55deg);
}
.recruit_navi .recruit_navi_item .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-weight: 700;
}
@media (max-width: 559.9px) {
  .recruit_navi .recruit_navi_item .text {
    font-size: 1.4rem;
    white-space: nowrap;
  }
}
.recruit_navi .recruit_navi_item i {
  position: absolute;
  top: 50%;
  right: 5rem;
  transform: translateY(-50%);
  color: #ffffff;
}
@media (max-width: 559.9px) {
  .recruit_navi .recruit_navi_item i {
    right: 2rem;
  }
}
.recruit_navi .recruit_navi_item:hover,
.recruit_navi .recruit_navi_item :active {
  background-color: #444444;
}

/***************
募集要項
***************/
.tab_navi {
  width: 100%;
  margin-bottom: 4rem;
}
@media (min-width: 560px) {
  .tab_navi {
    border-bottom: 0.4rem #6b613d solid;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
}
@media (max-width: 559.9px) {
  .tab_navi {
    margin-bottom: 10px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
  }
}
.tab_navi li {
  height: 5.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.6rem;
  background-color: #fff0f0;
  color: #1b1b1b;
  font-weight: bold;
  transition: all 0.4s ease;
  margin: 0 0.4rem;
  border-radius: 0.8rem 0.8rem 0 0;
}
@media (min-width: 560px) {
  .tab_navi li {
    width: 24rem;
    font-size: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  .tab_navi li {
    background-color: white;
    font-size: 1.2rem;
    height: 32px;
    padding: 8px;
    border: 2px #6b613d solid;
    border-radius: 4px;
    margin: 0 3px 3px 0;
  }
}
.tab_navi li:not(.current) {
  cursor: pointer;
}
.tab_navi li:not(.current):hover {
  background-color: #ddd;
}
.tab_navi li.current {
  background-color: #6b613d;
  color: white;
}

.tab-target {
  transition: all 0.4s ease;
  display: none;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
}
.tab-target.current {
  display: block;
  opacity: 1;
  visibility: visible;
}

.app_inner {
  margin-bottom: 7rem;
}
@media (min-width: 560px) {
  .app_inner {
    padding: 0 4%;
  }
}
.app_inner .app_cont:not(:last-child) {
  margin-bottom: 8rem;
  padding-bottom: 8rem;
  border-bottom: 0.1rem solid #b3b1b9;
}

.app_title {
  text-align: center;
  margin-bottom: 3rem;
}
.app_title h2 {
  font-size: 3rem;
}
.app_title .app_type {
  background-color: #6b613d;
  border-radius: 40rem;
  padding: 0.4rem 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: white;
  font-weight: bold;
}
@media (min-width: 560px) {
  .app_title .app_type {
    font-size: 2.4rem;
  }
}

.flow_wrap {
  background: #fff;
  border-radius: 0.8rem;
}
@media (min-width: 560px) {
  .flow_wrap {
    display: flex;
    justify-content: space-between;
  }
}
.flow_wrap .con_flow {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  padding: 2.4rem;
}
@media (min-width: 560px) {
  .flow_wrap .con_flow {
    width: 20%;
    border-radius: 0 1rem 1rem 0;
    border-right: solid 0.1rem #b3b1b9;
    border-top: solid 0.1rem #b3b1b9;
    border-bottom: solid 0.1rem #b3b1b9;
  }
}
@media (max-width: 559.9px) {
  .flow_wrap .con_flow {
    border: solid 1px #b3b1b9;
    border-radius: 8px;
    margin-bottom: 16px;
  }
}
@media (min-width: 560px) {
  .flow_wrap .con_flow:first-child {
    border-left: solid 0.1rem #b3b1b9;
    border-radius: 1rem;
  }
}
.flow_wrap .con_flow .step {
  background-color: #de0101;
  color: white;
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.4rem 2rem;
  border-radius: 40rem;
  margin: 0 auto 1rem;
}
.flow_wrap .con_flow .tit_wrap {
  width: 100%;
  margin-bottom: 1rem;
}
.flow_wrap .con_flow .tit_wrap .tit {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
.flow_wrap .con_flow .text_wrap .text {
  font-size: 1.4rem;
}

/***************
企業情報
***************/
.absolute {
  position: relative;
}

.ceo_inner {
  position: relative;
  z-index: 3;
}

.underline-title {
  text-align: center;
  margin-bottom: 3rem;
}
.underline-title .inner {
  position: relative;
  height: 9rem;
}
@media (max-width: 559.9px) {
  .underline-title .inner {
    height: 4.5rem;
  }
}
.underline-title .inner .eng {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 7.4rem;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 559.9px) {
  .underline-title .inner .eng {
    font-size: 3rem;
  }
}
.underline-title .inner .line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40rem;
  background-color: #fdbcbc;
  height: 0.7rem;
}
@media (max-width: 559.9px) {
  .underline-title .inner .line {
    width: 33rem;
    height: 0.4rem;
  }
}
.underline-title .inner .line::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 4rem;
  height: 100%;
  background-color: #ff0000;
  content: "";
  display: block;
}
.underline-title .inner .line_g {
  background-color: #e5f3f5;
}
.underline-title .inner .line_g::after {
  background-color: #0090a3;
}
.underline-title .jp {
  font-size: 3.2rem;
  font-weight: 600;
  margin-top: 0.8rem;
}
@media (max-width: 559.9px) {
  .underline-title .jp {
    font-size: 1.7rem;
  }
}

.message_inner {
  width: 70%;
  margin: 12rem auto 0;
  text-align: center;
}
@media (max-width: 820.9px) {
  .message_inner {
    margin: 4rem auto 0;
  }
}
@media (max-width: 559.9px) {
  .message_inner {
    width: 100%;
    margin-top: 3rem;
  }
}
.message_inner .mincho {
  font-family: "Noto+Serif+JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 2.4rem;
  font-weight: normal;
  margin-bottom: 5rem;
}
@media (max-width: 559.9px) {
  .message_inner .mincho {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.message_inner .eng {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 5rem;
}
@media (max-width: 559.9px) {
  .message_inner .eng {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
}

.ceo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 559.9px) {
  .ceo {
    margin: 1rem auto 0;
  }
}
.ceo .ceo_img {
  width: 17rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  margin: 0 auto;
}
@media (max-width: 559.9px) {
  .ceo .ceo_img {
    width: 14rem;
  }
}
.ceo .ceo_img img {
  width: 100%;
}
.ceo p {
  font-size: 2rem;
  font-weight: 500;
  margin-top: 2rem;
}
@media (max-width: 559.9px) {
  .ceo p {
    font-size: 1.6rem;
    margin-top: 1rem;
  }
}

.square01 {
  width: 24rem;
  aspect-ratio: 1/1;
  background-color: #c48686;
  position: absolute;
  top: 5rem;
  right: 5rem;
  z-index: 1;
}
@media (max-width: 559.9px) {
  .square01 {
    width: 9rem;
    top: 2rem;
    right: 2rem;
  }
}

.square02 {
  width: 27rem;
  aspect-ratio: 1/1;
  background-color: #ffebeb;
  position: absolute;
  top: 13rem;
  left: 20rem;
  z-index: 1;
}
@media (max-width: 820.9px) {
  .square02 {
    left: 4rem;
  }
}
@media (max-width: 559.9px) {
  .square02 {
    width: 14rem;
  }
}

.square03 {
  width: 40rem;
  aspect-ratio: 1/1;
  background-color: #ffebeb;
  position: absolute;
  top: 43rem;
  right: 20rem;
  z-index: 1;
}
@media (max-width: 820.9px) {
  .square03 {
    right: 2rem;
  }
}
@media (max-width: 559.9px) {
  .square03 {
    top: 32rem;
    right: 2rem;
    width: 22rem;
  }
}

.square04 {
  width: 20rem;
  aspect-ratio: 1/1;
  background-color: #ed9898;
  position: absolute;
  bottom: 12rem;
  left: 8rem;
  z-index: 1;
}
@media (max-width: 820.9px) {
  .square04 {
    left: 3rem;
  }
}
@media (max-width: 559.9px) {
  .square04 {
    left: 1rem;
    bottom: 29rem;
    width: 13rem;
  }
}

.philo_inner {
  margin: 10rem auto 0;
  background-color: rgba(222, 1, 1, 0.05);
  width: 80%;
  padding: 6rem 4rem;
  text-align: center;
}
@media (max-width: 820.9px) {
  .philo_inner {
    margin: 4rem auto 0;
  }
}
@media (max-width: 559.9px) {
  .philo_inner {
    width: 100%;
    margin-top: 3rem;
    padding: 2rem;
  }
}
.philo_inner .head {
  font-size: 2.5rem;
  margin-top: 5rem;
}
@media (max-width: 559.9px) {
  .philo_inner .head {
    font-size: 1.8rem;
    margin-top: 2rem;
  }
}
.philo_inner .text {
  margin-top: 4rem;
  font-size: 2.2rem;
}
@media (max-width: 559.9px) {
  .philo_inner .text {
    margin-top: 2rem;
    font-size: 1.6rem;
  }
}

.underline-title-s {
  text-align: center;
  margin: 0 auto 3rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 559.9px) {
  .underline-title-s {
    margin-bottom: 2rem;
  }
}
.underline-title-s .jp {
  font-size: 3.2rem;
  font-weight: 700;
}
@media (max-width: 559.9px) {
  .underline-title-s .jp {
    font-size: 2rem;
  }
}
.underline-title-s .line {
  position: relative;
  width: 15rem;
  background-color: #fdbcbc;
  height: 0.7rem;
}
@media (max-width: 559.9px) {
  .underline-title-s .line {
    height: 0.4rem;
    width: 12rem;
  }
}
.underline-title-s .line::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 4rem;
  height: 100%;
  background-color: #ff0000;
  content: "";
  display: block;
}

.company_circle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  margin-top: 6rem;
}
@media (max-width: 820.9px) {
  .company_circle {
    flex-wrap: wrap;
  }
}
@media (max-width: 559.9px) {
  .company_circle {
    margin-top: 3rem;
    gap: 1.6rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .company_circle.nowrap {
    flex-wrap: nowrap;
  }
}
.company_circle .circle {
  width: 18rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.company_circle .circle .jp {
  font-size: 2rem;
  font-weight: 500;
}
.company_circle .circle .num {
  position: absolute;
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #de0101;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.company_circle .circle_large {
  width: 22rem;
}
.company_circle .circle_large .jp {
  font-size: 1.9rem;
}
.company_circle .circle_large .num {
  color: #0090a3;
}

.table-c1 {
  width: 92%;
  margin: 0 auto;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .table-c1 {
    width: 96%;
  }
}
@media (max-width: 559.9px) {
  .table-c1 {
    width: 100%;
  }
}
.table-c1 th {
  width: 25%;
  font-weight: 700;
  border-bottom: #4557a4 2px solid;
  padding: 2rem 0.5rem;
}
@media (max-width: 820.9px) {
  .table-c1 th {
    padding: 2rem 0.5rem;
    width: 25%;
  }
}
@media (max-width: 559.9px) {
  .table-c1 th {
    display: block;
    width: 100%;
    border-bottom: 0;
    padding: 1rem 0 0.2rem;
  }
}
.table-c1 td {
  padding: 2rem 2.4rem;
  border-bottom: #b3b1b9 1px solid;
  gap: 0 6rem;
}
.table-c1 td.flex {
  display: flex;
  align-items: center;
}
@media (max-width: 559.9px) {
  .table-c1 td.flex {
    display: block;
  }
}
.table-c1 td.flex .table-img {
  width: 20rem;
}
@media (max-width: 559.9px) {
  .table-c1 td.flex .table-img {
    margin-top: 10px;
  }
}
@media (max-width: 820.9px) {
  .table-c1 td {
    padding: 2rem 2.4rem;
  }
}
@media (max-width: 559.9px) {
  .table-c1 td {
    display: block;
    width: 100%;
    padding: 1rem 0 1rem;
  }
}
.table-c1 td dl {
  margin-bottom: 20px;
}
.table-c1 td dl:last-child {
  margin-bottom: 0;
}
.table-c1 td dl dt {
  align-items: center;
}
@media (max-width: 820.9px) {
  .table-c1 td dl dt {
    display: block;
  }
}
.table-c1 td dl dt::before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-flex;
  background-color: #4557a4;
  margin-right: 8px;
}
@media (max-width: 820.9px) {
  .table-c1 td dl dt::before {
    width: 10px;
    height: 10px;
  }
}
.table-c1 td dl dd {
  margin-left: calc(1rem + 15px);
}
.table-c1 td dl .link_btn {
  margin-top: 10px;
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  font-weight: 700;
  background-color: #b3b1b9;
  color: #ffffff;
  padding: 6px 15px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}
.table-c1 td dl .link_btn i {
  margin-left: 20px;
}
.table-c1 td dl .link_btn:hover,
.table-c1 td dl .link_btn :active {
  background-color: #4557a4;
}
.table-c1 td ul {
  margin-bottom: 1.5rem;
}
.table-c1 td ul:last-child {
  margin-bottom: 0;
}
.table-c1 td ul > p {
  font-weight: 600;
}
.table-c1 td ul li {
  margin-left: 2rem;
  list-style-type: square;
}
.table-c1_blue th {
  border-bottom: #4557a4 1px solid;
}
@media (max-width: 559.9px) {
  .table-c1_blue th {
    border-bottom: #4557a4 0 solid;
  }
}
.table-c1_blue td {
  border-bottom: #ffffff 1px solid;
}

.table-history {
  width: 92%;
  margin: 0 auto;
}
@media (max-width: 559.9px) {
  .table-history {
    width: 100%;
  }
}
.table-history tr th {
  padding: 1rem 0 1rem 2.5rem;
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #0090a3;
  width: 15rem;
  text-align: left;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  position: relative;
}
.table-history tr th::before {
  position: absolute;
  left: 0;
  top: 1.7rem;
  content: "";
  display: inline-block;
  background-color: #0090a3;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
}
@media (max-width: 559.9px) {
  .table-history tr th {
    display: block;
    width: 100%;
    padding: 10px 27px 0;
  }
}
.table-history tr td {
  padding: 1rem 6rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  position: relative;
}
.table-history tr td::before {
  content: "";
  width: 3rem;
  height: 1px;
  background-color: #0090a3;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 2rem;
}
@media (max-width: 559.9px) {
  .table-history tr td::before {
    display: none;
  }
}
@media (max-width: 559.9px) {
  .table-history tr td {
    font-size: 1.5rem;
    display: block;
    width: 100%;
    padding: 0;
  }
}

.policy_inner {
  margin: 0 auto;
  background-color: #e5f3f5;
  width: 90%;
  padding: 6rem 4rem;
  text-align: center;
}
@media (max-width: 559.9px) {
  .policy_inner {
    width: 100%;
    padding: 2rem;
  }
}
.policy_inner .policy_head {
  font-size: 2.5rem;
}
@media (max-width: 559.9px) {
  .policy_inner .policy_head {
    font-size: 1.6rem;
  }
}

.com_iso {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
}
@media (max-width: 559.9px) {
  .com_iso {
    flex-direction: column;
    gap: 2rem;
  }
}
.com_iso .com_iso_img {
  width: 23rem;
}
.com_iso .iso_text_box {
  border: 0.1rem #0090a3 solid;
  padding: 2rem;
}

.envi_inner {
  margin: 0 auto;
  background-color: #e5f3f5;
  width: 90%;
  padding: 6rem 4rem;
}
@media (max-width: 559.9px) {
  .envi_inner {
    padding: 2rem;
    width: 100%;
  }
}
.envi_inner .envi_head {
  width: 90%;
  margin: 0 auto;
  font-size: 2rem;
  background-color: #ffffff;
  padding: 2rem 4rem;
}
@media (max-width: 559.9px) {
  .envi_inner .envi_head {
    padding: 2rem;
    width: 100%;
    font-size: 1.7rem;
  }
}

.envi_policy {
  width: 90%;
  margin: 5rem auto 0;
}
@media (max-width: 559.9px) {
  .envi_policy {
    margin-top: 3rem;
    width: 100%;
  }
}
.envi_policy .envi_item {
  background-color: #ffffff;
  margin-bottom: 2rem;
  padding: 2rem 2rem 2rem 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 559.9px) {
  .envi_policy .envi_item {
    flex-direction: column;
    padding: 2rem;
  }
}
.envi_policy .envi_item:last-child {
  margin-bottom: 0;
}
.envi_policy .envi_item .num {
  width: 10rem;
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  color: #0090a3;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 559.9px) {
  .envi_policy .envi_item .num {
    font-size: 2.2rem;
  }
}
.envi_policy .envi_item .text {
  width: calc(100% - 10rem);
}
@media (max-width: 559.9px) {
  .envi_policy .envi_item .text {
    width: 100%;
    margin-top: 1rem;
  }
}

/***************
アクセスマップ
***************/
.access_content {
  margin-top: 8rem;
}
@media (max-width: 559.9px) {
  .access_content {
    margin-top: 4rem;
  }
}
.access_content .flex {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3rem;
  margin-top: 3rem;
}
@media (max-width: 559.9px) {
  .access_content .flex {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }
}
.access_content .flex .access_img {
  width: 45%;
}
@media (max-width: 559.9px) {
  .access_content .flex .access_img {
    width: 100%;
  }
}
.access_content .flex .right_item {
  width: calc(100% - 3rem - 45%);
}
@media (max-width: 559.9px) {
  .access_content .flex .right_item {
    width: 100%;
  }
}

.title-head {
  font-size: 2.5rem;
  font-weight: 700;
  border-left: 0.6rem solid #ff9650;
  padding-left: 1.8rem;
  line-height: 1.5;
  margin-bottom: 3rem;
}
@media (max-width: 559.9px) {
  .title-head {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}

.map {
  width: 100%;
  aspect-ratio: 1/0.4;
}

.access {
  margin-bottom: 5rem;
}
@media (max-width: 559.9px) {
  .access {
    margin-bottom: 2rem;
  }
}
.access dl {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.8rem;
}
.access dl dt {
  width: 8rem;
  height: 2.8rem;
  background-color: #1b1b1b;
  color: #ff9650;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 559.9px) {
  .access dl dt {
    height: 2.3rem;
  }
}

.access_info dl {
  margin-bottom: 2rem;
}
@media (max-width: 559.9px) {
  .access_info dl {
    margin-bottom: 1rem;
  }
}
.access_info dl dt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #1b1b1b;
  color: #ff9650;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  font-size: 1.5rem;
  height: 2.8rem;
  margin-bottom: 0.8rem;
}

/**************
よくある質問
**************/
.bg_dot_under {
  background: url(../images/common/dot_bg_under.png);
  background-size: 7rem 360rem;
}
@media (max-width: 820.9px) {
  .bg_dot_under {
    background-size: 5rem 250rem;
  }
}
@media (max-width: 559.9px) {
  .bg_dot_under {
    background-size: 2.8rem 140rem;
    padding: 6rem 0;
  }
}

.faq_content {
  margin-bottom: 6rem;
}

.faq_items .faq_item {
  border: 0.3rem solid #4557a4;
  margin-bottom: 3rem;
  height: 100%;
  background-color: #4557a4;
  border-radius: 0.4rem;
}
.faq_items .faq_item:last-child {
  margin-bottom: 0;
}
.faq_items .faq_item .question_box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
@media (min-width: 560px) {
  .faq_items .faq_item .question_box {
    padding: 2.4rem 8rem 2.4rem 2rem;
  }
}
@media (max-width: 559.9px) {
  .faq_items .faq_item .question_box {
    padding: 12px 64px 12px 32px;
  }
}
.faq_items .faq_item .question_box .head_icon {
  width: 4rem;
  aspect-ratio: 1/1;
  background-color: #ffffff;
  border-radius: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq_items .faq_item .question_box .head_icon .q {
  color: #ff9650;
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  line-height: 1;
}
.faq_items .faq_item .question_box .inner {
  padding-left: 2rem;
  color: #ffffff;
  font-weight: 500;
}
@media (max-width: 559.9px) {
  .faq_items .faq_item .question_box .inner {
    font-size: 13px;
  }
}
.faq_items .faq_item .question_box .trigger_icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 560px) {
  .faq_items .faq_item .question_box .trigger_icon {
    width: 1.9rem;
    height: 1.9rem;
    right: 2.4rem;
  }
}
@media (max-width: 559.9px) {
  .faq_items .faq_item .question_box .trigger_icon {
    width: 19px;
    height: 19px;
    right: 12px;
  }
}
.faq_items .faq_item .question_box .trigger_icon::before, .faq_items .faq_item .question_box .trigger_icon::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #ff9650;
}
.faq_items .faq_item .question_box .trigger_icon::before {
  width: 100%;
  height: 0.2rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 820.9px) {
  .faq_items .faq_item .question_box .trigger_icon::before {
    height: 2px;
  }
}
.faq_items .faq_item .question_box .trigger_icon::after {
  left: 50%;
  top: 0;
  height: 100%;
  width: 0.2rem;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  opacity: 1;
}
@media (max-width: 820.9px) {
  .faq_items .faq_item .question_box .trigger_icon::after {
    width: 2px;
  }
}
.faq_items .faq_item .question_box {
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
@media (max-width: 559.9px) {
  .faq_items .faq_item .question_box {
    font-size: 15px;
  }
}
.faq_items .faq_item .question_box.opened .trigger_icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq_items .faq_item .answer_box {
  background-color: #ffffff;
  border: 0.3rem solid #4557a4;
  border: none;
  display: none;
  padding: 2.4rem 2.4rem 2.4rem 2.4rem;
  font-size: 1.6rem;
  position: relative;
}
@media (max-width: 559.9px) {
  .faq_items .faq_item .answer_box {
    font-size: 13px;
    padding: 20px 16px 20px 32px;
  }
}
.faq_items .faq_item .answer_box .head_icon {
  width: 4rem;
  aspect-ratio: 1/1;
  background-color: #4557a4;
  border-radius: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 2rem;
  top: 2rem;
}
.faq_items .faq_item .answer_box .head_icon .a {
  color: #ff9650;
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  line-height: 1;
}
.faq_items .faq_item .answer_box .inner {
  padding-left: 5.4rem;
}
@media (max-width: 559.9px) {
  .faq_items .faq_item .answer_box .inner {
    font-size: 13px;
  }
}

/**************
新着情報
**************/
.news_container {
  width: 100%;
  display: flex;
}
@media (min-width: 821px) {
  .news_container {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row-reverse;
  }
}
@media (max-width: 820.9px) {
  .news_container {
    flex-direction: column-reverse;
  }
}
@media (min-width: 1200px) {
  .news_container .rightColumn {
    width: calc(100% - 300px);
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .news_container .rightColumn {
    width: 72%;
  }
}
@media (max-width: 820.9px) {
  .news_container .rightColumn {
    width: 100%;
    margin-top: 0px;
  }
}
@media (min-width: 1200px) {
  .news_container .leftColumn {
    width: 220px;
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .news_container .leftColumn {
    width: 22%;
  }
}
@media (max-width: 820.9px) {
  .news_container .leftColumn {
    margin-top: 50px;
    width: 100%;
  }
}

.news_list {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5rem 3rem;
  flex-wrap: wrap;
}

.side_title {
  padding: 8px 12px;
  color: #444444;
  font-weight: bold;
  background: #6b613d;
  color: #ffffff;
}
@media (max-width: 820.9px) {
  .side_title {
    margin-bottom: 12px;
  }
}

@media (max-width: 820.9px) {
  .side_links {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media (min-width: 821px) {
  .side_links li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px #6b613d solid;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .side_links li {
    display: block;
    width: 32%;
    margin-bottom: 10px;
  }
}
@media (max-width: 559.9px) {
  .side_links li {
    display: block;
    width: 49.4%;
    margin-bottom: 4px;
  }
}
.side_links li a {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 12px 0 12px 18px;
  position: relative;
  color: #444444;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (max-width: 820.9px) {
  .side_links li a {
    border: 1px rgba(10, 51, 89, 0.2) solid;
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8px 0 16px;
    line-height: 1.4;
    border-radius: 3px;
    background-color: white;
  }
}
@media (max-width: 559.9px) {
  .side_links li a {
    font-size: 3vw;
    height: 40px;
  }
}
.side_links li a::before {
  transform: translate(-50%, -50%);
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  display: block;
  position: absolute;
  right: 5px;
  top: 22px;
}
@media (max-width: 820.9px) {
  .side_links li a::before {
    top: 50%;
  }
}
.side_links li a:hover {
  background-color: #fafafa;
}
@media (min-width: 560px) {
  .side_links li.active a {
    color: #333;
  }
  .side_links li.active a::before {
    background-color: #4557a4;
  }
}

.news_single {
  padding: 5.6rem 8rem 6.4rem;
  background-color: #f4f2f0;
  box-shadow: none;
}
@media (max-width: 820.9px) {
  .news_single {
    padding: 30px;
  }
}
@media (max-width: 559.9px) {
  .news_single {
    padding: 24px;
  }
}

.single_title {
  font-size: 2.4rem;
  line-height: 1.5;
  margin: 2rem 0 3rem;
}
@media (max-width: 820.9px) {
  .single_title {
    font-size: 2rem;
    margin: 20px 0 30px;
  }
}
@media (max-width: 559.9px) {
  .single_title {
    font-size: 1.8rem;
    margin: 20px 0;
  }
}

.post_data {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.post_data .news_date {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.single_cat_tag {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.4rem;
}

.cat_tag_item {
  font-size: 1.2rem;
  background-color: #ffffff;
  color: #1b1b1b;
  border: 0.2rem #1b1b1b solid;
  padding: 0.2rem 1rem;
}

.single_icatch {
  width: 100%;
  aspect-ratio: 1/0.6;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.single_icatch img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.single_content {
  padding: 5rem 0;
  background-color: #f4f2f0;
  box-shadow: none;
}
@media (max-width: 820.9px) {
  .single_content {
    padding: 30px;
  }
}
@media (max-width: 559.9px) {
  .single_content {
    padding: 24px 0 0;
  }
}
.single_content *:first-child {
  margin-top: 0;
}
.single_content img {
  max-width: 100% !important;
  height: auto;
}
.single_content .auto {
  margin: 15px 0;
}
.single_content h1 {
  font-size: 3rem;
  margin-top: 56px;
  font-weight: bold;
  margin-bottom: 16px;
}
@media (max-width: 820.9px) {
  .single_content h1 {
    font-size: 2.1rem;
    margin: 30px 0 12px;
  }
}
.single_content h2 {
  font-size: 2.4rem;
  font-weight: 700 !important;
  margin: 40px 0 24px;
  border-radius: 4px;
  line-height: 1.5;
  padding-bottom: 1rem;
  border-bottom: 1px #ccc solid;
}
@media (max-width: 820.9px) {
  .single_content h2 {
    font-size: 1.9rem;
    margin: 30px 0 12px;
  }
}
.single_content h3 {
  font-size: 2rem;
  color: #444;
  margin: 40px 0 20px;
  font-weight: 700 !important;
}
@media (max-width: 820.9px) {
  .single_content h3 {
    font-size: 1.8rem;
    margin: 20px 0 10px;
  }
}
.single_content h4 {
  font-size: 1.8rem;
  margin: 40px 0 16px;
}
@media (max-width: 820.9px) {
  .single_content h4 {
    font-size: 1.7rem;
    margin: 20px 0 16px;
  }
}
.single_content h5 {
  position: relative;
  margin: 40px 0 16px;
  font-size: 1.7rem;
  padding-left: 15px;
}
@media (max-width: 820.9px) {
  .single_content h5 {
    font-size: 1.6rem;
    margin: 32px 0 16px;
  }
}
.single_content h5::before {
  width: 5px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #07afbf;
  content: "";
  display: block;
}
.single_content h6 {
  font-size: 1.6rem;
  color: #666;
  position: relative;
  padding-left: 16px;
  margin: 40px 0 16px;
}
@media (max-width: 820.9px) {
  .single_content h6 {
    margin: 32px 0 16px;
  }
}
.single_content h6::before {
  background: #3875a1;
  width: 5px;
  height: 90%;
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 5%;
}
.single_content table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 15px 0;
  width: 100%;
}
.single_content table th,
.single_content table td {
  vertical-align: middle;
  padding: 15px 10px;
  border: 1px solid #ddd;
  margin: 0;
}
.single_content table th {
  text-align: center;
  background: #eee;
  font-weight: bold;
}
.single_content blockquote {
  position: relative;
  box-sizing: border-box;
  padding: 45px 20px 45px 30px;
  margin: 0 0 30px;
  font-weight: 400;
  color: #444;
  background-color: #f3f3f3;
  border: 1px #ddd solid;
}
@media (max-width: 820.9px) {
  .single_content blockquote {
    padding: 20px 5%;
  }
}
.single_content pre {
  padding: 20px;
  margin: 20px;
  background: #eee;
  border-radius: 5px;
  font-size: 1.5rem;
  white-space: pre-line;
}
.single_content code {
  word-wrap: break-word;
  font-size: 1.5rem;
}
.single_content .word-set {
  display: inline-table;
  position: relative;
  vertical-align: baseline;
  white-space: initial;
}
.single_content .aligncenter {
  margin: 0 auto;
  text-align: center;
  display: inline-block;
}
.single_content .alignright {
  display: inline-block;
  margin-left: auto;
  margin-right: 0;
}
.single_content img {
  height: auto;
}
.single_content ul {
  list-style: inherit;
}
.single_content ul li {
  list-style-type: inherit;
  list-style-position: inside;
}
.single_content ol {
  list-style: inherit;
}
.single_content ol li {
  list-style-type: decimal;
  list-style-position: inside;
}

/**************
アクセスマップ
**************/
.access_page_navi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
@media (max-width: 559.9px) {
  .access_page_navi {
    gap: 1.6rem;
  }
}
.access_page_navi .navi_item {
  padding: 0.8rem 2rem;
  background-color: #6b613d;
  color: #ffffff;
  font-weight: 600;
}
@media (max-width: 559.9px) {
  .access_page_navi .navi_item {
    padding: 0.3rem 1rem;
  }
}

/**************
お問い合わせ
**************/
.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact_box {
  width: 37rem;
  border: 1px #6b613d solid;
}
@media (max-width: 559.9px) {
  .contact_box {
    width: 28rem;
  }
}
.contact_box > dt {
  color: #ffffff;
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #6b613d;
  height: 4.6rem;
}
@media (max-width: 559.9px) {
  .contact_box > dt {
    font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
  }
}
.contact_box > dd {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
@media (max-width: 559.9px) {
  .contact_box > dd {
    font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
  }
}
.contact_box > dd span {
  font-family: "Noto+Sans+JP";
  font-size: 2rem;
}

.mail_cont {
  margin-top: 5rem;
}
@media (max-width: 559.9px) {
  .mail_cont {
    margin-top: 40px;
  }
}

.contact_table {
  width: 100%;
}
.contact_table tr th {
  border: 1px solid #444444;
  padding: 1.8rem 2.4rem;
  width: 32%;
  vertical-align: middle;
  text-align: left;
  background-color: #6b613d;
}
@media (max-width: 1199.9px) {
  .contact_table tr th {
    display: block;
    padding: 1rem 0.5rem;
    width: 100%;
    text-align: left;
    border: none;
  }
}
@media (max-width: 559.9px) {
  .contact_table tr th {
    padding: 0.8rem 0.5rem;
  }
}
.contact_table tr th .hissu_cell {
  position: relative;
  color: #ffffff;
}
@media (max-width: 1199.9px) {
  .contact_table tr th .hissu_cell {
    padding-left: 10px;
  }
}
.contact_table tr th .hissu_cell .hissu {
  background-color: #ffffff;
  border: 1px #444444 solid;
  font-size: 1.2rem;
  font-weight: 500;
  display: inline-block;
  padding: 0.4rem 1.1rem;
  position: absolute;
  right: 0;
  top: 50%;
  color: #ff0000;
  margin-top: -1.3rem;
}
@media (max-width: 1199.9px) {
  .contact_table tr th .hissu_cell .hissu {
    padding: 0 0.7rem 0.1rem;
    margin-top: -1rem;
    margin-right: 1rem;
  }
}
.contact_table tr td {
  padding: 18px 24px;
  border: 1px solid #444444;
  width: 68%;
}
@media (max-width: 1199.9px) {
  .contact_table tr td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 0 20px;
    border: none;
  }
}
@media (max-width: 559.9px) {
  .contact_table tr td {
    padding: 8px 5px;
  }
}

.privacy_cont {
  width: 90%;
  margin: 5rem auto 0;
}
@media (max-width: 559.9px) {
  .privacy_cont {
    margin: 0 auto;
  }
}
.privacy_cont .text {
  text-align: center;
  margin-bottom: 1rem;
}
@media (max-width: 559.9px) {
  .privacy_cont .text br {
    display: none;
  }
}

.privacy_policy {
  height: 50rem;
  padding: 3rem;
  border: 1px #444444 solid;
  overflow-y: scroll;
}
@media (max-width: 559.9px) {
  .privacy_policy {
    width: 100%;
    padding: 1rem;
  }
}
@media (min-width: 560px) {
  .privacy_policy .privacy_policy_box {
    padding: 0 2.4rem;
  }
}
.privacy_policy .privacy_policy_box *:first-child {
  margin-top: 0;
}
.privacy_policy .privacy_policy_box ul {
  margin-top: 1rem;
}
.privacy_policy .privacy_policy_box p {
  margin-top: 1rem;
}
.privacy_policy .privacy_policy_box h3 {
  font-size: 110%;
  margin-top: 2.4rem;
  margin-bottom: 0.8rem;
}
.privacy_policy .privacy_policy_box h4 {
  font-size: 105%;
  margin-top: 2rem;
}
.privacy_policy .privacy_policy_box h5 {
  margin-top: 1.5rem;
}

.privacyCheck {
  margin: 0 0 4rem;
}
.privacyCheck p {
  margin: 1rem 0 2rem;
}

input,
button,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.c-input,
.c-select,
.c-textarea {
  background: #fff;
  border: 1px solid #d3d3d3;
  transition: background-color 100ms, border-color 100ms;
  width: 100%;
  box-sizing: border-box;
}

.c-select {
  padding: 5px 10px;
}

.c-input {
  height: 40px;
  padding: 2px 10px;
}
@media (max-width: 1199.9px) {
  .c-input {
    height: auto;
    padding: 8px 10px;
    box-sizing: border-box;
  }
}

@media (min-width: 560px) {
  .c-select-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.c-select-list__item {
  display: flex;
  align-items: center;
}
@media (min-width: 560px) {
  .c-select-list__item {
    width: 32%;
  }
}
@media (max-width: 820.9px) {
  .c-select-list__item {
    width: 80%;
    margin-bottom: 4px;
  }
}

.c-radio-list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px -5px 0;
  width: 100%;
}
.c-radio-list__item {
  margin: 0 0 5px 0;
}
@media (max-width: 1199.9px) {
  .c-radio-list__item {
    text-align: left;
  }
}
.c-radio-list__item label {
  cursor: pointer;
  margin-right: 20px;
}
@media (max-width: 1199.9px) {
  .c-radio-list__item label {
    margin-right: 10px;
  }
}

.c-radio {
  position: relative;
  top: -3px;
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

.c-textarea {
  height: 200px;
  width: 100%;
  padding: 8px 10px;
}
@media (max-width: 1199.9px) {
  .c-textarea {
    box-sizing: border-box;
    width: 100%;
    height: 120px;
  }
}

.form-btn {
  margin-top: 30px;
  text-align: center;
}

.form-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 640px;
  margin: 30px auto 0;
}
.form-btns.column {
  flex-direction: column;
}
.form-btns .btn {
  color: white;
  font-weight: bold;
  height: auto;
  width: calc(50% - 10px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-rendering: optimizelegibility;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  padding: 0;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 1.6rem;
}

.c-submit,
.c-confirm,
.c-back {
  padding: 18px 0;
  text-align: center;
  width: 280px;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .c-submit,
.c-confirm,
.c-back {
    transition: all 0.3s ease 0s;
  }
}
@media (max-width: 1199.9px) {
  .c-submit,
.c-confirm,
.c-back {
    width: 48%;
    padding: 15px 0;
  }
}

.c-submit {
  border: 2px #4557a4 solid;
  color: #fff;
  background-color: #4557a4;
  font-weight: bold;
  font-size: 1.8rem;
}

.c-submit:hover {
  opacity: 0.8;
}

.c-confirm,
.c-back {
  border: 2px #777 solid;
  color: #777;
  background-color: #fff;
}

.c-confirm:hover,
.c-back:hover {
  background-color: #eee;
}

.btn-confirm, #btn_confirm {
  display: block;
  border: 1px #999 solid;
  border-radius: 5px;
  max-width: 400px;
  width: 90%;
  padding: 15px 0;
  text-align: center;
  font-size: 1.8rem;
  margin: 0 auto;
  background-color: #ddd;
  transition: all 0.3s ease 0s;
}
.btn-confirm.hoverOn, .hoverOn#btn_confirm {
  border: 1px solid #5d3fff;
  background-color: #fff;
  color: #5d3fff;
  cursor: pointer;
}

.btns .btn {
  color: white;
  font-size: 22px;
  font-weight: 600;
  height: auto;
  width: 370px;
  text-rendering: optimizelegibility;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  padding: 18px 0;
  margin: 0 5px 20px;
}
@media (max-width: 1199.9px) {
  .btns .btn {
    font-size: 18px;
    width: 90%;
    margin: 0 auto 20px;
  }
}

.wpcf7cp-btns {
  margin-top: 30px;
  text-align: center;
}
.wpcf7cp-btns button {
  color: white;
  font-size: 2rem;
  font-weight: bold;
  height: auto;
  width: 370px;
  text-rendering: optimizelegibility;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  padding: 18px 0;
  margin: 0 5px 20px;
}
@media (max-width: 1199.9px) {
  .wpcf7cp-btns button {
    font-size: 18px;
    width: 90%;
    margin: 0 auto 20px;
  }
}
.wpcf7cp-btns button.wpcf7cp-cfm-edit-btn {
  background-color: #81c320;
  border-bottom: 3px solid #679b1b;
}
.wpcf7cp-btns button.wpcf7cp-cfm-edit-btn:hover {
  background-color: #a2d400;
  border-color: #a2d400;
}
.wpcf7cp-btns button.wpcf7cp-cfm-submit-btn {
  background-color: #21b2c1;
  border-bottom: 3px solid #1d8691;
  border-color: #21b2c1 #21b2c1 #1d8691;
}
.wpcf7cp-btns button.wpcf7cp-cfm-submit-btn:hover {
  background-color: #2fccdc;
  border-bottom: 3px solid #1d8691;
  border-color: #2fccdc #2fccdc #2fccdc;
}

.btn-conta {
  color: white;
  font-size: 22px;
  font-weight: 600;
  height: 51px;
  width: 80%;
  text-rendering: optimizelegibility;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  text-align: center;
  padding-top: 18px;
  margin: 0 auto 20px;
  background-color: #333;
  border-bottom: 3px solid #888;
}
.btn-conta:hover {
  background-color: #555;
  border-bottom: 3px solid #999;
}

.btns .btn-primary {
  background-color: #81c320;
  border-color: #a2d400;
  border-bottom: 3px solid #679b1b;
}
.btns .btn-primary:hover {
  background-color: #a2d400;
  border-color: #a2d400;
}

.btn-back {
  background-color: #ccc;
}
.btn-back:hover {
  background-color: #ddd;
}

.btn-info {
  background-color: #21b2c1;
}
.btn-info:not(.btn-info:disabled):hover {
  background-color: #2fccdc;
}
.btn-info:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

input[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
  border-radius: 50%;
  position: relative;
  top: -2px;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  border-radius: 50%;
}

.c-radio,
.c-checkbox {
  margin-right: 5px;
  position: relative;
  top: -0.1em;
}

.alert-block {
  border: 2px tomato solid;
  padding: 24px;
  color: red;
  font-weight: bold;
}

.help-block {
  display: block;
  color: tomato;
  font-size: 12px;
  font-weight: bold;
  margin-top: 3px;
}

.wpcf7-response-output {
  background-color: #fff0f0;
  text-align: center;
  color: red;
  padding: 24px !important;
  border-radius: 4px;
  border: none !important;
}

.wpcf7-not-valid-tip {
  display: block;
  font-size: 1.3rem !important;
  font-weight: bold !important;
  margin-top: 3px !important;
}

/**************
プライバシーポリシー
**************/
.privacy {
  background-color: #fff;
}
@media (min-width: 560px) {
  .privacy {
    padding: 0 24px;
  }
}
.privacy *:first-child {
  margin-top: 0;
}
.privacy ul {
  margin-top: 10px;
}
.privacy ul li {
  margin-top: 5px;
}
.privacy p {
  margin-top: 24px;
}
.privacy h3 {
  font-size: 110%;
  margin-top: 24px;
  margin-bottom: 8px;
}
.privacy h4 {
  font-size: 105%;
  margin-top: 20px;
}
.privacy h5 {
  margin-top: 15px;
}

/* ------------
PAGENATION
------------- */
.wp-pagenavi {
  padding: 12px 5px;
  background: #000000;
  border-radius: 4px;
  font-size: 100%;
  text-align: center;
  border: 1px #ddd solid;
  margin-top: 30px;
}

.all_seminar .wp-pagenavi {
  margin: 0 auto;
}

.wp-pagenavi span,
.wp-pagenavi a {
  padding: 5px 7px !important;
  border-radius: 3px;
}

.wp-pagenavi .page,
.wp-pagenavi .pages,
.wp-pagenavi .extend,
.wp-pagenavi .last,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .first {
  background: #fff;
}

.wp-pagenavi .current {
  background: #1eb0d6;
  color: #fff;
}

/* ==============================================
   取扱品目（commodity）アーカイブ・シングル・モーダル
   ============================================== */
/* --- 第2階層カード --- */
.com_cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .com_cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
}
@media (max-width: 559.9px) {
  .com_cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

.com_card {
  cursor: pointer;
  border-radius: 0.8rem;
  background-color: #f5f5f5;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  overflow: hidden;
}
.com_card:hover {
  border-color: #de0101;
  background-color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

a.com_card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.com_card_inner {
  padding: 2rem 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 12rem;
  position: relative;
}
@media (max-width: 559.9px) {
  .com_card_inner {
    padding: 16px 12px;
    min-height: 80px;
  }
}

.com_card_title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1b1b1b;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}
@media (max-width: 559.9px) {
  .com_card_title {
    font-size: 1.4rem;
    margin-bottom: 4px;
  }
}

.com_card_count {
  font-size: 1.3rem;
  color: #888;
  font-weight: 400;
}
@media (max-width: 559.9px) {
  .com_card_count {
    font-size: 1.1rem;
  }
}

.com_card_arrow {
  position: absolute;
  bottom: 1rem;
  right: 1.2rem;
  color: #ccc;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}
.com_card:hover .com_card_arrow {
  color: #de0101;
}

/* --- モーダル --- */
.commodity-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.commodity-modal-overlay.is-active {
  display: flex;
}

.commodity-modal {
  background: #fff;
  border-radius: 1.2rem;
  width: 90%;
  max-width: 640px;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  -webkit-animation: modalFadeIn 0.25s ease;
          animation: modalFadeIn 0.25s ease;
}

@-webkit-keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.commodity-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.4rem;
  border-bottom: 1px solid #eee;
  background-color: #1b1b1b;
  flex-shrink: 0;
}
@media (max-width: 559.9px) {
  .commodity-modal-header {
    padding: 16px;
  }
}

.commodity-modal-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
@media (max-width: 559.9px) {
  .commodity-modal-title {
    font-size: 1.6rem;
  }
}

.commodity-modal-close {
  background: none;
  border: none;
  font-size: 3rem;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.commodity-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.commodity-modal-body {
  padding: 2rem 2.4rem;
  overflow-y: auto;
  flex-grow: 1;
}
@media (max-width: 559.9px) {
  .commodity-modal-body {
    padding: 16px;
  }
}

.commodity-modal-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.commodity-modal-list li {
  border-bottom: 1px solid #f0f0f0;
}
.commodity-modal-list li:last-child {
  border-bottom: none;
}
.commodity-modal-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.2rem;
  color: #1b1b1b;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: 0.4rem;
}
@media (max-width: 559.9px) {
  .commodity-modal-list li a {
    padding: 12px 8px;
    font-size: 1.4rem;
  }
}
.commodity-modal-list li a:hover {
  background-color: #f5f5f5;
  color: #de0101;
}
.commodity-modal-list li a::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.2rem;
  color: #ccc;
  flex-shrink: 0;
  margin-left: 12px;
}
.commodity-modal-list li a:hover::after {
  color: #de0101;
}

.commodity-modal-empty {
  text-align: center;
  padding: 3rem 0;
  color: #999;
  font-size: 1.4rem;
}

/* --- シングルページ --- */
.commodity-single {
  padding: 0 0 4rem;
}

.commodity-single-header {
  margin-bottom: 3rem;
}

.commodity-single-cats {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.commodity-cat-badge {
  display: inline-block;
  padding: 0.4rem 1.6rem;
  border-radius: 0.4rem;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.6;
}
.commodity-cat-badge.level1 {
  background-color: #1b1b1b;
  color: #fff;
}
.commodity-cat-badge.level2 {
  background-color: #6b613d;
  color: #fff;
}

.commodity-single-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #1b1b1b;
  line-height: 1.4;
  padding-bottom: 1.6rem;
  border-bottom: 3px solid #de0101;
}
@media (max-width: 559.9px) {
  .commodity-single-title {
    font-size: 2.4rem;
    padding-bottom: 12px;
  }
}

.commodity-single-thumb {
  margin-bottom: 3rem;
  border-radius: 0.8rem;
  overflow: hidden;
}
.commodity-single-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.commodity-single-content {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 4rem;
}
.commodity-single-content p {
  margin-bottom: 1.6rem;
}
.commodity-single-content img {
  max-width: 100% !important;
  height: auto;
}
.commodity-single-content .auto {
  margin: 15px 0;
}
.commodity-single-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #1b1b1b;
  line-height: 1.4;
  padding-bottom: 1.6rem;
  border-bottom: 3px solid #de0101;
  margin-bottom: 32px;
}
@media (max-width: 559.9px) {
  .commodity-single-content h1 {
    font-size: 2.4rem;
    padding-bottom: 12px;
    padding-bottom: 24px;
  }
}
.commodity-single-content h2 {
  font-size: 2.4rem;
  font-weight: 700 !important;
  margin: 40px 0 24px;
  border-radius: 4px;
  line-height: 1.5;
  padding-bottom: 1rem;
  border-bottom: 1px #ccc solid;
}
@media (max-width: 820.9px) {
  .commodity-single-content h2 {
    font-size: 1.9rem;
    margin: 30px 0 12px;
  }
}
.commodity-single-content h3 {
  font-size: 2rem;
  color: #444;
  margin: 40px 0 20px;
  font-weight: 700 !important;
}
@media (max-width: 820.9px) {
  .commodity-single-content h3 {
    font-size: 1.8rem;
    margin: 20px 0 10px;
  }
}
.commodity-single-content h4 {
  font-size: 1.8rem;
  margin: 40px 0 16px;
}
@media (max-width: 820.9px) {
  .commodity-single-content h4 {
    font-size: 1.7rem;
    margin: 20px 0 16px;
  }
}
.commodity-single-content h5 {
  position: relative;
  margin: 40px 0 16px;
  font-size: 1.7rem;
  padding-left: 15px;
}
@media (max-width: 820.9px) {
  .commodity-single-content h5 {
    font-size: 1.6rem;
    margin: 32px 0 16px;
  }
}
.commodity-single-content h5::before {
  width: 5px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #07afbf;
  content: "";
  display: block;
}
.commodity-single-content h6 {
  font-size: 1.6rem;
  color: #666;
  position: relative;
  padding-left: 16px;
  margin: 40px 0 16px;
}
@media (max-width: 820.9px) {
  .commodity-single-content h6 {
    margin: 32px 0 16px;
  }
}
.commodity-single-content h6::before {
  background: #3875a1;
  width: 5px;
  height: 90%;
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 5%;
}
.commodity-single-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  border: 1px solid #ddd;
}
.commodity-single-content table thead th {
  background-color: #1b1b1b;
  color: #fff;
  font-weight: 700;
  padding: 1.2rem 1.6rem;
  text-align: center;
  border: 1px solid #333;
  font-size: 1.4rem;
  white-space: nowrap;
}
.commodity-single-content table tbody td {
  padding: 1.2rem 1.6rem;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
  font-size: 1.4rem;
}
.commodity-single-content table tbody tr:nth-child(even) {
  background-color: #fafafa;
}
.commodity-single-content table tbody tr:hover {
  background-color: #f0f5fa;
}
@media (max-width: 559.9px) {
  .commodity-single-content table.is-responsive {
    border: none;
  }
  .commodity-single-content table.is-responsive thead {
    display: none;
  }
  .commodity-single-content table.is-responsive tbody tr {
    display: block;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0.6rem;
    margin-bottom: 1.2rem;
    padding: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  }
  .commodity-single-content table.is-responsive tbody tr:nth-child(even) {
    background-color: #fff;
  }
  .commodity-single-content table.is-responsive tbody td {
    display: flex;
    align-items: flex-start;
    padding: 1rem 1.4rem;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.3rem;
  }
  .commodity-single-content table.is-responsive tbody td:last-child {
    border-bottom: none;
  }
  .commodity-single-content table.is-responsive tbody td::before {
    content: attr(data-label);
    display: inline-block;
    min-width: 7em;
    font-weight: 700;
    color: #1b1b1b;
    background-color: #f5f5f5;
    padding: 0.2rem 0.8rem;
    border-radius: 0.3rem;
    margin-right: 1rem;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
}

.commodity-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 2rem;
}
@media (min-width: 560px) {
  .commodity-table-wrap {
    border: 1px solid #ddd;
    border-radius: 0.4rem;
  }
  .commodity-table-wrap table {
    border: none;
    margin-bottom: 0;
  }
}

/* --- 関連品目 --- */
.commodity-related {
  margin-bottom: 4rem;
  padding: 3rem;
  background-color: #f5f5f5;
  border-radius: 0.8rem;
}
@media (max-width: 559.9px) {
  .commodity-related {
    padding: 20px;
  }
}

.commodity-related-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #ddd;
}
@media (max-width: 559.9px) {
  .commodity-related-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
  }
}

.commodity-related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .commodity-related-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 559.9px) {
  .commodity-related-list {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
.commodity-related-list li a {
  display: block;
  padding: 1rem 1.4rem;
  background: #fff;
  border-radius: 0.4rem;
  color: #1b1b1b;
  text-decoration: none;
  font-size: 1.4rem;
  transition: all 0.2s ease;
}
.commodity-related-list li a:hover {
  background-color: #1b1b1b;
  color: #fff;
}

/* --- 戻るボタン --- */
.commodity-back {
  text-align: center;
  margin-top: 4rem;
}
.commodity-back .button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 4rem;
  background-color: #f5f5f5;
  color: #1b1b1b;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 0.4rem;
  transition: all 0.3s ease;
}
.commodity-back .button:hover {
  background-color: #1b1b1b;
  color: #fff;
}

/* --- com_description (L1 説明テキスト) --- */
.com_description {
  margin-top: 1.6rem;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #666;
}
@media (max-width: 559.9px) {
  .com_description {
    margin-top: 8px;
    font-size: 1.3rem;
  }
}
/*# sourceMappingURL=styles.css.map */