@charset "UTF-8";
.header .header__inner .header__hamburger-label {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Normalize 等を使う場合は vendors に置き、ここでは最小限のリセットだけ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 14px;
}

body {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #333;
}

body {
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #333;
  background: #ffffff;
  line-height: 1.5;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.05rem;
  font-size: 14px;
}
@media (min-width: tab) {
  body {
    font-size: 15px;
  }
}
@media (min-width: pc) {
  body {
    font-size: 16px;
  }
}

.inner {
  padding: 0 4%;
}
@media (min-width: 1025px) {
  .inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
  }
}

img, svg {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.6);
  outline-offset: 2px;
}

a {
  transition: all 0.4s;
}

h1, h2, h3 {
  line-height: 1.2;
  margin: 0;
}

p {
  margin: 0;
  color: #333;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.375rem;
}

.container {
  max-width: 72rem;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .grid {
    grid-template-columns: 2fr 1fr;
  }
}

.view__btn {
  text-align: center;
}

.view__btn a {
  display: inline-block;
  padding: 10px 70px;
  color: #fff;
  border: 1px solid #0D2A52;
  border-radius: 50px;
  background: #0D2A52;
  transition: all 0.4s;
}
.view__btn a:hover {
  color: #0D2A52;
  background: #fff;
}

.content__title {
  margin-bottom: 40px;
  text-align: center;
}
.content__title h2 {
  position: relative;
  padding-bottom: 20px;
  font-size: 2rem;
  color: #0D2A52;
}
.content__title h2::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 3px dashed #0D2A52;
}

.sub-title {
  display: block;
  margin-bottom: 15px;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1.5rem;
  color: #0D2A52;
  background: #F9F5ED;
}

.text {
  color: #333;
  line-height: 1.7;
}

