:root {
  --font-sans: 'Zen Kaku Gothic New', sans-serif;
  --font-serif: 'Zen Old Mincho', serif;
  --font-ant: 'Zen Kaku Gothic Antique', sans-serif;
  --font-pop: 'Poppins', sans-serif;
  --color-blue-dark: #0E2856;
}

body {
  font-size: 16px;
  font-family: var(--font-sans);
  color: var(--color-blue-dark);
}

a {
  color: inherit;
}


span.top-cap-end {
  display: block;
  text-align: right;
  font-size: 1.2rem;
}

.my-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.my-inner {
  padding: 0 40px;
}

.my-main.-sub .my-inner {
  padding: 0 140px;
}

p.indent-philosophy {
  text-indent: -1em;
  padding-left: 1em;
}

.my-header-logo {
  display: block;
  width: 276px;
  margin: 20px auto 0;
}

.my-header-logo > img {
  display: block;
  width: 100%;
}

.my-hero,
.my-hero-fix {
  height: 683px;
  overflow: hidden;
}

.my-hero.-sub,
.my-hero.-sub .my-hero-fix {
  height: 230px;
}

.my-hero-fix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: url(../img/hero-bg.jpg) center center / cover no-repeat;
  z-index: -1;
}

.my-hero.-sub .my-hero-fix {
  background: url(../img/hero-sub-bg.jpg) center 90% / cover no-repeat;
}

.my-hero-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1000px;
  height: 380px;
  border: 1px solid #FFF;
  font-family: var(--font-serif);
  font-size: 75px;
  letter-spacing: 0.25em;
  line-height: 1.3;
  color: #FFF;
  text-shadow: 15px 0px 6px #000;
  padding: 0 75px;
  margin: 170px auto 0;
  text-align: center;
}

.my-hero.-sub h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  text-align: center;
  font-family: var(--font-pop);
  font-size: 70px;
  letter-spacing: 0.13em;
  height: 125px;
  margin: 100px 0 0 0;
}

.my-nav {
  background: var(--color-blue-dark);
  padding: 55px 0;
}

#my-nav,
[for="my-nav"] {
  display: none;
}

.my-nav > ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  width: 820px;
  margin: 0 auto;
  padding: 0;
}

.my-nav > ul > li {
  width: 157px;
}

.my-nav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 37px;
  color: #FFF;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  background: transparent;
  border: 1px solid #FFF;
  z-index: 1;
  transition: .3s;
}

.my-nav a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #FFF;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}

.my-nav a:hover {
  color: var(--color-blue-dark);
}

.my-nav a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

.my-main {
  background: #FFF;
  padding: 60px 0;
}

.my-bc {
  background: #FFF;
}

.my-bc > ul {
  display: flex;
  list-style: none;
  max-width: 1060px;
  margin: 0 auto;
  padding: 5px 30px;
  font-size: 12px;
}

.my-bc li + li::before {
  content: ">";
  margin: 0 5px;
}

.my-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  font-weight: bold;
  color: #FFF;
  background: var(--color-blue-dark);
  width: 800px;
  height: 170px;
  padding: 0 30px;
  margin: 0 auto 120px;
}

.my-subtitle {
  font-size: 30px;
  line-height: 2;
  padding-left: .5em;
  border-left: 4px solid var(--color-blue-dark);
  margin-top: 150px;
  margin-bottom: 1.4em;
}

.my-subtitle02 {
  font-size: 30px;
  line-height: 2;
  padding-left: .5em;
  border-left: 4px solid var(--color-blue-dark);
  margin-top: 50px;
  margin-bottom: 1.4em;
}

.my-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 50px;
  color: var(--color-blue-dark);
  font-size: 18px;
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--color-blue-dark);
  z-index: 1;
  transition: .3s;
}

.my-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--color-blue-dark);
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}

.my-btn:hover {
  color: #FFF;
}

.my-btn:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

.my-btn.-dark {
  color: #FFF;
  border-color: #FFF;
}

.my-btn.-dark::before {
  background: #FFF;
}

.my-btn.-dark:hover {
  color: var(--color-blue-dark);
}

.my-link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all ease-out .3s;
}

.my-link:hover {
  border-bottom-color: var(--color-blue-dark);
}

.my-slick {
  position: relative;
}

.top-message-img {
  margin: auto 0;
}

.my-slick::before,
.my-slick::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 6%;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  z-index: 1;
}

.my-slick::after {
  left: auto;
  right: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

#home01 .my-title {
  margin-bottom: -85px;
  z-index: 2;
}

#home01 .my-inner {
  border: 1px solid #0e2856;
  padding: 200px 60px 115px 60px;
  margin: 0 40px;
}

#home01 .my-cols {
  display: flex;
  justify-content: space-between;
}

#home01 .my-cols > div:nth-child(1) {
  width: 530px;
  font-size: 18px;
  letter-spacing: 0.13em;
  line-height: 1.8rem;
}

#home01 .my-cols > div:nth-child(2) {
  margin-right: 50px;
}

#home01 ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  width: 1080px;
  padding: 0;
  margin: 90px 0 65px;
}

#home01 li > a {
  position: relative;
  display: block;
  width: 320px;
  height: 250px;
  color: #FFF;
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: bold;
  background: center center / cover no-repeat;
}

#home01 li > a > span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#home01 li > a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: all ease-out .3s;
}

#home01 li > a:hover::before {
  background: transparent;
}

#home01 li > a::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border: 1px solid #FFF;
  opacity: 0;
  transition: all ease-out .3s;
}

#home01 li > a:hover::after {
  opacity: 1;
}

#home01 li:nth-child(1) > a {
  background-image: url(../img/home01-nav01.jpg);
}

#home01 li:nth-child(2) > a {
  background-image: url(../img/home01-nav02.jpg);
}

#home01 li:nth-child(3) > a {
  background-image: url(../img/home01-nav03.jpg);
}

#home02 {
  margin-top: 100px;
}

