﻿
/*
  Made by Elly Loel - https://ellyloel.com/
  With inspiration from:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE

  Notes:
    - `:where()` is used to lower specificity for easy overriding.
*/
* {
  /* Remove default margin on everything */
  margin: 0;
  /* Remove default padding on everything */
  padding: 0;
  /* Calc `em` based line height, bigger line height for smaller font size and smaller line height for bigger font size: https://kittygiraudel.com/2020/05/18/using-calc-to-figure-out-optimal-line-height/ */
  line-height: calc(0.25rem + 1em + 0.25rem);
}

/* Use a more-intuitive box-sizing model on everything */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove border and set sensible defaults for backgrounds, on all elements except fieldset progress and meter */
*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  /* Allow percentage-based heights in the application */
  block-size: 100%;
  /* Making sure text size is only controlled by font-size */
  -webkit-text-size-adjust: none;
}

/* Smooth scrolling for users that don't prefer reduced motion */
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
body {
  /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
  /*text-rendering: optimizeSpeed;*/
  /* Allow percentage-based heights in the application */
  min-block-size: 100%;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
  /* scrollbar-gutter: stable both-edges; Removed until this bug is fixed: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
}

/* Improve media defaults */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

/* Remove stroke and set fill colour to the inherited font colour */
:where(svg) {
  stroke: none;
  fill: currentColor;
}

/* SVG's without a fill attribute */
:where(svg):where(:not([fill])) {
  /* Remove fill and set stroke colour to the inherited font colour */
  stroke: currentColor;
  fill: none;
  /* Rounded stroke */
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Set a size for SVG's without a width attribute */
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

/* Remove built-in form typography styles */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

/* Change textarea resize to vertical only and block only if the browser supports that */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* Avoid text overflows */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

/* Fix h1 font size inside article, aside, nav, and section */
h1 {
  font-size: 2em;
}

/* Position list marker inside */
:where(ul, ol) {
  list-style-position: inside;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
:where(ul, ol)[role=list] {
  list-style: none;
}

/* More readable underline style for anchor tags without a class. This could be set on anchor tags globally, but it can cause conflicts. */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make it clear that interactive elements are interactive */
:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button {
  cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

/* Animate focus outline */
@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    -webkit-transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    -webkit-transition-duration: 0.25s;
            transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

/* Make sure users can't select button text */
:where(input[type=file])::-webkit-file-upload-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}
:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}

/* Disabled cursor for disabled buttons */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓共通↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: #111111;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-animation: fade 2s;
          animation: fade 2s;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
main {
  position: relative;
  margin: 200px 0;
}

li {
  list-style: none;
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

header {
  position: fixed;
  top: 0;
  z-index: 3;
  /*background: rgba(19 32 83 / 40%);*/
  background: rgb(255, 255, 255);
  width: 100%;
  height: 80px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

header.bg {
  background: rgba(255, 255, 255, 0.9);
}

header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-menu-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.header-logo {
  width: 30%;
  padding: 0 10px 0 25px;
}

.header-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.header-logo a:hover {
  opacity: 0.7;
}

.header-logo a p {
  font-weight: bold;
}

.header-menu {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
}

.header-menu-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-menu-bottom li {
  height: 100%;
}

.header-menu-bottom li a {
  color: #111;
  font-weight: bold;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-size: 15px;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.07em;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-menu-bottom li:nth-of-type(7) {
  width: 146px;
  height: 80px;
  background: #e40012;
  display: grid;
  place-items: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.header-menu-bottom li:nth-of-type(7):hover {
  color: #fff;
  /*opacity: 0.7;*/
  background: rgba(228, 0, 18, 0.7);
}

.header-menu-bottom li:nth-of-type(7) a:hover {
  color: #fff;
}

.header-menu-bottom li:nth-of-type(7) a {
  color: #fff;
  font-size: 20px;
  text-align: center;
  width: 100%;
  display: grid;
  place-items: center;
}

#top .header-menu-bottom li:nth-of-type(1) a {
  color: #e40012;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.header-menu-bottom li a:hover {
  color: #e40012;
}

.header-menu-bottom li ul.drop-menu-list {
  left: 0;
  position: absolute;
  top: 100%;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  z-index: 1;
  padding: 15px;
}

.header-menu-bottom li:hover ul.drop-menu-list {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  background: rgba(255, 255, 255, 0.9);
  -webkit-filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.2));
}

.header-menu-bottom li.drop-menu {
  position: relative;
}

.header-menu-bottom li .drop-menu-list a {
  font-size: 14px;
}

.header-menu-bottom li .drop-menu-item {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.header-menu-bottom li .drop-menu-item + .drop-menu-item {
  margin-top: 15px;
}

.header-menu-bottom li ul.drop-menu-list.entry {
  width: 146px;
  padding: 8px;
}

.header-menu-bottom li:hover ul.drop-menu-list.entry .drop-menu-item a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px;
  height: 56px;
  min-height: 56px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header-menu-bottom li:hover ul.drop-menu-list.entry .drop-menu-item:nth-of-type(1) a {
  background: #e40012;
  border: solid 1px #e40012;
  height: 56px;
  min-height: 56px;
}

.header-menu-bottom li:hover ul.drop-menu-list.entry .drop-menu-item:nth-of-type(2) a {
  background: #111;
  border: solid 1px #111;
  height: 56px;
  min-height: 56px;
}

.header-menu-bottom li:hover ul.drop-menu-list.entry .drop-menu-item:nth-of-type(3) a {
  background: #fff;
  color: #111;
  border: solid 1px #111;
  height: 56px;
  min-height: 56px;
  line-height: 38px;
}

.header-menu-bottom li:hover ul.drop-menu-list.entry .drop-menu-item a:hover {
  opacity: 0.7;
}

.header-menu-bottom .drop-menu-list.entry li.drop-menu-item + li.drop-menu-item {
  margin-top: 8px;
}

.header-contact {
  background: #e40012;
  width: 17%;
  height: 100%;
  min-width: 170px;
  max-width: 220px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.header-contact a {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.header-contact:hover {
  background: #0b1742;
}

.header-contact a p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-weight: bold;
}

.header-contact a p::before {
  content: url(../image/icon_mail.png);
  margin-right: 10px;
}

.header-recruit {
  background: #e40012;
  width: 17%;
  height: 100%;
  min-width: 170px;
  max-width: 220px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.header-recruit:hover {
  background: #1046c4;
}

.header-recruit a {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.header-recruit a p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-weight: bold;
}

.header-recruit a p::before {
  content: url(../image/icon_rec.png);
  margin-right: 10px;
}

.menu {
  top: 0;
  right: 0;
  width: 80px;
  height: 100%;
  z-index: 100000;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  place-items: center;
  background: #111;
}

nav {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.navToggle {
  display: block;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10015;
  text-align: center;
  border-radius: 2px;
  position: relative;
}

.navToggle span:nth-child(1) {
  top: 4px;
}

.navToggle span:nth-child(2) {
  top: 16px;
}

.navToggle span:nth-child(3) {
  top: 28px;
}

.navToggle span {
  display: block;
  position: relative;
  width: 40px;
  border-top: solid 3px #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  left: 0px;
}

.navToggle.active span:nth-child(1) {
  top: 20px;
  left: 0px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-color: #fff;
}

.navToggle.active span:nth-child(2) {
  display: none;
}

.navToggle.active span:nth-child(3) {
  top: 17px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-color: #fff;
}

#smt_menu_wrapper {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  color: #fff;
  text-align: center;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  display: grid;
  place-items: center;
}

header .inner ul.link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 35px 80px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

header .inner ul.link li h3 a {
  font-size: 16px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #fff;
}

header .inner ul.link li h3 a:hover {
  opacity: 0.7s;
}

header .inner ul.link li.full {
  width: 100%;
}

header .inner ul.link li {
  width: calc((100% - 160px) / 3);
}

header .inner ul.link li h4 {
  border-bottom: solid 1px #e40012;
  margin-bottom: 45px;
}

header .inner ul.link li h4 a {
  color: #e40012;
  padding-bottom: 15px;
}

header .inner ul.link li a {
  font-weight: bold;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.07em;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #fff;
}

header .inner ul.link li a:hover {
  opacity: 0.7;
}

header .inner ul.link li > a::before {
  content: "";
  background: url(../image/foot_arrow_w.png) no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  display: block;
  margin-right: 0.5em;
}

header .inner ul.link li > a.none::before {
  background: none;
}

header .inner ul.link li > a.under {
  padding-left: 1.8em;
}

header .inner ul.link li a + a {
  margin-top: 2em;
}

#smt_menu_wrapper.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  visibility: inherit;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100vh;
  opacity: 1;
}

#smt_menu_wrapper ul li ul.smt_menu_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#smt_menu_wrapper ul li ul.smt_menu_bottom li:first-of-type {
  width: 100%;
}

#smt_menu_wrapper ul li ul.smt_menu_bottom li:first-of-type a {
  width: 200px;
  margin: auto;
  text-align: center;
  border: 1px solid #000;
  padding: 5px 0 5px 1em;
}

#smt_menu_wrapper ul li ul.smt_menu_bottom li:first-of-type a::before {
  content: url(../image/icon_times.png);
  margin-right: 10px;
  width: 14px;
  height: 16px;
}

#smt_menu_wrapper ul li ul.smt_menu_bottom li:nth-of-type(2) {
  width: 150px;
  margin-top: 20px;
  text-align: left;
}

#smt_menu_wrapper ul li ul.smt_menu_bottom li:nth-of-type(3) {
  width: 50px;
  margin-top: 20px;
  text-align: right;
}

.pc_none {
  display: block;
}

.to_top_btn {
  position: fixed;
  right: 20px;
  bottom: 145px;
  opacity: 0;
}

.to_top_btn.active {
  -webkit-animation: fadeBtn 1s forwards;
          animation: fadeBtn 1s forwards;
}

@-webkit-keyframes fadeBtn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeBtn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.to_top_btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 44px;
  height: 44px;
  background-color: #d0d0d0;
  border: 1px solid #d0d0d0;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.to_top_btn a:hover {
  color: #fff;
  background-color: #919191;
}

/*-- header end --*/
/*-- footer start --*/
footer {
  padding: 0px 0px 50px;
}

footer .inner {
  width: 90%;
  max-width: 1000px;
  margin: 0px auto;
}

footer .short_btn_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