.updown {
  -webkit-animation-name: updown1;
          animation-name: updown1; /* アニメーション名の指定 */
  -webkit-animation-delay: 0s;
          animation-delay: 0s; /* アニメーションの開始時間指定 */
  -webkit-animation-duration: 3s;
          animation-duration: 3s; /* アニメーション動作時間の指定 */
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out; /* アニメーションの動き指定（徐々に早く）*/
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

.page-header {
  border-bottom: 1px solid #ddd;
}
.page-header .inner {
  padding: 120px 4% 90px;
}
@media (min-width: 1025px) {
  .page-header .inner {
    padding: 150px 0 90px;
  }
}
.page-header__title {
  margin-bottom: 10px;
  color: #0D2A52;
  font-size: 2rem;
  letter-spacing: 0.1rem;
}
.page-header__text {
  font-size: 1.125rem;
  color: #d9d9d9;
  font-weight: bold;
  letter-spacing: 5%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  z-index: 999;
}
@media (min-width: 1025px) {
  .header {
    height: 80px;
    background: #fff;
  }
}
.header .header__inner {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1025px) {
  .header .header__inner {
    padding: 0 2%;
    width: 100%;
    align-items: flex-start;
    height: 100%;
  }
}
@media (min-width: 1281px) {
  .header .header__inner {
    max-width: 1400px;
    margin: 0 auto;
  }
}
.header .header__inner .header__logo {
  position: relative;
  z-index: 999;
  background: #fff;
  border-radius: 0 0 15px 0;
}
.header .header__inner .header__logo::before {
  position: absolute;
  content: "福井県知事許可 第010992号\a福井県板金工業組合加盟店\a敦賀市役所小規模修繕板金登録店";
  font-size: 0.75rem;
  color: #999;
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  white-space: pre;
}
.header .header__inner .header__logo-link {
  display: block;
  width: 100%;
  padding: 5px 20px;
  max-width: 140px;
  height: 60px;
}
.header .header__inner .header__logo-link:hover {
  opacity: 0.6;
}
.header .header__inner .header__logo-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 1025px) {
  .header .header__inner .header__logo-link {
    padding: 10px 0 3px;
    height: 80px;
  }
}
@media (min-width: 1025px) {
  .header .header__inner .header__logo {
    background: transparent;
    border-radius: 0;
  }
}
.header .header__inner .header__hamburger {
  position: relative;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 0 0 0 15px;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .header .header__inner .header__hamburger {
    display: none;
  }
}
.header .header__inner .header__hamburger-bar {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 19px;
  height: 2px;
  border-radius: 2px;
  background-color: #0D2A52;
  width: 40%;
}
.header .header__inner .header__hamburger-bar:nth-child(1) {
  top: 19px;
}
.header .header__inner .header__hamburger-bar:nth-child(2) {
  top: 27px;
}
.header .header__inner .header__hamburger-bar:nth-child(3) {
  top: 35px;
}
.header .header__inner .header__hamburger.active .header__hamburger-bar:nth-child(1) {
  top: 21px;
  left: 22px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.header .header__inner .header__hamburger.active .header__hamburger-bar:nth-child(2) {
  opacity: 0;
}
.header .header__inner .header__hamburger.active .header__hamburger-bar:nth-child(3) {
  top: 33px;
  left: 22px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
.header .header__inner .header__nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #F9F5ED;
  transition: all 0.4s;
  pointer-events: none;
}
@media (min-width: 1025px) {
  .header .header__inner .header__nav {
    position: relative;
    top: auto;
    left: auto;
    height: auto;
    background: transparent;
    opacity: 1;
    z-index: 0;
    width: auto;
    pointer-events: auto;
  }
}
@media (min-width: 1025px) {
  .header .header__inner .header__nav-item {
    margin-right: 40px;
  }
}
.header .header__inner .header__nav-list {
  display: none;
  position: absolute;
  z-index: 998;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  width: 94%;
  height: calc(100vh - 110px);
  border-radius: 10px;
  padding: 20px;
}
@media (min-width: 1025px) {
  .header .header__inner .header__nav-list {
    display: flex;
    padding: 30px 0 0;
    align-items: center;
    position: relative;
    top: auto;
    left: auto;
    transform: translate(0);
    background-color: transparent;
    border-radius: 0;
    height: auto;
    width: auto;
  }
}
.header .header__inner .header__nav-link {
  position: relative;
  display: block;
  padding: 1rem;
  border-bottom: 1px solid #E8EAEC;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .header .header__inner .header__nav-link {
    padding: 0;
    border-bottom: 0;
    transition: all 0.4s;
  }
  .header .header__inner .header__nav-link::before {
    position: absolute;
    bottom: -10px;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #0D2A52;
    opacity: 0;
    transition: all 0.4s;
  }
  .header .header__inner .header__nav-link:hover {
    margin-top: -5px;
  }
  .header .header__inner .header__nav-link:hover::before {
    opacity: 1;
  }
}
.header .header__inner .header__nav-btn--blue, .header .header__inner .header__nav-btn--orange {
  padding: 20px;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .header .header__inner .header__nav-btn--blue, .header .header__inner .header__nav-btn--orange {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .header .header__inner .header__nav-btn--blue, .header .header__inner .header__nav-btn--orange {
    margin-bottom: 0;
    padding: 12px 20px;
  }
  .header .header__inner .header__nav-btn--blue:hover, .header .header__inner .header__nav-btn--orange:hover {
    opacity: 0.6;
  }
}
.header .header__inner .header__nav.panelactive {
  opacity: 1;
  z-index: 998;
}
.header .header__inner .header__nav.panelactive .header__nav-list {
  display: block;
}

.cta {
  padding: 60px 0;
  background: url(../assets/images/cta__bg.jpg) no-repeat center/cover;
}
.cta__content {
  padding: 30px 4%;
  background: #fff;
  border-radius: 10px;
}
@media (min-width: 1025px) {
  .cta__content {
    padding: 40px 60px;
  }
}
.cta__content-title {
  margin-bottom: 20px;
  text-align: center;
  color: #0D2A52;
  font-size: 1.5rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .cta__content-title {
    margin-bottom: 30px;
  }
  .cta__content-title br.sp {
    display: none;
  }
}
.cta__flex {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .cta__flex {
    flex-direction: row;
    justify-content: space-between;
  }
}
.cta__flex .cta__title {
  display: inline-block;
  padding: 5px 15px;
  margin-bottom: 10px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  background: #0D2A52;
  border-radius: 40px;
  line-height: 1;
}
@media (min-width: 768px) {
  .cta__flex .cta__area {
    width: calc(50% - 15px);
  }
}
.cta__flex .cta__area-text {
  padding-left: 10px;
  color: #0D2A52;
  font-size: 1rem;
  line-height: 1.7;
}
.cta__flex .cta__area-text .big {
  font-size: 1rem;
  font-weight: 500;
}
.cta__flex .cta__area-text small {
  display: inline-block;
  margin-top: 10px;
  color: #333;
}
@media (min-width: 768px) {
  .cta__flex .cta__contact {
    width: calc(50% - 15px);
  }
}
.cta__flex .cta__contact-tel {
  padding-left: 10px;
  margin-bottom: 10px;
  color: #0D2A52;
  font-weight: 500;
  line-height: 1.7;
}
.cta__flex .cta__contact-tel span {
  display: inline-block;
  padding-left: 30px;
  font-weight: bold;
  background: url(../assets/images/tel-icon.png) no-repeat left/cover;
  background-size: 20px 20px;
}
.cta__flex .cta__contact-mail {
  padding-left: 10px;
  color: #0D2A52;
  transition: all 0.4s;
  text-decoration: underline;
}
.cta__flex .cta__contact-mail:hover {
  opacity: 0.4;
}

@media (min-width: 1025px) {
  .footer {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
  }
}
.footer__menu {
  padding: 30px 4%;
  background-color: #0D2A52;
}
@media (min-width: 1025px) {
  .footer__menu {
    width: 60%;
    padding-top: 60px;
  }
}
.footer__nav {
  margin-bottom: 60px;
}
@media (min-width: 1025px) {
  .footer__nav {
    display: flex;
    gap: 100px;
  }
}
.footer__nav-list {
  margin-bottom: 20px;
}
.footer__nav-link {
  padding-left: 40px;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  background: url(../assets/images/arrow.png) no-repeat left/contain;
  background-size: 17px 4px;
  transition: all 0.4s;
}
.footer__nav-link:hover {
  background-position-x: 10px;
  text-decoration: underline;
}
.footer__copy {
  text-align: center;
}
@media (min-width: 1025px) {
  .footer__copy {
    text-align: end;
  }
}
.footer__copy-text {
  font-size: 0.875rem;
  color: #fff;
}
.footer__content {
  padding: 30px 4% 200px;
  background: #F9F5ED;
}
@media (min-width: 768px) {
  .footer__content {
    padding-bottom: 30px;
  }
}
@media (min-width: 1025px) {
  .footer__content {
    width: 40%;
  }
}
.footer__logo {
  margin-bottom: 5px;
  width: 180px;
}
.footer__logo a {
  transition: all 0.4s;
}
.footer__logo a:hover {
  opacity: 0.7;
}
.footer__address {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 0.875rem;
}
.footer .link {
  width: 300px;
  margin: 0 auto;
}
@media (min-width: 1025px) {
  .footer .link {
    width: 250px;
    margin: 0;
  }
}
.footer .link a {
  transition: all 0.4s;
}
.footer .link a:hover {
  opacity: 0.6;
}

.input {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  padding: 0.625rem 0.75rem;
}

.mainVisual {
  position: relative;
  width: 100%;
  height: 100vh;
}
.mainVisual .mv-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92%;
  height: 92vh;
  overflow: hidden;
}
.mainVisual .mv-video video {
  width: 100%;
  height: 100%;
}