#home02 .my-title {
  justify-content: flex-start;
  padding-left: 100px;
  margin-left: 0;
  margin-bottom: 90px;
}

#home02 .my-description {
  position: absolute;
  top: 60px;
  left: 312px;
  color: #FFF;
  font-size: 18px;
  font-weight: bold;
  width: 360px;
}

#home02 .my-slick-img {
  width: 450px;
  margin: 0 25px;
}

#home02 .my-slick-img img {
  width: 100%;
}

#home02 .my-btn {
  position: absolute;
  top: 120px;
  right: 40px;
}

#home03 {
  margin-top: 150px;
}

#home03 .my-title {
  justify-content: flex-start;
  padding-left: 100px;
  margin-right: 0;
  margin-bottom: -85px;
  z-index: 2;
}

#home03 .my-inner {
  border: 1px solid #0e2856;
  padding: 50px 0;
  margin: 0 40px;
}

#home03 .my-description {
  position: absolute;
  top: 60px;
  right: 120px;
  color: #FFF;
  font-size: 18px;
  font-weight: bold;
  width: 360px;
  z-index: 2;
}

#home03 .my-img {
  margin-left: 50px;
  width: 760px;
}

#home03 .my-btn {
  position: absolute;
  top: 435px;
  right: 75px;
}

#home04 {
  margin-top: 100px;
}

#home04 .my-title {
  justify-content: flex-start;
  width: auto;
  padding-left: 100px;
  margin-bottom: 90px;
}

#home04 .my-description {
  position: absolute;
  top: 60px;
  left: 312px;
  color: #FFF;
  font-size: 18px;
  font-weight: bold;
  width: 360px;
}

#home04 .my-slick-img {
  width: 450px;
  margin: 0 25px;
}

#home04 .my-slick-img img {
  width: 100%;
}

#home04 .my-btn {
  position: absolute;
  top: 60px;
  right: 40px;
  z-index: 2;
}

#home05 {
  margin-top: 150px;
  padding-bottom: 150px;
}

#home05 .my-title {
  width: auto;
  margin: 0;
}

#home05 .my-news {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 800px;
  background: url(../img/home05-bg01.jpg) center center / cover no-repeat;
  margin-bottom: 90px;
}

#home05 .my-news-list {
  position: relative;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1000px;
  height: 550px;
  background-color: rgba(255, 255, 255, 0.5);
  outline: 1px solid #FFF;
  outline-offset: -25px;
  padding: 0;
  margin: 0;
}

#home05 .my-news-list li {
  width: 730px;
}

#home05 .my-news-list li + li {
  margin-top: 25px;
}

#home05 .my-link {
  display: inline-flex;
  font-size: 20px;
}

#home05 .my-news-date {
  width: 8em;
}

#home05 .my-news-text {
  width: calc(100% - 8em);
  word-break: break-all;
}

#company ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 100px;
  width: 100%;
  padding: 0;
}

#company li > a {
  position: relative;
  display: block;
  width: 450px;
  height: 250px;
  color: #FFF;
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: bold;
  background: center center / cover no-repeat;
}

#company li > a > span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#company li > a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: all ease-out .3s;
}

#company li > a:hover::before {
  background: transparent;
}

#company li > a::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border: 1px solid #FFF;
  opacity: 0;
  transition: all ease-out .3s;
}

#company li > a:hover::after {
  opacity: 1;
}

#company li:nth-child(1) > a {
  background-image: url(../img/company-nav01.jpg);
}

#company li:nth-child(2) > a {
  background-image: url(../img/company-nav02.jpg);
}

#company li:nth-child(3) > a {
  background-image: url(../img/company-nav03.jpg);
}

#company li:nth-child(4) > a {
  background-image: url(../img/company-nav04.jpg);
}

#company li:nth-child(5) > a {
  background-image: url(../img/company-nav05.jpg);
}

#company li:nth-child(6) > a {
  background-image: url(../img/company-nav06.jpg);
}

#company li:nth-child(7) > a {
  background-image: url(../img/company-nav07.jpg);
}

#greeting .my-cols {
  display: flex;
  justify-content: space-between;
  gap: 65px;
  line-height: 2.5;
}

#greeting .my-cols img {
  display: block;
  width: 350px;
  margin: 0 auto;
}

#greeting .greeting-name {
  text-align: right;
  font-size: 1.2rem;
}

#philosophy p {

  font-size: 22px;
}

#philosophy01 img {
  display: block;
  max-width: 500px;
  width: 100%;
  margin: 50px auto 0;
}

#philosophy02 .my-cols {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

#philosophy02 img {
  display: block;
  width: 300px;
  margin: 0 auto;
}


#philosophy03 .my-cols {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

#philosophy03 img {
  display: block;
  width: 300px;
  margin: 0 auto;
}

#profile table {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0 2em;
}

#profile th {
  width: 330px;
  font-size: 18px;
  font-weight: normal;
  vertical-align: top;
}

#profile th p {
  background-color: #ebecf5;
  max-width: 300px;
  text-align: center;
  padding: 0.7em;
}


#profile dl {
  display: flex;
  flex-wrap: wrap;
  row-gap: 2em;
  margin: 0;
}

#profile dt {
  font-weight: normal;
  width: 8em;
  margin-bottom: 0.8rem;
  border-bottom: solid 2px #111;
  padding-bottom: 1rem;
}

#profile dd {
  font-weight: normal;
  width: calc(100% - 8em);
  padding-left: 20px;
  border-bottom: solid 2px #cfd0d9;
  margin-bottom: auto;
  padding-bottom: 1rem;
}

#profile .my-cols {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 1em;
}

#profile .my-cols > div {
  position: relative;
  width: 47%;
}

#profile .my-cols img {
  display: block;
  width: 100%;
}

#profile .my-cols iframe {
  width: 100%;
  height: 100%;
}



/* profile */

details:not(:last-child) {
  margin-bottom: 20px;
}