footer .short_btn_unit dt {
  background: #e40012;
  width: 50%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-image-source: linear-gradient(#e40012, #e40012);
  border-image-slice: 0 fill;
  border-image-outset: 0 0 0 100vw;
}

footer .short_btn_unit dt:hover {
  opacity: 0.7;
}

footer .short_btn_unit dt a {
  height: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .short_btn_unit dt a span:nth-of-type(1) {
  color: #fff;
  font-size: 37px;
  font-family: Montserrat;
}

footer .short_btn_unit dt a span:nth-of-type(2) {
  color: #fff;
  font-size: 25px;
  margin-left: 1em;
  position: relative;
  top: 2px;
}

footer .short_btn_unit dt a span:nth-of-type(2)::after {
  content: "";
  background: url(../image/right_allow.png) no-repeat;
  background-size: contain;
  width: 12px;
  height: 21px;
  display: inline-block;
  margin-left: 0.5em;
}

footer .short_btn_unit dd {
  background: #000;
  width: 50%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-image-source: linear-gradient(#000, #000);
  border-image-slice: 0 fill;
  border-image-outset: 0 100vw 0 0;
}

footer .short_btn_unit dd:hover {
  opacity: 0.7;
}

footer .short_btn_unit dd a {
  height: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .short_btn_unit dd a span:nth-of-type(1) {
  color: #fff;
  font-size: 37px;
  font-family: Montserrat;
}

footer .short_btn_unit dd a span:nth-of-type(2) {
  color: #fff;
  font-size: 25px;
  margin-left: 1em;
  position: relative;
  top: 2px;
}

footer .short_btn_unit dd a span:nth-of-type(2)::after {
  content: "";
  background: url(../image/right_allow.png) no-repeat;
  background-size: contain;
  width: 12px;
  height: 21px;
  display: inline-block;
  margin-left: 0.5em;
}

footer .inner ul.link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 35px 80px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-block: 45px 110px;
}

footer .inner ul.link li h3 a {
  font-size: 16px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

footer .inner ul.link li h3 a:hover {
  opacity: 0.7s;
}

footer .inner ul.link li:nth-of-type(1) {
  width: 100%;
}

footer .inner ul.link li {
  width: calc((100% - 160px) / 3);
}

footer .inner ul.link li h4 {
  border-bottom: solid 1px #e40012;
  margin-bottom: 45px;
}

footer .inner ul.link li h4 a {
  color: #e40012;
  padding-bottom: 15px;
}

footer .inner ul.link li a {
  font-weight: bold;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.07em;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

footer .inner ul.link li a:hover {
  opacity: 0.7;
}

footer .inner ul.link li > a::before {
  content: "";
  background: url(../image/foot_arrow.png) no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  display: block;
  margin-right: 0.5em;
}

footer .inner ul.link li > a.none::before {
  background: none;
}

footer .inner ul.link li > a.under {
  padding-left: 1.8em;
}

footer .inner ul.link li a + a {
  margin-top: 2em;
}

footer .inner ul.sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}

footer .inner ul.sns li a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

footer .inner ul.sns li a:hover {
  opacity: 0.7;
}

footer .footer_line {
  height: 1px;
  background-color: #111111;
  margin: 60px calc(50% - 50vw) 40px;
  width: 100vw;
}

footer .footer_logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

footer .footer_logo a {
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

footer .footer_logo a:hover {
  opacity: 0.7;
}

footer .footer_logo a span {
  margin-top: 10px;
  font-size: 14px;
  display: block;
}

footer .inner small {
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 30px;
}

/*-- footer end --*/
.inner1000 {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

.inner1200 {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.inner1400 {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

/* ボタン */
.btn {
  width: 80%;
  max-width: 320px;
  margin: auto;
}
.btn_transparent_black {
  border: 1px solid #000;
}
.btn_transparent_white {
  border: 1px solid #fff;
}
.btn_transparent_orange {
  border: 1px solid #e40012;
  background-color: #e40012;
}

.btn a {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  padding: 20px 0;
  font-size: 20px;
}
.btn a:hover {
  background: rgba(0, 0, 0, 0.1);
}
.btn a.txt_white {
  color: #fff;
}
.btn a.txt_white:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ボタン　ここまで */
/* ページトップ */
.page_top {
  position: relative;
  width: 100%;
  min-height: 40vh;
}
.page_top_img img {
  height: 100%;
  min-height: 40vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_top_title {
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.page_top_title h2 {
  color: #e40012;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}
.page_top_title h3 {
  color: #e40012;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  opacity: 0.85;
}

#top2 .foot_wrap {
  /* position: absolute; */
  /* top: 100%; */
  width: 100%;
  margin-top: -50%;
}

#top2 .foot_wrap.reverse {
  /*position: absolute; */
  /* top: 270%; */
  /* width: 100%; */
  margin-top: -50%;
}

.foot_unit {
  position: relative;
  z-index: -3;
}

.foot_unit.reverse {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.foot_unit svg {
  width: 95%;
  height: 95%;
}

.human01, .human02, .human03, .human04, .human05, .human06, .human07, .human08, .human09, .dog01, .dog02, .dog03, .dog04, .dog05, .dog06, .dog07, .dog08, .dog09, .dog10, .dog11, .dog12, .dog13 {
  stroke: none;
  opacity: 0;
}

.human01re, .human02re, .human03re, .human04re, .human05re, .human06re, .human07re, .human08re, .human09re, .dog01re, .dog02re, .dog03re, .dog04re, .dog05re, .dog06re, .dog07re, .dog08re, .dog09re, .dog10re, .dog11re, .dog12re, .dog13re {
  stroke: none;
  opacity: 0;
}

.title-line {
  text-align: center;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.title-line + h2 {
  text-align: center;
  position: relative;
  top: -7px;
  font-size: 45px;
  font-family: arial;
  line-height: 1;
  margin-bottom: 45px;
}

.title-line-small {
  text-align: center;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.title-line-small + h2 {
  text-align: center;
  font-size: 36px;
  font-family: Montserrat;
  font-weight: 600;
  line-height: 1;
  margin-top: 20px;
  margin-bottom: 5px;
  letter-spacing: 0.07em;
}

.title-line-small + h2 span {
  color: #e40012;
}

.title-line-small + h2 + p {
  text-align: center;
  font-size: 20px;
}

footer .short_btn_unit_sp {
  display: none;
}

header .inner ul.link li.link-entry {
  display: none;
}

/* ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ */
/* ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑共通　ここまで↑↑↑↑↑↑↑↑↑↑↑↑↑↑ */
/* ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ */
@media screen and (max-width: 1400px) {
  .header-logo {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .header-menu {
    width: auto;
    margin-left: auto;
  }
  .header-menu-bottom {
    width: auto;
    gap: 20px;
  }
}
@media screen and (max-width: 1240px) {
  .header-menu {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header-logo a img {
    max-width: 144px;
  }
  .header-logo a p {
    font-size: 13px;
  }
  footer {
    border-top: solid 1px #111;
    padding-top: 30px;
    padding-bottom: 100px;
  }
  footer .short_btn_unit {
    display: none;
  }
  footer .short_btn_unit_sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
  }
  footer .short_btn_unit_sp dt {
    background: #e40012;
    width: 50%;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    border-image-source: linear-gradient(#e40012, #e40012);
    border-image-slice: 0 fill;
    border-image-outset: 0 0 0 100vw;
  }
  footer .short_btn_unit_sp dt:hover {
    opacity: 0.7;
  }
  footer .short_btn_unit_sp dt a {
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
    font-size: 20px;
    font-family: Montserrat;
  }
  footer .short_btn_unit_sp dd {
    background: #000;
    width: 50%;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    border-image-source: linear-gradient(#000, #000);
    border-image-slice: 0 fill;
    border-image-outset: 0 100vw 0 0;
  }
  footer .short_btn_unit_sp dd:hover {
    opacity: 0.7;
  }
  footer .short_btn_unit_sp dd a {
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
    font-size: 20px;
    font-family: Montserrat;
  }
  footer .inner ul.link {
    display: none;
  }
  footer .footer_line {
    display: none;
  }
  footer .footer_logo {
    margin-top: 50px;
  }
  footer .inner small {
    font-size: 11px;
  }
  .hidden {
    display: none !important;
  }
  header .inner ul.link li.link-entry {
    width: 100%;
    display: block;
  }
  header .inner ul.link li.link-entry a {
    width: 100%;
    display: block;
    padding: 8px;
    height: 50px;
    display: grid;
    place-items: center;
  }
  header .inner ul.link li.link-entry a + a {
    margin-top: 15px;
  }
  header .inner ul.link li.link-entry a::before {
    content: none;
  }
  header .inner ul.link li.link-entry a:nth-of-type(1) {
    background: #e40012;
    border: solid 1px #e40012;
  }
  header .inner ul.link li.link-entry a:nth-of-type(2) {
    background: #111;
    border: solid 1px #fff;
  }
  header .inner ul.link li.link-entry a:nth-of-type(3) {
    background: #fff;
    color: #111;
    border: solid 1px #111;
  }
  header {
    height: 60px;
  }
  .menu {
    width: 60px;
  }
  nav {
    width: 30px;
    height: 30px;
  }
  .navToggle {
    width: 30px;
    height: 30px;
  }
  .navToggle span {
    width: 30px;
  }
  .navToggle span:nth-child(1) {
    top: 2px;
  }
  .navToggle span:nth-child(2) {
    top: 11px;
  }
  .navToggle span:nth-child(3) {
    top: 20px;
  }
  .navToggle.active span:nth-child(1) {
    top: 15px;
  }
  .navToggle.active span:nth-child(3) {
    top: 12px;
  }
  #top2 .foot_wrap {
    position: relative;
    /*position: absolute;*/
    /* top: 135%; */
    /* top: 240vw; */
    /* left: 0%; */
    /* right: 0%; */
    overflow: hidden;
    z-index: -1;
    margin-top: -120%;
  }
  #top2 .foot_wrap.reverse {
    position: relative;
    /*position: absolute;*/
    /* top: 420%; */
    /* top: 740vw; */
    /* left: 0%; */
    /* right: 0%; */
    overflow: hidden;
    z-index: -1;
    margin-top: -100%;
  }
  #top2 .foot_unit {
    width: 200%;
  }
  #top2 .foot_unit.reverse {
    width: 200%;
  }
  .foot_unit {
    position: relative;
    z-index: -3;
  }
  .foot_unit.reverse {
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
  .foot_unit svg {
    width: 95%;
    height: 95%;
  }
}
#top main {
  margin: 500px 0 60px;
}

/*----ビジュアル----*/
.top-visual {
  width: 100%;
  height: auto;
  margin-top: 250px;
}

.visual-wrapper figure {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  display: grid;
  place-items: center;
  margin-bottom: 80px;
  position: relative;
  left: 15px;
}

.fade_left {
  position: relative;
}

.fade_left_mask {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 2;
}

.visual-wrapper p {
  font-size: 18px;
  text-align: center;
  color: #e40012;
  line-height: 2.6em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.07em;
}

.visual-wrapper p + p {
  margin-top: 2.6em;
}

/*----ビジュアル--ここまで----*/
/*----Be Partners------*/
#top-be_partners ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#top-be_partners ul li {
  position: relative;
  width: 33.3333333333%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#top-be_partners ul li:hover {
  opacity: 0.7;
}

.be_partners_link {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  z-index: 2;
  top: 0;
}

.be_partners_link_inner {
  position: absolute;
  right: 30px;
  bottom: 20px;
  text-align: right;
}

.be_partners_link h3 {
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  -webkit-filter: drop-shadow(0px 0px 4px rgb(0, 0, 0));
          filter: drop-shadow(0px 0px 4px rgb(0, 0, 0));
  margin-bottom: 15px;
}

.be_partners_link p.text {
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 70px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.be_partners_link p.link {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 11px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.be_partners_link p.link::after {
  content: "";
  background-image: url(../image/link-allow.png);
  width: 27px;
  height: 6px;
  background-size: contain;
  display: block;
  position: relative;
  top: -2px;
  margin-left: 0.5em;
}

.be_partners_photo {
  position: relative;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.be_partners_photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.be_partners_photo::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/*----Be Partners--ここまで----*/
/*----proposal_sales------*/
.top-proposal_sales {
  margin: 50px auto 70px;
  position: relative;
}

.top-proposal_sales_image {
  width: 70%;
  margin-left: auto;
  position: relative;
  z-index: -1;
}

.top-proposal_sales_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1080/528;
}

.top-proposal_sales_catch {
  width: 34%;
  display: block;
  position: absolute;
  top: 80px;
  left: 160px;
  background: #e40012;
  padding: 60px 70px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.top-proposal_sales_catch:hover {
  background: rgba(228, 0, 18, 0.7);
}

.top-proposal_sales_catch::after {
  content: "";
  width: 90%;
  height: 70%;
  position: absolute;
  right: -20px;
  bottom: -20px;
  background: rgb(240, 248, 239);
  background: linear-gradient(54deg, rgb(240, 248, 239) 0%, rgb(212, 238, 231) 100%);
  z-index: -1;
}

.top-proposal_sales_catch h3 {
  color: #fff;
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 15px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.top-proposal_sales_catch p.text {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.07em;
}

.top-proposal_sales_catch p.link {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 11px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.top-proposal_sales_catch p.link::after {
  content: "";
  background-image: url(../image/link-allow.png);
  width: 27px;
  height: 6px;
  background-size: contain;
  display: block;
  position: relative;
  top: -2px;
  margin-left: 0.5em;
}

/*----proposal_sales--ここまで----*/
/*----top-departments------*/
.top-departments dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top-departments dt {
  width: 50%;
}

.top-departments dd {
  width: 50%;
  position: relative;
}

.top-departments_catch {
  width: 68%;
  display: block;
  position: absolute;
  top: 80px;
  left: -40px;
  background: #e40012;
  padding: 60px 70px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.top-departments_catch:hover {
  background: rgba(228, 0, 18, 0.7);
}

.top-departments_catch::after {
  content: "";
  width: 90%;
  height: 70%;
  position: absolute;
  right: -20px;
  bottom: -20px;
  background: rgb(240, 248, 239);
  background: linear-gradient(54deg, rgb(240, 248, 239) 0%, rgb(212, 238, 231) 100%);
  z-index: -1;
}

.top-departments_catch h3 {
  color: #fff;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 15px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.top-departments_catch p.text {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.07em;
}

.top-departments_catch p.link {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 11px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 20px;
}

.top-departments_catch p.link::after {
  content: "";
  background-image: url(../image/link-allow.png);
  width: 27px;
  height: 6px;
  background-size: contain;
  display: block;
  position: relative;
  top: -2px;
  margin-left: 0.5em;
}

.top-understands_block {
  width: 100%;
  max-width: 1400px;
  margin: 70px 0 0;
}

.top-understands {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.top-understands a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.top-understands a:hover {
  opacity: 0.7;
}

/*----top-departments--ここまで----*/
/* --------------------ポップアップメニューここから-------------------- */
.modal_open {
  display: inline-block;
  cursor: pointer;
}

.modal_inner {
  padding: 20px;
}

.modal_box {
  position: fixed;
  z-index: 7777;
  display: none;
  width: 27%;
  max-width: 100%;
  margin: 0 0 0 33%;
  padding: 0;
  text-align: center;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));
  height: 90vh;
  overflow-y: scroll;
}

.modal_inner h2 {
  background: #d7cfc7;
  padding: 30px;
}

.modal_inner_sentence {
  border-bottom: solid 1px #111;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.modal_inner_sentence figure {
  margin-top: 1em;
}

.modal_inner_sentence h3 {
  text-align: left;
  margin-top: 1em;
}

.modal_inner_sentence p {
  text-align: justify;
  margin-top: 0.5em;
}

.modal_inner_sentence a {
  color: #e40012;
  text-align: right;
  display: block;
  margin-top: 1em;
}

a.modal_close {
  top: 0;
  right: 0;
  display: block;
  font-size: 18px;
  color: #222;
  text-align: center;
  background: #444;
  padding: 6px 48px;
  color: #fff !important;
  margin: 50px auto 0;
  max-width: 300px;
  border-radius: 5px;
  cursor: pointer;
}

.modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6666;
  display: none;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.85);
}

.swiper {
  margin-top: 60px;
}

.swiper-pagination {
  position: relative !important;
  bottom: 0 !important;
  margin-top: 10px;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 30px;
  height: 3px;
  border-radius: 0;
}

.swiper-pagination-bullet-active {
  background: #111111 !important;
}

.swiper-slide {
  position: relative;
  overflow: visible !important;
  padding-top: 25px;
  padding-bottom: 25px;
}

.swiper-slide a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.swiper-slide a:hover {
  opacity: 0.7;
}

.swiper-slide figure:after {
  content: "";
  width: 80%;
  height: 60%;
  position: absolute;
  right: -20px;
  top: -20px;
  background: rgb(240, 248, 239);
  background: linear-gradient(54deg, rgb(240, 248, 239) 0%, rgb(212, 238, 231) 100%);
  z-index: -1;
}

.swiper-catch {
  position: absolute;
  left: -20px;
  bottom: 0px;
  padding: 15px 30px;
  background: #e40012;
  width: 80%;
}

.swiper-catch p.one {
  font-size: 13px;
  color: #fff;
}

.swiper-catch p.two {
  font-size: 10px;
  font-family: Montserrat;
}

#top-interview {
  background: rgb(240, 248, 239);
  background: linear-gradient(54deg, rgb(240, 248, 239) 0%, rgb(212, 238, 231) 100%);
  margin: 60px 0;
}

#top-interview .inner {
  padding: 100px 0;
}

/* --------------------ポップアップメニューここまで-------------------- */
/*----top-talk-session------*/
#top-talk-session {
  margin: 80px 0;
}

#top-talk-session ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 100px;
  width: 100%;
  max-width: 1400px;
  margin: 60px auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#top-talk-session ul li a {
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: block;
}

#top-talk-session ul li a:hover {
  opacity: 0.7;
}

#top-talk-session ul li figure {
  padding: 0 30px;
}

#top-talk-session ul li p.link {
  color: #111;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 11px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 20px;
  margin-right: 4em;
}

#top-talk-session ul li p.link::after {
  content: "";
  background-image: url(../image/link-allow-b.png);
  background-repeat: no-repeat;
  width: 27px;
  height: 6px;
  background-size: contain;
  display: block;
  position: relative;
  top: -2px;
  margin-left: 0.5em;
}

.text-tate {
  position: absolute;
  top: 0;
  left: 1em;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: vertical-rl;
  font-size: 15px;
  font-weight: 600;
}

.text-tate-left {
  position: absolute;
  top: 0;
  left: 0em;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: vertical-rl;
  font-size: 15px;
  font-weight: 600;
}

.text-tate span {
  color: #e40012;
}

.text-tate-left span {
  color: #e40012;
}

.katagaki-one {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: solid 1px #111;
  padding: 0.5em 1em;
  font-size: 14px;
  position: absolute;
  bottom: 10em;
  background: #fff;
}

.katagaki-two {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: solid 1px #111;
  padding: 0.5em 1em;
  font-size: 14px;
  position: absolute;
  bottom: 7em;
  left: 3em;
  background: #fff;
}

.katagaki-three {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: solid 1px #111;
  padding: 0.5em 1em;
  font-size: 14px;
  position: absolute;
  bottom: 8.5em;
  background: #fff;
}

.back-catch {
  font-size: 170px;
  font-family: Montserrat;
  color: #e9e9e9;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.07em;
  margin-top: -110px;
}

#understands {
  scroll-margin-top: 120px;
}

#top2 main {
  margin: 300px 0 60px;
}

/*----top-talk-session--ここまで----*/
@media screen and (max-width: 1201px) {
  .top-proposal_sales_catch {
    width: 40%;
    padding: 40px 50px;
  }
  .top-proposal_sales_catch h3 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .top-departments_catch {
    width: 75%;
    padding: 40px 50px;
  }
  .swiper-catch {
    padding: 15px 15px;
    width: 100%;
  }
  .modal_box {
    width: 30%;
  }
}
@media screen and (max-width: 961px) {
  .top-proposal_sales_catch {
    width: 40%;
    padding: 40px 50px;
  }
  .top-proposal_sales_catch h3 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .top-departments_catch {
    width: 75%;
    padding: 40px 50px;
  }
  .swiper-catch {
    padding: 15px 15px;
    width: 100%;
  }
  .modal_box {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .visual-wrapper figure {
    width: 80%;
    left: 0;
  }
  .visual-wrapper figure picture {
    width: 100%;
    margin-bottom: 30px;
  }
  .visual-wrapper figure picture img {
    width: 100%;
  }
  .visual-wrapper p {
    font-size: 15px;
    text-align: justify;
    line-height: 2em;
    width: 90%;
    margin: auto;
    text-align: justify;
  }
  .visual-wrapper p br {
    display: none;
  }
  #top2 main {
    margin: 250px 0 60px;
  }
  .top-visual {
    margin-top: 150px;
  }
  #top-be_partners ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #top-be_partners ul li {
    width: 100%;
  }
  #top-talk-session ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .top-proposal_sales_image {
    width: 100%;
  }
  .top-proposal_sales_catch {
    width: 80%;
    position: relative;
    padding: 20px;
    margin: auto;
    top: 0;
    left: 0;
  }
  .top-proposal_sales_catch h3 {
    font-size: 22px;
  }
  .top-proposal_sales_catch p.text {
    font-size: 14px;
  }
  .top-proposal_sales_catch p.link {
    margin-top: 20px;
  }
  .top-departments dt {
    display: none;
  }
  .top-departments dd {
    width: 100%;
  }
  .top-departments_catch {
    width: 80%;
    position: relative;
    top: 0px;
    left: 0px;
    padding: 20px;
    margin: auto;
  }
  .top-departments_catch h3 {
    font-size: 22px;
  }
  .top-departments_catch p.text {
    font-size: 14px;
  }
  .top-understands {
    width: 60%;
    margin: auto;
  }
  #top-talk-session .inner {
    width: 90%;
    margin: auto;
  }
  #top-talk-session ul li figure img {
    margin: auto;
  }
  .back-catch {
    font-size: 66px;
    text-align: left;
    line-height: 1;
  }
  #smt_menu_wrapper.active {
    overflow: scroll;
  }
  header .inner ul.link {
    width: 65%;
    padding: 50px 0 100px;
  }
  header .inner ul.link li {
    width: 100%;
  }
  header .inner ul.link li a {
    font-size: 14px;
  }
  #smt_menu_wrapper {
    height: calc(100vh - 60px);
    margin-top: 60px;
  }
  #smt_menu_wrapper.active {
    height: calc(100vh - 60px);
  }
  .modal_box {
    position: fixed;
    z-index: 7777;
    display: none;
    width: 80%;
    max-width: 100%;
    margin: 0 0 0 0%;
    padding: 0;
    text-align: center;
    background: #fff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));
            filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));
    height: 80vh;
    overflow-y: scroll;
  }
  footer .short_btn_unit_sp dt a::after {
    content: "";
    background-color: #fff;
    width: 10px;
    height: 16px;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
            clip-path: polygon(0 0, 0% 100%, 100% 50%);
    margin-left: 6px;
  }
  footer .short_btn_unit_sp dd a::after {
    content: "";
    background-color: #fff;
    width: 10px;
    height: 16px;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
            clip-path: polygon(0 0, 0% 100%, 100% 50%);
    margin-left: 6px;
  }
  .top-understands_block {
    margin: 150px 0 0;
  }
  #top-interview .inner {
    padding: 60px 0;
  }
  .swiper {
    margin-top: 40px;
  }
  #top-talk-session {
    margin: 60px 0;
  }
}
#message main {
  margin: 80px 0 0px;
}
#message section {
  margin: 80px 0 0;
}
#message section + section {
  margin: 80px 0;
}
#message section .inner {
  width: 90%;
  margin: auto;
}
#message .title-line-mid {
  text-align: center;
}
#message .title-line-mid h2 {
  font-size: 40px;
  font-family: Montserrat;
  letter-spacing: 0.05em;
  font-weight: 600;
}
#message .title-line-mid h2 span {
  color: #e40012;
}
#message .title-line-mid p {
  font-size: 22px;
}
#message .title-line-mid figure.title-line-middle {
  margin: 0;
}
#message .title-line-mid figure.title-line-middle img {
  width: auto;
  max-width: 596px;
  margin: 40px auto 0;
}
#message .page_visual {
  position: relative;
}
#message .page_visual_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#message .page_visual_title {
  position: absolute;
  bottom: 70px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  width: 900px;
  margin: auto;
  text-align: right;
}
#message .page_visual_title h2 {
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro", "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", YuMincho, "Yu Mincho", serif;
  font-weight: bold;
  font-size: 41px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.02em;
  line-height: 1.6;
}
#message .page_visual_title h2 span {
  color: #e40012;
}
#message .page_visual_title p {
  font-weight: bold;
  margin-top: 60px;
}
#message .page_visual_name {
  max-width: 203px;
  margin-left: auto;
  margin-top: 10px;
}
#message .page_visual_name img {
  width: auto;
}
#message .message_main_core {
  max-width: 780px;
  margin: auto;
}
#message .message_main_core h4 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 80px auto 40px;
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro", "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", YuMincho, "Yu Mincho", serif;
  font-weight: bold;
  font-size: 30px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: #e40012;
  text-align: center;
}
#message .message_main_core p.text {
  max-width: 514px;
  margin: auto;
  position: relative;
  font-size: 14px;
  line-height: 2;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
