*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

html, body {
  height: 100%;
}

body {
  font-family: Yu Gothic, Hiragino Kaku Gothic Pro, Hiragino Sans, Meiryo, Osaka, Arial, MS PGothic, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #000;
  background: #F9F9F9;
  background: linear-gradient(-90deg, rgb(240, 240, 240) 0%, rgb(240, 240, 240) 25%, rgb(245, 245, 245) 25%, rgb(245, 245, 245) 50%, rgb(242, 242, 242) 50%, rgb(242, 242, 242) 75%, rgb(237, 237, 237) 75%, rgb(237, 237, 237) 100%);
}
body.noscroll {
  overflow: hidden;
}

:root {
  --main-color: #004695;
  --sub-color: #E81C1C;
  --sub-color-light: #F85356;
  --grad-main-1: #09A6EB;
  --grad-main-2: #0033FF;
  --font-color: #002147;
}

my-header {
  display: block;
  height: 90px;
}

@media print, screen and (min-width: 1024px) {
  my-header {
    height: 110px;
  }
}
header.sp {
  visibility: visible;
  grid-area: header;
  height: 90px;
}
header.sp.small .hamb {
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  padding: 17px 15px;
  background-color: var(--main-color);
  border-radius: 0 0 0 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
header.sp.small .hamb span {
  background-color: #fff;
}
header.sp.small .hamb.active span:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}
header.sp.small .hamb.active span:nth-child(2) {
  opacity: 0;
}
header.sp.small .hamb.active span:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}
header.sp .hamb {
  position: fixed;
  top: 30px;
  right: 10px;
  width: 50px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
}
header.sp .hamb span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}
header.sp .hamb.active span:nth-child(1) {
  transform: translateY(14px) rotate(45deg);
}
header.sp .hamb.active span:nth-child(2) {
  opacity: 0;
}
header.sp .hamb.active span:nth-child(3) {
  transform: translateY(-14px) rotate(-45deg);
}
header.sp .up, header.sp .down {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
}
header.sp .up {
  height: 30px;
}
header.sp .up .left a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 10px;
}
header.sp .up .left a img {
  width: 110px;
  height: auto;
}
header.sp .up .right {
  display: none;
}
header.sp .down {
  height: 60px;
}
header.sp .down .left h1 {
  height: 100%;
}
header.sp .down .left h1 a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 10px;
}
header.sp .down .left h1 a img {
  height: 40px;
  transition: all 0.2s ease;
}
header.sp .down .right .global {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(142, 176, 214, 0.7176470588);
  width: 100%;
  height: 100vh;
  overflow: auto;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
}
header.sp .down .right .global.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
header.sp .down .right .global.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
header.sp .down .right .global .list-global {
  font-size: 18px;
  display: grid;
  margin-bottom: 20px;
  width: 80%;
}
header.sp .down .right .global .list-global > li {
  width: 100%;
  border-bottom: solid 1px rgba(238, 238, 238, 0.4509803922);
  position: relative;
}
header.sp .down .right .global .list-global > li:has(> a)::after {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #ffffff;
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
header.sp .down .right .global .list-global > li:has(> a)::before {
  content: "";
  width: 8px;
  height: 1px;
  background-color: #ffffff;
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}
header.sp .down .right .global .list-global > li > a, header.sp .down .right .global .list-global > li .head {
  display: block;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  padding: 7px 10px;
  text-decoration: none;
  width: 100%;
}
header.sp .down .right .global .list-global > li ul {
  display: grid;
  margin-bottom: 15px;
}
header.sp .down .right .global .list-global > li ul li {
  position: relative;
  margin-left: 15px;
  padding: 5px 0;
  padding-left: 10px;
  border-left: solid 1px rgba(255, 255, 255, 0.3725490196);
}
header.sp .down .right .global .list-global > li ul li::after {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #ffffff;
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
header.sp .down .right .global .list-global > li ul li::before {
  content: "";
  width: 8px;
  height: 1px;
  background-color: #ffffff;
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}
header.sp .down .right .global .list-global > li ul li a {
  font-size: 16px;
  display: block;
  text-decoration: none;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
header.sp .down .right .global .contact a {
  display: inline-block;
  padding: 15px 40px;
  background-image: linear-gradient(to right, var(--grad-main-1), var(--grad-main-2));
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  border-radius: 30px;
}
header.sp .down .right .global .link {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
header.sp .down .right .global .link a {
  display: inline-flex;
  align-items: center;
  margin: 0 10px;
  text-decoration: none;
  color: #444;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.5450980392);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  padding: 10px 20px;
  border-radius: 30px;
  border: solid 1px #eee;
  gap: 5px;
}

.sp-only {
  display: flex;
}

@media print, screen and (min-width: 1024px) {
  .sp-only {
    display: none !important;
  }
}
header.pc {
  visibility: visible;
  grid-area: header;
  height: 110px;
}
header.pc .inner {
  transition: all 0.2s ease;
}
header.pc.small .inner {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transform: translateY(-50px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
header.pc.small .inner .down {
  height: 50px;
}
header.pc.small .inner .down img {
  height: 45px;
}
header.pc .up, header.pc .down {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
}
header.pc .up {
  height: 50px;
}
header.pc .up .left a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
}
header.pc .up .left a img {
  width: 130px;
  height: auto;
}
header.pc .up .right {
  display: flex;
}
header.pc .up .right a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px;
  text-decoration: none;
  gap: 5px;
  color: #444444;
  font-size: 15px;
}
header.pc .up .right a svg {
  transform: translateY(-2px);
}
header.pc .down {
  height: 60px;
  border-top: solid 1px #ddd;
}
header.pc .down .left h1 {
  height: 100%;
}
header.pc .down .left h1 a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
}
header.pc .down .left h1 a img {
  height: 50px;
  transition: all 0.2s ease;
}
header.pc .down .right .global {
  display: flex;
  height: 100%;
}
header.pc .down .right .global .list-global {
  display: flex;
  align-items: center;
}
header.pc .down .right .global .list-global > li {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}
header.pc .down .right .global .list-global > li:hover a, header.pc .down .right .global .list-global > li:hover .head {
  color: var(--main-color);
}
header.pc .down .right .global .list-global > li:hover a::before, header.pc .down .right .global .list-global > li:hover .head::before {
  opacity: 1;
}
header.pc .down .right .global .list-global > li:hover .list-sub {
  display: block;
}
header.pc .down .right .global .list-global > li .list-sub {
  position: absolute;
  width: calc(100% + 40px);
  top: 100%;
  left: -20px;
  text-align: center;
  display: none;
  z-index: 100;
  padding: 6px 3px 0 3px;
}
header.pc .down .right .global .list-global > li .list-sub::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  top: 3px;
  left: 0;
  border-radius: 10px;
  z-index: -1;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
header.pc .down .right .global .list-global > li .list-sub li {
  padding: 3px;
}
header.pc .down .right .global .list-global > li .list-sub li a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: var(--main-color);
  font-weight: bold;
  font-size: 15px;
  white-space: nowrap;
  border-radius: 6px;
}
header.pc .down .right .global .list-global > li .list-sub li a:hover {
  background-color: var(--sub-color);
  color: #fff;
}
header.pc .down .right .global .list-global > li > a, header.pc .down .right .global .list-global > li .head {
  display: grid;
  place-items: center;
  height: 100%;
  text-decoration: none;
  color: #555;
  font-weight: bold;
  font-size: 17px;
  position: relative;
  padding: 0 20px;
  white-space: nowrap;
  cursor: pointer;
}
header.pc .down .right .global .list-global > li > a::before, header.pc .down .right .global .list-global > li .head::before {
  content: "";
  position: absolute;
  content: "";
  width: 30px;
  height: 3px;
  background-color: var(--sub-color);
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.2s ease;
}
header.pc .down .right .global .list-global > li > a.active, header.pc .down .right .global .list-global > li .head.active {
  color: var(--main-color);
}
header.pc .down .right .global .list-global > li > a.active::before, header.pc .down .right .global .list-global > li .head.active::before {
  opacity: 1;
}
header.pc .down .right .global .contact a {
  display: grid;
  place-items: center;
  height: 100%;
  padding: 0 20px;
  background-image: linear-gradient(to right, var(--grad-main-1), var(--grad-main-2));
  text-decoration: none;
  color: #fff;
}
header.pc .down .right .global .link {
  display: none;
}

main {
  grid-area: main;
}

@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
footer {
  grid-area: footer;
  overflow: hidden;
}

.break {
  display: inline;
}

@media print, screen and (min-width: 1024px) {
  .break {
    display: inline-block;
  }
}
.col2-footer {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "contact" "info";
}
.col2-footer .info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  grid-area: info;
  flex-wrap: wrap;
  padding: 40px 10px;
}
.col2-footer .info .info-wrap .region {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
}
.col2-footer .info .info-wrap .copyright {
  font-size: 12px;
  color: #555;
}
.col2-footer .info .btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.col2-footer .info .btns a {
  display: flex;
}
.col2-footer .info .btns a img {
  width: 200px;
  height: auto;
}
.col2-footer .contact {
  background-color: var(--main-color);
  color: #fff;
  padding: 40px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  grid-area: contact;
}
.col2-footer .contact .btn-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.col2-footer .contact .btn-wrap .deco {
  position: relative;
  font-size: 17px;
  margin-bottom: 10px;
}
.col2-footer .contact .btn-wrap .deco::before, .col2-footer .contact .btn-wrap .deco::after {
  content: "";
  width: 1px;
  height: 1em;
  background-color: #fff;
  position: absolute;
}
.col2-footer .contact .btn-wrap .deco::before {
  left: -20px;
  top: 4px;
  transform: rotate(-30deg);
}
.col2-footer .contact .btn-wrap .deco::after {
  right: -20px;
  top: 4px;
  transform: rotate(30deg);
}
.col2-footer .contact .btn-wrap .focus {
  margin-bottom: 5px;
}
.col2-footer .contact .btn-wrap .focus a {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--sub-color);
  color: #fff;
  padding: 15px 35px;
  text-decoration: none;
  font-size: 16px;
}
.col2-footer .contact .number-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 10px;
       column-gap: 10px;
  grid-template-areas: "tel fax" "sub sub";
}
.col2-footer .contact .number-wrap .tel span, .col2-footer .contact .number-wrap .fax span {
  display: inline-block;
  width: 2em;
  font-size: 14px;
  letter-spacing: -1px;
}
.col2-footer .contact .number-wrap .tel {
  grid-area: tel;
  font-size: 22px;
  font-weight: bold;
}
.col2-footer .contact .number-wrap .fax {
  grid-area: fax;
  font-size: 22px;
  font-weight: bold;
}
.col2-footer .contact .number-wrap .note {
  display: block;
  width: 100%;
  text-align: center;
  grid-area: sub;
  font-size: 14px;
  margin-top: 10px;
}