/**
 * list-style: none; ←デフォルト三角削除（Chrome非対応）
 * cursor: pointer; ←カーソルをポインターに
**/
details summary {
  list-style: none;
  cursor: pointer;
  padding: 24px;
  background: #ebecf5;
  font-size: 1rem;
  font-weight: bold;
}
/**
 * Chrome用のデフォルト三角削除
**/
details summary::-webkit-details-marker {
  display: none;
}

/**
 * アコーディオンがオープン時はマイナスアイコンに変更
**/
details[open] summary::before {
  content: '－';
}

details summary::before {
  content: '＋';
  margin-right: 20px;
}

.proffile-s-imgs {
  display: flex;
  width: auto;
}

.news-page-flex {
  display: flex;
}

.news-page-flex img {
  height: 200px;
  width: auto;
}

.proffile-s-imgs img {
  padding: 30px 20px 10px 0;
  width: 310px;
}

td.gcs-padding {
  margin-top: 0.6em !important;
}

tr.gcs-padding-b {
  padding-bottom: 40px;
}

@media (max-width: 1279.98px) {
  .proffile-s-imgs {
    display: block;
    width: auto;
  }

  .proffile-s-imgs img {
    padding: 30px 0 10px 0;
  }
}

.gcs-details {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  0% {
    opacity: 0; 
    transform: translateY(-10px); 
  }
  100% {
    opacity: 1;
    transform: none;
  }
}



#affiliated table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 2em;
}

#affiliated tr > *:nth-child(n + 3) {
  text-align: center;
}

#affiliated thead th {
  font-size: 16px;
  font-weight: normal;
  padding-left: 20px;
}

#affiliated tbody th {
  width: 200px;
  font-size: 18px;
  font-weight: normal;
  background-color: #ebecf5;
  text-align: center;
  padding: 10px;
}

#affiliated tbody td {
  padding-left: 20px;
}

#affiliated tbody td p {
  margin-bottom: 0;
  display: flex;
}

#affiliated01 th p {
  border-bottom: solid 2px #005ab3;
  max-width: 100%;
  text-align: center;
  padding-bottom: 10px;
}

#affiliated02 th p {
  border-bottom: solid 2px #005ab3;
  max-width: 100%;
  text-align: center;
  padding-bottom: 10px;
}

#history .my-cols {
  display: flex;
  gap: 6%;
}

#history .my-cols > div:nth-child(1) {
  margin-top: 72px;
}

#history .my-cols > div:nth-child(3) {
  flex: 1;
  margin-top: 98px;
}

#history .my-cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#history .my-cols li {
  height: 60px;
}

/* csr */
.csr-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto 150px auto;
}

#csr p {
  font-family: var(--font-serif);
  font-size: 22px;
}

#csr div {
  font-family: var(--font-serif);
  font-size: 22px;
  display: flex;
  justify-content: center;
}

#csr img {
  display: block;
  max-width: 500px;
  width: 100%;
  margin: 50px auto 0;
}

#csr .my-cols {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

#csr img {
  display: block;
  width: 300px;
  margin: 0 auto;
}

#csr .my-cols {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

#csr03 img {
  display: block;
  width: 300px;
  margin: 0 auto;
}

.pdf-btn01 a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 82px auto 0 auto;
  padding: 1em 2em;
  width: 600px;
  color: #FFF;
  font-size: 26px;
  background-color: #0E2856;
  transition: 0.3s;
  text-decoration: none;
}

.pdf-btn01 a::after {
  content: "";
  display: inline-block;
  width: 33px;
  height: 24px;
  margin: 0px 0 0 22px;
  background: url("../img/download-btn.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
}

/* csr--end */

/* business */
table.business-table-img2 {
  border-collapse: unset!important;
  border-spacing: unset!important;
}

.business-table-img2 tr {
  display: block;
  padding-bottom: 20px!important;
}

.table-img-business img {
  width: 340px!important;
}

.mrimg {
  margin-right: 4.5rem;
}

.table-img-business {
  display: flex;
}

.business-my-subtitle {
  font-size: 30px;
  line-height: 2;
  padding-left: .5em;
  border-left: 4px solid var(--color-blue-dark);
  margin: 120px 0 50px 0;
}

#business .my-cols {
  display: flex;
  justify-content: space-between;
  gap: 65px;
  line-height: 2.5;
}

.business-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto 150px auto;
}

#business p {

  font-size: 22px;
}

#business img {
  display: block;
  max-width: 500px;
  width: 100%;
  margin: 50px auto 0;
}

#business .my-cols {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

#business img {
  display: block;
  margin: 0 auto;
}

.business-01 {
  width: 300px;
} 

.business-02 {
  width: 500px;
}

#business .my-cols {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

#business03 img {
  display: block;
  width: 300px;
  margin: 0 auto;
}

#business table {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0 6em;
} 


#business td {
  vertical-align: top;
}


#business th {
  width: 249px;
  font-size: 26px;
  font-weight: normal;
  vertical-align: top;
}

#business dl {
  display: flex;
  flex-wrap: wrap;
  row-gap: 2em;
  margin: 0;
}

#business dt {
  font-weight: normal;
  width: 8em;
}

#business dd {
  font-weight: normal;
  width: calc(100% - 8em);
}

#business .my-cols {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

#business .my-cols > div {
  position: relative;
}

#business .my-cols img {
  display: block;
}

#business .my-cols iframe {
  width: 100%;
  height: 100%;
}

table.business-table02 {
  border-spacing: 0em!important;
}

td.td-last {
  padding-left: 28px;
  vertical-align: top;
  line-height: 2.5;
}

td.td-last-02 {
  padding-left: 56px;
  vertical-align: middle!important;
  line-height: 2.5;
}

td.td-last-03 {
  padding-right: 56px;
  vertical-align: middle!important;
  line-height: 2.5;
}


/* business--end */