#message .message_main_core p.text + p.text {
  margin-top: 2em;
}
#message .message_main_core figure {
  max-width: 780px;
  margin: 0px auto 80px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-bottom: -250px;
}
#message .back-catch_wrap {
  background: rgb(240, 248, 239);
  background: linear-gradient(54deg, rgb(240, 248, 239) 0%, rgb(212, 238, 231) 100%);
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 330px;
}
#message .back-catch {
  color: #fff;
  font-size: 170px;
  font-family: arial;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: -80px;
}
#message .fade_left {
  position: relative;
}
#message .fade_left_mask {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  #message main {
    margin: 60px 0 80px;
  }
  #message .page_visual_title {
    width: 90%;
    right: 5%;
    bottom: 20px;
  }
  #message .page_visual_title p {
    font-size: 14px;
  }
  #message .page_visual_title h2 {
    font-size: 18px;
  }
  #message .page_visual_name {
    max-width: 140px;
  }
  #message .title-line-mid figure.title-line-middle img {
    width: 100%;
  }
  #message .back-catch_wrap {
    width: 100%;
  }
  #message .back-catch {
    font-size: 50px;
    text-align: left;
    line-height: 0.65;
    margin: 50px auto;
  }
  #message .message_main_core h4 {
    font-size: 22px;
  }
  #message .message_main_core figure {
    max-width: 780px;
    margin: 0px auto 80px;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    margin-bottom: 0px;
  }
  #message .back-catch_wrap {
    margin-left: -5vw;
    margin-right: -5vw;
    margin-top: 60px;
    width: 100vw;
  }
  #message .back-catch_wrap p {
    width: 90%;
  }
}
#data main {
  margin: 60px 0 0px;
}
#data #data_main .inner {
  width: 90%;
  max-width: 1000px;
  margin: 120px auto 80px;
}
#data .title-line-data {
  text-align: center;
}
#data .title-line-data figure.title-line-middle {
  margin: 0;
}
#data .title-line-data figure.title-line-middle img {
  width: auto;
  max-width: 596px;
  margin: 40px auto 0;
}
#data .title-line-data-small {
  text-align: center;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#data .title-line-data-small + h2 {
  text-align: center;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  margin-top: 20px;
  margin-bottom: 15px;
  letter-spacing: 0.07em;
}
#data .title-line-data-small + h2 + p {
  text-align: center;
  font-size: 15px;
  font-family: Montserrat;
  font-weight: 600;
}
#data .title-line-data p span {
  color: #e40012;
}
#data .page_visual {
  position: relative;
}
#data .page_visual_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#data .page_visual_title {
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  width: 900px;
  margin: auto;
  text-align: center;
}
#data .page_visual_title h2 {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 140px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.02em;
  line-height: 0.7;
  color: rgba(255, 255, 255, 0.6);
}
#data .data_lineup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 66px 80px;
  margin-top: 60px;
}
#data .data_lineup li {
  width: calc((100% - 80px) / 2);
}
#data .data_list {
  overflow: hidden;
  border: solid 3px #d80012;
}
#data .data_list dt {
  position: relative;
  width: 100%;
  cursor: pointer;
}
#data .data_list dt::after {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  background-image: url(../image/dog_foot_plus.png);
  background-size: contain;
  position: absolute;
  background-repeat: no-repeat;
  bottom: 20px;
  right: 20px;
}
#data .data_list dt.active::after {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  background-image: url(../image/dog_foot_minus.png);
  background-size: contain;
  position: absolute;
  background-repeat: no-repeat;
  bottom: 20px;
  right: 20px;
}
#data .data_list dd {
  position: relative;
  padding: 40px;
  display: none;
  border-top: solid 1px #e40012;
}
#data .data_list dd.active {
  display: block;
}
#data .data_list dd p {
  font-size: 14px;
  text-align: justify;
  line-height: 1.7;
}
#data .data_lineup li:nth-of-type(2) .data_list dd p {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.04em;
}
#data .data_list_photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6px;
  margin-top: 6px;
}
#data .data_lineup_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 37px 50px;
  margin-top: 52px;
}
#data .data_lineup_2 li {
  width: calc((100% - 100px) / 3);
  border: solid 3px #d80012;
}
#data .data_lineup_3 {
  margin-top: 37px;
}
#data .data_lineup_3 li {
  width: 100%;
  border: solid 3px #d80012;
}
#data .last_comment {
  font-size: 14px;
  margin-top: 30px;
  margin-left: auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 768px) {
  #data .page_visual_title {
    width: 100%;
  }
  #data .page_visual_title h2 {
    font-size: 14vw;
  }
  #data #data_main .inner {
    margin: 40px auto 80px;
  }
  #data .title-line-data-small + h2 {
    font-size: 22px;
  }
  #data .data_lineup {
    gap: 25px 80px;
    margin-top: 60px;
  }
  #data .data_lineup li {
    width: 100%;
  }
  #data .data_lineup li figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #data .data_lineup_2 {
    gap: 25px 50px;
    margin-top: 25px;
  }
  #data .data_lineup_2 li {
    width: 100%;
  }
  #data .data_lineup_2 li figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-height: 210px;
  }
  #data .data_lineup_2 li figure img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  #data .data_lineup_3 {
    margin-top: 25px;
  }
}
#pet_market main {
  margin: 60px 0 0px;
}
#pet_market .title-line-data {
  text-align: center;
}
#pet_market .title-line-data figure.title-line-middle {
  margin: 0;
}
#pet_market .title-line-data figure.title-line-middle img {
  width: auto;
  max-width: 596px;
  margin: 40px auto 0;
}
#pet_market .title-line-data-small {
  text-align: center;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#pet_market .title-line-data-small + h2 {
  text-align: center;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  margin-top: 20px;
  margin-bottom: 15px;
  letter-spacing: 0.07em;
}
#pet_market .title-line-data-small + h2 + p {
  text-align: center;
  font-size: 15px;
  font-family: Montserrat;
  font-weight: 600;
}
#pet_market .title-line-data p span {
  color: #e40012;
}
#pet_market .page_visual {
  position: relative;
}
#pet_market .page_visual_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#pet_market .page_visual_title {
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  width: 100%;
  margin: auto;
  text-align: center;
}
#pet_market .page_visual_title h2 {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 140px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.02em;
  line-height: 0.7;
  color: rgba(255, 255, 255, 0.6);
}
#pet_market section .inner {
  width: 90%;
  max-width: 1000px;
  margin: 120px auto 80px;
}
#pet_market section h3 {
  background: #e40012;
  border-image-source: linear-gradient(#e40012, #e40012);
  border-image-slice: 0 fill;
  border-image-outset: 0 100vw;
  text-align: center;
  color: #fff;
  font-size: 30px;
  padding: 0.6em;
  margin-top: 70px;
}
#pet_market section h4 {
  font-size: 21px;
  text-align: center;
  margin-top: 30px;
}
#pet_market section#pet_market_3 figure {
  margin-block: 0px;
}
#pet_market section figure {
  margin-block: 30px 48px;
}
#pet_market .text-title {
  color: #e40012;
  font-size: 70px;
  font-weight: 400;
  margin-top: 40px;
  margin-bottom: 0.5em;
  padding-left: 1em;
  position: relative;
}
#pet_market .text-title::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -7px;
  background: url(../image/foot_icon.png) no-repeat;
  width: 66px;
  height: 66px;
  background-size: contain;
}
#pet_market .text-middle {
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.7;
  text-align: justify;
}
#pet_market .text-middle span {
  color: #e40012;
}
#pet_market .text-small {
  max-width: 600px;
  margin: 2em auto 0;
  line-height: 1.6;
  font-size: 14px;
}
#pet_market .title-line-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#pet_market section#pet_market_3 .text-small {
  margin: 0em auto 0;
}
#pet_market section#pet_market_2 figure {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 70px auto 48px;
}
#pet_market section#pet_market_2 figure img {
  width: 100%;
}
#pet_market #pet_market_3 dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
#pet_market #pet_market_3 dl + dl {
  margin-top: 30px;
}
#pet_market #pet_market_3 dl:nth-of-type(1) {
  margin-top: 70px;
}
#pet_market #pet_market_3 dl:nth-of-type(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#pet_market #pet_market_3 dt {
  width: 45%;
}
#pet_market #pet_market_3 dd {
  width: 55%;
}
#pet_market .market_map {
  background: url(../image/pet_market_main_01.png) no-repeat;
  position: relative;
  margin: 30px auto 0;
  display: block;
  width: 90%;
  max-width: 714px;
  height: auto;
  aspect-ratio: 675/454;
}
#pet_market .market_dog_img {
  position: absolute;
  top: 4%;
  left: 6%;
}
#pet_market .market_cat_img {
  position: absolute;
  bottom: 1%;
  right: 14%;
}
#pet_market .market_dog_num {
  position: absolute;
  top: 48%;
  left: 13%;
}
#pet_market .market_cat_num {
  position: absolute;
  bottom: 20%;
  right: 2%;
}
#pet_market .market_map_number {
  position: relative;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 48px;
}
#pet_market .last_comment {
  margin: 4em auto 0;
  line-height: 1.6;
  font-size: 14px;
  text-align: right;
}

