@charset "utf-8";
*, ::after, ::before {
  box-sizing: border-box;
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
:root {
  --color-txt: #090909;
  --color-bg-b: #090909;
  --color-bg-wg: #e6e6e6;
  --color-bg-g: #585858;
  --color-bg-dg: #2d2d2d;
  --color-scheme: #fff;
  --color-scheme-text: #090909;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-sans: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Helvetica Neue", "Arial", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", "Meiryo", sans-serif;
  @supports (-webkit-touch-callout: none) and (font: -apple-system-body) {
    font: -apple-system-body;
  }
}
/*　ダークモード

@media (prefers-color-scheme: dark) {
	:root {
		--color-scheme: #090909;
		--color-scheme-text: #fff;
	}
}
*/
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  font-size: 1rem;
  font-family: var(--font-sans);
  background-color: var(--color-scheme);
  color: var(--color-scheme-text);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 {
  margin-top: 0;
  margin-bottom: .5rem
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
p {
  margin-top: 0;
  margin-bottom: 1rem
}
em {
  font-weight: 600;
}
input[type="text"]:focus, textarea:focus {
  outline: 0;
}
abbr[data-original-title], abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none
}
ul {
  list-style: none;
  padding: 0;
}
dl, ol, ul {
  margin-top: 0;
  margin-bottom: 1rem;
}
ol ol, ol ul, ul ol, ul ul {
  margin-bottom: 0;
}
dt {
  font-weight: 700;
}
dd {
  margin-bottom: .5rem;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1rem;
}
small {
  font-size: 80%;
}
a {
  color: var(--color-txt);
  text-decoration: none;
}
a:hover {
  transition: .4s;
}
a:not([href]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):hover {
  color: inherit;
  text-decoration: none;
}
figure {
  margin: 0 0 1rem;
}
img {
  width: 100%;
  vertical-align: middle;
  border-style: none;
}
svg {
  overflow: hidden;
  vertical-align: middle;
}
label {
  display: inline-block;
  margin-bottom: .5rem;
}
button, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
button {
  background: none;
  border: none;
  outline: none;
  border-radius: 0;
}
button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit
}
button, input {
  overflow: visible;
}
button, select {
  text-transform: none;
}
[role=button] {
  cursor: pointer;
}
select {
  word-wrap: normal;
}
[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}
[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
  cursor: pointer;
}
[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}
textarea {
  overflow: auto;
  resize: vertical;
}
i {
  display: block;
  font-size: initial;
  line-height: 1;
  height: auto;
}
.btn {
  background: #fff;
  transition: .4s;
  line-height: 1;
}
.btn:hover {
  opacity: 0.7;
}
.entry {
  width: 150px;
  height: 70px;
  background: var(--color-bg-b);
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}
a.entry:hover {
  background: #585858 !important;
}
a.entry:visited {
  background: var(--color-bg-b) !important;
  color: #fff !important;
}
.top-entry {
  width: 440px;
  height: 80px;
  margin: 100px auto;
  font-size: 28px;
  font-weight: 800 !important;
}
.more {
  margin-top: 54px;
  margin-left: 15%;
  width: 135px;
  padding: 10px 0 7px 0;
  font-size: 17px;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.align-items {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.justify-content-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /*margin-top: 1rem;*/
}
.justify-content-space {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.align-items-flex-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.displayPC {
  display: block !important;
}
.displaySP {
  display: none !important;
  ;
}
.anim-box01 {
  animation: slideIn 1.6s;
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.imgbtn {
  overflow: hidden;
  display: block;
}
.imgbtn img {
  transition: 1s all;
}
.imgbtn img:hover {
  transform: scale(1.1, 1.1);
  transition: 1s all;
}
.imgbtn02:hover {
  opacity: 0.7;
}
.scroll-block {
  opacity: .1;
  transition: all 1.5s;
}
/* 画面に入った時の動き */
.scroll-block.blockIn {
  opacity: 1;
}
@media (max-width: 1024px) {
  .-layout-none {
    display: none;
  }
  .more {
    position: absolute;
    right: 0;
    margin: initial;
  }
  .displayPC {
    display: none !important;
  }
  .displaySP {
    display: block !important;
    ;
  }
}
@media (max-width: 959px) {
  .more {
    width: 83.5px;
    height: 21px;
    font-size: 13px;
  }
  .top-entry {
    margin: 40px auto;
    width: calc(440px / 2);
    height: 40px;
    font-size: 15px;
    padding: 0 62px;
  }
  .top-entry.entry i {
    margin-left: 4px;
  }
  .top-entry.entry i img {
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  .top-entry {
    width: calc(100% / 2);
    padding: 0 50px;
    margin: 40px auto;
  }
}
/******************  header
*/
.global-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 30;
}
.gh-body {
  width: calc(100% - 120px);
  margin-left: auto;
  margin-right: auto;
}
.gh-inner {
  padding: 14px 0 15px 0;
}
.logo {
  width: 200px;
}
.logo, .logo a {
  display: block;
}
.logo a img {
  width: 100%;
  height: auto;
}
.gh-nav {
  margin-right: 50px;
}
.gh-nav-list {
  margin: initial;
  padding: initial;
}
.gh-nav-list-item {
  margin-right: 60px;
}
.gh-nav-list-item:last-child {
  margin-right: initial;
}
.gh-nav-list-item a {
  display: block;
  font-size: 13px;
  line-height: 1;
}
.entry i {
  margin-left: 14px;
}
.more i {
  margin-left: 5px;
  position: relative;
  top: -1px;
}
.entry i img, .more i img {
  height: 100%;
  display: block;
}
#menu {
  display: none;
}
.modal {
  display: none;
}
.modal-logo {
  display: none;
}
@media (max-width: 1400px) {
  .gh-body {
    width: calc(100% - 120px / 3);
  }
  .gh-nav {
    margin-right: calc(50px / 3);
  }
  .gh-nav-list-item {
    margin-right: calc(60px / 3);
  }
}
@media (max-width: 1024px) {
  .gh-body {
    width: calc(100% - 40px);
  }
  .gh-inner {
    padding: 14px 0;
    height: 80px;
  }
  .logo {
    width: 200px;
  }
  .logo a img {
    width: 100%;
    height: auto;
  }
  .more i img {
    margin-left: auto;
  }
  #menu {
    display: block;
    z-index: 32;
  }
  .global-header.active {
    background-color: var(--color-bg-g);
    height: 100vh;
  }
  .menu-btn {
    position: relative;
    width: 38px;
    height: 32px;
  }
  .menu-btn span {
    display: inline-block;
    width: 38px;
    height: 2px;
    background-color: var(--color-bg-b);
  }
  .menu-btn::before, .menu-btn:after {
    content: "";
    display: block;
    position: absolute;
    width: 38px;
    height: 2px;
    background-color: var(--color-bg-b);
    transition: .4s;
  }
  .menu-btn::after {
    top: 28px;
  }
  .global-header.active .menu-btn span {
    opacity: 0;
  }
  .global-header.active .menu-btn::before, .global-header.active .menu-btn::after {
    background-color: #fff;
  }
  .global-header.active .menu-btn::before, .global-header.active .menu-bt ::after {
    transition: .4s;
  }
  .global-header.active .menu-btn::before {
    transform-origin: left;
    transform: rotate(45deg);
  }
  .global-header.active .menu-btn::after {
    transform-origin: bottom left;
    transform: rotate(-45deg);
    top: 27px;
  }
  .global-header.active .nav-entry {
    display: flex !important;
    height: 100%;
  }
  .nav-entry {
    background-color: transparent;
    margin: 0 auto;
  }
  .nav-entry i {
    margin-left: auto;
    position: relative;
    bottom: 4px;
    width: 100%;
  }
  .nav-entry i img {
    margin-left: auto;
    width: 50%;
  }
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background-color: var(--color-bg-g);
    z-index: 31;
    padding-top: 80px;
  }
  .global-header.active .modal, .global-header.active .modal-logo {
    display: block;
  }
  .global-header.active .modal-logo {
    position: relative;
    z-index: 32;
  }
  .global-header.active .logo-close {
    display: none;
  }
  .modal-body {
    position: relative;
    height: calc(100% - 80px);
  }
  .modal-contents {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: calc(100% - 80px);
  }
  .modal-contents .nav-entry {
    display: flex !important;
    height: auto;
    width: 15%;
  }
}
@media (max-width: 959px) {
  .more i img {
    width: 15px;
  }
  .contents-list-area.more i img {
    width: 20px;
  }
  .entry i img, .footer-entry i img {
    width: 70%;
  }
  .modal-contents .nav-entry {
    display: flex !important;
    height: auto;
    width: 35%;
  }
}
/******************  main
*/
.section {
  position: relative;
}
.module-section {
  margin-left: auto;
  margin-right: auto;
}
.main {
  position: relative;
}
.section-body {
  position: relative;
  margin-left: 265px;
  height: 680px;
  margin-top: 40px;
}
.mv-area {
  overflow: hidden;
  position: relative;
  height: 100%;
  z-index: 1;
}
.section-mainvisual {
  background-image: url(../img/mv.jpg);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
}
.section-tile {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  margin-left: -120px;
  z-index: 11;
}
.tile-headline {
  margin-bottom: 40px;
  font-size: 60px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}
