@charset "utf-8";
/* under-mv 
========================================*/
#company .ud-mv-inr {
  background-image: url(../img/company/ud-mv.webp);
}

/* message
========================================*/
#message {
  position: relative;
}
#message .msg-content {
  position: relative;
  gap: 56px;
}
#message .msg-content:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -64px;
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    var(--color-cyan-blue),
    var(--color-cyan-blue) 1px,
    transparent 1px,
    transparent 7px
  );
  background-size: 8px 1px;
  background-repeat: repeat-x;
}
#message .msg-img {
  width: 450px;
  height: 530px;
  flex: 1;
}

#message .msg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#message .msg-txt-inr {
  flex: 0;
}

#message .msg-ttl {
  font-size: var(--fs-xxl);
  letter-spacing: 0.24em;
  color: var(--color-blue);
  white-space: nowrap;
  margin-bottom: 32px;
}

#message .msg-ttl::after {
  height: 32px;
}

#message .msg-txt {
  font-size: var(--fs-base);
  line-height: 2;
  font-weight: 300;
  padding-bottom: 24px;
}
#message .msg-txt p {
  padding-bottom: 32px;
}

#message .msg-txt p:last-of-type {
  padding-bottom: 0;
}

#message .msg-sign {
  font-size: var(--fs-md);
  text-align: right;
}

@media screen and (max-width: 1100px) {
  #message .msg-content {
    align-items: flex-start;
    gap: 40px;
  }
  #message .msg-img {
    width: 350px;
    height: auto;
    aspect-ratio: 450 / 530;
    flex: initial;
  }
  #message .msg-txt-inr {
    flex: 1;
  }
  #message .msg-ttl {
    white-space: normal;
    font-size: var(--fs-xl);
    margin-bottom: 24px;
    line-height: 1.5;
  }
  #message .msg-ttl::after {
    height: 24px;
  }
  #message .msg-txt p {
    padding-bottom: 16px;
  }
}

@media screen and (max-width: 960px) {
  #message .msg-content:before {
    bottom: -40px;
  }
  #message .msg-img {
    width: 300px;
  }
  #message .msg-ttl {
    letter-spacing: 0.15em;
  }
}

@media screen and (max-width: 840px) {
  #message .msg-content {
    flex-direction: column;
    align-items: center;
  }
  #message .msg-img {
    width: 70%;
    height: 400px;
    aspect-ratio: initial;
  }
  #message .msg-img img {
    object-position: top;
  }
  #message .msg-txt-inr {
    width: 100%;
  }
  #message .msg-txt p {
    padding-bottom: 8px;
  }
}

@media screen and (max-width: 600px) {
  #message .msg-img {
    height: 300px;
  }
  #message .msg-content:before {
    bottom: -24px;
  }
}

@media screen and (max-width: 480px) {
  #message .msg-img {
    width: 100%;
  }
}

/* 背景画像 */
#message .cmn-bg.circle-5 {
  top: 40px;
  left: 8%;
  transform: translateX(-50%);
}

#message .cmn-bg.circle-6 {
  top: 50%;
  left: 8%;
}

#message .cmn-bg.circle-7 {
  right: 3%;
}
@media screen and (max-width: 1800px) {
  #message .cmn-bg.circle-7 {
    transform: translateX(50%);
    right: 0;
  }
}

@media screen and (max-width: 1600px) {
  #message .cmn-bg.circle-5 {
    left: 5%;
  }
}

@media screen and (max-width: 1400px) {
  #message .cmn-bg.circle-5,
  #message .cmn-bg.circle-6,
  #message .cmn-bg.circle-7 {
    display: none;
  }
}
/* profile
========================================*/
#profile {
  position: relative;
}
#profile .pro-table-inr {
  padding-top: 92px;
}

#profile .pro-table {
  width: calc(100% + 80px);
  margin-left: -40px;
  border-collapse: separate;
  border-spacing: 40px 0;
}

#profile .pro-table th,
#profile .pro-table td {
  padding-top: 24px;
  padding-bottom: 24px;
}

#profile .pro-table th {
  width: 155px;
  text-align: left;
  border-bottom: 1px solid var(--color-blue-works1);
  font-weight: 600;
  color: var(--color-blue-works1);
}
#profile .pro-table th span {
  display: inline-block;
  width: 96px;
  text-align-last: justify;
}

#profile .pro-table tr:first-of-type th {
  border-top: 1px solid var(--color-blue-works1);
}

#profile .pro-table td {
  border-bottom: 1px solid var(--color-gray-light-3);
}
#profile .pro-table tr:first-of-type td {
  border-top: 1px solid var(--color-gray-light-3);
}

#profile .pro-table td ul li {
  padding-bottom: 4px;
  text-indent: -1em;
  padding-left: 1em;
}

#profile .pro-table td ul li:before {
  content: "・";
}

@media screen and (max-width: 960px) {
  #profile .pro-table-inr {
    padding-top: 40px;
  }
  #profile .pro-table {
    width: calc(100% + 48px);
    margin-left: -24px;
    border-spacing: 24px 0;
  }
  #profile .pro-table th,
  #profile .pro-table td {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