@media screen and (max-width: 768px) {
  #pet_market .page_visual_title h2 {
    font-size: 14vw;
  }
  #pet_market section .inner {
    margin: 40px auto 80px;
  }
  #pet_market section figure {
    margin-block: 30px 20px;
  }
  #pet_market section h3 {
    font-size: 24px;
    margin-top: 40px;
  }
  #pet_market section h4 {
    font-size: 16px;
  }
  #pet_market .market_map {
    background-size: contain;
  }
  #pet_market .market_map_number {
    width: 80%;
    margin-top: 20px;
  }
  #pet_market .market_dog_img {
    position: absolute;
    top: -5%;
    left: 3%;
    max-width: 140px;
  }
  #pet_market .market_cat_img {
    position: absolute;
    bottom: 0%;
    right: 0%;
    max-width: 100px;
  }
  #pet_market .market_dog_num {
    top: 48%;
    left: 3%;
    max-width: 140px;
  }
  #pet_market .market_cat_num {
    bottom: 20%;
    right: -6%;
    max-width: 140px;
  }
  #pet_market #pet_market_3 dl {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #pet_market #pet_market_3 dt {
    width: 100%;
  }
  #pet_market #pet_market_3 dd {
    width: 100%;
  }
  #pet_market #pet_market_3 dl:nth-of-type(1) {
    margin-top: 40px;
  }
  #pet_market #pet_market_3 dl:nth-of-type(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #pet_market .text-title {
    font-size: 40px;
  }
  #pet_market .text-title::before {
    content: "";
    position: absolute;
    top: 4px;
    left: -7px;
    background: url(../image/foot_icon.png) no-repeat;
    width: 40px;
    height: 40px;
    background-size: contain;
  }
}
/* お問い合わせここから
-------------------------------------------*/
.contact .inner1024 {
  margin: 0px auto 150px;
}