@media print, screen and (min-width: 1024px) {
  .col2-footer {
    grid-template-columns: 50% 50%;
    grid-template-areas: "info contact";
  }
  .col2-footer .info {
    flex-direction: row;
  }
  .col2-footer .contact {
    padding: 70px 10px;
  }
  .col2-footer .contact .btn-wrap .focus a {
    font-size: 20px;
  }
  .col2-footer .contact .number-wrap .tel, .col2-footer .contact .number-wrap .fax {
    font-size: 24px;
  }
  .col2-footer .contact .number-wrap .tel span, .col2-footer .contact .number-wrap .fax span {
    font-size: 16px;
    letter-spacing: -1px;
    margin-right: 5px;
  }
}
.area-wrap {
  position: relative;
  z-index: 1;
}
.area-wrap .back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  background-color: var(--main-color);
}
.area-wrap .back .left, .area-wrap .back .right {
  position: absolute;
  top: 0;
  width: auto;
  height: 100%;
}
.area-wrap .back .left img, .area-wrap .back .right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: overlay;
  opacity: 0.4;
}
.area-wrap .back .left {
  left: 0;
}
.area-wrap .back .right {
  display: none;
  right: 0;
}
.area-wrap .area-inner {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 30px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 20px;
  z-index: 2;
}
.area-wrap .area-inner .area-text {
  width: 100%;
  color: #fff;
  display: grid;
  place-items: center start;
}
.area-wrap .area-inner .area-text .head {
  font-size: 26px;
  font-weight: bold;
}
.area-wrap .area-inner .area-text .sub {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.8;
}
.area-wrap .area-inner .area-text .dl-area {
  display: grid;
  grid-template-columns: 1fr;
  font-size: 14px;
}
.area-wrap .area-inner .area-text .dl-area dt {
  margin-bottom: 5px;
}
.area-wrap .area-inner .area-text .dl-area dd {
  border-top: solid 1px rgba(255, 255, 255, 0.5450980392);
  padding-top: 5px;
}
.area-wrap .area-inner .area-gmap {
  text-align: center;
}
.area-wrap .area-inner .area-gmap .gmap-wrap {
  font-size: 0;
}
.area-wrap .area-inner .area-gmap .gmap-wrap iframe {
  max-width: 500px;
  width: 100%;
  height: 250px;
  border-radius: 10px;
}