@media screen and (max-width: 768px) {
  #profile .pro-table {
    width: 100%;
    margin-left: 0;
    border-spacing: 0;
  }
  #profile .pro-table th,
  #profile .pro-table td {
    width: 100%;
    display: block;
    padding: 16px 0.5em 0 0.5em;
  }
  #profile .pro-table td {
    padding-bottom: 16px;
    padding-top: 8px;
    letter-spacing: 0.05em;
  }
  #profile .pro-table th {
    border-bottom: none;
  }

  #profile .pro-table th span {
    width: auto;
    text-align: left;
  }
  #profile .pro-table tr:first-of-type th {
    border-top: 1px solid var(--color-gray-light-3);
  }
  #profile .pro-table tr:first-of-type td {
    border-top: none;
  }

  #profile .pro-table td ul {
    padding-left: 0.5em;
  }
}

/* 背景画像 */
#profile .cmn-bg.circle-4-sm {
  top: 10%;
  left: 5%;
}

#profile .cmn-bg.circle-3 {
  right: 5%;
  top: 50%;
}
#profile .cmn-bg.circle-7 {
  left: 3%;
  bottom: 10%;
  transform: scale(-1, 1);
}
#profile .cmn-bg.circle-6 {
  left: 2%;
  bottom: 3%;
}

@media screen and (max-width: 1920px) {
  #profile .cmn-bg.circle-3 {
    transform: translateX(50%);
    right: 0;
  }
  #profile .cmn-bg.circle-7 {
    transform: scale(-1, 1) translateX(50%);
  }
}

@media screen and (max-width: 1600px) {
  #profile .cmn-bg.circle-4-sm {
    left: 3%;
    transform: translateX(-50%);
  }
  #profile .cmn-bg.circle-7 {
    right: calc(100% - 40px);
    left: initial;
    transform: scale(-1, 1) translateX(0);
  }
  #profile .cmn-bg.circle-6 {
    display: none;
  }
}

@media screen and (max-width: 1400px) {
  #profile .cmn-bg.circle-4-sm,
  #profile .cmn-bg.circle-3,
  #profile .cmn-bg.circle-7 {
    display: none;
  }
}

/* access
========================================*/
#access {
  position: relative;
}
#access .acc-address {
  gap: 8px;
  padding-bottom: 32px;
}
#access .acc-address img {
  width: 20px;
  height: 24px;
  object-fit: contain;
}

#access .acc-address address {
  font-size: var(--fs-lg-2);
  font-style: normal;
}
#access .acc-map {
  height: 440px;
}

#access .acc-map iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  #access .acc-address {
    padding-bottom: 24px;
  }
  #access .acc-address address {
    font-size: var(--fs-md-2);
  }
  #access .acc-map {
    height: 300px;
  }
}
@media screen and (max-width: 600px) {
  #access .acc-address address {
    line-height: 1.5;
  }
  #access .acc-map {
    height: 240px;
  }
}

#access .acc-info {
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-blue-works1);
}

#access .acc-info-tel-inr {
  flex-direction: column;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 16px;
  width: fit-content;
  padding-bottom: 32px;
}

#access .acc-info-tel {
  gap: 12px;
}
#access .acc-info-tel img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

#access .acc-info-tel a {
  font-size: 64px;
  font-family: var(--font-jost);
  pointer-events: none;
  letter-spacing: 0.1em;
  color: var(--color-blue-works1);
  line-height: 1;
}

#access .acc-info-fax {
  font-size: var(--fs-lg-2);
  font-family: var(--font-jost);
  line-height: 1;
}

#access .acc-time-ttl {
  padding: 2px 16px;
  border-radius: 5px;
  color: var(--color-white);
  line-height: 1;
  font-size: var(--fs-md-2);
}

#access .acc-info-item:first-of-type .acc-time-ttl:first-of-type {
  background-color: var(--color-blue-works1);
}

#access .acc-info-item:last-of-type .acc-time-ttl {
  background-color: var(--color-blue-works3);
}

#access .acc-time-txt {
  font-size: var(--fs-md-2);
  padding-left: 16px;
}

@media screen and (max-width: 960px) {
  #access .acc-info-tel img {
    width: 48px;
    height: 48px;
  }
  #access .acc-info-tel a {
    font-size: 56px;
  }
  #access .acc-info-hours {
    gap: 24px;
    justify-content: center;
  }
}

@media screen and (max-width: 600px) {
  #access .acc-info-tel-inr {
    padding-bottom: 16px;
    gap: 8px;
  }
  #access .acc-info-tel img {
    width: 40px;
    height: 40px;
  }
  #access .acc-info-tel a {
    font-size: var(--fs-xxxl);
    pointer-events: auto;
  }
  #access .acc-info-hours {
    gap: 8px;
    flex-direction: column;
    align-items: center;
    align-items: flex-start;
  }
  #access .acc-time-txt {
    padding-left: 8px;
  }
}

/* 背景画像 */
#access .cmn-bg.circle-5 {
  bottom: 10%;
  right: 10%;
}

@media screen and (max-width: 1800px) {
  #access .cmn-bg.circle-5 {
    right: 0;
  }
}

@media screen and (max-width: 1600px) {
  #access .cmn-bg.circle-5 {
    right: initial;
    left: calc(100% - 56px);
  }
}

@media screen and (max-width: 1400px) {
  #access .cmn-bg.circle-5 {
    display: none;
  }
}