/* お問い合わせフォーム */
#contact-form h2 {
  background: #ff5001;
  font-weight: bold;
  text-align: center;
  font-size: 24px;
  color: #fff;
  padding: 20px;
  margin: 120px 0 80px;
}

#contact-form p.main_text {
  color: #333;
  font-weight: bold;
  text-align: center;
}

#contact-form p.sub_text {
  color: #c70a11;
  font-weight: bold;
  margin-top: 2em;
  text-align: center;
}

#contact-form p.confirm_text {
  color: #333;
  font-weight: bold;
  text-align: center;
}

#contact-form dl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px 0;
}

#contact-form dl dt {
  position: relative;
  font-weight: bold;
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contact-form dl dd {
  width: 80%;
}

#contact-form dd .check-box {
  font-weight: normal;
  width: 100%;
  padding: 10px 20px;
  background: #FFF;
}

#contact-form dt.must:after {
  display: inline-block;
  content: "＊";
  color: #c70a11;
  position: relative;
  top: 1px;
  margin-left: 5px;
  font-size: 18px;
}

/* フォーム入力画面*/
#contact-form input,
#contact-form textarea,
#contact-form button.back {
  font-weight: normal;
  width: 100%;
  padding: 10px;
  border-radius: 3px;
  border: solid 1px #b3b3b3;
  font-family: inherit;
}

#contact-form textarea {
  max-width: 100%;
  min-width: 100%;
  form-sizing: content;
  max-height: 8lh;
}

.check-box label {
  display: inline-block;
}

#contact-form button.back,
#contact-form input[type=submit] {
  color: #fff;
  background: #ff5001;
  border-radius: 3px;
  padding: 20px 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  font-weight: bold;
}

#contact-form button.back:hover {
  background: #ccc;
  color: #fff;
}

#contact-form input[type=submit]:hover {
  background: #c03d00;
  color: #fff;
  opacity: 1;
}

#contact-form button.back:hover,
#contact-form input[type=submit]:hover {
  cursor: pointer;
}

#contact-form input[type=reset] {
  color: #fff;
  background: #444;
  border-radius: 3px;
  padding: 20px 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  font-weight: bold;
  cursor: pointer;
}

#contact-form input[type=reset]:hover {
  background: #1a1a1a;
  color: #fff;
  opacity: 1;
}

#contact-form input[type=button] {
  color: #fff;
  background: #444;
  border-radius: 3px;
  padding: 20px 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  font-weight: bold;
  cursor: pointer;
}

#contact-form input[type=button]:hover {
  background: #1a1a1a;
  color: #fff;
  opacity: 1;
}

.check-input,
.radio-input {
  display: none;
}

.check,
.radio {
  position: relative;
  padding-left: 1.5em;
  margin-right: 1.5em;
}

.check::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 1px;
}

.check-input:checked + .check::after {
  content: "";
  display: block;
  position: absolute;
  top: -0.1rem;
  left: 0.5rem;
  width: 0.4rem;
  height: 1.2rem;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  border-bottom: 0.4rem solid #e10057;
  border-right: 0.4rem solid #e10057;
}

#doui {
  display: none;
}

#doui + label {
  position: relative;
  padding-left: 1.5em;
  font-size: 18px;
  font-weight: bold;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#doui + label::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  border: solid 1px #CCC;
  border-radius: 3px;
  background: #FFF;
}

#doui:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.4rem;
  left: 0.5rem;
  width: 0.8rem;
  height: 1.5rem;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  border-bottom: 0.4rem solid #e10057;
  border-right: 0.4rem solid #e10057;
}

span.must {
  display: inline-block;
  color: #c70a11;
  margin-left: 0.5em;
  font-weight: bold;
}

/* 内容確認 */
/* お問い合わせ送信完了 */
#thankyou {
  width: 100%;
  margin: 0 auto;
}

.contact-tel {
  width: 50%;
  border: solid 1px #ddd;
  margin: 30px auto 0;
  text-align: center;
  font-size: 2.6rem;
  padding: 20px 10px;
}

.t-center {
  background: #f2f2f2;
  padding: 30px;
  text-align: center;
  margin: 60px 0 100px;
}

.t-center p {
  font-weight: bold;
}

.blank {
  color: #007bff;
  font-weight: bold;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  margin-right: 0.2em;
}

.blank:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.doui_box {
  background: #fff;
  padding: 20px;
  margin-top: 30px;
}

.btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
}

#contact-form p.message {
  text-align: center;
}

#contact-form p.message strong {
  font-size: 20px;
  display: block;
}

.contact-tel p.tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 28px;
  font-weight: bold;
  width: 100%;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 5px;
}

.contact-tel p.small {
  font-weight: bold;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 16px;
}

/* お問い合わせここまで
-------------------------------------------*/
@media screen and (max-width: 561px) {
  .contact .inner1024 {
    margin: 100px auto;
  }
  #contact-form h2 {
    font-size: 20px;
    padding: 10px;
    margin: 60px 0 40px;
  }
  #contact-form p.sub_text {
    margin-top: 1em;
  }
  #contact-form dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contact-form dl dt {
    width: 100%;
  }
  #contact-form dl dd {
    width: 100%;
  }
  .t-center {
    padding: 20px;
    margin: 30px 0 60px;
  }
  .doui_box {
    padding: 10px;
  }
  #doui + label {
    font-size: 16px;
  }
  .contact-tel {
    width: 80%;
  }
}
#recruit-info main {
  margin: 80px 0px 0px;
}
#recruit-info #recruit-info_main {
  background: #fdefea;
  padding: 80px 0 130px;
}
#recruit-info #recruit-info_main .inner {
  width: 100%;
  max-width: 900px;
  margin: auto;
}
#recruit-info .recruit-info_table {
  background: #fff;
  margin-top: 60px;
  padding: 50px;
}
#recruit-info .recruit-info_table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px 5%;
  padding: 2em 0;
  border-bottom: solid 1px #666;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#recruit-info .recruit-info_table dt {
  width: 10%;
  line-height: 1.5;
}
#recruit-info .recruit-info_table dd {
  width: 85%;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  #recruit-info main {
    margin: 60px 0px 0px;
  }
  #recruit-info .title-line-small + h2 {
    font-size: 22px;
    letter-spacing: 0.03em;
  }
  #recruit-info #recruit-info_main {
    padding: 40px 0 80px;
  }
  #recruit-info #recruit-info .recruit-info_table {
    padding: 20px;
    width: 90%;
    margin: 40px auto 0;
  }
  #recruit-info .recruit-info_table dl {
    gap: 0px 5%;
    padding: 1em 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #recruit-info .recruit-info_table dt {
    width: 100%;
  }
  #recruit-info .recruit-info_table dd {
    width: 100%;
  }
}
#job main {
  margin: 80px 0px 0px;
}
#job .job_main {
  padding: 70px 0 130px;
}
#job .job_main .job_title_inner {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}
#job .job_main h2 {
  text-align: left;
  font-size: 68px;
  font-family: Montserrat;
  font-weight: 500;
  line-height: 1;
  margin-top: 0px;
  margin-bottom: 5px;
  letter-spacing: 0.04em;
}
#job .job_main h2 span {
  color: #e40012;
}
#job .job_main h2 + p {
  text-align: left;
  font-size: 22px;
}
#job .job_main dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  position: relative;
}
#job .job_main dt {
  width: 70%;
}
#job .job_main dt figure {
  overflow: hidden;
}
#job .job_main dt figure img {
  -o-object-fit: cover;
     object-fit: cover;
}
#job .job_main dd {
  width: 47%;
  background: #e50012;
  padding: 30px 50px;
  position: absolute;
  left: 44%;
  bottom: -10%;
  max-width: 580px;
  opacity: 0;
}
#job .job_main dd > div {
  opacity: 0;
}
#job .fade_left {
  position: relative;
}
#job .fade_left_mask {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #e40012;
  z-index: 2;
}
#job .job_main dd h3 {
  color: #fff;
}
#job .job_main dd h4 {
  margin-top: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: solid 1px #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  font-size: 13px;
}
#job .job_main dd h4 span:nth-of-type(1) {
  color: #e50012;
  background: #fff;
  padding: 4px 8px;
}
#job .job_main dd h4 span:nth-of-type(2) {
  color: #fff;
  padding: 4px 8px;
}
#job .job_main dd p {
  margin-top: 20px;
  color: #fff;
  font-size: 12px;
  max-width: 334px;
  text-align: justify;
}
#job .job_main_sentence {
  max-width: 585px;
  margin: 180px auto 0;
}
#job .job_main_sentence h5 {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.6;
}
#job .job_main_sentence h5 span {
  color: #e50012;
}
#job .job_main_sentence p {
  font-size: 14px;
  margin-top: 40px;
  text-align: justify;
  line-height: 2;
}
#job .job_sec {
  position: relative;
  padding-bottom: 80px;
}
#job .job_gradient {
  background: linear-gradient(54deg, rgb(240, 248, 239) 0%, rgb(212, 238, 231) 100%);
  height: 70%;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
#job .job_sec dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4%;
  max-width: 1100px;
  margin: auto;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
#job .job_sec dt {
  width: 48%;
  padding: 0 40px;
}
#job .job_sec dt h2 {
  font-size: 22px;
  line-height: 1.6;
  color: #e50012;
}
#job .job_sec dt p {
  font-size: 14px;
  line-height: 2;
  margin-top: 30px;
  text-align: justify;
}
#job .job_sec dd {
  width: 48%;
}
#job .job_sec dd figure {
  margin-bottom: 40px;
}
#job .job_thi {
  position: relative;
  padding-bottom: 160px;
}
#job .job_thi figure img {
  width: 100%;
}
#job .job_thi .job_gradient {
  height: 30%;
}
#job .job_thi_sentence {
  padding: 60px 60px 30px;
  background: #fff;
  max-width: 585px;
  margin: -70px auto 0;
  position: relative;
}
#job .job_thi_sentence h2 {
  font-size: 22px;
  line-height: 1.6;
  color: #e50012;
}
#job .job_thi_sentence p {
  font-size: 14px;
  line-height: 2;
  margin-top: 30px;
  text-align: justify;
}
#job .job_four {
  position: relative;
  padding-bottom: 80px;
}
#job .job_four dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4%;
  max-width: 1100px;
  margin: -110px auto 0;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
#job .job_four.re dl {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#job .job_four dd {
  width: 48%;
  padding: 0 40px;
}
#job .job_four dd h2 {
  font-size: 22px;
  line-height: 1.6;
  color: #e50012;
}
#job .job_four dd p {
  font-size: 14px;
  line-height: 2;
  margin-top: 30px;
  text-align: justify;
}
#job .job_four dt {
  width: 48%;
}
#job .job_four dt figure {
  margin-bottom: 40px;
}
#job .job_five {
  background: linear-gradient(54deg, rgb(240, 248, 239) 0%, rgb(212, 238, 231) 100%);
  padding: 60px 0;
}
#job .job_five .inner {
  width: 90%;
  background: #e40012;
  max-width: 585px;
  margin: auto;
  padding: 45px 30px 20px 60px;
}
#job .job_five_image figure {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#job .job_five_image figure:nth-of-type(2) {
  margin-top: 8px;
  margin-left: 45px;
}
#job .job_five p {
  font-size: 14px;
  color: #fff;
  line-height: 2.2;
  padding: 0 30px 0 0;
  margin: 40px 0 20px;
}
#job .job_five h6 {
  font-size: 28px;
  color: #fff;
  line-height: 1.6;
  text-align: right;
}
#job .back_link {
  font-size: 18px;
  text-align: center;
  display: block;
  margin: 20px auto 60px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-weight: bold;
}
#job .back_link:hover {
  opacity: 0.7;
}
#job .back_link span {
  color: #e40012;
}