/* region */
.img-info-text {
  padding-top: 30px;
  line-height: 50px;
}

.pc-img {
  display: block!important;
}

.sp-img {
  display: none!important;
}


#region .my-cols img {
  display: block;
  max-width: 100%;
  height: auto;
}

#region .my-cols-02 img {
  max-width: 100%;
  height: auto;
}

.region-cap {
  padding-top: 10px;
  color: #797979;
}

.pr100 {
  padding-right: 100px;
}

.pb60 {
  padding-bottom: 60px;
}

.region-my-subtitle {
  font-size: 30px;
  line-height: 2;
  padding-left: .5em;
  border-left: 4px solid var(--color-blue-dark);
  margin-bottom: 1.4em;
}

#region .my-cols {
  display: flex;
  justify-content: space-between;
  gap: 65px;
  line-height: 2.5;
}

.region-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto 150px auto;
}

#region p {
  font-family: var(--font-serif);
  font-size: 22px;
}

#region img {
  max-width: 500px;
  width: 100%;
  margin: 50px auto 0;
}

#region .my-cols {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}


.region-01 {
  width: 300px;
} 

.region-02 {
  width: 500px;
}

#region .my-cols {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

#region03 img {
  display: block;
  width: 300px;
  margin: 0 auto;
}

#region table {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0 3em;
} 

#region td {
  vertical-align: top;
}


#region th {
  width: 249px;
  font-size: 26px;
  font-weight: normal;
  vertical-align: top;
}

#region dl {
  display: flex;
  flex-wrap: wrap;
  row-gap: 2em;
  margin: 0;
}

#region dt {
  font-weight: normal;
  width: 8em;
}

#region dd {
  font-weight: normal;
  width: calc(100% - 8em);
}

#region .my-cols {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

#region .my-cols > div {
  position: relative;
}

#region .my-cols img {
  display: block;
}

#region .my-cols iframe {
  width: 100%;
  height: 100%;
}
/* region--end */

/* recruit */
.recruit-none {
  display: none;
}

#recruit .my-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  font-weight: bold;
  color: #FFF;
  background-image: url(/assets/img/recruit-img01.jpg);
  max-width: 100%;
  max-height: 100%;
  padding: 0 30px;
  margin: 0 auto 120px;
}

#recruit .my-inner {
  padding-bottom: 100px;
}

#recruit .my-subtitle {
  font-size: 30px;
  padding-left: 0.5em;
  border-left: 4px solid var(--color-blue-dark);
  margin-top: 0px;
  margin-bottom: 10px;
}

.recruit-my-subtitle02 {
  line-height: 2;
  padding-right: 50px;
}

.recruit-my-subtitle03::first-letter {
  color: #446DB6;
}

.recruit-my-subtitle03 {
  font-size: 50px;
  position: relative;
  display: inline-block;
  margin-bottom: 0.5em;
}

.recruit-my-subtitle03:before {
  content: '';
  position: absolute;
  bottom: -15px;/*線の上下位置*/
  display: inline-block;
  width: 60px;/*線の長さ*/
  height: 5px;/*線の太さ*/
  background-color: black;/*線の色*/
  border-radius: 2px;/*線の丸み*/
}

.recruit-my-subtitle04 {
  font-size: 16px;
  margin-bottom: 2em;
}


.recruit-my-subtitle05 {
  font-size: 50px;
  position: relative;
  margin-bottom: 0.5em;
  text-align: center;
}

.recruit-my-subtitle05::first-letter {
  color: #446DB6;
}

.recruit-my-subtitle05:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;/*線の上下位置*/
  display: inline-block;
  width: 60px;/*線の長さ*/
  height: 5px;/*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  background-color: black;/*線の色*/
  border-radius: 2px;/*線の丸み*/
}

.recruit-my-subtitle06 {
  font-size: 16px;
  margin-bottom: 2em;
  text-align: center;
}

.voice-text {
  padding-bottom: 100px;
}

.recruit-textbox {
  max-width: 450px;
}

.recruit-textbox02 {
  max-width: 610px;
  padding-left: 30px;
}

.recruit-textbox03 {
  max-width: 610px;
  padding-right: 30px;
}

#recruit .my-cols {
  display: flex;
  justify-content: space-between;
  gap: 65px;
  line-height: 2.5;
}

.recruit-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto 150px auto;
}

#recruit p {
  font-family: var(--font-serif);
  font-size: 22px;
}

#recruit img {
  display: block;
  max-width: 500px;
  width: 100%;
  margin: 50px auto 0;
}

#recruit .my-cols {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

#recruit img {
  display: block;
  margin: 0 auto;
}

.recruit-01 {
  width: 300px;
} 

.recruit-02 {
  width: 500px;
}

#recruit .my-cols {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

#recruit03 img {
  display: block;
  width: 300px;
  margin: 0 auto;
}


#recruit table {
  table-layout: fixed;
  border-collapse: separate;
} 

#recruit td {
  vertical-align: top;
}

#recruit tr {
  display: block;
}


#recruit th {
  width: 249px;
  font-weight: normal;
}

#recruit dl {
  display: flex;
  flex-wrap: wrap;
  row-gap: 2em;
  margin: 0;
}

#recruit dt {
  font-weight: normal;
  width: 8em;
}

#recruit dd {
  font-weight: normal;
  width: calc(100% - 8em);
}

#recruit .my-cols {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

#recruit .my-cols > div {
  position: relative;
}

#recruit .my-cols img {
  display: block;
}

#recruit .my-cols iframe {
  width: 100%;
  height: 100%;
}


table.recruit-table {
  -webkit-box-sizing: border-box;
	box-sizing: border-box;
  width: 100%;
	border-collapse: collapse;
}

th.recruit_table {
	padding: 10px;
	border: 1px solid #0E2856;
}

td.recruit_table {
	padding: 10px;
	border: 1px solid #0E2856;
}

th.recruit_table {
	width: 30%;
	text-align: left; 
	background: #0E2856;
}