@media print, screen and (min-width: 1100px) {
  .area-wrap .back .right {
    display: block;
  }
  .area-wrap .area-inner {
    flex-direction: row;
    padding: 50px;
    gap: 50px;
  }
  .area-wrap .area-inner .area-text {
    width: 50%;
  }
  .area-wrap .area-inner .area-text .dl-area {
    grid-template-columns: auto 1fr;
    gap: 20px;
  }
  .area-wrap .area-inner .area-text .dl-area dd {
    border-left: solid 1px rgba(255, 255, 255, 0.5450980392);
    border-top: none;
    padding-top: 0;
    padding-left: 20px;
  }
  .area-wrap .area-inner .area-gmap {
    width: 50%;
  }
  .area-wrap .area-inner .area-gmap .gmap-wrap iframe {
    height: 300px;
  }
}
.img-scroll {
  overflow: hidden;
  width: 600%;
  display: flex;
}
.img-scroll .list-img {
  display: flex;
  width: 300%;
  font-size: 0;
  -webkit-animation: scroll 90s linear infinite;
          animation: scroll 90s linear infinite;
}
.img-scroll .list-img li {
  width: 100%;
}
.img-scroll .list-img li img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

@media print, screen and (min-width: 768px) {
  .img-scroll {
    width: 200%;
  }
  .img-scroll .list-img {
    width: 100%;
  }
}
.mb-0 {
  margin-bottom: 0px !important;
}