@media screen and (max-width: 768px) {
  #job main {
    margin: 60px 0 0px;
  }
  #job .job_main {
    padding: 40px 0 80px;
  }
  #job .job_main .job_title_inner {
    width: 90%;
  }
  #job .job_main h2 {
    font-size: 40px;
  }
  #job .job_main h2 + p {
    font-size: 18px;
  }
  #job .job_main dl {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #job .job_main dt {
    width: 100%;
  }
  #job .job_main dt figure img {
    height: 250px;
  }
  #job .job_main dd {
    width: 100%;
    padding: 30px 30px;
    position: inherit;
    left: -50px;
    bottom: 50px;
    max-width: 100%;
  }
  #job .job_main_sentence {
    width: 90%;
    margin: 50px auto 0;
  }
  #job .job_main_sentence h5 {
    font-size: 22px;
  }
  #job .job_sec {
    width: 100%;
    margin: auto;
  }
  #job .job_sec dl {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 90%;
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #job .job_sec dt {
    width: 100%;
    padding: 0 0px;
  }
  #job .job_sec dt h2 {
    font-size: 20px;
  }
  #job .job_sec dd {
    width: 100%;
    padding: 0 0px;
  }
  #job .job_thi figure img {
    width: 90%;
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 30px auto;
  }
  #job .job_thi_sentence {
    padding: 0;
    margin: 30px auto;
    width: 90%;
  }
  #job .job_thi .job_gradient {
    display: none;
  }
  #job .job_four {
    padding-bottom: 50px;
  }
  #job .job_four dl {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 90%;
  }
  #job .job_four dt {
    width: 100%;
  }
  #job .job_four dd {
    width: 100%;
    padding: 0;
  }
  #job .job_five .inner {
    padding: 30px 15px 5px 30px;
  }
  #job .job_five_image figure {
    width: 70%;
  }
  #job .job_five p {
    font-size: 13px;
    color: #fff;
    line-height: 1.7;
    padding: 0px 15px 0 0;
    margin: 20px 0 20px;
  }
  #job .job_five h6 {
    font-size: 22px;
  }
}
#faq main {
  margin: 80px 0 0;
}
#faq .faq_main {
  background-color: #FDEFEA;
  padding: 120px 5% 80px;
}
#faq .faq_main .inner {
  width: 100%;
  max-width: 900px;
  margin: auto;
  background-color: #fff;
}
#faq .faq_list {
  width: 95%;
  max-width: 800px;
  margin: 120px auto 0;
  padding: 45px 0;
}
#faq .faq_list dl dt {
  border: 1px solid #E40012;
  background-color: #E40012;
  color: #fff;
  font-size: 19px;
  padding: 20px 40px;
}
#faq .faq_list dl dt::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url(../image/icon_pad.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  top: 3px;
  margin-right: 10px;
}
#faq .faq_list dl dd {
  border: 1px solid #E40012;
  background-color: #fff;
  font-size: 15px;
  line-height: 1.5;
  padding: 30px 45px 50px;
}

@media screen and (max-width: 768px) {
  #faq main {
    margin: 60px 0 0;
  }
  #faq .faq_main {
    padding: 40px 5% 80px;
  }
  #faq .faq_list {
    width: 100%;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 0px 0;
  }
  #faq .faq_list dl dt {
    font-size: 16px;
    padding: 10px 15px 10px calc(30px + 1.8em);
    text-indent: -2.2em;
  }
  #faq .faq_list dl dd {
    font-size: 14px;
    line-height: 1.7;
    padding: 20px;
  }
}
#personnel main {
  margin: 80px 0 0;
}
#personnel .page_visual {
  position: relative;
}
#personnel .page_visual_title {
  width: 100%;
  max-width: 600px;
  background-color: #fff;
  padding-top: 35px;
  position: absolute;
  left: 50%;
  bottom: -60px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#personnel .title-line-data-small {
  text-align: center;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#personnel .title-line-data-small + h2 {
  text-align: center;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  margin-top: 20px;
  margin-bottom: 15px;
  letter-spacing: 0.07em;
}
#personnel .title-line-data-small + h2 + p {
  text-align: center;
  font-size: 15px;
  font-family: Montserrat;
  font-weight: 600;
}
#personnel .title-line-data-small p span {
  color: #e40012;
}
#personnel .personnel_main {
  margin-top: 120px;
}
#personnel .personnel_main .inner {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}
#personnel .personnel_catch {
  width: 100%;
  max-width: 600px;
  margin: auto;
}
#personnel .personnel_catch h3 {
  font-size: 35px;
  font-weight: normal;
  line-height: 1.5;
}
#personnel .personnel_catch h3 span {
  color: #E40012;
}
#personnel .personnel_catch * + * {
  margin-top: 50px;
}
#personnel .personnel_catch p {
  font-size: 14px;
  text-align: justify;
  line-height: 1.8;
}
#personnel .personnel_list {
  margin-top: 50px;
}
#personnel .personnel_list ul li + li {
  margin-top: 120px;
}
#personnel .personnel_list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#personnel .personnel_list ul li:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#personnel .personnel_list ul li figure {
  position: relative;
  width: 40%;
  opacity: 0;
}
#personnel .personnel_list ul li figure::before {
  content: "";
  width: 130%;
  height: 100%;
  background-image: url(../image/personnel_list_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
}
#personnel .personnel_list ul li:nth-of-type(odd) figure::before {
  background-size: cover;
  background-repeat: no-repeat;
  top: 10%;
  left: 40%;
}
#personnel .personnel_list ul li:nth-of-type(even) figure::before {
  background-size: cover;
  background-repeat: no-repeat;
  top: 10%;
  right: 40%;
}
#personnel .personnel_list ul li dl {
  width: 60%;
  opacity: 0;
}
#personnel .personnel_list ul li dl dt,
#personnel .personnel_list ul li dl dd {
  width: 100%;
  max-width: 400px;
}
#personnel .personnel_list ul li:nth-of-type(odd) dl dt,
#personnel .personnel_list ul li:nth-of-type(odd) dl dd {
  margin-left: 10%;
}
#personnel .personnel_list ul li:nth-of-type(even) dl dt,
#personnel .personnel_list ul li:nth-of-type(even) dl dd {
  margin-left: auto;
  margin-right: 10%;
}
#personnel .personnel_list ul li dl dt {
  position: relative;
  color: #E40012;
  font-size: 22px;
  padding-left: 25px;
}
#personnel .personnel_list ul li dl dt::before {
  content: "";
  width: 8px;
  height: calc(100% + 10px);
  background-color: #11CA8F;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#personnel .personnel_list ul li dl dd {
  margin-top: 40px;
  font-size: 14px;
  text-align: justify;
  line-height: 2;
}
#personnel .personnel_message {
  width: 100%;
  max-width: 1000px;
  margin: 200px auto 80px;
}
#personnel .personnel_message h3 {
  color: #E40012;
  font-size: 22px;
}
#personnel .personnel_message h3::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url(../image/icon_pad_red.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
  position: relative;
  top: 4px;
}
#personnel .personnel_message_list {
  margin-top: 70px;
}
#personnel .personnel_message_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5%;
}
#personnel .personnel_message_list ul li {
  width: 47.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5%;
  border-bottom: 8px solid #E40012;
  padding-bottom: 30px;
}
#personnel .personnel_message_list ul li figure {
  position: relative;
  width: 45%;
}
#personnel .personnel_message_list ul li figure::before {
  content: "";
  width: 42px;
  height: 42px;
  background-image: url(../image/icon_pad_red.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 5%;
  bottom: 5%;
}
#personnel .personnel_message_list ul li p {
  width: 50%;
  font-size: 14px;
  text-align: justify;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  #personnel main {
    margin: 60px 0 0;
  }
  #personnel .page_visual_bg img {
    min-height: 220px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #personnel .page_visual_title {
    padding-top: 35px;
    position: inherit;
    left: 0%;
    bottom: 0px;
    -webkit-transform: inherit;
            transform: inherit;
  }
  #personnel .personnel_main {
    margin-top: 40px;
    overflow: hidden;
  }
  #personnel .personnel_list ul li:nth-of-type(1) figure {
    width: 90%;
    margin-left: -17vw;
  }
  #personnel .personnel_list ul li:nth-of-type(2) figure {
    width: 90%;
    margin-left: 0vw;
    margin-right: -17vw;
  }
  #personnel .personnel_list ul li:nth-of-type(3) figure {
    width: 90%;
    margin-left: -5vw;
  }
  #personnel .personnel_list ul li + li {
    margin-top: 40px;
  }
  #personnel .personnel_list ul li:nth-of-type(odd) figure::before {
    top: 10%;
    left: 25%;
    width: 90%;
    display: none;
  }
  #personnel .personnel_list ul li:nth-of-type(even) figure::before {
    top: 10%;
    right: 25%;
    width: 90%;
    display: none;
  }
  #personnel .personnel_list ul li:nth-of-type(odd) dl dt, #personnel .personnel_list ul li:nth-of-type(odd) dl dd {
    margin-left: 0%;
  }
  #personnel .personnel_list ul li dl dt {
    font-size: 20px;
    font-weight: 600;
  }
  #personnel .personnel_list ul li dl {
    width: 100%;
    margin-top: 80px;
  }
  #personnel .personnel_message {
    margin: 80px auto 80px;
  }
  #personnel .personnel_message_list {
    margin-top: 20px;
  }
  #personnel .personnel_message_list ul {
    gap: 20px 5%;
  }
  #personnel .personnel_message_list ul li {
    width: 100%;
    gap: 20px 5%;
  }
  #personnel .personnel_catch h3 {
    font-size: 22px;
    font-weight: 700;
  }
  #personnel .personnel_catch * + * {
    margin-top: 25px;
  }
}
#interview main {
  margin: 80px 0 0px;
}
#interview .page_visual {
  position: relative;
}
#interview .page_visual_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#interview .page_visual_title {
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  width: 100%;
  margin: auto;
  text-align: center;
}
#interview .page_visual_title h2 {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 140px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.02em;
  line-height: 0.7;
  color: rgba(255, 255, 255, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#interview .page_visual_title h2 span {
  display: block;
  line-height: 0.7;
}
#interview .page_visual_title h2 span:nth-of-type(1) {
  margin-right: 20vw;
}
#interview .page_visual_title h2 span:nth-of-type(2) {
  margin-left: 20vw;
}
#interview .foot_wrap {
  width: 100%;
  margin-top: -20%;
  margin-bottom: -15%;
  z-index: -3;
  position: relative;
  overflow: hidden;
}
#interview .human01,
#interview .human02,
#interview .human03,
#interview .human04,
#interview .human05,
#interview .human06,
#interview .human07,
#interview .human08,
#interview .human09,
#interview .dog01,
#interview .dog02,
#interview .dog03,
#interview .dog04,
#interview .dog05,
#interview .dog06,
#interview .dog07,
#interview .dog08,
#interview .dog09,
#interview .dog10,
#interview .dog11,
#interview .dog12,
#interview .dog13 {
  stroke: none;
  opacity: 0;
}
#interview #interview_main {
  margin: 80px auto;
  scroll-margin-top: 120px;
}
#interview #top-talk-session {
  scroll-margin-top: 120px;
}
#interview #interview_main .inner {
  width: 90%;
  max-width: 950px;
  margin: auto;
}
#interview .title-line-small + h2 + p + p {
  font-size: 16px;
  text-align: center;
  margin-top: 40px;
  line-height: 2;
}
#interview .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 6.6666666667%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  margin-inline: auto;
}
#interview .swiper-slide {
  width: 20%;
}
#interview .swiper-slide figure {
  position: relative;
}
#interview .swiper-slide figure:after {
  content: "";
  width: 80%;
  height: 70%;
  position: absolute;
  right: -20px;
  top: -20px;
  background: rgb(240, 248, 239);
  background: linear-gradient(130deg, rgb(240, 248, 239) 0%, rgb(212, 238, 231) 70%, rgb(255, 255, 255) 100%);
  z-index: -1;
}
#interview #top-talk-session {
  margin: 0px 0 0px;
}