table.reset-table {
  border-collapse: collapse!important;
  border-top: solid 2px #0E2856;
  border-bottom: solid 2px #0E2856;
}

th.deco-table {
  background-color: #A4B9DC;
  text-align: center;
  padding: 10px;
}

td.deco-table02 {
    padding: 15px;
    vertical-align: middle!important;
}

tr.deco-table03 {
  border-bottom: solid 2px #0E2856;
}

.deco-table-span {
  font-weight: bold;
}

.deco-table-flexbtn {
  display: flex;
  padding: 20px 0 0 0;
}

.recruit-pagecontact-btn:hover {
  color: #0E2856;
	background: #fff;
}

.deco-table-mail {
  padding: 0 10px 0 0;
  margin: auto 0;
}

.recruit-pagecontact-btn {
  padding: 0.5rem 2rem;
  font-weight: bold;
  border: 2px solid #0E2856;
  background: #0E2856;
  color: #fff;
  transition: 0.5s;
  border-radius: 6px;
}

.recruit-pagecontact-btn a {
  text-decoration: none;
}

/* recruit--end */

/* contact */
.contact-text {
  padding-left: 50px;
}

span.contact-tel {
  font-size: 30px;
  font-weight: bold;
}

span.contact-info {
  padding-left: 20px;
}



/* contact--end */

/* news */

.cp_actab-content img {
  width: 260px !important;
  height: auto !important;
  padding: 10px 10px 10px 0;
}

ul.my-news-list h5 {
  border-left: solid 5px;
  padding-left: 10px;
}

a.pdflinks[href*=".pdf"]::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../img/PDF_32.png);
  background-size: contain;
  vertical-align: sub;
  margin: 0 0 0 4px;
}

#news01:checked ~ .cp_actab-content {
  border-top: solid 2px #0E2856;
  height: auto;
  opacity: 1;
  padding: 30px;
}

.cp_qa *, .cp_qa *:before, .cp_qa *:after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa {
	margin: 0 auto;
	background: #ffffff;
}
.cp_qa input {
	display: none;
}

.cp_qa #cp_content1,
.cp_qa #cp_content2,
.cp_qa #cp_content3,
.cp_qa #cp_content4 {
	display: none;
	padding: 20px 0 0;
	border-top: 1px solid #dddddd;
}
.cp_qa label.cp_tabitem {
	display: inline-block;
	margin: 0 0 -1px;
	padding: 20px 40px;
	text-align: center;
	color: #0E2856;
	border: 1px solid transparent;
  background-color: #d9d9d9;
}

.cp_qa label.cp_tabitem:before {
	margin-right: 10px;
}

.cp_qa label.cp_tabitem:hover {
	cursor: pointer;
	color: #888585;
}
.cp_qa input:checked + label {
  color: #FFF;
  background-color: #0E2856;
  border-bottom: 1px solid #ffffff;
  padding: 20px 40px;
}

.cp_qa #pdf_conttab1:checked ~ #cp_content1,
.cp_qa #pdf_conttab2:checked ~ #cp_content2,
.cp_qa #pdf_conttab3:checked ~ #cp_content3,
.cp_qa #pdf_conttab4:checked ~ #cp_content4 {
  display: block;
}

.cp_qa #cp_conttab1:checked ~ #cp_content1,
.cp_qa #cp_conttab2:checked ~ #cp_content2,
.cp_qa #cp_conttab3:checked ~ #cp_content3,
.cp_qa #cp_conttab4:checked ~ #cp_content4 {
  display: block;
}
.cp_qa .cp_qain {
	overflow-x: hidden;
	margin: 0 auto;
}
.cp_qa .cp_qain .cp_actab {
  padding: 25px 0 0 0;
	border-bottom: 1px dotted #D5D5D5;
}

.cp_qa .cp_qain label {
  font-weight: bold;
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding: 10px 10px 10px 48px;
	cursor: pointer;
}

.cp_qa .cp_qain .cp_plus {
	font-size: 2em;
	line-height: 100%;
	position: absolute;
	z-index: 5;
	margin-top: 3px;
	margin-left: 10px;
	-webkit-transition: 0.2s ease;
	        transition: 0.2s ease;
}


.cp_qa .cp_qain .cp_actab-content {
	position: relative;
	overflow: hidden;
	height: 0;
	margin: 0 10px 0 48px;
	padding: 14px 0;
	-webkit-transition: 0.5s ease;
	        transition: 0.5s ease;
	opacity: 0;
}

.cp_qa .cp_qain .cp_actab input[type=checkbox]:checked ~ .cp_actab-content {
  border-top: solid 2px #0E2856;
	height: auto;
	opacity: 1;
  padding: 30px;
}

.cp_qa .cp_qain .cp_actab input[type=checkbox]:checked ~ .cp_plus {
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}

.news-date {
  font-weight: bold;
  display: block;
  padding-right: 10px;
}

/* news--end */

/* privacy */

#privacy .my-subtitle {
  margin-top: 70px;
  margin-bottom: 1em;
}

.privacy-sub {
  font-weight: bold;
}

.btn{
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  border: 1px solid #0E2856;
  border-left: 10px solid #0E2856;
  padding: 20px 60px;
  text-align: center;
  outline: none; 
  transition: ease .2s;
  border-radius: 0;
  margin-top: 40px;
}

.btn span {
  position: relative;
  z-index: 3;
  color:#0E2856;
}

.btn:hover span{
  color:#fff;
}

.bgleft:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background:#0E2856;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

.bgleft:hover {
  border: solid 1px #0E2856;
  border-left: 10px solid #0E2856;
}

.bgleft:hover:before{
  transform-origin:left top;
  transform:scale(1, 1);
  color: #FFF;
}



.dli-chevron-round-right {
  display: inline-block;
  color: #0E2856;
  line-height: 1;
  position: relative;
  width: 0.6em;
  height: 0.6em;
  transform: translateX(-25%) rotate(45deg);
  margin-left: 10px;
}