.mb-1 {
  margin-bottom: 5px !important;
}

.mb-2 {
  margin-bottom: 10px !important;
}

.mb-3 {
  margin-bottom: 15px !important;
}

.mb-4 {
  margin-bottom: 20px !important;
}

.mb-5 {
  margin-bottom: 25px !important;
}

.mb-6 {
  margin-bottom: 30px !important;
}

.mb-7 {
  margin-bottom: 35px !important;
}

.mb-8 {
  margin-bottom: 40px !important;
}

.mb-9 {
  margin-bottom: 45px !important;
}

.mb-10 {
  margin-bottom: 50px !important;
}

.mb-11 {
  margin-bottom: 55px !important;
}

.mb-12 {
  margin-bottom: 60px !important;
}

.mb-13 {
  margin-bottom: 65px !important;
}

.mb-14 {
  margin-bottom: 70px !important;
}

.mb-15 {
  margin-bottom: 75px !important;
}

@media print, screen and (min-width: 1024px) {
  .mb-0 {
    margin-bottom: 0px !important;
  }
  .mb-1 {
    margin-bottom: 10px !important;
  }
  .mb-2 {
    margin-bottom: 20px !important;
  }
  .mb-3 {
    margin-bottom: 30px !important;
  }
  .mb-4 {
    margin-bottom: 40px !important;
  }
  .mb-5 {
    margin-bottom: 50px !important;
  }
  .mb-6 {
    margin-bottom: 60px !important;
  }
  .mb-7 {
    margin-bottom: 70px !important;
  }
  .mb-8 {
    margin-bottom: 80px !important;
  }
  .mb-9 {
    margin-bottom: 90px !important;
  }
  .mb-10 {
    margin-bottom: 100px !important;
  }
  .mb-11 {
    margin-bottom: 110px !important;
  }
  .mb-12 {
    margin-bottom: 120px !important;
  }
  .mb-13 {
    margin-bottom: 130px !important;
  }
  .mb-14 {
    margin-bottom: 140px !important;
  }
  .mb-15 {
    margin-bottom: 150px !important;
  }
}