.message {
  padding: 90px 0;
}
@media (min-width: 1025px) {
  .message .inner {
    max-width: 800px;
  }
}
.message__title {
  margin-bottom: 30px;
  color: #0D2A52;
  font-size: 1.75rem;
}
@media (min-width: 768px) {
  .message__title {
    text-align: center;
  }
}
.message__text {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .message__text {
    margin-bottom: 30px;
    text-align: center;
  }
}
.message__name {
  text-align: end;
  font-size: 1rem;
  font-weight: 600;
}

.kodawari {
  padding: 90px 0;
}
.kodawari__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1025px) {
  .kodawari__list {
    flex-direction: row;
  }
}
@media (min-width: 1025px) {
  .kodawari__list .kodawari__item {
    width: calc(33% - 15px);
  }
}
.kodawari__list .kodawari__item-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.kodawari__list .kodawari__item-title {
  position: relative;
  z-index: 2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: -15px;
  margin-bottom: 15px;
  padding: 5px 10px;
  background: #0D2A52;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 0.07rem;
}

.top-service {
  padding: 90px 0;
  border-bottom: 1px solid #ddd;
}
.top-service .text {
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .top-service .text br.sp {
    display: none;
  }
}
.top-service__list {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .top-service__list {
    flex-direction: row;
    justify-content: space-between;
  }
}
.top-service__block {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
@media (min-width: 768px) {
  .top-service__block {
    width: calc(33% - 15px);
    border: none;
    padding: 0;
    margin: 0;
  }
}
.top-service__block-link {
  display: block;
  transition: all 0.4s;
}
.top-service__block-link:hover {
  opacity: 0.6;
}
.top-service__block-img {
  margin-bottom: 15px;
  width: 100%;
  height: 200px;
  transition: all 0.4s;
}
.top-service__block-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media (min-width: 1025px) {
  .top-service__block-img {
    height: 230px;
  }
}
.top-service__block-title {
  padding-left: 15px;
  font-size: 1.5rem;
  border-left: 5px solid #0D2A52;
}
.top-service__block:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}