.dli-chevron-round-right::before, .dli-chevron-round-right::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}

.dli-chevron-round-right::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.1em;
}

.dli-chevron-round-right::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}

/* privacy--end */

/* policy */

#policy .my-subtitle {
  margin-top: 70px;
  margin-bottom: 1em;
}

/* policy--end */

/* sitemap */

.sitemap-list dt {
  margin-bottom: 1em;
  color: #0E2856;
  font-weight: 600;
}

.sitemap-list dt::before,
.sitemap-list dd::before {
  margin-right: .4em;
}

.sitemap-list dt::before {
  content: "■ ";
}

.sitemap-list dd {
  margin: 0 0 2.5em;
  padding: 1em 1.5em;
  background-color: #ebebeb;
  color: #0E2856;
}

.line {
  margin: 0 15px;
}

.line::before {
  color: #989898;
  content: "|";
}

#sitemap span a:hover {
  color: #0E2856;
  transition : all 0.5s;
}

#sitemap span.sitemap-link a {
  position: relative;
  text-decoration: none;
}

#sitemap span.sitemap-link a::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #0E2856;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

#sitemap span.sitemap-link a:hover:after {
  bottom: -1px;
  opacity: 1;
  visibility: visible;
}

.sitemap-single {
  padding-bottom: 20px;
}

/* sitemap--end */

span.footer-preparation {
  display: block;
  font-size: 0.8rem;
  color: #ffffff94;
}

.my-footer {
  position: relative;
  background-color: var(--color-blue-dark);
  color: #FFF;
  overflow: hidden;
}

.my-footer a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--color-blue-dark);
  transition: all ease-out .3s;
}

.my-footer a:hover {
  border-bottom-color: #FFF;
}

.my-footer-row1 {
  margin-top: 200px;
  display: flex;
  align-items: center;
}

.my-footer-row1-map {
  position: relative;
  width: 600px;
  height: 450px;
}

.my-footer-row1-map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.my-footer-row1-address {
  flex: 1;
  padding: 0 40px;
}

.my-footer-row1 .my-footer-row1-logo {
  display: block;
  width: 276px;
  margin: 0 auto 60px;
}

.my-footer-row1-logo > img {
  width: 100%;
}

.my-footer-row1 dl {
  font-size: 18px;
  margin-bottom: 60px;
}

.my-footer-row1 dt {
  font-size: 24px;
  font-weight: bold;
  border-bottom: 1px solid #FFF;
  padding-bottom: .2em;
  margin-bottom: .2em;
}

.my-footer-row1-tel {
  font-size: 22px;
  line-height: 1.8;
  text-align: center;
  margin: 0 auto;
}

.my-footer-row1 .my-footer-contact {
  display: none;
}

.my-footer-row2 {
  margin-top: 100px;
}

.my-footer-row2 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.my-footer-row2 > ul {
  display: flex;
  justify-content: space-around;
}

.my-footer-row2 > ul > li > a:first-child {
  font-weight: bold;
  margin-bottom: 30px;
}

.my-footer-row2 > ul > li > ul {
  font-size: 14px;
}

.my-footer-row2 > ul > li > ul > li + li {
  margin-top: .5em;
  white-space: nowrap;
}

.my-footer-row2 .my-footer-contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 40px;
  font-size: 18px;
  border: 1px solid #FFF;
  margin-bottom: 100px;
}

.my-footer-row2 .my-footer-contact::after {
  content: '';
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  left: 5px;
  border: 1px solid var(--color-blue-dark);
  transition: all ease-out .3s;
}

.my-footer-row2 .my-footer-contact:hover::after {
  border-color: #FFF;
}

.my-footer > small {
  display: block;
  text-align: center;
  font-size: 10px;
  padding: 10px;
  margin-top: 160px;
}