@media screen and (max-width: 768px) {
  #interview main {
    margin: 60px 0 0px;
  }
  #interview .page_visual_title h2 {
    font-size: 11vw;
  }
  #interview .page_visual_title h2 span:nth-of-type(1) {
    margin-right: auto;
  }
  #interview .page_visual_title h2 span:nth-of-type(2) {
    margin-left: 0vw;
  }
  #interview .swiper-wrapper {
    gap: 30px 10%;
    width: 90%;
    margin: 40px 5% 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #interview .swiper-slide {
    width: 45%;
  }
  #interview .swiper-catch {
    left: -10px;
    bottom: 0px;
    padding: 10px;
    width: 90%;
  }
  #interview .swiper-catch p.one {
    font-size: 12px;
  }
  #interview .swiper-catch p.wto {
    font-size: 11px;
  }
  #interview .foot_wrap {
    margin-top: -80%;
  }
  #interview .foot_unit {
    width: 200%;
  }
}
#talk_session main {
  margin: 80px 0px 0px;
}
#talk_session .talk_session_main {
  padding: 70px 0 130px;
}
#talk_session .talk_session_main h2 {
  text-align: center;
  font-size: 45px;
  font-family: Montserrat;
  font-weight: 600;
  line-height: 1;
  margin-top: 20px;
  margin-bottom: 5px;
  letter-spacing: 0.07em;
}
#talk_session .talk_session_main h2 span {
  color: #e40012;
}
#talk_session .talk_session_main h2 + p {
  text-align: center;
  font-size: 22px;
}
#talk_session .back_link {
  font-size: 18px;
  text-align: center;
  display: block;
  margin: 20px auto 60px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-weight: bold;
}
#talk_session .back_link:hover {
  opacity: 0.7;
}
#talk_session .back_link span {
  color: #e40012;
}
#talk_session .talk_head_title {
  background: url(../image/talk_title_base.png);
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 488px;
  height: 74px;
  margin: 50px auto 0;
  position: relative;
}
#talk_session .talk_post.left {
  position: absolute;
  top: -7px;
  left: 40px;
}
#talk_session .talk_post.right {
  position: absolute;
  top: -7px;
  right: 40px;
}
#talk_session .talk_head_profile {
  width: 90%;
  max-width: 900px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 120px auto 0;
  gap: 180px;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
#talk_session .talk_head_profile dt,
#talk_session .talk_head_profile dd {
  border-top: solid 1px #e40012;
  border-bottom: solid 1px #e40012;
  width: 33%;
  padding: 30px 0;
  position: relative;
}
#talk_session .talk_head_profile dt::before {
  content: url(../image/talk_title_profile_01.png);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#talk_session .talk_head_profile dd::before {
  content: url(../image/talk_title_profile_02.png);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#talk_session .talk_head_profile_text {
  max-width: 210px;
  margin-left: auto;
  position: relative;
}
#talk_session .talk_head_profile_text h5 {
  position: absolute;
  top: -5px;
  left: -46px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e40012;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#talk_session .talk_head_profile_text h5 span:nth-of-type(1) {
  font-size: 16px;
  color: #fff;
  line-height: 1;
}
#talk_session .talk_head_profile_text h5 span:nth-of-type(2) {
  font-size: 8px;
  color: #fff;
  line-height: 1;
}
#talk_session .talk_head_profile_text h3 {
  font-size: 12px;
  color: #e40012;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
#talk_session .talk_head_profile_line {
  height: 1px;
  border-bottom: solid 1px #e40012;
  width: 0px;
  margin-top: 5px;
}
#talk_session .talk_head_profile_text h4 {
  font-size: 12.7px;
  margin-top: 15px;
}
#talk_session .talk_head_profile_text p {
  margin-top: 30px;
  font-size: 11px;
  line-height: 1.7;
  text-align: justify;
}
#talk_session .talk_session_dis {
  margin: 80px 0;
}
#talk_session .talk_session_dis dl {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px 80px;
}
#talk_session .talk_session_dis.re dl {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#talk_session .talk_session_dis dt {
  width: 40%;
  position: relative;
}
#talk_session .talk_session_dis dt figure {
  margin-top: 80px;
  margin-left: -150px;
}
#talk_session .talk_session_dis.re dt figure {
  margin-left: 0px;
  margin-right: -150px;
}
#talk_session .talk_session_dis dd {
  width: 60%;
  position: relative;
}
#talk_session .talk_session_dis dd h2 p {
  font-size: 32px;
  border: solid 1px #111;
  padding: 4px 8px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
  opacity: 0;
}
#talk_session .talk_session_dis dd h2 p + p {
  margin-top: 10px;
}
#talk_session .talk_session_dis dd h2 p span {
  color: #e40012;
}
#talk_session .talk_session_dis_text {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
#talk_session .talk_session_dis_text li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
#talk_session .talk_session_dis_text li figure {
  width: 77px;
  height: 77px;
  position: relative;
}
#talk_session .talk_session_dis_text li figure img {
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}
#talk_session .talk_session_dis_text li figure figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #e40012;
  color: #fff;
  width: 22px;
  height: 22px;
  font-size: 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  line-height: 1;
  padding-bottom: 0px;
}
#talk_session .talk_session_dis_text li p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 14px;
  line-height: 1.7;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.1em;
}
#talk_session .rotate {
  position: absolute;
  top: -40px;
  left: -40px;
  z-index: -1;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  opacity: 0;
}
#talk_session .rotate2 {
  position: absolute;
  top: -40px;
  left: -40px;
  z-index: -1;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  opacity: 0;
}
#talk_session .rotate3 {
  position: absolute;
  top: -40px;
  left: -40px;
  z-index: -1;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  opacity: 0;
}
#talk_session .rotate4 {
  position: absolute;
  top: -40px;
  left: -40px;
  z-index: -1;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  opacity: 0;
  margin-top: 100px;
}
#talk_session .rotate5 {
  position: absolute;
  top: -40px;
  left: -40px;
  z-index: -1;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  opacity: 0;
}
#talk_session .talk_session_end {
  margin: 70px 0;
}
#talk_session .talk_session_end .inner {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}
#talk_session .talk_session_end ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px 4%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#talk_session .talk_session_end ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 48%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 35px;
  opacity: 0;
}
#talk_session .talk_session_end ul li figure {
  width: 130px;
  height: 130px;
  position: relative;
}
#talk_session .talk_session_end ul li figure figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #e40012;
  color: #fff;
  width: 37px;
  height: 37px;
  font-size: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  line-height: 1;
  padding-bottom: 2px;
}
#talk_session .talk_session_end ul li figure img {
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}
#talk_session .talk_session_end ul li .minasama {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#talk_session .talk_session_end ul li .minasama p {
  font-size: 14px;
  line-height: 1.7;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.1em;
  border: solid 4px #e40012;
  padding: 30px;
  border-radius: 17px;
  margin-top: 10px;
  position: relative;
}
#talk_session .talk_session_end ul li .minasama p::before {
  content: "";
  position: absolute;
  top: 40px;
  left: -30px;
  -webkit-clip-path: polygon(0 50%, 100% 100%, 100% 0);
          clip-path: polygon(0 50%, 100% 100%, 100% 0);
  background: #e40012;
  width: 30px;
  height: 30px;
}
#talk_session .talk_session_end ul li:nth-of-type(1) {
  margin-top: 30px;
}
#talk_session .talk_session_end ul li:nth-of-type(2) {
  margin-top: 110px;
}
#talk_session .minasama_title {
  margin-left: 165px;
}
#talk_session .last_photo img {
  width: 100%;
}
#talk_session .talk_head_title3 {
  background: url(../image/talk_title_base_03.png);
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 488px;
  height: 74px;
  margin: 50px auto 0;
  position: relative;
}
#talk_session .talk_post.center {
  position: absolute;
  top: -14px;
  left: 26px;
}
#talk_session .talk_head_profile dt.san::before {
  content: url(../image/talk_title_sym_01.png);
  left: inherit;
  right: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
#talk_session .talk_head_profile dd.san:nth-of-type(1):before {
  content: url(../image/talk_title_sym_02.png);
  position: absolute;
  left: inherit;
  right: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
#talk_session .talk_head_profile dd.san:nth-of-type(2):before {
  content: url(../image/talk_title_sym_03.png);
  position: absolute;
  left: inherit;
  right: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