.top-project {
  padding: 90px 0;
}
.top-project__list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-bottom: 60px;
  gap: 30px;
}
@media (min-width: 768px) {
  .top-project__list {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .top-project__list-item {
    width: calc(33% - 20px);
  }
}
.top-project__list-link {
  display: block;
  padding: 20px;
  transition: all 0.4s;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 20px rgba(51, 51, 51, 0.25);
}
.top-project__list-link:hover {
  background: #F9F5ED;
  box-shadow: none;
}
.top-project__list-link:hover .top-project__btn {
  color: #0D2A52;
  background: #fff;
}
.top-project__image {
  margin-bottom: 15px;
  width: 100%;
  height: 170px;
  background: #ddd;
  border-radius: 5px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .top-project__image {
    height: 120px;
  }
}
@media (min-width: 1025px) {
  .top-project__image {
    height: 150px;
  }
}
.top-project__title {
  margin-bottom: 7px;
  color: #0D2A52;
  font-size: 1.125rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .top-project__title {
    margin-bottom: 10px;
  }
}
@media (min-width: 1025px) {
  .top-project__title {
    margin-bottom: 15px;
  }
}
.top-project__btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
  padding: 10px 40px;
  color: #fff;
  border: 1px solid #0D2A52;
  border-radius: 50px;
  background: #0D2A52;
  line-height: 1;
  transition: all 0.4s;
}
.top-project .hide-area {
  display: none;
}
.project__detail-list span {
    background: #0D2A52;
    color: #fff;
    font-weight: bold;
    font-size: .75rem;
    padding: 3px 5px;
    border-radius: 3px;
    display: inline-block;
    margin-right: 10px;
}
.modaal-content-container h3 {
    color: #0D2A52;
    margin-bottom: 15px;
}
.project__detail-img {
    width: 100%;
    min-height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}
.project__detail-back {
    background-color: #F9F5ED;
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 20px;
}
p.project__detail-list {
    margin-bottom: 5px;
    font-size: .875rem;
}
.modaal-container {
    max-width: 800px;
}