@media (max-width: 1279.98px) {
  .my-inner {
    padding: 0 30px;
  }

  .my-main.-sub .my-inner {
    padding: 0 30px;
  }
  
  .my-header-logo {
    width: 195px;
  }
  
  .my-hero,
  .my-hero-fix {
    height: 538px;
  }

  .my-hero.-sub,
  .my-hero.-sub .my-hero-fix {
    height: 200px;
  }
  
  .my-hero-fix {
    background-image: url(../img/hero-bg-sp.jpg);
  }

  .my-hero-text {
    width: 315px;
    height: 350px;
    font-size: 40px;
    letter-spacing: 0.25em;
    line-height: 1.5;
    text-shadow: 8px 0px 6px #000;
    padding: 0 6px;
    margin-top: 110px;
  }

  .my-hero.-sub h1 {
    font-size: 6vw;
    height: 110px;
  }
    
  .my-nav {
    display: none;
  }
  
  #my-nav:checked ~ .my-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    background: rgba(14, 40, 86, 0.9);
    padding: 65px 0;
    z-index: 2;
  }

  [for="my-nav"] {
    display: block;
    position: fixed;
    top: 20px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: url(../img/icon-nav-open.svg) center center / contain no-repeat;
    cursor: pointer;
    z-index: 3;
  }

  #my-nav:checked + [for="my-nav"] {
    background-image: url(../img/icon-nav-close.svg);
  }

  .my-nav > ul {
    display: block;
    width: 157px;
  }

  #my-nav:checked + .my-nav {
    display: block;
  }

  .my-nav > ul > li + li {
    margin-top: 40px;
  }

  .my-main {
    padding: 0 0 50px;
  }

  .my-title {
    font-size: 18px;
    width: auto;
    height: 100px;
    margin-bottom: 25px;
  }

  .my-subtitle {
    font-size: 20px;
    margin-top: 50px;
  }

  .my-subtitle02 {
    font-size: 20px;
    margin-top: 30px;
  }
  
  
  .my-btn,
  .my-btn:hover,
  .my-btn.-dark:hover {
    width: 100%;
    background: var(--color-blue-dark);
    color: #FFF;
  }
  
  #home01 .my-title {
    justify-content: center;
    margin-bottom: 0;
  }

  #home01 .my-inner {
    border: 0;
    padding: 0 30px 80px;
    margin: 0;
  }

  #home01 .my-cols {
    display: flex;
    flex-direction: column;
  }

  #home01 .my-cols > div:nth-child(1) {
    width: 100%;
    font-size: 16px;
    order: 1;
  }
  
  #home01 .my-cols > div:nth-child(2) {
    width: auto;
    margin: 0 -30px 25px;
  }

  #home01 ul {
    display: block;
    width: auto;
    margin: 45px 0;
  }

  #home01 li + li {
    margin-top: 20px;
  }

  #home01 li > a {
    width: 100%;
    height: 100px;
    font-size: 22px;
    border: 4px solid #FFF;
    outline: 1px solid var(--color-blue-dark);
  }

  #home01 li > a > span {
    justify-content: center;
    width: 100%;
    text-shadow: 3px 3px 4px #000, -2px -2px 4px #000;
  }

  #home01 li > a::before,
  #home01 li > a::after {
    display: none;
  }

  #home01 li:nth-child(1) > a {
    background-image: url(../img/home01-nav01-sp.jpg);
  }
  
  #home01 li:nth-child(2) > a {
    background-image: url(../img/home01-nav02-sp.jpg);
  }
  
  #home01 li:nth-child(3) > a {
    background-image: url(../img/home01-nav03-sp.jpg);
  }

  #home02 {
    margin-top: 80px;
  }

  #home02 .my-title {
    justify-content: center;
    padding: 0 30px;
    margin: 0 0 25px;
  }

  #home02 .my-description {
    position: static;
    color: var(--color-blue-dark);
    font-size: 16px;
    font-weight: normal;
    width: auto;
    margin-bottom: 25px;
  }

  #home02 .my-slick-img {
    width: 60vw;
    margin: 0 10px;
  }

  #home02 .my-btn {
    position: static;
    margin-top: 45px;
  }

  #home03 {
    margin-top: 80px;
  }

  #home03 .my-inner {
    border: 0;
    padding: 0 30px 80px;
    margin: 0;
  }

  #home03 .my-title {
    justify-content: center;
    padding: 0 30px;
    margin: 0 0 25px;
  }

  #home03 .my-description {
    position: static;
    color: var(--color-blue-dark);
    font-size: 16px;
    font-weight: normal;
    width: auto;
    margin-bottom: 25px;
  }

  #home03 .my-img {
    display: block;
    margin: 0 -30px 45px;
    width: 100vw;
  }
  
  #home03 .my-btn {
    position: static;
    margin-top: 45px;
  }

  #home04 {
    margin-top: 80px;
  }

  #home04 .my-title {
    justify-content: center;
    padding: 0 30px;
    margin: 0 0 25px;
  }

  #home04 .my-description {
    position: static;
    color: var(--color-blue-dark);
    font-size: 16px;
    font-weight: normal;
    width: auto;
    margin-bottom: 25px;
  }

  #home04 .my-slick-img {
    width: 60vw;
    margin: 0 10px;
  }

  #home04 .my-btn {
    position: static;
    margin-top: 45px;
  }

  #home05 {
    margin-top: 80px;
    padding-bottom: 80px;
  }

  #home05 .my-news {
    height: 500px;
    background-position: center right;
    margin-bottom: 45px;
  }

  #home05 .my-news-list {
    width: calc(100% - 60px);
    height: 440px;
    outline: 0;
  }

  #home05 .my-news-list li {
    width: calc(100% - 60px);
  }

  #home05 .my-link {
    flex-direction: column;
    font-size: 16px;
  }

  #home05 .my-news-date,
  #home05 .my-news-text {
    width: auto;
  }

  #company ul {
    row-gap: 20px;
  }
  
  #company li {
    width: 100%;
  }

  #company li > a {
    width: 100%;
    height: 100px;
    font-size: 22px;
  }

  #greeting .my-cols {
    flex-direction: column;
    gap: 20px;
  }

  #greeting .my-cols img {
    max-width: 350px;
    width: 100%;
  }

  #philosophy p {
    font-size: 18px;
  }

  #philosophy02 .my-cols,
  #philosophy03 .my-cols {
    flex-direction: column;
    gap: 20px;
  }

  #philosophy03 .my-cols > div:first-child {
    order: 1;
  }

  /* csr */
  #csr p {
    font-size: 18px;
  }

  #csr02 .my-cols,
  #csr03 .my-cols {
    flex-direction: column;
    gap: 20px;
  }

  #csr03 .my-cols > div:first-child {
    order: 1;
  }

  .pdf-btn01 a {
    width: 325px;
    font-size: 16px;
  }
  
  .pdf-btn01 a::after {
    margin: 0px 0 0 10px;
    width: 23px;
    height: 14px;
  }

/* csr--end */

/* business */
#business tr + tr {
  margin-top: 0px!important;
}

.business-01.mrimg {
  margin-right: 0px!important;
  padding-bottom: 20px;
}

table.business-table-img2 th {
  padding-bottom: 20px;
}

.business-table-img2 tr {
  padding-bottom: 0px!important;
}

.business-img2-text {
  width: 100%!important;
  line-height: 2.5;
}

#business table {
  padding-top: 40px;
}

.table-img-business {
  display: block;
}

#business p {
    font-size: 18px;
  }

  #business02 .my-cols,
  #business03 .my-cols {
    flex-direction: column;
    gap: 20px;
  }

  #business03 .my-cols > div:first-child {
    order: 1;
  }

  #business table,
  #business tr,
  #business th,
  #business td {
    display: block;
    width: auto;

  }

  #business table {
    border-spacing: 0;
}

  #business tr + tr {
    margin-top: 2em;
  }

.business-02 {
  width: 300px;
}