#talk_session .talk_head_profile dt.san, #talk_session .talk_head_profile dd.san {
  border-left: solid 1px #e40012;
}
#talk_session .talk_head_profile.sanyonen {
  gap: 100px;
}
#talk_session .talk_head_profile.sanyonen .talk_head_profile_text p {
  width: 70%;
}
#talk_session li.short {
  margin-top: -60px;
  position: relative;
  z-index: -1;
}
#talk_session .talk_head_profile dt.dev::before {
  content: url(../image/talk_title_dev_01.png);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#talk_session .talk_head_profile dd.dev:before {
  content: url(../image/talk_title_dev_02.png);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#talk_session .talk_head_title_dev {
  background: url(../image/talk_title_base_dev.png);
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 666px;
  height: 66px;
  margin: 50px auto 0;
  position: relative;
}
#talk_session .talk_post.left-l {
  position: absolute;
  top: -17px;
  left: 13px;
}
#talk_session .talk_post.left-l img {
  width: 100%;
}
#talk_session .talk_post.right-l {
  position: absolute;
  top: -15px;
  right: 17px;
}
#talk_session .talk_post.right-l img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  #talk_session main {
    margin: 60px 0 0px;
  }
  #talk_session #talk_session .talk_session_main h2 {
    font-size: 32px;
  }
  #talk_session .talk_session_main h2 + p {
    font-size: 18px;
  }
  #talk_session .talk_head_title {
    width: 100%;
    background-size: contain;
  }
  #talk_session .talk_post.left {
    top: -9px;
    left: 21px;
  }
  #talk_session .talk_post.left img {
    width: 80%;
  }
  #talk_session .talk_post.right {
    top: -9px;
    right: -5px;
  }
  #talk_session .talk_post.right img {
    width: 80%;
  }
  #talk_session .talk_session_main {
    padding: 40px 0 80px;
    width: 90%;
    margin: auto;
  }
  #talk_session .talk_head_profile {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 120px;
  }
  #talk_session .talk_head_profile dt {
    width: 80%;
  }
  #talk_session .talk_head_profile dd {
    width: 80%;
    margin-right: auto;
  }
  #talk_session .talk_head_profile dd::before {
    right: 0;
    left: inherit;
    -webkit-transform: translate(60%, -50%);
            transform: translate(60%, -50%);
  }
  #talk_session .talk_head_profile dd .talk_head_profile_text {
    margin-left: 0;
  }
  #talk_session .talk_head_profile_text {
    width: 100%;
    max-width: 170px;
  }
  #talk_session .talk_head_profile dd .talk_head_profile_text h5 {
    right: 0px;
    left: inherit;
  }
  #talk_session .talk_session_dis_text li figure {
    width: 60px;
    height: 60px;
  }
  #talk_session .talk_session_dis dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #talk_session .talk_session_dis dt {
    width: 100%;
  }
  #talk_session .talk_session_dis dd {
    width: 100%;
  }
  #talk_session .talk_session_dis.re dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #talk_session .talk_session_dis dt figure {
    margin-top: 0px;
    margin-right: -5vw;
    margin-left: 23%;
  }
  #talk_session .talk_session_dis.re dt figure {
    margin-left: -5vw;
    margin-right: 23%;
  }
  #talk_session .talk_session_dis dd h2 {
    width: 80%;
    margin: auto;
  }
  #talk_session .talk_session_dis dd h2 p {
    font-size: 22px;
  }
  #talk_session .rotate {
    top: -35px;
    left: -8px;
  }
  #talk_session .rotate2 {
    top: -35px;
    left: -8px;
  }
  #talk_session .rotate3 {
    top: -35px;
    left: -8px;
  }
  #talk_session .rotate4 {
    top: -35px;
    left: -8px;
  }
  #talk_session .rotate5 {
    top: -35px;
    left: -8px;
  }
  #talk_session .talk_session_dis_text {
    gap: 25px;
  }
  #talk_session .talk_session_end ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #talk_session .minasama_title {
    margin-left: 0;
  }
  #talk_session .talk_session_end ul li {
    width: 100%;
    gap: 35px;
  }
  #talk_session .talk_session_end ul li figure {
    width: 60px;
    height: 60px;
  }
  #talk_session .talk_session_end ul li .minasama p {
    font-size: 14px;
    line-height: 1.5;
    padding: 15px;
    margin-top: 0px;
  }
  #talk_session .talk_session_end ul li:nth-of-type(2) {
    margin-top: 0px;
  }
  #talk_session .talk_session_end ul li .minasama p::before {
    top: 15px;
  }
  #talk_session .talk_session_end ul li figure figcaption {
    width: 20px;
    height: 20px;
  }
  #talk_session .talk_session_main h2 {
    font-size: 36px;
  }
  #talk_session .talk_head_title_dev {
    width: 100%;
    background-size: contain;
  }
  #talk_session .talk_post.left-l {
    position: absolute;
    top: -11px;
    left: 7px;
    width: 40%;
  }
  #talk_session .talk_post.left-l img {
    width: 100%;
  }
  #talk_session .talk_post.right-l {
    position: absolute;
    top: -11px;
    right: 8px;
    width: 40%;
  }
  #talk_session .talk_post.right-l img {
    width: 100%;
  }
  #talk_session .talk_head_profile dd.dev:before {
    content: url(../image/talk_title_dev_02.png);
    -webkit-transform: translate(60%, -50%);
            transform: translate(60%, -50%);
  }
  #talk_session .talk_head_title3 {
    width: 100%;
    background-size: contain;
  }
  #talk_session .talk_post.center {
    position: absolute;
    top: -7px;
    right: 11px;
    width: 80%;
  }
  #talk_session .talk_post.center img {
    width: 100%;
  }
  #talk_session .talk_head_profile dt.san, #talk_session .talk_head_profile dd.san {
    border-left: none;
  }
  #talk_session .talk_head_profile.sanyonen .talk_head_profile_text p {
    width: 100%;
  }
  #talk_session .talk_head_profile dt.san::before {
    content: url(../image/talk_title_sym_01.png);
    left: 0;
    right: inherit;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #talk_session .talk_head_profile dd.san:nth-of-type(2):before {
    content: url(../image/talk_title_sym_03.png);
    left: 0;
    right: inherit;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #talk_session .talk_head_profile dd.san:nth-of-type(2) {
    margin-left: auto;
    margin-right: 0;
  }
  #talk_session .talk_head_profile dd.san:nth-of-type(2) .talk_head_profile_text {
    margin-left: auto;
  }
  #talk_session .talk_head_profile dd.san:nth-of-type(2) .talk_head_profile_text h5 {
    right: inherit;
    left: -46px;
  }
  #talk_session li.short {
    margin-top: -90px;
  }
}
#welfare main {
  margin: 160px 0 80px;
}
#welfare .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
#welfare .welfare_main {
  margin-top: 70px;
}
#welfare .welfare_main .inner {
  width: 95%;
  max-width: 1000px;
  margin: auto;
}
#welfare .welfare_list {
  margin-top: 80px;
}
#welfare .welfare_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 10%;
}
#welfare .welfare_list ul li {
  width: 26.6666666667%;
}
#welfare .welfare_list ul li figure img {
  width: 100%;
  /*max-width: 140px;*/
  /*min-width: 100px;*/
  margin: auto;
}
#welfare .welfare_list ul li figure figcaption {
  margin-top: 10px;
}
#welfare .welfare_list ul li figure figcaption dl dt {
  color: #E40012;
  font-size: 18px;
  text-align: center;
}
#welfare .welfare_list ul li figure figcaption dl dd {
  margin-top: 30px;
  font-size: 14px;
  text-align: justify;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
#welfare .welfare_list ul li p + p {
  margin-top: 10px;
}
#welfare .welfare_list ul li p {
  font-size: 15px;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.4;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
#welfare .welfare_list ul li p::before {
  content: "●";
  color: #E40012;
}
#welfare .swiper-slide {
  max-width: 360px;
}

@media screen and (max-width: 768px) {
  #welfare .welfare_list ul li {
    width: 45%;
  }
  #welfare .welfare_list ul li:last-of-type {
    width: 45%;
  }
  #welfare .welfare_main .inner {
    width: 90%;
  }
  #welfare main {
    margin: 100px 0 80px;
  }
  #welfare .welfare_list ul li p {
    font-size: 16px;
  }
  #welfare .page_visual {
    overflow: hidden;
  }
}
@media screen and (max-width: 560px) {
  #welfare .welfare_list ul li {
    width: 100%;
  }
  #welfare .welfare_list ul li:last-of-type {
    width: 100%;
  }
}
#business main .inner {
  width: 90%;
  margin: 0 auto;
}
#business main {
  margin: 80px 0 0;
}
#business .title-line-data {
  text-align: center;
}
#business .title-line-data figure.title-line-middle {
  margin: 0;
}
#business .title-line-data figure.title-line-middle img {
  width: auto;
  max-width: 596px;
  margin: 40px auto 0;
}
#business .title-line-data-small {
  text-align: center;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#business .title-line-data-small + h2 {
  text-align: center;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  margin-top: 20px;
  margin-bottom: 15px;
  letter-spacing: 0.07em;
}
#business .title-line-data-small + h2 + p {
  text-align: center;
  font-size: 15px;
  font-family: Montserrat;
  font-weight: 600;
}
#business .title-line-data p span {
  color: #e40012;
}
#business .page_visual {
  position: relative;
}
#business .page_visual_title {
  position: absolute;
  top: 45%;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translate(-50%, -50%);
}
#business .page_visual_title h2 {
  font-size: 44px;
  font-weight: normal;
  line-height: 1.2;
}
#business .page_visual_title h2 span {
  color: #E40012;
  text-indent: -0.5em;
}
#business .business_main {
  margin-top: 50px;
}
#business .business_main .inner {
  max-width: 640px;
  margin: 0 auto;
}
#business .business_main h2 {
  font-size: 28px;
  font-weight: 600;
}
#business .proposal_desc {
  margin-top: 40px;
}
#business .proposal_desc p + p {
  margin-top: 60px;
}
#business .proposal_desc p {
  font-size: 14px;
  text-align: justify;
  line-height: 1.5;
}
#business .business_image_block {
  margin-top: 80px;
}
#business .image_second {
  background: #e40012;
  padding: 60px 0;
}
#business .image_second figure {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}
#business .image_third {
  padding: 50px 0;
}
#business .image_third_text {
  width: 100%;
  max-width: 640px;
  margin: auto;
}
#business .image_third p {
  text-align: justify;
  font-size: 14px;
  line-height: 1.7;
}
#business .image_third p span {
  color: #e40012;
}
#business .business_renkei {
  margin: 100px 0 50px;
}
#business .title-line-renkei {
  text-align: center;
  margin: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
#business .title-text-renkei {
  font-size: 28px;
  text-align: center;
  font-weight: 600;
  line-height: 1;
  margin-top: 20px;
  margin-bottom: 5px;
  letter-spacing: 0.07em;
}
#business .business_renkei div.taisei {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 20px auto 40px;
}
#business .taisei_text {
  width: 100%;
  max-width: 640px;
  margin: auto;
}
#business .taisei_text p {
  text-align: justify;
  font-size: 14px;
  line-height: 1.7;
}
#business .business_division {
  padding: 80px 0;
  background: linear-gradient(54deg, rgb(240, 248, 239) 0%, rgb(212, 238, 231) 100%);
}
#business .business_division dl {
  width: 90%;
  max-width: 800px;
  margin: 60px auto 0;
}
#business .business_division dl dt {
  border: 1px solid #E40012;
  background-color: #E40012;
  color: #fff;
  font-size: 27px;
  padding: 20px 40px;
  position: relative;
  width: 100%;
  cursor: pointer;
  border-bottom: solid 1px #fff;
}
#business .business_division dl dt.active {
  border-bottom: none;
}
#business .business_division dl dd {
  border: 1px solid #E40012;
  background-color: #fff;
  font-size: 15px;
  line-height: 1.5;
  padding: 30px 45px 50px;
  display: none;
}
#business .business_division dl dd.active {
  display: block;
}
#business .business_division dl dd .heading {
  color: #e40012;
  line-height: 1.7;
}
#business .business_division dl dd .sentence {
  line-height: 1.7;
}
#business .data_list dt::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-image: url(../image/data_list_plus.png);
  background-size: contain;
  position: absolute;
  background-repeat: no-repeat;
  bottom: 20px;
  right: 20px;
}
#business .data_list dt.active::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-image: url(../image/data_list_minus.png);
  background-size: contain;
  position: absolute;
  background-repeat: no-repeat;
  bottom: 20px;
  right: 20px;
}
#business #group, #business #proposal {
  scroll-margin-top: 120px;
}

@media screen and (max-width: 1201px) {
  #business .page_visual_title {
    left: inherit;
    top: 70%;
    right: -10%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
@media screen and (max-width: 961px) {
  #business .page_visual_title {
    left: inherit;
    top: 80%;
    right: -22%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  #business .business_renkei div.taisei {
    width: 100%;
    overflow-x: scroll;
    text-align: center;
  }
  #business .business_renkei div.taisei figure {
    width: 600px;
  }
  #business .business_renkei div.taisei figure img {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    -o-object-position: center;
       object-position: center;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #business main {
    margin: 60px 0 0;
  }
  #business picture img {
    width: 100%;
  }
  #business .image_third_text {
    width: 90%;
  }
  #business .business_main h2 {
    font-size: 22px;
    font-weight: 600;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}
@media screen and (max-width: 561px) {
  #business .page_visual_title h2 {
    font-size: 28px;
  }
  #business .business_division dl dt {
    font-size: 16px;
  }
  #business .data_list dt::after,
  #business .data_list dt.active::after {
    width: 20px;
    height: 20px;
  }
}/*# sourceMappingURL=style.css.map */