.flow {
  padding: 90px 0;
}
.flow__content {
  padding: 60px 4%;
  border-radius: 10px;
  background: #F9F5ED;
}
@media (min-width: 1025px) {
  .flow__content {
    max-width: 900px;
    margin: 0 auto;
  }
}
.flow__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.flow__list .flow__item {
  display: flex;
  justify-content: space-between;
}
.flow__list .flow__item:last-child .flow__item-num::before {
  content: none;
}
.flow__list .flow__item-num {
  position: relative;
  width: 50px;
}
@media (min-width: 1025px) {
  .flow__list .flow__item-num {
    width: 70px;
  }
}
.flow__list .flow__item-num::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 60%;
  bottom: 0;
  left: 20px;
  background: #0D2A52;
}
@media (min-width: 768px) {
  .flow__list .flow__item-num::before {
    height: 40%;
  }
}
@media (min-width: 1025px) {
  .flow__list .flow__item-num::before {
    left: 26px;
    height: 30%;
  }
}
.flow__list .flow__item-num p {
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  color: #fff;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 40px;
  border-radius: 50px;
  letter-spacing: 0.1rem;
  background: #0D2A52;
}
@media (min-width: 1025px) {
  .flow__list .flow__item-num p {
    width: 55px;
    height: 55px;
    font-size: 1.75rem;
    line-height: 55px;
    letter-spacing: 0.15rem;
  }
}
.flow__list .flow__item-content {
  width: calc(100% - 50px);
}
@media (min-width: 1025px) {
  .flow__list .flow__item-content {
    width: calc(100% - 70px);
  }
}
.flow__list .flow__item-title {
  margin-bottom: 5px;
  font-size: 1.25rem;
  color: #0D2A52;
  letter-spacing: 0.1rem;
  line-height: 40px;
}
@media (min-width: 1025px) {
  .flow__list .flow__item-title {
    font-size: 1.5rem;
    line-height: 55px;
  }
}
.flow__list .flow__item-text {
  font-size: 0.875rem;
  line-height: 1.7;
}

.flow-btn {
  position: fixed;
  display: flex;
  align-items: center;
  bottom: 2%;
  right: 4%;
  padding: 10px;
  width: 92%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .flow-btn {
    bottom: 2%;
    right: 2%;
    width: 230px;
    flex-direction: column;
    text-align: center;
  }
}
.flow-btn::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 60px;
  top: -50px;
  left: -10px;
  background: url(../assets/images/flow_btn.png) no-repeat center/contain;
}
.flow-btn .flow__tel {
  width: 50%;
  padding: 0 15px 0 0;
  border-right: 1px solid #ddd;
}
@media (min-width: 768px) {
  .flow-btn .flow__tel {
    width: 100%;
    padding: 0 0 10px 0;
    margin-bottom: 10px;
    border: none;
    border-bottom: 1px solid #ddd;
  }
}
.flow-btn .flow__tel a {
  display: block;
  padding-left: 28px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #0D2A52;
  background: url(../assets/images/tel-icon.png) no-repeat left/cover;
  background-size: 25px 25px;
  letter-spacing: 0.07rem;
}
@media (min-width: 768px) {
  .flow-btn .flow__tel a {
    display: inline-block;
  }
}
.flow-btn .flow__tel p {
  color: #0D2A52;
  text-align: center;
  font-size: 0.875rem;
}
.flow-btn .flow__mail {
  width: 50%;
  padding: 0 0 0 15px;
}
@media (min-width: 768px) {
  .flow-btn .flow__mail {
    width: 100%;
  }
}
.flow-btn .flow__mail a {
  font-size: 0.9rem;
  font-weight: bold;
  color: #0D2A52;
  letter-spacing: 0.025rem;
  line-height: 25px;
}
@media (min-width: 768px) {
  .flow-btn .flow__mail a {
    font-size: 1.125rem;
    transition: all 0.4s;
  }
  .flow-btn .flow__mail a:hover {
    border-bottom: 1px solid #0D2A52;
  }
}
.flow-btn .flow__mail p {
  color: #0D2A52;
  letter-spacing: 0;
}