.business-my-subtitle{
  font-size: 20px;
  margin: 120px 0 30px 0;
}

td.td-last {
  padding-left: 0px;
  vertical-align: top;
  line-height: 2.5;
}

td.td-last-02 {
  padding-left: 0px;
  vertical-align: middle!important;
  line-height: 2.5;
}

td.td-last-03 {
  padding-right: 0px;
  vertical-align: middle!important;
  line-height: 2.5;
}

#business .my-cols img {
  width: 100%;
  height: auto;
  margin: 20px 0;
}

.table-img-business img {
  width: 100%!important;
}

/* business--end */

/* region */

.pc-img {
  display: none!important;
}

.sp-img {
  display: block!important;
}


.pr100 {
  padding-right: 0px;
}

.pb60 {
  padding-bottom: 0px;
}

#region p {
  font-size: 18px;
}

#region .my-cols {
  justify-content: center;
}

#region02 .my-cols,
#region03 .my-cols {
  flex-direction: column;
  gap: 20px;
}

#region03 .my-cols > div:first-child {
  order: 1;
}

#region table,
#region tr,
#region th,
#region td {
  display: block;
  width: auto;

}

#region table {
  border-spacing: 0;
}

#region tr + tr {
  margin-top: 2em;
}

#region td {
  margin-top: 2em;
  padding-left: 1em;
}


.region-02 {
width: 300px;
}

.region-my-subtitle{
font-size: 20px;
}
/* region--end */

/* recruit */
#business p {
  font-size: 18px;
}

#recruit .my-cols {
  justify-content: center;
}

#recruit02 .my-cols,
#recruit03 .my-cols {
  flex-direction: column;
  gap: 20px;
}

#recruit03 .my-cols > div:first-child {
  order: 1;
}

#recruit table,
#recruit tr,
#recruit th,
#recruit td {
  display: block;
  width: auto;

}

#recruit .my-subtitle {
  font-size: 20px;
}

#recruit table {
  border-spacing: 0;
}

#recruit td {
  margin-top: 2em;
}

td.deco-table02 {
  margin-top: 0px!important;
}

.recruit-02 {
width: 300px;
}

.recruit-my-subtitle{
font-size: 20px;
}

.recruit-my-subtitle02 {
  padding-right: 0px;
}

.recruit-textbox02 {
  padding-left: 0px;
}

.recruit-textbox03 {
  padding-right: 0px;
}

/* recruit--end */

/* contact */

.contact-text {
  padding-left: 0px;
  text-align: center;
}

span.contact-info {
  padding-left: 0px;
  text-align: left;
  display: block;
}

/* contact--end */

/* news */

.news-page-flex {
  display: block;
}

.cp_qa input:checked + label {
  padding: 8px 20px;
}

.cp_qa label.cp_tabitem {
  padding: 8px 20px;
}

.cp_qa .cp_qain .cp_actab input[type=checkbox]:checked ~ .cp_actab-content {
  padding: 20px 0 20px 0;
}

/* news--end */

/* sitemap */
.line {
  margin: 0 5px;
}
/* sitemap--end */

  #profile table,
  #profile tr,
  #profile th,
  #profile td {
    display: block;
    width: auto;
  }

  #profile tr + tr {
    margin-top: 2em;
  }

  #profile td {
    margin-top: 2em;
  }

  #profile th p {
    max-width: 100%;
  }

  #profile dl {
    display: block;
  }

  #profile dt {
    border-bottom: none;
    border-bottom: solid 2px #0E2856;
    width: 100%;
  }

  #profile dd {
    border-bottom: none;
    padding-bottom: 40px;
    width: 100%;
    padding-left: 0;
  }

  #affiliated table,
  #affiliated tr,
  #affiliated th,
  #affiliated td {
    display: block;
    width: auto;
  }

  #affiliated thead,
  #affiliated td:empty {
    display: none;
  }

  #affiliated tr + tr {
    margin-top: 2em;
  }

  #affiliated td {
    margin-top: 1em;
    padding-left: 1em;
  }

  #affiliated tr > *:nth-child(n + 3) {
    text-align: left;
  }

  #affiliated tr > td {
    display: flex;
  }

  #affiliated tr > td::before {
    display: block;
    width: 3em;
    white-space: nowrap;
  }

  #affiliated tbody th {
    width: 354px;
  }

  #history .my-cols {
    font-size: 14px;
    line-height: 1.1;
    gap: 4%;
  }

  #history .my-cols > div:nth-child(2) {
    overflow: hidden;
    width: 60px;
  }

  #history .my-cols > div:nth-child(2) img {
    margin-left: -23px;
  }
  
  .my-footer-row1 {
    margin-top: 150px;
    display: block;
  }

  .my-footer-row1-map {
    width: auto;
    height: 350px;
    margin: 0 -30px;
  }

  .my-footer-row1-address {
    margin-top: 24px;
    padding: 0;
  }

  .my-footer-row1 .my-footer-row1-logo {
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    width: 195px;
    margin: 0 auto;
  }

  .my-footer-row1 dl {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .my-footer-row1 dt {
    font-size: 16px;
  }

  .my-footer-row1-tel {
    font-size: 22px;
    line-height: 1.8;
    text-align: center;
    margin: 0 auto;
  }

  .my-footer-row1 .my-footer-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    margin-top: 40px;
    border: none;
    background: #FFF;
    color: var(--color-blue-dark);
    font-size: 16px;
  }

  .my-footer-row2 {
    text-align: center;
    margin-top: 50px;
  }

  .my-footer-row2 > ul {
    display: block;
  }

  .my-footer-row2 > ul > li + li {
    margin-top: 1.2em;
  }
  
  .my-footer-row2 > ul > li > a:first-child {
    margin-bottom: 15px;
  }

  .my-footer-row2 .my-footer-contact {
    display: none;
  }

  #profile .my-cols > div {
    width: 100%;
  }

  #affiliated tbody th {
    width: 310px;
  }
}