.tile-headline.anim-box01 {
    text-shadow: 0 0 5px rgba(255, 255, 255, 1) !important;
}
.tile-alt {
  display: inline-block;
  padding: 7px 20px;
  color: #fff;
  font-size: 20px;
}
.en {
  font-family: 'Spartan', sans-serif;
}
.en span {
  position: relative;
  top: 2px;
}
.tile-alt.en {
  background-color: var(--color-bg-b);
}
.tile-alt, .btn {
  font-weight: 700;
}
.tile-alt.en {
  font-weight: 500;
}
.section-tile .tile-alt {
  font-weight: 700;
}
/* main_contents */
.section-top-area {
  margin-top: 100px;
}
.section-bg-layout {
  position: relative;
  height: 400px;
}
.section-bg-layout::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 80.304%;
  height: 100%;
  background-color: var(--color-bg-b);
  z-index: -1;
}
.section-figure {
  position: absolute;
  top: 30%;
  right: 0;
  width: 50%;
}
.section-figure-area {
  overflow: hidden;
  height: 100%;
  margin-left: auto;
  position: relative;
}
.section-bg-layout::after {
  content: "";
  display: block;
  background-image: url(../img/top-message.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  width: 55%;
  height: 400px;
  position: absolute;
  top: 75px;
  right: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0);
  background-size: contain;
}
.section-bg-c-gray::before, .section-bg-c-gray::after {
  background-color: var(--color-bg-g);
}
.section-bg-c-gray::after {
  top: -75px;
  background-color: rgba(0, 0, 0, 0);
}
.section-bg-c-gray:nth-of-type(1)::before {
  right: 0;
  left: auto;
}
.section-bg-c-gray:nth-of-type(1)::after {
  background-image: url(../img/top-business.jpg);
  right: auto;
  left: 0;
  background-color: rgba(0, 0, 0, 0);
}
.section-bg-c-gray:nth-of-type(1) .section-area {
  align-items: flex-end;
  padding-right: 158px;
}
.section-bg-c-gray:nth-of-type(1) .section-area .more {
  margin-top: 0;
}
.section-bg-c-gray:nth-of-type(2) {
  margin-top: 150px;
}
.section-bg-c-gray:nth-of-type(2)::after {
  background-image: url(../img/top-member.jpg);
}
.section-bg-c-gray:nth-of-type(2) .section-area {
  padding-left: 100px;
}
.section-bg-c-gray:nth-of-type(2) .section-area .more {
  margin-top: 0;
  margin-left: 8%;
}
.section-c-max-wid {
  max-width: 1000px;
  margin: 0 auto;
  height: 100%;
}
.section-c-wid {
  max-width: 972px;
  margin: 0 auto;
  height: 100%;
}
.c-wid-top {
  margin-top: 80px;
}
.section-area {
  flex-direction: column;
  height: 100%;
}
.section-area .tile-headline {
  font-size: 35px;
  color: #fff;
}
.section-area .tile-alt {
  padding: initial;
  font-size: 30px;
}
.section-top-area-2 {
  margin: 120px auto 160px auto;
}
.section-top-area-3 {
  margin: auto;
}
.is-btn {
  margin-top: auto;
  margin-left: auto;
  padding: 17.5px 52px;
  width: 100%;
  color: #fff;
  font-size: 35px;
  background-color: var(--color-bg-b);
}
.box-contents-list.-section-lsit {
  margin-top: 80px;
}
.box-contents-list {
  padding: initial;
  margin: initial;
}
.box-contents-list li {
  position: relative;
  width: calc(100% / 2);
}
.section-top-area-2 .box-contents-list li {
  margin-right: 30px;
}
.section-top-area-2 .box-contents-list li:last-child {
  margin-right: auto;
}
.list-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  background: transparent;
}
.contents-list-area {
  margin: auto;
  padding: 0 34px;
  width: 100%;
  height: 75px;
  line-height: 1;
  color: #fff;
  background-color: var(--color-bg-b);
  font-size: 20px;
}
@media (min-width: 1200px) {
  .module-section {
    min-width: 1000px;
  }
}
@media (max-width: 1024px) {
  .section-body {
    margin-left: calc(265px / 2);
  }
  .section-mainvisual {
    background-image: url("../img/mv.jpg");
  }
  .section-tile {
    margin-left: calc(-120px / 2);
  }
  .section-bg-layout {
    height: 518px;
  }
  .section-bg-layout::before {
    width: 90.304%;
  }
  .section-bg-layout::after {
    background-image: url(../img/top-message@2x.jpg);
    width: 70%;
    top: 65%;
  }
  .section-bg-c-gray:nth-of-type(1)::after {
    background-image: url(../img/top-business@2x.jpg);
  }
  .section-bg-c-gray:nth-of-type(2)::after {
    background-image: url(../img/top-member@2x.jpg);
  }
  .section-bg-c-gray:nth-of-type(1)::before, .section-bg-c-gray:nth-of-type(2)::before {
    top: 5%;
  }
  .section-bg-c-gray:nth-of-type(1)::after, .section-bg-c-gray:nth-of-type(2)::after {
    top: -65px;
  }
  .section-bg-c-gray:nth-of-type(1) .section-area, .section-bg-c-gray:nth-of-type(2) .section-area {
    justify-content: flex-end;
    margin: auto;
    width: 500px;
  }
  .section-bg-c-gray:nth-of-type(1) .section-area .more, .section-bg-c-gray:nth-of-type(2) .section-area .more {
    top: auto;
  }
  .section-bg-c-gray:nth-of-type(2) .section-area .more {
    margin-left: 20%;
  }
  .section-c-wid {
    max-width: none;
  }
  .c-wid-top {
    width: calc(100% - 120px);
  }
  .section-area {
    justify-content: flex-start;
    position: relative;
    padding: 70px 0 0 70px;
    width: 580px;
  }
  .section-area .tile-headline {
    margin-bottom: calc(40px / 2);
  }
  .section-area .more {
    display: flex;
    margin-left: auto;
    position: relative;
    top: 40px;
    height: auto;
  }
  .section-top-area-2 {
    margin: 380px auto 10rem auto;
  }
  .box-contents-list {
    flex-direction: column;
    margin: 0 60px;
  }
  .box-contents-list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .box-contents-list li:last-child {
    margin-bottom: 0;
  }
  .section-top-area-2 .box-contents-list li {
    margin-right: 0;
  }
  .contents-list-area {
    position: relative;
  }
  .contents-list-area .more i img {
    margin-left: auto;
  }
  .is-btn {
    position: relative;
    height: auto;
  }
  .box-contents-list-2.-section-lsit {
    flex-wrap: wrap;
    flex-direction: row;
    margin: 100px auto;
  }
  .box-contents-list-2 li {
    margin-bottom: auto;
    width: calc(100% / 2);
  }
}
@media screen and (max-width:959px) {
  .section-body {
    margin-left: calc(74px / 2);
    height: calc(850px / 2);
	margin-top: 0;
  }
  .section-mainvisual {
    background-image: url("../img/mv@2x.jpg");
    height: 0;
    padding-top: 125.553914%;
	background-size:contain;
  }
  .section-tile {
    margin-left: -10px;
  }
  .tile-headline {
    margin-bottom: 25px;
    font-size: 34px;
    line-height: 1.8;
  }
  .tile-alt {
    font-size: 13px;
    padding: 7px 14px;
  }
  .section-tile .tile-alt {
    font-weight: 700;
    line-height: 1.4;
  }
  .section-top-area {
    margin-top: 50px;
  }
  .section-bg-layout::before {
    width: calc(100% - 20px);
  }
  .section-bg-layout::after {
    background-image: url(../img/top-message@2x.jpg);
    width: 80%;
    padding-top: 47.6429288%;
    height: 0;
    top: 30%;
  }
  .section-bg-c-gray:nth-of-type(2) {
    margin-top: 65px;
  }
  .section-bg-c-gray:nth-of-type(1)::before, .section-bg-c-gray:nth-of-type(2)::before {
    top: auto;
  }
  .section-bg-c-gray:nth-of-type(1)::after, .section-bg-c-gray:nth-of-type(2)::after {
    top: -30px;
  }
  .section-bg-c-gray:nth-of-type(1) .section-area, .section-bg-c-gray:nth-of-type(2) .section-area {
    width: 100%;
    padding: 0 0 1.5rem 0;
    align-items: center;
  }
  .section-bg-c-gray:nth-of-type(1) .section-area .more {
    margin: 0;
  }
  .section-bg-c-gray:nth-of-type(2) .section-area .more {
    margin: 0 auto;
  }
  .section-area {
    justify-content: flex-start;
    position: relative;
    padding-top: 37px;
    padding-left: 37px;
    width: calc(100% - 20px);
    box-sizing: border-box;
  }
  .section-area .tile-headline {
    margin-bottom: 10px;
    padding-left: initial;
    font-size: 1.25rem;
    line-height: 1;
  }
  .section-area .tile-alt {
    font-size: 1rem;
    font-weight: 500;
  }
  .section-area .more {
    padding: 5px 14px;
    top: 20px;
    margin-left: 50%;
    margin-right: auto;
  }
  .section-top-area-2 {
    margin: 11.25rem auto 10rem auto;
  }
  .box-contents-list-2.-section-lsit {
    margin: 40px auto auto auto;
  }
  .contents-list-area {
    padding: 12px 20px;
    font-size: 15px;
    height: auto;
  }
  .box-contents-list {
    flex-direction: column;
    margin: 0 1.25rem;
  }
  .box-contents-list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1.875rem;
  }
  .box-contents-list li:last-child {
    margin-bottom: 0;
  }
  .box-contents-list-2 li {
    margin-bottom: auto;
    width: calc(100% / 2);
  }
  .list-title {
    font-size: 15px;
  }
  .is-btn {
    padding: 12px 20px;
    font-size: 15px;
  }
  .c-wid-top {
    margin-top: 40px;
    width: calc(100% - 40px);
  }
}
@media (min-width: 580px) and (max-width: 959px) {
  .section-body {
    height: calc(850px / 1.1);
  }
}
@media (max-width: 768px) {
  .section-bg-layout {
    height: calc(518px / 2);
  }
  .section-bg-layout::after {
    padding: 0;
    top: 60%;
    height: calc(392px / 2);
    background-size: cover;
  }
  .section-top-area-2 {
    margin: 8.25rem auto 0 auto;
  }
}
@media (max-width: 414px) {
  .section-area .more {
    margin-left: 44%;
  }
}
@media (max-width: 375px) {
  .section-area .more {
    margin-left: 48%;
  }
}
@media (max-width: 320px) {
  .section-area .more {
    margin-left: 59%;
  }
}
/******************  footer
*/
.footer {
  background-color: var(--color-bg-b);
}
.section-foot-wid {
  width: calc(100% - 120px);
  margin-left: auto;
  margin-right: auto;
}
.footer-contents {
  padding: 50px 0;
}
/*.footer-contents .logo img, .footer-entry i img {
  width: auto;
}*/
.footer-entry.displayPC {
  display: flex !important;
}
.copy {
  margin-top: 28px;
  margin-bottom: auto;
  font-size: 12px;
  color: #fff;
  font-weight: 400;
}
.foot-gh-nav-list {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.foot-gh-nav-list .gh-nav-list-item {
  margin-right: 0;
  width: calc(100% / 4);
}
.foot-gh-nav-list .gh-nav-list-item:nth-of-type(1), .foot-gh-nav-list .gh-nav-list-item:nth-of-type(2), .foot-gh-nav-list .gh-nav-list-item:nth-of-type(3), .foot-gh-nav-list .gh-nav-list-item:nth-of-type(4) {
  margin-bottom: 30px;
}
.foot-gh-nav-list a {
  font-size: 12px;
  color: #fff;
}
.footer-entry {
  position: relative;
  top: 3px;
  height: auto;
  font-weight: 800;
}
.footer-entry i {
  position: relative;
  bottom: 4px;
}
@media (max-width: 1024px) {
  .section-foot-wid {
    width: calc(100% - 40px);
  }
  .footer-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 37.5px 0;
  }
  .footer-contents > div:nth-of-type(1) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .foot-gh-nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 45px 0 52.5px 0;
    width: 100%;
  }
  .foot-gh-nav-list li {
    margin-right: inherit;
    margin-bottom: 25px;
    padding-left: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #9b9b9b;
  }
  .foot-gh-nav-list a {
    font-size: 18px;
  }
  .footer-entry.displaySP:not(.site-entry) {
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #fff;
  }
  .site-entry {
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    top: auto;
  }
  .footer-entry i {
    margin-left: initial;
    left: 15px;
  }
  .copy {
    text-align: center;
  }
  .footer-entry.displayPC {
    display: none !important;
  }
  .foot-gh-nav-list .gh-nav-list-item {
    width: 100%;
  }
  .foot-gh-nav-list .gh-nav-list-item:nth-of-type(1), .foot-gh-nav-list .gh-nav-list-item:nth-of-type(2), .foot-gh-nav-list .gh-nav-list-item:nth-of-type(3), .foot-gh-nav-list .gh-nav-list-item:nth-of-type(4) {
    margin-bottom: 15px;
  }
}
@media (max-width: 959px) {
  .footer-contents .logo img {
    width: 100%;
  }
  .footer-entry i {
    left: auto;
    bottom: 0;
    margin-left: 5px;
  }
  .footer-entry i img {
    width: 100%;
  }
  .footer-entry.displaySP:not(.site-entry) {
    width: 92px;
    height: 40px;
    top: 6px;
    font-size: 12px;
    padding: 0px 12px;
  }
  .foot-gh-nav-list {
    margin: 25px 0 32.5px 0;
  }
  .foot-gh-nav-list li {
    margin-right: inherit;
    margin-bottom: 15px;
    padding-left: 20px;
    padding-bottom: 5px;
  }
  .foot-gh-nav-list a {
    font-size: 12px;
  }
  .site-entry {
    font-size: 12px;
  }
  .copy {
    font-size: 9px;
  }
}
/****************** lower_page common
*/
.-bg-c-gray {
  background-color: var(--color-bg-wg);
}
.-bg-c-b {
  background-color: var(--color-bg-b);
  width: 100%;
  margin: 0 auto;
}
.-bg-c-dg {
  background-color: var(--color-bg-dg);
  width: 100%;
  margin: 0 auto;
}
.section-page {
  height: calc(700px - 130px);
  margin-top: 40px;
}
.section-page.section-bg-layout::before {
  display: none; /* 非公開  */
  right: 0;
  left: auto;
  width: 69.7%;
  height: 700px;
}
.section-page.section-bg-layout::after {
  display: none; /* 非公開  */
}
.page-bg-layout {
  position: relative;
  overflow: hidden;
  background-image: url(../img/message/mv.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  width: calc(100% - 30.3%);
  /*height: 600px;*/
  height: calc(600px - 130px);
  z-index: 1;
}
.page-bg-layout-color {
  position: absolute;
  overflow: hidden;
  background-color: var(--color-bg-b);
  top: 0;
  right: 0;
  left: auto;
  width: 69.7%;
  /* height: 700px; */
  height: calc(700px - 130px);
  z-index: 0;
}
.section-page .section-area {
  position: relative;
}
.page-tile-headline {
  display: block;
  width: 100%;
  font-size: 60px;
  font-family: 'Noto Sans JP', sans-serif;
  z-index: -1;
  color: var(--color-txt);
}
.-bg-layout-img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.-bg-layout-img::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  content: "代表メッセージ";
  white-space: pre;
  font-size: 60px;
  font-weight: bold;
  color: white;
  z-index: 1;
  font-family: 'Noto Sans JP', sans-serif;
}
.mainvisual-txt p {
  margin: 100px 34px;
  font-size: 18px;
  line-height: 55px;
}
.subtile-headline {
  margin: auto;
  padding-bottom: 20px;
  font-size: 35px;
  line-height: 1;
  text-align: center;
}
.subtile-headline span {
  position: relative;
}
.subtile-headline span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  width: 150px;
  height: 4px;
  margin: 0 auto;
  background-color: var(--color-bg-b)
}
.color-txt-b {
  position: absolute;
  top: 50%;
  left: 77.6%;
  width: 50%;
}
.color-txt-w {
  position: absolute;
  top: 41.1%;
  left: 34.6%;
  width: 50%;
}
.color-txt-w .page-tile-headline {
  color: #fff;
}
.section-top-area-4 {
  padding: 90px 0;
}
.message.section-bg-layout::after {
  background-image: url(../img/message/mv.jpg);
}
.message-list {
  margin-top: 115px;
}
.faq-list li {
  margin-bottom: 30px;
  background-color: #fff;
}
.question, .answer {
  position: relative;
}
.-toggle {
  position: absolute;
  right: 20px;
  width: 18px;
  transition: .4s;
}
.question {
  padding: 12.5px 65px;
  font-size: 20px;
  font-weight: 700;
}
.question span {
  padding-right: 50px;
  font-family: 'Secular One', sans-serif;
  font-size: 38px;
  font-weight: 500;
}
.answer {
  padding: 0 165px;
  display: block;
  font-size: 20px;
  line-height: 1.6;
  height: 0;
  opacity: 0;
  transition: opacity ease .7s;
  overflow: hidden;
}
.faq-list li.active .answer {
  height: auto;
  opacity: 1;
  padding: 22.5px 165px 12.5px 165px;
}
.faq-list li.active .-toggle {
  transform: rotateZ(45deg);
}
#select-2.-bg-c-gray {
  background-color: var(--color-bg-g);
}
#select-2 .subtile-headline {
  color: #fff;
}
#select-2 .subtile-headline span::after {
  background-color: #fff;
}
/*
*/
.qa .page-bg-layout {
  background-image: url(../img/qa/mv.jpg);
}
.qa .color-txt-b {
  left: 86%;
}
.qa .color-txt-w {
  left: 42.5%;
}
.qa .section-area {
  padding-right: 70px;
}
.qa-select-nav {
  margin: 80px 0;
}
.qa-select-nav ul {
  /*-webkit-box-pack: end;
	-ms-flex-pack: end;*/
  justify-content: center;
}
.qa-select-nav li {
  background-color: var(--color-bg-b);
}
.qa-select-nav li:nth-of-type(1) {
  margin-right: 72px;
}
.qa-select-nav li a {
  padding: 25px 40px;
  font-size: 22px;
  color: #fff;
  font-weight: bold;
}
.qa-select-nav li a i {
  padding-right: 15px;
}
.qa-select-nav li a img {
  width: 18px;
  height: 12px;
}
/* interview
*/
.interview-contents {
  margin: 130px 0 160px 0;
}
.interview .subtile-headline {
  padding-bottom: 180px;
}
.interview .subtile-headline span::after {
  bottom: -25px;
  width: 116px;
}
.interview .section-bg-layout {
  height: 608px;
}
.interview .section-bg-layout::before {
  width: 66.46%;
}
.interview .section-bg-layout::after {
  top: -50px;
  width: 52%;
  height: 578px;
}
/* interviewのナンバリングでナンバリングで画像管理
*/
.interview-1 .section-bg-layout::after {
  background-image: url(../img/employees/interview_member/mv1.jpg);
  background-size: cover;
}
.interview-2 .section-bg-layout::after {
  background-image: url(../img/employees/interview_member/mv2.jpg);
  background-size: cover;
}
.interview-3 .section-bg-layout::after {
  background-image: url(../img/employees/interview_member/mv3.jpg);
  background-size: cover;
}
.interview-4 .section-bg-layout::after {
  background-image: url(../img/employees/interview_member/mv4.jpg);
  background-size: cover;
}
.interview-5 .section-bg-layout::after {
  background-image: url(../img/employees/interview_member/mv5.jpg);
  background-size: cover;
}
.interview-6 .section-bg-layout::after {
  background-image: url(../img/employees/interview_member/mv6.jpg);
  background-size: cover;
}
.interview-7 .section-bg-layout::after {
  background-image: url(../img/employees/interview_member/mv7.jpg);
  background-size: cover;
}
.interview-8 .section-bg-layout::after {
  background-image: url(../img/employees/interview_member/mv8.jpg);
  background-size: cover;
}
.interview-9 .section-bg-layout::after {
  background-image: url(../img/employees/interview_member/mv9.jpg);
  background-size: cover;
}
.interview .section-area {
  position: relative;
  top: -50px;
  padding: 0 20px;
}
.interview .tile-headline.en {
  margin-bottom: 25px;
}
.interview .section-area .tile-headsub {
  font-size: 18px;
  color: #fff;
}
.interview .section-area .tile-headtxt {
  margin-top: 75px;
  margin-bottom: 0;
  font-size: 35px;
  color: #fff;
  font-weight: bold;
}
.member-list {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
/*.member-list-item {
  position: relative;
  width: calc(100% / 3);
  padding: 0 10px;
}*/
.member-list-item {
  width: 32%;
  justify-content: space-between;
}
/*.member-list-item:nth-child(2n) {
  margin-top: 50px;
}*/
.list-item-img a, .list-item-detail a {
  display: block;
  position: relative;
  transition: .4s;
}
.member-list-item.cursor .list-item-img a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #242324;
  opacity: .4;
  z-index: 1;
}
.list-item-img span {
  right: 0;
  font-size: 14px;
  font-weight: 700;
  display: block;
  padding: 8px 0;
  text-align: center;
  background-color: var(--color-bg-b);
  color: #fff;
  line-height: 1.2;
}
.list-item-detail {
  padding: 20px 10px;
}
.list-item-detail em {
  font-style: inherit;
  font-size: 20px;
  font-weight: 900;
}
.list-item-detail p {
  padding-top: 12px;
  font-size: 20px;
  font-weight: bold;
}
/* interview_day
*/
.days.interview-contents {
  margin: 130px 0 0 0;
}
.days .section-bg-layout {
  height: 685px;
}
.days .section-bg-layout::before {
  width: 100%;
}
.days .section-bg-layout::after {
  display: none;
}
.days .section-c-max-wid {
  margin-top: 280px;
  height: 100%;
}
.days .section-area {
  flex-direction: row-reverse;
}
.days .section-area > div {
  flex-direction: column;
  width: 100%;
}
.days .section-area > div:nth-of-type(2) {
  position: relative;
  z-index: 11;
}
.days .section-area > div:nth-of-type(2) img {
  position: relative;
  top: -194px;
}
.days .tile-headline.en {
  margin-bottom: 35px;
  position: relative;
  /*left: -40px;*/
}
.days .tile-headsub {
  font-size: 25px;
  color: #fff;
}
.flow-days {
  position: relative;
}
.flow-days.section-top-area-4 {
  padding: 150px 0 100px 0;
}
.flow-days::before {
  content: "";
  display: block;
  position: absolute;
  top: 150px;
  left: 0;
  width: 75.76%;
  height: 2290px;
  background-color: #f0f0f0;
  z-index: -1;
}
.flow-days-box {
  padding-top: 100px;
}
.flow-days-list {
  padding: initial;
}
.flow-days-list-item {
  border-left: 3px solid var(--color-bg-b);
  padding-left: 1.5rem;
  min-height: auto;
  padding-bottom: 1.9rem;
  position: relative;
  padding-left: 1.9rem;
  min-height: 12rem;
}
.flow-days-list-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: var(--color-bg-b);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.flow-days-list-item h3 {
  position: relative;
  top: 0;
  margin-bottom: 30px;
  font-weight: 900;
  font-size: 25px;
  line-height: 1;
}
.flow-days-list-item h3 em {
  margin-right: 20px;
  font-style: inherit;
  font-weight: 900;
}
.flow-days-list-item p {
  margin-bottom: 0;
  font-size: 18px;
}
.days-list-img {
  margin-top: 164px;
  padding: initial;
}
.list-img-item {
  width: 84%;
}
.list-img-item:nth-of-type(1) {
  margin-bottom: 156px;
}
.list-img-item:nth-of-type(2), .list-img-item:nth-of-type(3) {
  margin-bottom: 154px;
}
.list-img-item:nth-child(2n) {
  margin-left: 53px;
}
.days .member-list-item {
  width: calc(100% / 3 - 10px);
  margin-right: 15px;
}
.days .member-list-item:nth-child(2n) {
  margin-top: 0;
}
.days .member-list-item:last-child {
  margin-right: 0;
}
.team .subtile-headline span::after {
  width: 100px;
}
.team .section-bg-layout {
  height: 520px;
}
.team .section-c-max-wid {
  margin-top: 235px;
}
.team .section-area {
  position: relative;
  top: -130px;
  flex-direction: column;
}
.team .tile-headline {
  margin: 60px auto 60px 20px;
  left: auto;
}
.team-dialogue {
  position: relative;
}
.team-dialogue.section-top-area-4 {
  padding: 50px 0;
}
.team-dialogue::before {
  content: "";
  display: block;
  position: absolute;
  top: 3%;
  left: 0;
  width: 74.49%;
  height: 95%;
  background-color: #f0f0f0;
  z-index: -1;
}
.team-dialogue-list {
  padding: 100px 0 0 0;
}
.team-dialogue-list-item {
  margin-bottom: 62px;
}
.flex.b1 .flex, .flex.b2 .flex {
  flex-direction: column;
  /*justify-content: space-around;*/
  width: 55%;
}
.flex.b2 .flex {
  margin-left: auto;
}
.flex.b1 .imgwrap, .flex.b2 .imgwrap {
  width: 45%;
  margin-left: 1rem;
  margin-top: 120px;
}
.flex.b1 .imgwrap img, .flex.b2 .imgwrap img {
  width: 100%;
  height: auto;
  margin-left: auto;
}
.flex.b1 .flex p:nth-of-type(1) {
  margin-top: auto;
}
.flex.b1 .flex p:nth-of-type(2) {
  margin-top: 0;
  /*margin-bottom: auto;*/
}
/*.flex.b2 .flex p {
  margin-bottom: initial;
}*/
.flex.b2 .flex span {
  left: -40px;
}
.flex.b2 .imgwrap {
  order: 1;
  margin-left: -40px;
 margin-bottom: 20px;
}
.flex.b2 .flex {
  order: 2;
}
.team-dialogue-list-item h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  font-size: 23px;
  line-height: 1.5;
}
.team-dialogue-list-item h3 span {
  position: relative;
  display: inline-block;
}
.team-dialogue-list-item h3 .bar {
  position: absolute;
  top: 50%;
  margin-left: 20px;
  width: 40px;
  height: 4px;
  background-color: var(--color-bg-b);
}
.flex.b2 .flex .bar {
  left: auto;
  margin: auto;
}
.team-dialogue-list-item p {
  margin-bottom: 1rem;
  font-size: 18px;
  line-height: 1.8;
}
.team-dialogue-list-item p em {
  font-style: initial;
}
.dialogue-box {
  padding: 0 0 50px 0;
}
.dialogue-box .member-list-item {
  width: calc(100% / 2 - 15px);
  margin-top: auto;
  margin-bottom: 40px;
}
.dialogue-box .list-item-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 24px 92px;
  z-index: 20;
  background-color: #fff;
}
.dialogue-box li:nth-of-type(odd) {
  margin-right: 30px;
}
.dialogue-box li:nth-of-type(2) .list-item-detail {
  padding: 24px 66px;
}
.dialogue-box li:nth-of-type(3) .list-item-detail {
  padding: 24px 78px;
}
.dialogue-box li:nth-of-type(4) .list-item-detail {
  padding: 24px 68px;
}
.dialogue-box .list-item-detail em {
  font-size: 18px;
  font-weight: 600;
}
/*
*/
.fringe .page-bg-layout {
  background-image: url(../img/fringebenefits/mv1.jpg);
}
.fringe .page-bg-layout .color-txt-b {
  left: 86%;
}
.fringe .color-txt-w {
  top: 41.%;
  left: 42.5%;
}
.fringe + .mainvisual-txt, .require + .mainvisual-txt {
  margin-bottom: 75px;
}
.fringe-box {
  position: relative;
  flex-wrap: wrap;
}
.fringe-list {
  flex-wrap: wrap;
  margin: 80px auto 0;
  padding: initial;
}
.fringe-list-item {
  width: calc(100% / 3 - 18px);
  background-color: #fff;
  margin-right: 27px;
  margin-bottom: 34px;
  padding: 0 20px 10px;
}
.fringe-list-item:nth-child(3n) {
  margin-right: 0;
}
.fringe-list-item:nth-of-type(7), .fringe-list-item:nth-of-type(8), .fringe-list-item:nth-of-type(9) {
  margin-bottom: 0;
}
.fringe-list-item h2 {
  position: relative;
  display: inline-block;
  font-size: 25px;
}
.fringe-list-item h2 .bar {
  position: absolute;
  top: 50%;
  margin-left: 20px;
  width: 40px;
  height: 4px;
  background-color: var(--color-bg-b);
}
.fringe-list-item p {
  line-height: 1.8;
}
.fringe-list-item > div {
  overflow: hidden;
}
/*
*/
.require .section-area {
  padding-right: 72px;
}
.require .page-bg-layout {
  background-image: url(../img/requirements/mv1.jpg);
}
.require .color-txt-b {
  left: 86%;
}
.require .color-txt-w {
  left: 42.6%;
}
.require.section-top-area-4 {
  padding: 90px 0 120px 0;
}
.require-box {
  margin-top: 80px;
  padding: 110px 210px;
  background-color: #fff;
}
.require-box .flex {
  flex-wrap: wrap;
}
.require-box dt, .require-box dd p {
  font-size: 17px;
}
.require-box dt {
  width: 265px;
  font-weight: bold;
}
.require-box dd {
  margin-bottom: 40px;
  width: 515px;
}
.require-box dd ul {
  list-style: disc;
  margin: auto;
  padding-left: 1.4rem;
}
.require-box dd li p {
  margin: auto;
}
.require .section-c-max-wid img {
  margin-top: 100px;
}
.require .section-c-max-wid + .top-entry {
  margin: 100px auto 30px auto;
}
.intro .section-area {
  padding-right: 70px;
}
.intro .page-bg-layout {
  background-image: url(../img/businessintroduction/mv1.jpg);
}
.intro .color-txt-b {
  left: 87%;
}
.intro .color-txt-w {
  left: 43.5%;
}
.intro-titl {
  display: block;
  margin-bottom: 50px;
  font-size: 30px;
  font-weight: bold;
  font-style: initial;
}
.intro.mainvisual-txt p {
  font-size: 18px;
}
.introduction {
  max-width: 80%;
  height: auto;
  margin: 100px auto 0;
}
.emp-wide .subtile-headline {
  font-size: 40px;
}
.emp-wide .member-list {
  margin-top: 80px;
}
.emp-wide.-bg-c-gray {
  background-color: var(--color-bg-g);
  width: 100%;
}
.emp-wide.-bg-c-gray .subtile-headline span {
  color: #fff;
}
.emp-wide.-bg-c-gray .subtile-headline span::after {
  background-color: #fff;
}
.emp-wide.-bg-c-gray .member-list-item {
  width: calc(100% - 160px);
  margin-right: auto;
  margin-bottom: 30px;
}
.emp-wide.-bg-c-gray .member-list-item:nth-child(even) {
  margin-right: 0;
  margin-left: auto;
}
.emp-wide.-bg-c-gray .member-list-item:nth-of-type(3) {
  margin-top: 50px;
}
.emp-wide.-bg-c-gray .list-item-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 37px 140px;
  z-index: 20;
  background-color: #fff;
}
.emp-wide.-bg-c-gray .member-list-item:nth-of-type(3) .list-item-detail {
  padding: 37px 120px;
}
.emp-wide.-bg-c-gray .member-list-item:nth-of-type(4) .list-item-detail {
  padding: 37px 100px;
}
.emp-wide.-bg-c-gray .list-item-detail em {
  font-size: 25px;
  font-weight: 600;
}
.data .page-bg-layout {
  background-image: url(../img/data/mv1.jpg);
}
.data .color-txt-b {
  left: 76%;
  width: 80%;
}
.data .color-txt-w {
  width: 80%;
  /*top: 41.3%;*/
  left: 32.5%;
}
.data-layout-box-contents {
  position: relative;
  width: 50%;
}
.data-layout-box-contents:nth-of-type(1)::after {
  content: "";
  display: block;
  position: absolute;
  top: 65px;
  right: 0;
  width: 1px;
  height: 554px;
  background-color: #fff;
}
.data-layout-m1 {
  margin-bottom: 100px;
}
.data-layout-m2 {
  margin-bottom: 150px;
}
.data-layout-p1 {
  padding: 110px 0 100px 0;
}
.data-layout-one {
  width: 100%;
}
.data-layout-one:nth-of-type(1)::after {
  content: none;
}
.data-layout-box-contents .subtile-headline {
  font-size: 35px;
  color: #fff;
}
.data-layout-box-contents .subtile-headline span::after {
  width: 120px;
  left: 50%;
  background-color: #fff;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  margin: 0;
}
.data-layout-box-contents img {
  margin-top: 50px;
}
.emp-nav {
  margin-top: 45px;
}
@media (max-width: 1200px) {
  .color-txt-b {
    top: 45%;
    left: 56.5%;
    width: 70%;
  }
  .color-txt-w {
    position: absolute;
    top: 37%;
    left: 12.6%;
    width: 70%;
  }
}
@media (max-width: 1024px) {
  .-bg-c-b {
    background-color: var(--color-bg-b);
    width: 100%;
    margin: 0;
  }
  .-bg-c-dg {
    background-color: var(--color-bg-dg);
    width: 100%;
    margin: 0;
  }
  .message .section-area {
    justify-content: center;
    padding: 0 24px 0 0;
    width: 100%;
  }
  .message .faq-list {
    margin: 0 auto;
    padding: initial;
    width: calc(100% - 40px);
  }
  .subtile-headline {
    line-height: 1.2;
  }
  .subtile-headline span::after {
    height: 2px;
    bottom: -20px;
    position: absolute;
    top: auto;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .qa .section-area {
    padding: 0 160px 0 0;
  }
  .interview .section-area {
    top: 50px;
  }
  /*.member-list {
    justify-content: center;
  }*/
  .member-list-item:nth-child(2n) {
    margin-top: 0;
  }
  .days.interview-contents {
    margin: 80px 0 0 0;
  }
  .days .section-c-max-wid {
    margin-top: 120px;
  }
  .days .section-area {
    width: 100%;
    padding: initial;
  }
  .days .section-area > div:nth-of-type(2) img {
    top: calc(-194px / 2);
  }
  .days .subtile-headline span::after {
    left: 50%;
    width: 132px;
    height: 5px;
  }
  .days .section-bg-layout::before {
    /*height: calc(100% - 60px);*/
    top: 95px;
	height: 120%;
  }
  .flow-days-box {
    flex-direction: column;
    padding-left: 60px;
    padding-right: 40px;
  }
  .flow-days::before {
    height: calc(100% - 135px);
  }
  .flow-days-list-item img {
    width: 90%;
    margin: 50px auto;
  }
  .days .member-list-item {
    width: calc(100% / 3);
    margin-right: 0;
  }
  .team.interview-contents {
    margin: 40px 0 0 0;
  }
  .team .section-area {
    padding: 0px 20px;
    top: calc(-130px / 2);
  }
  .team-dialogue.section-top-area-4 {
    padding: 84px 0;
  }
  .team-dialogue-list {
    margin: 84px 20px;
	padding: 100px 0 0;
  }
  .flex.b1, .flex.b2 {
    display: block;
  }
  .flex.b1 .flex, .flex.b2 .flex {
    width: 100%;
  }
  .flex.b1 img, .flex.b2 img {
    width: 100%;
  }
  .flex.b2 .flex {
    align-items: flex-start;
  }
  .flex.b2 .flex span {
    left: 0;
  }
  .team-dialogue-list-item h3 {
    line-height: 1.4;
  }
  .team-dialogue-list-item h3 .bar {
    display: block;
    margin-left: auto;
    top: auto;
    bottom: -15px;
    width: 20px;
    height: 2px;
  }
  .team-dialogue-list-item h3::after {
    bottom: 0;
    left: 5%;
    top: 130%;
  }
  .dialogue-box .member-list-item {
    width: 100%;
  }
  .dialogue-box .member-list {
    margin: 0 20px;
  }
  .team-dialogue::before {
    height: 4050px;
  }
  .fringe .section-area {
    padding: 0 160px 0 0;
  }
  .fringe + .mainvisual-txt, .require + .mainvisual-txt {
    margin-bottom: 100px;
  }
  .fringe-list {
    display: block;
    margin: 0 15px;
    padding-top: 44px;
  }
  .fringe-list-item {
    display: flex;
    width: 100%;
  }
  .fringe-list-item > div:nth-of-type(1) {
    width: 35%;
  }
  .fringe-list-item > div:nth-of-type(2) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 65%;
  }
  .fringe-list-item > div:nth-of-type(2) p {
    height: auto;
  }
  .fringe-list-item:nth-of-type(7), .fringe-list-item:nth-of-type(8) {
    margin-bottom: 20px;
  }
  .require .section-area {
    padding: 0 175px 0 0;
  }
  .require-box {
    margin: 110px 20px 210px 20px;
  }
  .require.section-top-area-4 {
    padding: 150px 60px 120px 60px;
  }
  .intro .section-area {
    padding: 0 174px 0 0;
  }
  .introduction {
    padding: 0 10px;
  }
  .emp-nav ul {
    flex-direction: column;
  }
  .emp-wide .member-list {
    padding: 0 20px;
  }
  .emp-wide .member-list-item {
    width: calc(100% / 2 - 5px);
    margin-right: 10px;
  }
  .emp-wide .member-list-item:nth-child(even) {
    margin-right: 0;
  }
  .emp-wide.-bg-c-gray .member-list-item:nth-child(even) {
    margin-top: 50px;
  }
  #link-3 .member-list {
    flex-direction: column;
  }
  #link-3 .member-list li {
    display: flex;
    width: 100%;
  }
  #link-3 .member-list li > div {
    width: 50%;
  }
  #link-3 .member-list .list-item-detail {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #link-3 .member-list-item:nth-of-type(2) {
    flex-direction: row-reverse;
  }
  #link-3 .member-list-item .list-item-detail span {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: var(--color-bg-b);
    color: #fff;
  }
  .data-layout-box {
    flex-direction: column;
  }
  .data-layout-box-contents {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
  .data-layout-box-contents:nth-of-type(1)::after {
    width: calc(100% - 60px);
    height: 1px;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
  }
  .data-layout-box-contents:nth-of-type(1) {
    padding-bottom: 50px;
  }
  .data-layout-box-contents:nth-of-type(2) {
    padding-top: 50px;
  }
  .data-layout-box-contents img {
    margin-top: 40px;
  }
  .data-layout-p1 {
    padding: 50px 0;
  }
  .data-layout-m1 {
    margin-bottom: 50px;
  }
  .data-layout-m2 {
    margin-bottom: 50px;
  }
}
@media (max-width: 959px) {
  .section-page {
    height: calc(730px / 2);
	margin-top: 10px;
  }
  .page-bg-layout {
    overflow: initial;
    width: calc(100% - 74px);
    height: calc(608px / 2);
  }
  .page-bg-layout-color {
    width: calc(578px / 2);
    height: calc(730px / 2);
  }
  .color-txt-b {
    top: 50%;
    left: 66.5%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 100%;
    text-align: right;
  }
  .color-txt-w {
    display: none;
    top: calc(608px / 2 - 41.6%);
    left: 77%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 100%;
  }
  .page-tile-headline {
    background: linear-gradient(90deg, #000 0%, #000 84%, #fff 80%, #fff 100%);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 38px;
  }
  .message .page-tile-headline {
    font-size: 28px;
  }
  .mainvisual-txt p {
    margin: 50px 20px;
    font-size: 14px;
    line-height: 2;
  }
  .section-top-area-4 {
    padding: 46px 0;
  }
  .subtile-headline {
    font-size: 20px;
    line-height: 1.8;
    padding-bottom: 10px;
  }
  .subtile-headline span::after {
    width: 75px;
    bottom: -10px;
  }
  .faq-list li {
    margin-bottom: 14px;
  }
  .message .page-bg-layout {
    background-image: url(../img/message/mv.jpg);
  }
  .message .color-txt-b {
    left: 58%;
  }
  .message .page-tile-headline {
    background: linear-gradient(90deg, #000 0%, #000 92.2%, #fff 92.2%, #fff 100%);
    -webkit-background-clip: text;
    color: transparent;
  }
  .message-list {
    margin-top: 42px;
  }
  .question {
    padding: 12px 20px 12px 12px;
    font-size: 14px;
  }
  .question span {
    padding-right: 15px;
    font-size: 19px;
  }
  .answer {
    font-size: 14px;
  }
  .-toggle {
    right: 10px;
    width: 8px;
  }
  .faq-list li.active .answer {
    padding: 12px 23px 12px 53px;
  }
  .qa .section-area {
    padding: 0 38px 0 0;
  }
  .qa .page-bg-layout {
    background-image: url(../img/qa/mv.jpg);
  }
  .qa .color-txt-b {
    left: 60%;
  }
  .qa .page-tile-headline {
    background: linear-gradient(90deg, #000 0%, #000 90%, #fff 90%, #fff 100%);
    -webkit-background-clip: text;
    color: transparent;
  }
  .qa-select-nav {
    margin: 50px 0;
  }
  .qa-select-nav li a {
    padding: 9px 26px 9px 20px;
    font-size: 10px;
  }
  .qa-select-nav li:nth-of-type(1) {
    margin-right: 20px;
  }
  .qa-select-nav li a i {
    position: relative;
    top: -1px;
    padding-right: 4px;
  }
  .qa-select-nav li a img {
    width: 10px;
    height: 6px;
  }
  .interview-contents {
    margin: 60px 0 50px 0;
  }
  .interview .subtile-headline {
    padding-bottom: 70px;
    font-size: 22px;
  }
  .interview .subtile-headline span::after {
    bottom: -15px;
    left: 50%;
    width: 60px;
  }
  .interview .section-area .tile-headtxt {
    font-size: 28px;
  }
  .member-list {
    margin: 0 20px;
  }
  .member-list-item {
    width: 49%;
  }
  /*  .member-list-item:nth-child(2n) {
    margin-left: 5px;
  }*/
  .list-item-img {
    display: flex;
    flex-direction: column;
  }
  .list-item-img span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 5px 0;
    font-size: 11px;
  }
  .list-item-detail {
    padding: 5px 0 20px 0;
  }
  .list-item-detail em {
    font-size: 14px;
  }
  .list-item-detail p {
    padding-top: 3px;
    margin-bottom: auto;
    font-size: 12.5px;
  }
  .days.interview-contents {
    margin-top: 60px;
  }
  .days .subtile-headline {
    font-size: 22px;
  }
  .days .subtile-headline span::after {
    width: calc(132px / 2);
    height: 3px;
    bottom: -15px;
  }
  .days .section-bg-layout {
    height: 445px;
  }
  .days .section-c-max-wid {
    margin-top: 60px;
  }
  .days .section-area > div:nth-of-type(2) img {
    top: -30px;
  }
  .days .section-area > div:nth-of-type(1) {
    width: 52%;
  }
  .days .section-area > div:nth-of-type(2) {
    width: 48%;
  }
  .days .tile-headline.en {
    margin-bottom: 10px;
    font-size: 18px;
    /*left: -20px;*/
  }
  .days .tile-headsub {
    font-size: 13px;
  }
  .flow-days.section-top-area-4 {
    padding: 40px 0 0 0;
  }
  .flow-days::before {
    width: 78.67%;
    top: 40px;
    height: calc(100% - 25px);
  }
  .flow-days-box {
    padding-top: 40px;
    padding-left: 30px;
    padding-right: 14px;
  }
  .flow-days-list-item {
    padding-left: .8rem;
    padding-bottom: .9rem;
    min-height: 9rem;
    border-left: 2px solid var(--color-bg-b);
  }
  .flow-days-list-item::before {
    width: .8rem;
    height: .8rem;
  }
  .flow-days-list-item h3 {
    margin-bottom: 15px;
    font-size: 15px;
  }
  .flow-days-list-item h3 em {
    margin-right: 13px;
  }
  .flow-days-list-item p {
    font-size: 13px;
  }
  .flow-days-list-item img {
    margin: 15px 0;
  }
  .section-top-area-4 {
    padding: 50px 0 20px 0;
  }
  .days.member-list {
    flex-wrap: initial;
    margin: 0;
  }
  .member-list-item:nth-child(2n) {
    margin: 0;
  }
  .team .subtile-headline {
    font-size: 22px;
  }
  .team .section-area {
    top: -4.67%;
  }
  .team .section-area > div:nth-of-type(1) {
    width: 100%;
    height: 80px;
    align-items: flex-start;
    justify-content: center;
    padding-left: 10px;
  }
  .team .tile-headline {
    margin: initial;
    font-size: 18px;
    line-height: 1.5;
  }
  .team-dialogue.section-top-area-4 {
    overflow: hidden;
    padding: 42px 0 0 0;
  }
  .team-dialogue::before {
    top: 42px;
    width: 78.67%;
    height: 100%;
  }
  .team-dialogue-list {
    padding: 42px 20px 0 20px;
	margin: 0;
  }
  .team-dialogue-list-item {
    margin-bottom: 25px;
  }
  .team-dialogue-list-item h3 {
    margin-bottom: 31px;
    font-size: 15px;
  }
  .team-dialogue-list-item p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  .flex.b1 .imgwrap, .flex.b2 .imgwrap {
    width: 90%;
    margin-left: 0;
    margin-top: 0;
  }
  .flex.b1 .imgwrap img, .flex.b2 .imgwrap img {
    width: 100%;
    height: auto;
    margin-left: 0;
  }
  .flex.b1 .imgwrap img {
    padding-top: 10px;
    padding-left: 60px;
  }
  .flex.b2 .imgwrap img {
    padding-right: 60px;
    /*padding-bottom: 20px;*/
  }
  .dialogue-box {
    padding: 25px 0;
  }
  .dialogue-box li:nth-of-type(odd) {
    margin-right: 40px;
  }
  .dialogue-box li:nth-of-type(even) {
    margin-left: 40px;
  }
  .dialogue-box .member-list-item {
    margin-bottom: 20px;
  }
  .dialogue-box .list-item-detail {
    padding: 8px 25px;
  }
  .dialogue-box li:nth-of-type(2) .list-item-detail {
    padding: 8px 20px;
  }
  .dialogue-box li:nth-of-type(3) .list-item-detail {
    padding: 8px 16px;
  }
  .dialogue-box li:nth-of-type(4) .list-item-detail {
    padding: 8px 20px;
  }
  .dialogue-box .list-item-detail em {
    font-size: 13px;
  }
  .require .page-bg-layout {
    background-image: url(../img/requirements/mv1@2x.jpg);
  }
  .fringe .page-bg-layout {
    background-image: url(../img/fringebenefits/mv1.jpg);
  }
  .require .page-bg-layout .color-txt-b {
    left: 57%;
  }
  .fringe .page-bg-layout .color-txt-b {
    left: 58%;
  }
  .require .page-tile-headline {
    background: linear-gradient(90deg, #000 0%, #000 93.5%, #fff 93.5%, #fff 100%);
    -webkit-background-clip: text;
    color: transparent;
  }
  .fringe .page-tile-headline {
    background: linear-gradient(90deg, #000 0%, #000 92%, #fff 92%, #fff 100%);
    -webkit-background-clip: text;
    color: transparent;
  }
  .fringe .section-area {
    padding: 0 40px 0 0;
  }
  .fringe + .mainvisual-txt, .require + .mainvisual-txt {
    margin-bottom: 50px;
  }
  .fringe-list-item {
    margin-bottom: 15px;
    padding: 15px 10px;
  }
  .fringe-list-item > div:nth-of-type(1) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 20%;
  }
  .fringe-list-item > div:nth-of-type(2) {
    padding-left: 10px;
    width: 70%;
  }
  .fringe-list-item h2 {
    margin-top: auto;
    line-height: 1;
    font-size: 16px;
  }
  .fringe-list-item h2 .bar {
    margin-left: 10px;
    width: 20px;
    height: 2px;
  }
  .fringe-list-item p {
    margin-bottom: auto;
    font-size: 14px;
    line-height: 1.5;
  }
  .require.section-bg-layout::after {
    background-image: url(../img/fringebenefits/mv1@2x.jpg);
  }
  .require .section-area {
    padding: 0 42px 0 0;
  }
  .require.section-top-area-4 {
    padding: 48px 10px 50px 10px;
  }
  .require-box {
    margin: 44px 0 0 0;
    padding: 40px 20px;
  }
  .require-box .flex {
    margin-bottom: auto;
  }
  .require-box dt, .require-box dd, .require-box dd p {
    font-size: 14px;
  }
  .require-box dd {
    margin-bottom: 25px;
  }
  .require-box dd ul {
    padding-left: 1rem;
  }
  .require-box dd li p {
    line-height: 1.2;
  }
  .require-box dd:last-child {
    margin-bottom: 0;
  }
  .require-area.section-top-area-4 {
    padding: 48px 40px 50px 40px;
  }
  .require-area .section-c-max-wid img {
    margin-top: 35px;
  }
  .require .section-c-max-wid + .top-entry {
    width: 220px;
    margin: 40px auto auto;
  }
  .subtile-headline span::after {
    bottom: -15px;
    width: 60px;
    left: 50%;
    right: 0;
  }
  .intro .page-bg-layout {
    background-image: url(../img/businessintroduction/mv1.jpg);
  }
  .intro .color-txt-b {
    left: 58.5%;
  }
  .intro .page-tile-headline {
    background: linear-gradient(90deg, #000 0%, #000 91.5%, #fff 91.5%, #fff 100%);
    -webkit-background-clip: text;
    color: transparent;
  }
  .intro.section-bg-layout::after {
    background-image: url(../img/businessintroduction/introduction1@2x.png);
  }
  .intro .section-area {
    padding: 0 40px 0 0;
  }
  .intro-titl {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .intro.mainvisual-txt p {
    font-size: 15px;
  }
  .introduction {
    margin: 42px auto 30px;
    margin-bottom: 30px;
    max-width: 95%;
    padding: 0;
  }
 .emp-nav {
    margin-top: 60px;
  }
  .emp-nav ul {
    margin: 0;
  }
  .emp-wide .subtile-headline {
    font-size: 22px;
  }
  .emp-wide .member-list {
    padding: 0;
    margin: 40px 10px 0 10px;
  }
  .emp-wide.-bg-c-gray .member-list-item {
    width: calc(100% - 20px);
    margin-bottom: 0;
  }
  .emp-wide.-bg-c-gray .list-item-detail {
    padding: 8px 24px;
  }
  .emp-wide.-bg-c-gray .list-item-detail em {
    font-size: 13px;
  }
  .emp-wide.-bg-c-gray .member-list-item:nth-of-type(3) .list-item-detail, .emp-wide.-bg-c-gray .member-list-item:nth-of-type(4) .list-item-detail {
    padding: 8px 20px;
  }
  .emp-wide.-bg-c-gray .member-list-item:nth-child(even), .emp-wide.-bg-c-gray .member-list-item:nth-of-type(3) {
    margin-top: 20px;
  }
  #link-3 .member-list-item .list-item-detail span {
    margin-top: 10px;
    padding: 5px 10px;
    font-size: 13px;
  }
  #link-3 .member-list li {
    margin-bottom: 25px;
  }
  #link-3 .member-list li:last-child {
    margin-bottom: 0;
  }
  .data .page-bg-layout {
    background-image: url(../img/data/mv1.jpg)
  }
  .data .color-txt-b {
    width: 100%;
    left: 58%;
  }
  .data .page-tile-headline {
    background: linear-gradient(90deg, #000 0%, #000 91.7%, #fff 91.7%, #FFE 100%);
    -webkit-background-clip: text;
    color: transparent;
  }
  .data-layout-box-contents .subtile-headline {
    font-size: 22px;
  }
  .data-layout-box-contents .subtile-headline span::after {
    width: 60px;
  }
  .data-layout-box-contents img {
    margin-top: 25px;
  }
  .data-layout-p1 {
    padding: 37.5px 0 42px 0;
  }
  .data-layout-box-contents:nth-of-type(1) {
    padding-bottom: 48px;
  }
  .data-layout-box-contents:nth-of-type(2) {
    padding-top: 48px;
  }
}
@media (max-width: 767px) {
  .days .section-bg-layout {
    height: 100%;
    overflow: hidden;
  }
  .fringe-list-item > div:nth-of-type(1) {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .interview .section-bg-layout::after {
    width: calc(100% - 68.5px);
    height: calc(478px / 2);
    top: -22px;
    padding: 0;
    background-size: cover;
  }
  .interview .section-bg-layout::before {
    width: calc(100% - 20px);
  }
  .interview .section-bg-layout {
    height: calc(800px / 2);
  }
  .interview .section-area {
    padding: 0 0 0 67.5px;
    top: 62%;
    width: 100%;
    height: auto;
  }
  .interview .tile-headline.en {
    margin-bottom: 8px;
    font-size: 15px;
  }
  .interview .section-area .tile-headsub {
    font-size: 12px;
  }
  .interview .section-area .tile-headtxt {
    margin-top: 16px;
    font-size: 16px;
  }
}
@media (max-width: 414px) {
  .message .page-tile-headline {
    background: linear-gradient(90deg, #000 0%, #000 84%, #fff 84%, #fff 100%);
    -webkit-background-clip: text;
    color: transparent;
  }
  .data .page-tile-headline {
    background: linear-gradient(90deg, #000 0%, #000 87%, #fff 87%, #FFE 100%);
    -webkit-background-clip: text;
    color: transparent;
  }
  .require .page-tile-headline {
    background: linear-gradient(90deg, #000 0%, #000 93.5%, #fff 93.5%, #fff 100%);
    -webkit-background-clip: text;
    color: transparent;
  }
  .fringe .page-tile-headline {
    background: linear-gradient(90deg, #000 0%, #000 92%, #fff 92%, #fff 100%);
    -webkit-background-clip: text;
    color: transparent;
  }
  .message .color-txt-b {
    left: 66.5%;
  }
  .data .color-txt-b {
    left: 62.5%;
  }
  .message .page-bg-layout {
    background-image: url(../img/message/mv@2x.jpg);
  }
  .data .page-bg-layout {
    background-image: url(../img/data/mv1@2x.jpg)
  }
  .fringe .page-bg-layout {
    background-image: url(../img/fringebenefits/mv1@2x.jpg);
  }
  .intro .page-bg-layout {
    background-image: url(../img/businessintroduction/mv1@2x.jpg);
  }
	.qa .page-bg-layout {
    background-image: url(../img/qa/mv@2x.jpg);
  }
	.section-mainvisual {
    background-image: url(../img/mv@2x.jpg);
	    background-size: contain;
  }
}
@media (max-width: 374px) {
  .page-tile-headline {
    background: linear-gradient(90deg, #000 0%, #000 78%, #fff 78%, #fff 100%);
    -webkit-background-clip: text;
    color: transparent;
  }
  .color-txt-b {
    left: 72%;
  }
  .data .color-txt-b {
    left: 66%;
  }
  .data .page-tile-headline {
    background: linear-gradient(90deg, #000 0%, #000 84%, #fff 84%, #fff 100%);
    -webkit-background-clip: text;
    color: transparent;
  }
  .qa .color-txt-b {
    left: 63%;
  }
  .qa .page-tile-headline {
    background: linear-gradient(90deg, #000 0%, #000 87.5%, #fff 87.5%, #fff 100%);
    -webkit-background-clip: text;
    color: transparent;
  }
}
/* 投稿エリア */
.blog-section {
  padding: 80px 0 0;
  margin: 0 auto;
}
.blog-section .subtile-headline {
  margin-bottom: 50px;
}
.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* PC: 3カラム */
  gap: 30px;
  margin-bottom: 40px;
}
/* PC: 4つ目を非表示 */
.blog-section .blog-list .blog-item:nth-child(4) {
  display: none;
}
.blog-item {
  overflow: hidden;
  transition: transform 0.3s;
  background: #f1f1f1;
}
.blog-item:hover {
  transform: translateY(-5px);
}
.blog-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.blog-item-img {
  width: 100%;
  aspect-ratio: 16 / 9; /* 画像の縦横比を固定 */
  overflow: hidden;
}
.blog-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  padding: 5px;
}
.blog-item:hover .blog-item-img img {
  transform: scale(1.05);
}
.blog-item-content {
  padding: 15px 10px;
}
.blog-date {
  display: block;
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}
.blog-title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
}
.blog-more {
  text-align: center;
}
.blog-more a {
  background-color: var(--color-bg-b);
  color: #fff;
  width: 135px;
  padding: 10px 0 7px 0;
  font-size: 17px;
  margin: 0 auto;
}
.blog-more a span {
  padding: 0 5px;
}
.blog-more .btn:hover {
  opacity: 0.7;
}
.bloglist-section {
  padding: 80px 0 0;
  margin: 0 auto;
}
.bloglist-section .subtile-headline {
  margin-bottom: 50px;
}
/* SP: 2カラム */
@media screen and (max-width: 768px) {
	/*.section-mainvisual {
    background-image: url("../img/mv@2x.jpg");
    height: 0;
    padding-top: 125.553914%;
	background-size:cover;
  }*/
  .blog-section {
    padding: 30px 0 40px;
  }
  .blog-section .subtile-headline {
    margin-bottom: 20px;
  }
  .blog-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
    width: 90%;
    margin: 0 auto 30px;
  }
  /* SP: 4つ目を表示 */
  .blog-section .blog-list .blog-item:nth-child(4) {
    display: block;
  }
  .blog-title {
    font-size: 14px;
  }
  .blog-date {
    font-size: 12px;
  }
  .bloglist-section {
    padding: 50px 0;
  }
  .bloglist-section .subtile-headline {
    margin-bottom: 30px;
  }
}
/* 個別投稿ページ */
.blog-detail {
  padding: 80px 0;
  width: 80%;
  max-width: 800px;
}
.blog-detail-date {
  display: block;
  font-size: 14px;
  color: #999;
  margin-bottom: 20px;
}
.blog-detail-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.6;
}
.blog-detail-img {
  margin-bottom: 40px;
}
.blog-detail-img img {
  width: 100%;
  height: auto;
}
.blog-detail-content {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 60px;
}
.blog-detail-content p {
  margin-bottom: 1.5em;
}
.blog-back {
  text-align: center;
}
.blog-back .btn {
  display: inline-block;
  padding: 15px 50px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
.blog-detail {
  width: 90%;
}
  .blog-detail-title {
    font-size: 24px;
  }
  .blog-detail-content {
    font-size: 14px;
  }
}

/* 投稿本文内のリンクURL対策（スマホで横に伸びるのを防ぐ） */
.blog-detail-content a {
  word-wrap: break-word;
  word-break: break-all;
  overflow-wrap: break-word;
  max-width: 100%;
  display: inline-block;
}

/* すべての投稿コンテンツに適用 */
.blog-detail-content {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.blog-detail-content p,
.blog-detail-content div {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* スマホのみに強制適用 */
@media screen and (max-width: 768px) {
  .blog-detail-content a {
    word-wrap: break-word !important;
    word-break: break-all !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
  }
  
  .blog-detail-content {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
}