.profile {
  padding: 90px 0;
}
.profile .profile__list {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.profile .profile__list-item {
  display: flex;
  flex-direction: column;
  padding: 20px 10px;
  border-bottom: 1px dotted #ddd;
}
@media (min-width: 768px) {
  .profile .profile__list-item {
    flex-direction: row;
    padding: 25px 30px;
  }
}
.profile__item-tit {
  margin-bottom: 25px;
  color: #0D2A52;
  font-weight: bold;
}
@media (min-width: 768px) {
  .profile__item-tit {
    width: 250px;
    margin-bottom: 0;
  }
}
.profile__item-name {
  font-weight: 500;
}
@media (min-width: 768px) {
  .profile__item-name {
    width: calc(100% - 250px);
  }
}

.history {
  padding: 90px 0;
}

.history__list-item {
    margin-bottom: 10px;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.history__list-item span {
    display: block;
    width: 100%;
    font-weight: bold;
}

@media(min-width: 600px) {
  .history__list-item {
    display: flex;
  }
  .history__list-item span {
    width: 200px;
  }
}

.access {
  padding: 90px 0;
}

.yane {
  padding: 90px 0;
}

.bankin {
  padding: 90px 0;
}

.service__top {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .service__top {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .service__top-content {
    width: 45%;
  }
}
.service__top-title {
  margin-bottom: 15px;
  font-size: 1.25rem;
  line-height: 1.9;
}
.service__top-img {
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  height: 250px;
}
@media (min-width: 768px) {
  .service__top-img {
    width: 45%;
    height: 220px;
  }
}

.service__bottom-title {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}
.service__bottom-title span {
  display: inline-block;
  padding: 0 10px;
  color: #0D2A52;
  font-weight: 500;
  background-color: #fff;
}
.service__bottom-title::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #ddd;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}

.service__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .service__list {
    flex-wrap: wrap;
    flex-direction: row;
  }
}
.service__list-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .service__list-item {
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 1025px) {
  .service__list-item {
    width: calc(50% - 15px);
  }
}
.service__list .service__content {
  width: 100%;
}
.service__list .service__content .service__list-title {
  margin-bottom: 10px;
  padding-left: 15px;
  font-size: 1.125rem;
  border-left: 5px solid #0D2A52;
}
.service__list .service__image {
  border-radius: 5px;
  width: 100%;
  height: 200px;
}
@media (min-width: 768px) {
  .service__list .service__image {
    width: 34%;
    height: 120px;
  }
}

#rental {
    padding: 90px 0;
}
.rental__car {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
@media(min-width: 600px) {
  .rental__car {
    flex-direction: row;
  }
  .rental__car-list {
    width: 33%;
}
}
h3.rental__content-title {
  margin-top: 60px;
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.75rem;
}
h4.rental__car-title {
    margin: 0px 0 15px;
    font-size: 1.125rem;
    color: #0D2A52;
}
.rental__car-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.recruit {
  padding: 90px 0 120px;
}
.recruit__item {
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-bottom: 1px dotted #ddd;
}
@media (min-width: 1025px) {
  .recruit__item {
    flex-direction: row;
  }
}
.recruit__item:first-child {
  border-top: 1px dotted #ddd;
}
.recruit__item-tit {
  margin-bottom: 5px;
  color: #0D2A52;
  font-weight: bold;
}
@media (min-width: 1025px) {
  .recruit__item-tit {
    width: 250px;
  }
}
@media (min-width: 1025px) {
  .recruit__item-name {
    width: calc(100% - 250px);
  }
}

:root {
  color-scheme: light;
}

:root[data-theme=dark] {
  --bg: #0b1220;
}

[data-theme=dark] body {
  background: #0b1220;
  color: #e5e7eb;
}

/* 7-1 の各セクションをネームスペースで取り込み */
/* ページごとのルートクラスでスコープ */
/* 例: .page-home, .page-about は pages/ に定義 */
/*# sourceMappingURL=main.css.map */