@charset "UTF-8";
/* CSS Information
---------------------------------------------------------------
Site URL:https://
File name:style.css
Summary:base styles
Created:2025-08-01
--------------------------------------------------------------- */
/* Link */
/* ------------------------------------------------------------ */
a {
  color: #000;
  text-decoration: none;
}

a[href^="tel:"] {
  pointer-events: none;
  cursor: text;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

/* Animation */
/* ------------------------------------------------------------ */
a,
img {
  transition: all 0.3s ease;
}

.alpha:hover {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

/* Font */
/* ------------------------------------------------------------ */
sup {
  font-size: 66%;
  font-weight: 700;
  vertical-align: top;
}

sub {
  font-size: 66%;
  font-weight: 700;
  vertical-align: baseline;
}

/* インデント1文字分 */
/* ------------------------------------------------------------ */
.indent {
  text-indent: -1em;
  margin-left: 1em;
}

/* HR */
/* ------------------------------------------------------------ */
hr {
  max-width: 980px;
  height: 1px;
  margin: 0 auto;
  padding: 0;
  display: block;
  border: 0;
  border-top: 1px #000 solid;
}
@media screen and (max-width: 768px) {
  hr {
    margin: 0 min(5.333vw, 20px);
  }
}

/* pc_mode / sp_mode */
/* ------------------------------------------------------------ */
.pc {
  display: inherit;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: inherit;
  }
}
/* Style */
/* ------------------------------------------------------------ */
html {
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-size: min(0.833vw, 16px);
}
@media screen and (max-width: 768px) {
  html {
    font-size: 3.733vw;
  }
}
html body {
  background-color: #fff;
}
html body::-webkit-scrollbar {
  display: none;
}
html body #loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
html body header {
  position: relative;
}
html body header .inner {
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: min(5.208vw, 100px);
  padding: 0 0 0 min(1.563vw, 30px);
  margin: 0;
  position: fixed;
  top: 0;
  z-index: 100;
}
html body header .inner > h1 {
  width: min(18.542vw, 356px);
}
html body header .inner > div {
  display: flex;
  align-items: center;
}
html body header .inner > div .tel {
  width: min(12.083vw, 232px);
  margin-right: min(1.563vw, 30px);
}
html body header .inner > div .btn {
  border-left: 1px #CCC solid;
}
html body header .inner > div .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(12.24vw, 200px);
  height: min(5.208vw, 100px);
}
html body header .inner > div #nav_toggle {
  background: #2f435b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(5.208vw, 100px);
  height: min(5.208vw, 100px);
  cursor: pointer;
  position: relative;
}
html body header .inner > div #nav_toggle span {
  width: min(1.563vw, 30px);
  height: 2px;
  display: block;
  background: #fff;
  position: absolute;
  transition: transform 0.3s ease-in-out, top 0.2s ease;
}
html body header .inner > div #nav_toggle span:nth-child(1) {
  top: calc(50% - 9px);
}
html body header .inner > div #nav_toggle span:nth-child(2) {
  top: calc(50% - 1px);
}
html body header .inner > div #nav_toggle span:nth-child(3) {
  top: calc(50% + 7px);
}
html body header #global_nav {
  background: rgb(0, 0, 0);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  z-index: 50;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
html body header #global_nav ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(4.167vw, 80px);
  width: min(70.313vw, 1350px);
}
html body header #global_nav ul li {
  display: block;
  opacity: 0;
  transform: translateY(min(2.083vw, 40px));
  transition: transform 0.3s ease, opacity 0.1s ease;
}
html body header #global_nav ul li a {
  display: block;
  color: #fff;
}
html body header #global_nav ul li a span {
  color: #fff;
  font-family: "DIN Condensed";
  font-size: min(2.5rem, 40px);
  font-weight: 400;
}
html body header #global_nav ul li a span::after {
  content: attr(data-subtitle);
  display: block;
  font-size: min(1rem, 16px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
html body header.open .inner {
  background: none;
}
html body header.open .inner > h1 {
  filter: brightness(0) invert(1);
}
html body header.open .inner > div .tel {
  display: none;
}
html body header.open .inner > div .btn {
  display: none;
}
html body header.open #nav_toggle span:nth-child(1) {
  top: calc(50% - 1px) !important;
  transform: rotate(45deg);
}
html body header.open #nav_toggle span:nth-child(2) {
  width: 0;
}
html body header.open #nav_toggle span:nth-child(3) {
  top: calc(50% - 1px) !important;
  transform: rotate(-45deg);
}
html body header.open #global_nav {
  visibility: visible;
  opacity: 1;
}
html body header.open #global_nav ul li {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s ease, opacity 0.9s ease;
}
@media screen and (max-width: 768px) {
  html body header .inner {
    height: min(10.667vw, 40px);
    padding: 0 0 0 min(5.333vw, 20px);
  }
  html body header .inner h1 {
    width: min(38.133vw, 143px);
  }
  html body header .inner > div .tel {
    display: none;
  }
  html body header .inner > div .btn {
    display: none;
  }
  html body header .inner > div #nav_toggle {
    width: min(10.667vw, 40px);
    height: min(10.667vw, 40px);
  }
  html body header .inner > div #nav_toggle span {
    width: min(5.333vw, 20px);
  }
  html body header .inner > div #nav_toggle span:nth-child(1) {
    top: calc(50% - 7px);
  }
  html body header .inner > div #nav_toggle span:nth-child(2) {
    top: calc(50% - 1px);
  }
  html body header .inner > div #nav_toggle span:nth-child(3) {
    top: calc(50% + 5px);
  }
  html body header #global_nav ul {
    grid-template-columns: repeat(1, 1fr);
    gap: min(5.333vw, 20px);
    width: 80%;
  }
  html body header #global_nav ul li {
    transform: translateY(min(10.667vw, 40px));
  }
  html body header #global_nav ul li a span {
    font-size: min(1.428rem, 20px);
  }
  html body header #global_nav ul li a span::after {
    font-size: min(0.857rem, 12px);
    margin-top: min(2.667vw, 10px);
  }
  html body header.open .inner > div .tel {
    display: none;
  }
  html body header.open .inner > div .btn {
    display: none;
  }
}
html body main {
  overflow: hidden;
}
html body main#index {
  background: url("../img/bg_index.png") no-repeat center top/100% auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#index {
    background: url("../img/bg_index_sp.png") no-repeat center top/100% auto;
  }
}
html body main#index section {
  overflow: hidden;
}
html body main#index section#mainvisual .inner {
  background: url("../img/bg_mainvisual.jpg") no-repeat center top/cover;
  aspect-ratio: 80/39;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#index section#mainvisual .inner {
    aspect-ratio: 25/38;
  }
}
html body main#index section#mainvisual .inner div {
  position: absolute;
  right: 4.948vw;
  top: 31.771vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#index section#mainvisual .inner div {
    left: 0;
    right: 0;
    top: initial;
    bottom: 0;
  }
}
html body main#index section#mainvisual .inner div h2 {
  width: 32.813vw;
}
@media screen and (max-width: 768px) {
  html body main#index section#mainvisual .inner div h2 {
    width: 61.867vw;
  }
}
html body main#index section#mainvisual .inner div .comment {
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 0.26vw;
}
@media screen and (max-width: 768px) {
  html body main#index section#mainvisual .inner div .comment {
    font-size: 0.714rem;
    margin-top: 1.333vw;
  }
}
html body main#index section:not(#mainvisual) .inner {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#index section:not(#mainvisual) .inner {
    width: 100% !important;
  }
}
html body main#index section:not(#mainvisual) .inner h2 > a,
html body main#index section:not(#mainvisual) .inner h2 > div {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}
html body main#index section:not(#mainvisual) .inner h2 > a span,
html body main#index section:not(#mainvisual) .inner h2 > div span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-family: "DIN Condensed";
  font-size: min(5rem, 80px);
  font-weight: 300;
  margin: 0 min(1.042vw, 20px) 0 min(0.26vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#index section:not(#mainvisual) .inner h2 > a span,
  html body main#index section:not(#mainvisual) .inner h2 > div span {
    font-size: 2.428rem;
    margin: 0 2.667vw 0 1.333vw;
  }
}
html body main#index section:not(#mainvisual) .inner h2 > a span::after,
html body main#index section:not(#mainvisual) .inner h2 > div span::after {
  content: attr(data-subtitle);
  display: block;
  font-size: min(1.25rem, 20px);
  margin-top: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#index section:not(#mainvisual) .inner h2 > a span::after,
  html body main#index section:not(#mainvisual) .inner h2 > div span::after {
    font-size: 0.714rem;
    margin-top: 1.333vw;
  }
}
html body main#index section:not(#mainvisual) .inner h2 > a img:nth-of-type(1),
html body main#index section:not(#mainvisual) .inner h2 > div img:nth-of-type(1) {
  width: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section:not(#mainvisual) .inner h2 > a img:nth-of-type(1),
  html body main#index section:not(#mainvisual) .inner h2 > div img:nth-of-type(1) {
    width: 2.667vw;
  }
}
html body main#index section:not(#mainvisual) .inner h2 > a img:nth-of-type(2),
html body main#index section:not(#mainvisual) .inner h2 > div img:nth-of-type(2) {
  width: min(2.604vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#index section:not(#mainvisual) .inner h2 > a img:nth-of-type(2),
  html body main#index section:not(#mainvisual) .inner h2 > div img:nth-of-type(2) {
    width: 5.333vw;
  }
}
html body main#index section#about {
  aspect-ratio: 80/33;
}
@media screen and (max-width: 768px) {
  html body main#index section#about {
    aspect-ratio: 5/7;
  }
}
html body main#index section#about .inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: min(69.792vw, 1340px);
  padding: min(8.854vw, 170px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#index section#about .inner {
    flex-direction: column;
    padding: 13.333vw 9.333vw 0;
  }
}
html body main#index section#about .inner > div {
  flex-shrink: 0;
  width: min(29.688vw, 570px);
}
@media screen and (max-width: 768px) {
  html body main#index section#about .inner > div {
    width: 100%;
  }
}
html body main#index section#about .inner > div h2 {
  margin-left: calc(-1 * min(1.302vw, 25px));
}
@media screen and (max-width: 768px) {
  html body main#index section#about .inner > div h2 {
    margin-left: -4vw;
  }
}
html body main#index section#about .inner > div h2 a span {
  color: #dcc196;
}
html body main#index section#about .inner > div h2 a span::after {
  color: #fff;
}
html body main#index section#about .inner > div strong {
  display: block;
  color: #fff;
  font-size: min(1.75rem, 28px);
  line-height: 1.5;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#index section#about .inner > div strong {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#index section#about .inner > div .comment {
  color: #fff;
  font-size: min(1rem, 16px);
  line-height: 1.75;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#index section#about .inner > div .comment {
    font-size: 0.571rem;
    margin-top: 2.667vw;
  }
}
html body main#index section#about .inner > ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section#about .inner > ul {
    gap: 2.667vw;
    margin-top: 5.333vw;
  }
}
html body main#index section#about .inner > ul li {
  width: min(45.208vw, 868px);
}
@media screen and (max-width: 768px) {
  html body main#index section#about .inner > ul li {
    width: 100%;
  }
}
html body main#index section#about .inner > ul li:nth-of-type(1) {
  margin-left: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#index section#about .inner > ul li:nth-of-type(1) {
    margin-left: 0;
  }
}
html body main#index section#about .inner > ul li:nth-of-type(3) {
  margin-left: min(2.604vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#index section#about .inner > ul li:nth-of-type(3) {
    margin-left: 0;
  }
}
html body main#index section#greeting {
  aspect-ratio: 128/83;
}
@media screen and (max-width: 768px) {
  html body main#index section#greeting {
    aspect-ratio: 375/473;
  }
}
html body main#index section#greeting .inner {
  padding-top: min(8.854vw, 170px);
}
@media screen and (max-width: 768px) {
  html body main#index section#greeting .inner {
    padding-top: 13.333vw;
  }
}
html body main#index section#greeting .inner div {
  background: url("../img/bg_greeting.png") no-repeat center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(57.083vw, 1096px);
  aspect-ratio: 548/285;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#index section#greeting .inner div {
    background: url("../img/bg_greeting_sp.png") no-repeat center top/100% auto;
    width: 100%;
    aspect-ratio: 25/19;
  }
}
html body main#index section#greeting .inner div h2 a span {
  align-items: center;
  color: #606060;
}
html body main#index section#greeting .inner div h2 a span::after {
  align-items: center;
  color: #0071bc;
}
html body main#index section#greeting .inner div strong {
  display: block;
  text-align: center;
  color: #0071bc;
  font-size: min(1.75rem, 28px);
  line-height: 1.5;
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#index section#greeting .inner div strong {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#index section#greeting .inner div .comment {
  text-align: center;
  font-size: min(1rem, 16px);
  line-height: 1.75;
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#index section#greeting .inner div .comment {
    font-size: 0.571rem;
    padding: 0 9.333vw;
    margin-top: 2.667vw;
  }
}
html body main#index section#recruit {
  background: url("../img/bg_recruit.jpg") no-repeat center top/cover;
  aspect-ratio: 128/35;
  margin-top: min(0.781vw, 15px);
  position: relative;
}
html body main#index section#recruit:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2f435b;
  z-index: 0;
  transition: opacity 1s ease-in-out;
}
html body main#index section#recruit.is-active:before {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  html body main#index section#recruit {
    background: url("../img/bg_recruit_sp.jpg") no-repeat center top/cover;
    aspect-ratio: 150/149;
    margin-top: 2.667vw;
  }
}
html body main#index section#recruit .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: min(69.792vw, 1340px);
  height: 27.344vw;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  html body main#index section#recruit .inner {
    height: auto;
    padding: 13.333vw 9.333vw 0;
  }
}
html body main#index section#recruit .inner h2 {
  margin-left: calc(-1 * min(1.302vw, 25px));
}
@media screen and (max-width: 768px) {
  html body main#index section#recruit .inner h2 {
    margin-left: -4vw;
  }
}
html body main#index section#recruit .inner h2 a span {
  color: #fff;
}
html body main#index section#recruit .inner h2 a span::after {
  color: #fff;
}
html body main#index section#recruit .inner .comment {
  color: #fff;
  font-size: min(1rem, 16px);
  line-height: 1.75;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#index section#recruit .inner .comment {
    font-size: 0.571rem;
    margin-top: 2.667vw;
  }
}
html body main#index section#works_news .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
html body main#index section#works_news .inner:nth-of-type(1) {
  width: min(78.125vw, 1500px);
  padding-top: min(8.854vw, 170px);
}
@media screen and (max-width: 768px) {
  html body main#index section#works_news .inner:nth-of-type(1) {
    align-items: flex-start;
    padding: 13.333vw 9.333vw 0;
  }
}
@media screen and (max-width: 768px) {
  html body main#index section#works_news .inner:nth-of-type(1) h2 {
    margin-left: -4vw;
  }
}
html body main#index section#works_news .inner:nth-of-type(1) h2 > div {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}
html body main#index section#works_news .inner:nth-of-type(1) h2 > div span {
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
  color: #0071bc;
  margin: 0 0 0 min(0.26vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#index section#works_news .inner:nth-of-type(1) h2 > div span {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 0 2.667vw 0 1.333vw;
  }
}
html body main#index section#works_news .inner:nth-of-type(1) h2 > div span::after {
  content: attr(data-subtitle);
  display: block;
  color: #000;
  margin-top: 0;
  margin-left: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#index section#works_news .inner:nth-of-type(1) h2 > div span::after {
    margin-top: 1.333vw;
    margin-left: 0;
  }
}
html body main#index section#works_news .inner:nth-of-type(1) > .list_pc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#index section#works_news .inner:nth-of-type(1) > .list_pc {
    display: none;
  }
}
html body main#index section#works_news .inner:nth-of-type(1) > .list_pc article {
  width: 100%;
  position: relative;
}
html body main#index section#works_news .inner:nth-of-type(1) > .list_pc article a {
  display: block;
}
html body main#index section#works_news .inner:nth-of-type(1) > .list_pc article a figure {
  width: 100%;
  aspect-ratio: 125/103;
}
html body main#index section#works_news .inner:nth-of-type(1) > .list_pc article a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#index section#works_news .inner:nth-of-type(1) > .list_pc article a figure .gradation_overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.56) 100%);
  height: min(13.229vw, 254px);
}
html body main#index section#works_news .inner:nth-of-type(1) > .list_pc article a figure figcaption {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0 min(4.167vw, 80px) min(1.563vw, 30px) min(1.563vw, 30px);
}
html body main#index section#works_news .inner:nth-of-type(1) > .list_pc article a figure figcaption time {
  display: block;
  background: #fff;
  font-size: min(0.625rem, 10px);
  padding: min(0.26vw, 5px) min(0.521vw, 10px);
}
html body main#index section#works_news .inner:nth-of-type(1) > .list_pc article a figure figcaption h1 {
  display: block;
  background: #000;
  color: #fff;
  font-size: min(0.875rem, 14px);
  padding: min(0.26vw, 5px) min(0.521vw, 10px);
  margin-top: min(0.26vw, 5px);
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
html body main#index section#works_news .inner:nth-of-type(1) > .list_pc article a figure .arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(2.604vw, 50px);
}
html body main#index section#works_news .inner:nth-of-type(1) > .list_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  html body main#index section#works_news .inner:nth-of-type(1) > .list_sp {
    display: block;
    width: 100%;
    margin-top: 10.667vw;
    margin-left: -9.333vw;
    margin-right: -9.333vw;
  }
  html body main#index section#works_news .inner:nth-of-type(1) > .list_sp .swiper-container {
    width: 100vw;
    position: relative;
  }
  html body main#index section#works_news .inner:nth-of-type(1) > .list_sp .swiper-container .swiper-wrapper {
    width: 100vw;
  }
  html body main#index section#works_news .inner:nth-of-type(1) > .list_sp .swiper-container .swiper-wrapper .swiper-slide {
    padding: 0 9.333vw;
  }
  html body main#index section#works_news .inner:nth-of-type(1) > .list_sp .swiper-container .swiper-wrapper .swiper-slide article {
    width: 100%;
    position: relative;
  }
  html body main#index section#works_news .inner:nth-of-type(1) > .list_sp .swiper-container .swiper-wrapper .swiper-slide article a {
    display: block;
  }
  html body main#index section#works_news .inner:nth-of-type(1) > .list_sp .swiper-container .swiper-wrapper .swiper-slide article a figure {
    width: 100%;
    aspect-ratio: 125/103;
  }
  html body main#index section#works_news .inner:nth-of-type(1) > .list_sp .swiper-container .swiper-wrapper .swiper-slide article a figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  html body main#index section#works_news .inner:nth-of-type(1) > .list_sp .swiper-container .swiper-wrapper .swiper-slide article a figure .gradation_overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.56) 100%);
    height: 67.733vw;
  }
  html body main#index section#works_news .inner:nth-of-type(1) > .list_sp .swiper-container .swiper-wrapper .swiper-slide article a figure figcaption {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0 10.667vw 2.667vw 2.667vw;
  }
  html body main#index section#works_news .inner:nth-of-type(1) > .list_sp .swiper-container .swiper-wrapper .swiper-slide article a figure figcaption time {
    display: block;
    background: #fff;
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
  html body main#index section#works_news .inner:nth-of-type(1) > .list_sp .swiper-container .swiper-wrapper .swiper-slide article a figure figcaption h1 {
    display: block;
    background: #000;
    color: #fff;
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
    margin-top: 1.333vw;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  html body main#index section#works_news .inner:nth-of-type(1) > .list_sp .swiper-container .swiper-wrapper .swiper-slide article a figure .arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 8vw;
  }
  html body main#index section#works_news .inner:nth-of-type(1) > .list_sp .swiper-container .swiper-button-next {
    background: url("../img/btn_slider_next.svg") no-repeat center/cover;
    width: 6.667vw;
    height: 6.667vw;
    position: absolute;
    top: -1.333vw;
    right: 9.333vw;
    left: auto;
  }
  html body main#index section#works_news .inner:nth-of-type(1) > .list_sp .swiper-container .swiper-button-next::after {
    content: none;
  }
  html body main#index section#works_news .inner:nth-of-type(1) > .list_sp .swiper-container .swiper-button-prev {
    background: url("../img/btn_slider_prev.svg") no-repeat center/cover;
    width: 6.667vw;
    height: 6.667vw;
    position: absolute;
    top: -1.333vw;
    right: 18.667vw;
    left: auto;
  }
  html body main#index section#works_news .inner:nth-of-type(1) > .list_sp .swiper-container .swiper-button-prev::after {
    content: none;
  }
}
@media screen and (max-width: 768px) {
  html body main#index section#works_news .inner:nth-of-type(1) .btn_common {
    margin-left: auto;
    margin-right: auto;
  }
}
html body main#index section#works_news .inner:nth-of-type(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(52.083vw, 1000px);
  padding: min(5.208vw, 100px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#index section#works_news .inner:nth-of-type(2) {
    width: 100%;
    padding: 13.333vw 9.333vw;
  }
}
html body main#index section#works_news .inner:nth-of-type(2) article {
  width: 100%;
  border-top: 1px #CCC solid;
}
html body main#index section#works_news .inner:nth-of-type(2) article:first-of-type {
  border-top: none;
}
html body main#index section#works_news .inner:nth-of-type(2) article a {
  background: url(../img/btn_arrow.svg) no-repeat center right/min(0.573vw, 11px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: min(1.042vw, 20px) min(1.563vw, 30px) min(1.042vw, 20px) 0;
}
@media screen and (max-width: 768px) {
  html body main#index section#works_news .inner:nth-of-type(2) article a {
    background: url(../img/btn_arrow.svg) no-repeat center right/1.867vw;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2.667vw 5.333vw 2.667vw 0;
  }
}
html body main#index section#works_news .inner:nth-of-type(2) article a time {
  flex-shrink: 0;
  background: #2f435b;
  color: #fff;
  font-size: min(0.75rem, 12px);
  padding: min(0.521vw, 10px) min(1.042vw, 20px);
  margin: 0 min(1.563vw, 30px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#index section#works_news .inner:nth-of-type(2) article a time {
    font-size: 0.571rem;
    padding: 1.333vw 2.667vw;
    margin: 0 0 2.667vw 0;
  }
}
html body main#index section#works_news .inner:nth-of-type(2) article a h1 {
  width: 100%;
  font-size: min(1rem, 16px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  html body main#index section#works_news .inner:nth-of-type(2) article a h1 {
    font-size: 0.625rem;
  }
}
html body main#index section#volunteer {
  background: url("../img/bg_volunteer.jpg") no-repeat center top/cover;
  aspect-ratio: 480/149;
}
@media screen and (max-width: 768px) {
  html body main#index section#volunteer {
    background: url("../img/bg_volunteer_sp.jpg") no-repeat center top/100% auto;
    aspect-ratio: 15/22;
  }
}
html body main#index section#volunteer .inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: min(69.792vw, 1340px);
  margin-top: min(7.813vw, 150px);
}
@media screen and (max-width: 768px) {
  html body main#index section#volunteer .inner {
    padding: 13.333vw 9.333vw 0;
    margin-top: 0;
  }
}
html body main#index section#volunteer .inner h2 {
  margin-left: calc(-1 * min(1.302vw, 25px));
}
@media screen and (max-width: 768px) {
  html body main#index section#volunteer .inner h2 {
    margin-left: -4vw;
  }
}
html body main#index section#volunteer .inner h2 a {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}
html body main#index section#volunteer .inner h2 a span {
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
  color: #1851ad;
  margin: 0 min(1.042vw, 20px) 0 min(0.26vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#index section#volunteer .inner h2 a span {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 0 2.667vw 0 1.333vw;
  }
}
html body main#index section#volunteer .inner h2 a span::after {
  content: attr(data-subtitle);
  display: block;
  color: #1851ad;
  margin-top: 0;
  margin-left: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#index section#volunteer .inner h2 a span::after {
    margin-top: 1.333vw;
    margin-left: 0;
  }
}
html body main#index section#volunteer .inner .comment {
  font-size: min(1rem, 16px);
  line-height: 1.75;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#index section#volunteer .inner .comment {
    font-size: 0.571rem;
    margin-top: 2.667vw;
  }
}
html body main#index section#volunteer > ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: min(1.042vw, 20px);
}
html body main#index section#volunteer > ul li {
  width: min(45.208vw, 868px);
}
html body main#index section#volunteer > ul li:nth-of-type(1) {
  margin-left: min(5.208vw, 100px);
}
html body main#index section#volunteer > ul li:nth-of-type(3) {
  margin-left: min(2.604vw, 50px);
}
html body main#news section#title {
  background: url("../img/bg_title.png") no-repeat center/cover;
  aspect-ratio: 192/35;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#news section#title {
    background: url("../img/bg_title.png") no-repeat center/cover;
    aspect-ratio: 15/7;
  }
}
html body main#news section#title .inner {
  position: absolute;
  top: min(7.813vw, 150px);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 0 min(6.25vw, 120px);
}
@media screen and (max-width: 768px) {
  html body main#news section#title .inner {
    top: 16vw !important;
    flex-direction: column;
    padding: 0 5.333vw;
  }
}
html body main#news section#title .inner h2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  color: #fff;
  font-family: "DIN Condensed";
  font-size: min(6.875rem, 110px);
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  html body main#news section#title .inner h2 {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
    font-size: 2.428rem;
  }
}
html body main#news section#title .inner h2::after {
  content: attr(data-subtitle);
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#news section#title .inner h2::after {
    font-size: 0.857rem;
    margin-top: 0;
    margin-left: 2.667vw;
  }
}
html body main#news section#title .inner p {
  color: #fff;
  font-size: min(1.375rem, 22px);
  line-height: 1.5;
  margin: min(1.823vw, 35px) 0 0 min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main#news section#title .inner p {
    font-size: 0.714rem;
    margin: 2.667vw 0 0 0;
  }
}
html body main#news section#title .breadcrumbs {
  position: absolute;
  right: min(6.25vw, 120px);
  bottom: min(1.563vw, 30px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#news section#title .breadcrumbs {
    right: 5.333vw;
    bottom: 2.667vw;
  }
}
html body main#news section#title .breadcrumbs li {
  display: flex;
  align-items: center;
}
html body main#news section#title .breadcrumbs li::after {
  content: "";
  width: min(2.604vw, 50px);
  height: 1px;
  background: #fff;
  flex-grow: 1;
  margin: 0 min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#news section#title .breadcrumbs li::after {
    width: 6.667vw;
    margin: 0 2.667vw;
  }
}
html body main#news section#title .breadcrumbs li:last-child::after {
  content: normal;
}
html body main#news section#title .breadcrumbs li:last-child span {
  max-width: min(23.438vw, 450px);
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  html body main#news section#title .breadcrumbs li:last-child span {
    max-width: 100%;
  }
}
html body main#news section#title .breadcrumbs li span {
  color: #fff;
  font-size: min(1rem, 16px);
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#news section#title .breadcrumbs li span {
    font-size: 0.571rem;
  }
}
html body main#news section#title .breadcrumbs li span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  html body main#news section#title .breadcrumbs li span::after {
    content: none;
  }
}
html body main#news section#title .breadcrumbs li a:hover span::after {
  background: #fff;
  bottom: calc(-1 * min(0.26vw, 5px));
}
html body main#news section#img {
  background: url("../img/bg_img_news.png") no-repeat center top/cover;
  aspect-ratio: 192/41;
}
html body main#news section:not(#title) .inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: min(67.708vw, 1300px);
  padding: min(5.208vw, 100px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#news section:not(#title) .inner {
    width: 100% !important;
    padding: 13.333vw 9.333vw;
  }
}
html body main#news section:not(#title) .inner h2 > a,
html body main#news section:not(#title) .inner h2 > div {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}
html body main#news section:not(#title) .inner h2 > a span,
html body main#news section:not(#title) .inner h2 > div span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-family: "DIN Condensed";
  font-size: min(5rem, 80px);
  font-weight: 300;
  margin: 0 min(1.042vw, 20px) 0 min(0.26vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#news section:not(#title) .inner h2 > a span,
  html body main#news section:not(#title) .inner h2 > div span {
    font-size: 2.428rem;
    margin: 0 2.667vw 0 1.333vw;
  }
}
html body main#news section:not(#title) .inner h2 > a span::after,
html body main#news section:not(#title) .inner h2 > div span::after {
  content: attr(data-subtitle);
  display: block;
  font-size: min(1.25rem, 20px);
  margin-top: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#news section:not(#title) .inner h2 > a span::after,
  html body main#news section:not(#title) .inner h2 > div span::after {
    font-size: 0.714rem;
    margin-top: 1.333vw;
  }
}
html body main#news section:not(#title) .inner h2 > a img:nth-of-type(1),
html body main#news section:not(#title) .inner h2 > div img:nth-of-type(1) {
  width: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#news section:not(#title) .inner h2 > a img:nth-of-type(1),
  html body main#news section:not(#title) .inner h2 > div img:nth-of-type(1) {
    width: 2.667vw;
  }
}
html body main#news section:not(#title) .inner h2 > a img:nth-of-type(2),
html body main#news section:not(#title) .inner h2 > div img:nth-of-type(2) {
  width: min(2.604vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#news section:not(#title) .inner h2 > a img:nth-of-type(2),
  html body main#news section:not(#title) .inner h2 > div img:nth-of-type(2) {
    width: 5.333vw;
  }
}
html body main#news_detail section#title {
  background: url("../img/bg_title.png") no-repeat center/cover;
  aspect-ratio: 192/35;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#title {
    background: url("../img/bg_title.png") no-repeat center/cover;
    aspect-ratio: 15/7;
  }
}
html body main#news_detail section#title .inner {
  position: absolute;
  top: min(7.813vw, 150px);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 0 min(6.25vw, 120px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#title .inner {
    top: 16vw !important;
    flex-direction: column;
    padding: 0 5.333vw;
  }
}
html body main#news_detail section#title .inner h2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  color: #fff;
  font-family: "DIN Condensed";
  font-size: min(6.875rem, 110px);
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#title .inner h2 {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
    font-size: 2.428rem;
  }
}
html body main#news_detail section#title .inner h2::after {
  content: attr(data-subtitle);
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#title .inner h2::after {
    font-size: 0.857rem;
    margin-top: 0;
    margin-left: 2.667vw;
  }
}
html body main#news_detail section#title .inner p {
  color: #fff;
  font-size: min(1.375rem, 22px);
  line-height: 1.5;
  margin: min(1.823vw, 35px) 0 0 min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#title .inner p {
    font-size: 0.714rem;
    margin: 2.667vw 0 0 0;
  }
}
html body main#news_detail section#title .breadcrumbs {
  position: absolute;
  right: min(6.25vw, 120px);
  bottom: min(1.563vw, 30px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#title .breadcrumbs {
    right: 5.333vw;
    bottom: 2.667vw;
  }
}
html body main#news_detail section#title .breadcrumbs li {
  display: flex;
  align-items: center;
}
html body main#news_detail section#title .breadcrumbs li::after {
  content: "";
  width: min(2.604vw, 50px);
  height: 1px;
  background: #fff;
  flex-grow: 1;
  margin: 0 min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#title .breadcrumbs li::after {
    width: 6.667vw;
    margin: 0 2.667vw;
  }
}
html body main#news_detail section#title .breadcrumbs li:last-child::after {
  content: normal;
}
html body main#news_detail section#title .breadcrumbs li:last-child span {
  max-width: min(23.438vw, 450px);
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#title .breadcrumbs li:last-child span {
    max-width: 100%;
  }
}
html body main#news_detail section#title .breadcrumbs li span {
  color: #fff;
  font-size: min(1rem, 16px);
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#title .breadcrumbs li span {
    font-size: 0.571rem;
  }
}
html body main#news_detail section#title .breadcrumbs li span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#title .breadcrumbs li span::after {
    content: none;
  }
}
html body main#news_detail section#title .breadcrumbs li a:hover span::after {
  background: #fff;
  bottom: calc(-1 * min(0.26vw, 5px));
}
html body main#news_detail section#img {
  background: url("../img/bg_img_news_detail.png") no-repeat center top/cover;
  aspect-ratio: 192/41;
}
html body main#news_detail section:not(#title) .inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: min(67.708vw, 1300px);
  padding: min(5.208vw, 100px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section:not(#title) .inner {
    width: 100% !important;
    padding: 13.333vw 9.333vw;
  }
}
html body main#news_detail section:not(#title) .inner h2 > a,
html body main#news_detail section:not(#title) .inner h2 > div {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}
html body main#news_detail section:not(#title) .inner h2 > a span,
html body main#news_detail section:not(#title) .inner h2 > div span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-family: "DIN Condensed";
  font-size: min(5rem, 80px);
  font-weight: 300;
  margin: 0 min(1.042vw, 20px) 0 min(0.26vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section:not(#title) .inner h2 > a span,
  html body main#news_detail section:not(#title) .inner h2 > div span {
    font-size: 2.428rem;
    margin: 0 2.667vw 0 1.333vw;
  }
}
html body main#news_detail section:not(#title) .inner h2 > a span::after,
html body main#news_detail section:not(#title) .inner h2 > div span::after {
  content: attr(data-subtitle);
  display: block;
  font-size: min(1.25rem, 20px);
  margin-top: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section:not(#title) .inner h2 > a span::after,
  html body main#news_detail section:not(#title) .inner h2 > div span::after {
    font-size: 0.714rem;
    margin-top: 1.333vw;
  }
}
html body main#news_detail section:not(#title) .inner h2 > a img:nth-of-type(1),
html body main#news_detail section:not(#title) .inner h2 > div img:nth-of-type(1) {
  width: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section:not(#title) .inner h2 > a img:nth-of-type(1),
  html body main#news_detail section:not(#title) .inner h2 > div img:nth-of-type(1) {
    width: 2.667vw;
  }
}
html body main#news_detail section:not(#title) .inner h2 > a img:nth-of-type(2),
html body main#news_detail section:not(#title) .inner h2 > div img:nth-of-type(2) {
  width: min(2.604vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section:not(#title) .inner h2 > a img:nth-of-type(2),
  html body main#news_detail section:not(#title) .inner h2 > div img:nth-of-type(2) {
    width: 5.333vw;
  }
}
html body main#works section#title {
  background: url("../img/bg_title.png") no-repeat center/cover;
  aspect-ratio: 192/35;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#works section#title {
    background: url("../img/bg_title.png") no-repeat center/cover;
    aspect-ratio: 15/7;
  }
}
html body main#works section#title .inner {
  position: absolute;
  top: min(7.813vw, 150px);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 0 min(6.25vw, 120px);
}
@media screen and (max-width: 768px) {
  html body main#works section#title .inner {
    top: 16vw !important;
    flex-direction: column;
    padding: 0 5.333vw;
  }
}
html body main#works section#title .inner h2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  color: #fff;
  font-family: "DIN Condensed";
  font-size: min(6.875rem, 110px);
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  html body main#works section#title .inner h2 {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
    font-size: 2.428rem;
  }
}
html body main#works section#title .inner h2::after {
  content: attr(data-subtitle);
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#works section#title .inner h2::after {
    font-size: 0.857rem;
    margin-top: 0;
    margin-left: 2.667vw;
  }
}
html body main#works section#title .inner p {
  color: #fff;
  font-size: min(1.375rem, 22px);
  line-height: 1.5;
  margin: min(1.823vw, 35px) 0 0 min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main#works section#title .inner p {
    font-size: 0.714rem;
    margin: 2.667vw 0 0 0;
  }
}
html body main#works section#title .breadcrumbs {
  position: absolute;
  right: min(6.25vw, 120px);
  bottom: min(1.563vw, 30px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#works section#title .breadcrumbs {
    right: 5.333vw;
    bottom: 2.667vw;
  }
}
html body main#works section#title .breadcrumbs li {
  display: flex;
  align-items: center;
}
html body main#works section#title .breadcrumbs li::after {
  content: "";
  width: min(2.604vw, 50px);
  height: 1px;
  background: #fff;
  flex-grow: 1;
  margin: 0 min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#works section#title .breadcrumbs li::after {
    width: 6.667vw;
    margin: 0 2.667vw;
  }
}
html body main#works section#title .breadcrumbs li:last-child::after {
  content: normal;
}
html body main#works section#title .breadcrumbs li:last-child span {
  max-width: min(23.438vw, 450px);
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  html body main#works section#title .breadcrumbs li:last-child span {
    max-width: 100%;
  }
}
html body main#works section#title .breadcrumbs li span {
  color: #fff;
  font-size: min(1rem, 16px);
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#works section#title .breadcrumbs li span {
    font-size: 0.571rem;
  }
}
html body main#works section#title .breadcrumbs li span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  html body main#works section#title .breadcrumbs li span::after {
    content: none;
  }
}
html body main#works section#title .breadcrumbs li a:hover span::after {
  background: #fff;
  bottom: calc(-1 * min(0.26vw, 5px));
}
html body main#works section#img {
  background: url("../img/bg_img_works.png") no-repeat center top/cover;
  aspect-ratio: 192/41;
}
html body main#works section:not(#title) .inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: min(67.708vw, 1300px);
  padding: min(5.208vw, 100px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#works section:not(#title) .inner {
    width: 100% !important;
    padding: 13.333vw 9.333vw;
  }
}
html body main#works section:not(#title) .inner h2 > a,
html body main#works section:not(#title) .inner h2 > div {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}
html body main#works section:not(#title) .inner h2 > a span,
html body main#works section:not(#title) .inner h2 > div span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-family: "DIN Condensed";
  font-size: min(5rem, 80px);
  font-weight: 300;
  margin: 0 min(1.042vw, 20px) 0 min(0.26vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#works section:not(#title) .inner h2 > a span,
  html body main#works section:not(#title) .inner h2 > div span {
    font-size: 2.428rem;
    margin: 0 2.667vw 0 1.333vw;
  }
}
html body main#works section:not(#title) .inner h2 > a span::after,
html body main#works section:not(#title) .inner h2 > div span::after {
  content: attr(data-subtitle);
  display: block;
  font-size: min(1.25rem, 20px);
  margin-top: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#works section:not(#title) .inner h2 > a span::after,
  html body main#works section:not(#title) .inner h2 > div span::after {
    font-size: 0.714rem;
    margin-top: 1.333vw;
  }
}
html body main#works section:not(#title) .inner h2 > a img:nth-of-type(1),
html body main#works section:not(#title) .inner h2 > div img:nth-of-type(1) {
  width: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#works section:not(#title) .inner h2 > a img:nth-of-type(1),
  html body main#works section:not(#title) .inner h2 > div img:nth-of-type(1) {
    width: 2.667vw;
  }
}
html body main#works section:not(#title) .inner h2 > a img:nth-of-type(2),
html body main#works section:not(#title) .inner h2 > div img:nth-of-type(2) {
  width: min(2.604vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#works section:not(#title) .inner h2 > a img:nth-of-type(2),
  html body main#works section:not(#title) .inner h2 > div img:nth-of-type(2) {
    width: 5.333vw;
  }
}
html body main#works_detail section#title {
  background: url("../img/bg_title.png") no-repeat center/cover;
  aspect-ratio: 192/35;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#title {
    background: url("../img/bg_title.png") no-repeat center/cover;
    aspect-ratio: 15/7;
  }
}
html body main#works_detail section#title .inner {
  position: absolute;
  top: min(7.813vw, 150px);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 0 min(6.25vw, 120px);
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#title .inner {
    top: 16vw !important;
    flex-direction: column;
    padding: 0 5.333vw;
  }
}
html body main#works_detail section#title .inner h2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  color: #fff;
  font-family: "DIN Condensed";
  font-size: min(6.875rem, 110px);
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#title .inner h2 {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
    font-size: 2.428rem;
  }
}
html body main#works_detail section#title .inner h2::after {
  content: attr(data-subtitle);
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#title .inner h2::after {
    font-size: 0.857rem;
    margin-top: 0;
    margin-left: 2.667vw;
  }
}
html body main#works_detail section#title .inner p {
  color: #fff;
  font-size: min(1.375rem, 22px);
  line-height: 1.5;
  margin: min(1.823vw, 35px) 0 0 min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#title .inner p {
    font-size: 0.714rem;
    margin: 2.667vw 0 0 0;
  }
}
html body main#works_detail section#title .breadcrumbs {
  position: absolute;
  right: min(6.25vw, 120px);
  bottom: min(1.563vw, 30px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#title .breadcrumbs {
    right: 5.333vw;
    bottom: 2.667vw;
  }
}
html body main#works_detail section#title .breadcrumbs li {
  display: flex;
  align-items: center;
}
html body main#works_detail section#title .breadcrumbs li::after {
  content: "";
  width: min(2.604vw, 50px);
  height: 1px;
  background: #fff;
  flex-grow: 1;
  margin: 0 min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#title .breadcrumbs li::after {
    width: 6.667vw;
    margin: 0 2.667vw;
  }
}
html body main#works_detail section#title .breadcrumbs li:last-child::after {
  content: normal;
}
html body main#works_detail section#title .breadcrumbs li:last-child span {
  max-width: min(23.438vw, 450px);
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#title .breadcrumbs li:last-child span {
    max-width: 100%;
  }
}
html body main#works_detail section#title .breadcrumbs li span {
  color: #fff;
  font-size: min(1rem, 16px);
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#title .breadcrumbs li span {
    font-size: 0.571rem;
  }
}
html body main#works_detail section#title .breadcrumbs li span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#title .breadcrumbs li span::after {
    content: none;
  }
}
html body main#works_detail section#title .breadcrumbs li a:hover span::after {
  background: #fff;
  bottom: calc(-1 * min(0.26vw, 5px));
}
html body main#works_detail section#img {
  background: url("../img/bg_img_works_detail.png") no-repeat center top/cover;
  aspect-ratio: 192/41;
}
html body main#works_detail section:not(#title) .inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: min(67.708vw, 1300px);
  padding: min(5.208vw, 100px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#works_detail section:not(#title) .inner {
    width: 100% !important;
    padding: 13.333vw 9.333vw;
  }
}
html body main#works_detail section:not(#title) .inner h2 > a,
html body main#works_detail section:not(#title) .inner h2 > div {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}
html body main#works_detail section:not(#title) .inner h2 > a span,
html body main#works_detail section:not(#title) .inner h2 > div span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-family: "DIN Condensed";
  font-size: min(5rem, 80px);
  font-weight: 300;
  margin: 0 min(1.042vw, 20px) 0 min(0.26vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#works_detail section:not(#title) .inner h2 > a span,
  html body main#works_detail section:not(#title) .inner h2 > div span {
    font-size: 2.428rem;
    margin: 0 2.667vw 0 1.333vw;
  }
}
html body main#works_detail section:not(#title) .inner h2 > a span::after,
html body main#works_detail section:not(#title) .inner h2 > div span::after {
  content: attr(data-subtitle);
  display: block;
  font-size: min(1.25rem, 20px);
  margin-top: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#works_detail section:not(#title) .inner h2 > a span::after,
  html body main#works_detail section:not(#title) .inner h2 > div span::after {
    font-size: 0.714rem;
    margin-top: 1.333vw;
  }
}
html body main#works_detail section:not(#title) .inner h2 > a img:nth-of-type(1),
html body main#works_detail section:not(#title) .inner h2 > div img:nth-of-type(1) {
  width: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#works_detail section:not(#title) .inner h2 > a img:nth-of-type(1),
  html body main#works_detail section:not(#title) .inner h2 > div img:nth-of-type(1) {
    width: 2.667vw;
  }
}
html body main#works_detail section:not(#title) .inner h2 > a img:nth-of-type(2),
html body main#works_detail section:not(#title) .inner h2 > div img:nth-of-type(2) {
  width: min(2.604vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#works_detail section:not(#title) .inner h2 > a img:nth-of-type(2),
  html body main#works_detail section:not(#title) .inner h2 > div img:nth-of-type(2) {
    width: 5.333vw;
  }
}
html body main#business section#title {
  background: url("../img/bg_title.png") no-repeat center/cover;
  aspect-ratio: 192/35;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#business section#title {
    background: url("../img/bg_title.png") no-repeat center/cover;
    aspect-ratio: 15/7;
  }
}
html body main#business section#title .inner {
  position: absolute;
  top: min(7.813vw, 150px);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 0 min(6.25vw, 120px);
}
@media screen and (max-width: 768px) {
  html body main#business section#title .inner {
    top: 16vw !important;
    flex-direction: column;
    padding: 0 5.333vw;
  }
}
html body main#business section#title .inner h2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  color: #fff;
  font-family: "DIN Condensed";
  font-size: min(6.875rem, 110px);
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  html body main#business section#title .inner h2 {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
    font-size: 2.428rem;
  }
}
html body main#business section#title .inner h2::after {
  content: attr(data-subtitle);
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#business section#title .inner h2::after {
    font-size: 0.857rem;
    margin-top: 0;
    margin-left: 2.667vw;
  }
}
html body main#business section#title .inner p {
  color: #fff;
  font-size: min(1.375rem, 22px);
  line-height: 1.5;
  margin: min(1.823vw, 35px) 0 0 min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main#business section#title .inner p {
    font-size: 0.714rem;
    margin: 2.667vw 0 0 0;
  }
}
html body main#business section#title .breadcrumbs {
  position: absolute;
  right: min(6.25vw, 120px);
  bottom: min(1.563vw, 30px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#business section#title .breadcrumbs {
    right: 5.333vw;
    bottom: 2.667vw;
  }
}
html body main#business section#title .breadcrumbs li {
  display: flex;
  align-items: center;
}
html body main#business section#title .breadcrumbs li::after {
  content: "";
  width: min(2.604vw, 50px);
  height: 1px;
  background: #fff;
  flex-grow: 1;
  margin: 0 min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#business section#title .breadcrumbs li::after {
    width: 6.667vw;
    margin: 0 2.667vw;
  }
}
html body main#business section#title .breadcrumbs li:last-child::after {
  content: normal;
}
html body main#business section#title .breadcrumbs li:last-child span {
  max-width: min(23.438vw, 450px);
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  html body main#business section#title .breadcrumbs li:last-child span {
    max-width: 100%;
  }
}
html body main#business section#title .breadcrumbs li span {
  color: #fff;
  font-size: min(1rem, 16px);
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#business section#title .breadcrumbs li span {
    font-size: 0.571rem;
  }
}
html body main#business section#title .breadcrumbs li span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  html body main#business section#title .breadcrumbs li span::after {
    content: none;
  }
}
html body main#business section#title .breadcrumbs li a:hover span::after {
  background: #fff;
  bottom: calc(-1 * min(0.26vw, 5px));
}
html body main#business section#img {
  background: url("../img/bg_img_business.png") no-repeat center top/cover;
  aspect-ratio: 192/41;
}
html body main#business section:not(#title) .inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: min(67.708vw, 1300px);
  padding: min(5.208vw, 100px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#business section:not(#title) .inner {
    width: 100% !important;
    padding: 13.333vw 9.333vw;
  }
}
html body main#business section:not(#title) .inner h2 > a,
html body main#business section:not(#title) .inner h2 > div {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}
html body main#business section:not(#title) .inner h2 > a span,
html body main#business section:not(#title) .inner h2 > div span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-family: "DIN Condensed";
  font-size: min(5rem, 80px);
  font-weight: 300;
  margin: 0 min(1.042vw, 20px) 0 min(0.26vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#business section:not(#title) .inner h2 > a span,
  html body main#business section:not(#title) .inner h2 > div span {
    font-size: 2.428rem;
    margin: 0 2.667vw 0 1.333vw;
  }
}
html body main#business section:not(#title) .inner h2 > a span::after,
html body main#business section:not(#title) .inner h2 > div span::after {
  content: attr(data-subtitle);
  display: block;
  font-size: min(1.25rem, 20px);
  margin-top: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#business section:not(#title) .inner h2 > a span::after,
  html body main#business section:not(#title) .inner h2 > div span::after {
    font-size: 0.714rem;
    margin-top: 1.333vw;
  }
}
html body main#business section:not(#title) .inner h2 > a img:nth-of-type(1),
html body main#business section:not(#title) .inner h2 > div img:nth-of-type(1) {
  width: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#business section:not(#title) .inner h2 > a img:nth-of-type(1),
  html body main#business section:not(#title) .inner h2 > div img:nth-of-type(1) {
    width: 2.667vw;
  }
}
html body main#business section:not(#title) .inner h2 > a img:nth-of-type(2),
html body main#business section:not(#title) .inner h2 > div img:nth-of-type(2) {
  width: min(2.604vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#business section:not(#title) .inner h2 > a img:nth-of-type(2),
  html body main#business section:not(#title) .inner h2 > div img:nth-of-type(2) {
    width: 5.333vw;
  }
}
html body main#recruit section#title {
  background: url("../img/bg_title.png") no-repeat center/cover;
  aspect-ratio: 192/35;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#title {
    background: url("../img/bg_title.png") no-repeat center/cover;
    aspect-ratio: 15/7;
  }
}
html body main#recruit section#title .inner {
  position: absolute;
  top: min(7.813vw, 150px);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 0 min(6.25vw, 120px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#title .inner {
    top: 16vw !important;
    flex-direction: column;
    padding: 0 5.333vw;
  }
}
html body main#recruit section#title .inner h2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  color: #fff;
  font-family: "DIN Condensed";
  font-size: min(6.875rem, 110px);
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#title .inner h2 {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
    font-size: 2.428rem;
  }
}
html body main#recruit section#title .inner h2::after {
  content: attr(data-subtitle);
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#title .inner h2::after {
    font-size: 0.857rem;
    margin-top: 0;
    margin-left: 2.667vw;
  }
}
html body main#recruit section#title .inner p {
  color: #fff;
  font-size: min(1.375rem, 22px);
  line-height: 1.5;
  margin: min(1.823vw, 35px) 0 0 min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#title .inner p {
    font-size: 0.714rem;
    margin: 2.667vw 0 0 0;
  }
}
html body main#recruit section#title .breadcrumbs {
  position: absolute;
  right: min(6.25vw, 120px);
  bottom: min(1.563vw, 30px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#title .breadcrumbs {
    right: 5.333vw;
    bottom: 2.667vw;
  }
}
html body main#recruit section#title .breadcrumbs li {
  display: flex;
  align-items: center;
}
html body main#recruit section#title .breadcrumbs li::after {
  content: "";
  width: min(2.604vw, 50px);
  height: 1px;
  background: #fff;
  flex-grow: 1;
  margin: 0 min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#title .breadcrumbs li::after {
    width: 6.667vw;
    margin: 0 2.667vw;
  }
}
html body main#recruit section#title .breadcrumbs li:last-child::after {
  content: normal;
}
html body main#recruit section#title .breadcrumbs li:last-child span {
  max-width: min(23.438vw, 450px);
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#title .breadcrumbs li:last-child span {
    max-width: 100%;
  }
}
html body main#recruit section#title .breadcrumbs li span {
  color: #fff;
  font-size: min(1rem, 16px);
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#title .breadcrumbs li span {
    font-size: 0.571rem;
  }
}
html body main#recruit section#title .breadcrumbs li span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#title .breadcrumbs li span::after {
    content: none;
  }
}
html body main#recruit section#title .breadcrumbs li a:hover span::after {
  background: #fff;
  bottom: calc(-1 * min(0.26vw, 5px));
}
html body main#recruit section#img {
  background: url("../img/bg_img_recruit.png") no-repeat center top/cover;
  aspect-ratio: 192/41;
}
html body main#recruit section:not(#title) .inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: min(67.708vw, 1300px);
  padding: min(5.208vw, 100px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#recruit section:not(#title) .inner {
    width: 100% !important;
    padding: 13.333vw 9.333vw;
  }
}
html body main#recruit section:not(#title) .inner h2 > a,
html body main#recruit section:not(#title) .inner h2 > div {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}
html body main#recruit section:not(#title) .inner h2 > a span,
html body main#recruit section:not(#title) .inner h2 > div span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-family: "DIN Condensed";
  font-size: min(5rem, 80px);
  font-weight: 300;
  margin: 0 min(1.042vw, 20px) 0 min(0.26vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section:not(#title) .inner h2 > a span,
  html body main#recruit section:not(#title) .inner h2 > div span {
    font-size: 2.428rem;
    margin: 0 2.667vw 0 1.333vw;
  }
}
html body main#recruit section:not(#title) .inner h2 > a span::after,
html body main#recruit section:not(#title) .inner h2 > div span::after {
  content: attr(data-subtitle);
  display: block;
  font-size: min(1.25rem, 20px);
  margin-top: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section:not(#title) .inner h2 > a span::after,
  html body main#recruit section:not(#title) .inner h2 > div span::after {
    font-size: 0.714rem;
    margin-top: 1.333vw;
  }
}
html body main#recruit section:not(#title) .inner h2 > a img:nth-of-type(1),
html body main#recruit section:not(#title) .inner h2 > div img:nth-of-type(1) {
  width: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section:not(#title) .inner h2 > a img:nth-of-type(1),
  html body main#recruit section:not(#title) .inner h2 > div img:nth-of-type(1) {
    width: 2.667vw;
  }
}
html body main#recruit section:not(#title) .inner h2 > a img:nth-of-type(2),
html body main#recruit section:not(#title) .inner h2 > div img:nth-of-type(2) {
  width: min(2.604vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section:not(#title) .inner h2 > a img:nth-of-type(2),
  html body main#recruit section:not(#title) .inner h2 > div img:nth-of-type(2) {
    width: 5.333vw;
  }
}
html body main#company section#title {
  background: url("../img/bg_title.png") no-repeat center/cover;
  aspect-ratio: 192/35;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#company section#title {
    background: url("../img/bg_title.png") no-repeat center/cover;
    aspect-ratio: 15/7;
  }
}
html body main#company section#title .inner {
  position: absolute;
  top: min(7.813vw, 150px);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 0 min(6.25vw, 120px);
}
@media screen and (max-width: 768px) {
  html body main#company section#title .inner {
    top: 16vw !important;
    flex-direction: column;
    padding: 0 5.333vw;
  }
}
html body main#company section#title .inner h2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  color: #fff;
  font-family: "DIN Condensed";
  font-size: min(6.875rem, 110px);
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  html body main#company section#title .inner h2 {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
    font-size: 2.428rem;
  }
}
html body main#company section#title .inner h2::after {
  content: attr(data-subtitle);
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#company section#title .inner h2::after {
    font-size: 0.857rem;
    margin-top: 0;
    margin-left: 2.667vw;
  }
}
html body main#company section#title .inner p {
  color: #fff;
  font-size: min(1.375rem, 22px);
  line-height: 1.5;
  margin: min(1.823vw, 35px) 0 0 min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main#company section#title .inner p {
    font-size: 0.714rem;
    margin: 2.667vw 0 0 0;
  }
}
html body main#company section#title .breadcrumbs {
  position: absolute;
  right: min(6.25vw, 120px);
  bottom: min(1.563vw, 30px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#company section#title .breadcrumbs {
    right: 5.333vw;
    bottom: 2.667vw;
  }
}
html body main#company section#title .breadcrumbs li {
  display: flex;
  align-items: center;
}
html body main#company section#title .breadcrumbs li::after {
  content: "";
  width: min(2.604vw, 50px);
  height: 1px;
  background: #fff;
  flex-grow: 1;
  margin: 0 min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#company section#title .breadcrumbs li::after {
    width: 6.667vw;
    margin: 0 2.667vw;
  }
}
html body main#company section#title .breadcrumbs li:last-child::after {
  content: normal;
}
html body main#company section#title .breadcrumbs li:last-child span {
  max-width: min(23.438vw, 450px);
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  html body main#company section#title .breadcrumbs li:last-child span {
    max-width: 100%;
  }
}
html body main#company section#title .breadcrumbs li span {
  color: #fff;
  font-size: min(1rem, 16px);
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#company section#title .breadcrumbs li span {
    font-size: 0.571rem;
  }
}
html body main#company section#title .breadcrumbs li span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  html body main#company section#title .breadcrumbs li span::after {
    content: none;
  }
}
html body main#company section#title .breadcrumbs li a:hover span::after {
  background: #fff;
  bottom: calc(-1 * min(0.26vw, 5px));
}
html body main#company section#img {
  background: url("../img/bg_img_company.png") no-repeat center top/cover;
  aspect-ratio: 192/41;
}
html body main#company section:not(#title) .inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: min(67.708vw, 1300px);
  padding: min(5.208vw, 100px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#company section:not(#title) .inner {
    width: 100% !important;
    padding: 13.333vw 9.333vw;
  }
}
html body main#company section:not(#title) .inner h2 > a,
html body main#company section:not(#title) .inner h2 > div {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}
html body main#company section:not(#title) .inner h2 > a span,
html body main#company section:not(#title) .inner h2 > div span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-family: "DIN Condensed";
  font-size: min(5rem, 80px);
  font-weight: 300;
  margin: 0 min(1.042vw, 20px) 0 min(0.26vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#company section:not(#title) .inner h2 > a span,
  html body main#company section:not(#title) .inner h2 > div span {
    font-size: 2.428rem;
    margin: 0 2.667vw 0 1.333vw;
  }
}
html body main#company section:not(#title) .inner h2 > a span::after,
html body main#company section:not(#title) .inner h2 > div span::after {
  content: attr(data-subtitle);
  display: block;
  font-size: min(1.25rem, 20px);
  margin-top: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#company section:not(#title) .inner h2 > a span::after,
  html body main#company section:not(#title) .inner h2 > div span::after {
    font-size: 0.714rem;
    margin-top: 1.333vw;
  }
}
html body main#company section:not(#title) .inner h2 > a img:nth-of-type(1),
html body main#company section:not(#title) .inner h2 > div img:nth-of-type(1) {
  width: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#company section:not(#title) .inner h2 > a img:nth-of-type(1),
  html body main#company section:not(#title) .inner h2 > div img:nth-of-type(1) {
    width: 2.667vw;
  }
}
html body main#company section:not(#title) .inner h2 > a img:nth-of-type(2),
html body main#company section:not(#title) .inner h2 > div img:nth-of-type(2) {
  width: min(2.604vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#company section:not(#title) .inner h2 > a img:nth-of-type(2),
  html body main#company section:not(#title) .inner h2 > div img:nth-of-type(2) {
    width: 5.333vw;
  }
}
html body main#volunteer section#title {
  background: url("../img/bg_title.png") no-repeat center/cover;
  aspect-ratio: 192/35;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#title {
    background: url("../img/bg_title.png") no-repeat center/cover;
    aspect-ratio: 15/7;
  }
}
html body main#volunteer section#title .inner {
  position: absolute;
  top: min(7.813vw, 150px);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 0 min(6.25vw, 120px);
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#title .inner {
    top: 16vw !important;
    flex-direction: column;
    padding: 0 5.333vw;
  }
}
html body main#volunteer section#title .inner h2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  color: #fff;
  font-family: "DIN Condensed";
  font-size: min(6.875rem, 110px);
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#title .inner h2 {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
    font-size: 2.428rem;
  }
}
html body main#volunteer section#title .inner h2::after {
  content: attr(data-subtitle);
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#title .inner h2::after {
    font-size: 0.857rem;
    margin-top: 0;
    margin-left: 2.667vw;
  }
}
html body main#volunteer section#title .inner p {
  color: #fff;
  font-size: min(1.375rem, 22px);
  line-height: 1.5;
  margin: min(1.823vw, 35px) 0 0 min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#title .inner p {
    font-size: 0.714rem;
    margin: 2.667vw 0 0 0;
  }
}
html body main#volunteer section#title .breadcrumbs {
  position: absolute;
  right: min(6.25vw, 120px);
  bottom: min(1.563vw, 30px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#title .breadcrumbs {
    right: 5.333vw;
    bottom: 2.667vw;
  }
}
html body main#volunteer section#title .breadcrumbs li {
  display: flex;
  align-items: center;
}
html body main#volunteer section#title .breadcrumbs li::after {
  content: "";
  width: min(2.604vw, 50px);
  height: 1px;
  background: #fff;
  flex-grow: 1;
  margin: 0 min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#title .breadcrumbs li::after {
    width: 6.667vw;
    margin: 0 2.667vw;
  }
}
html body main#volunteer section#title .breadcrumbs li:last-child::after {
  content: normal;
}
html body main#volunteer section#title .breadcrumbs li:last-child span {
  max-width: min(23.438vw, 450px);
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#title .breadcrumbs li:last-child span {
    max-width: 100%;
  }
}
html body main#volunteer section#title .breadcrumbs li span {
  color: #fff;
  font-size: min(1rem, 16px);
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#title .breadcrumbs li span {
    font-size: 0.571rem;
  }
}
html body main#volunteer section#title .breadcrumbs li span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#title .breadcrumbs li span::after {
    content: none;
  }
}
html body main#volunteer section#title .breadcrumbs li a:hover span::after {
  background: #fff;
  bottom: calc(-1 * min(0.26vw, 5px));
}
html body main#volunteer section#img {
  background: url("../img/bg_img_volunteer.png") no-repeat center top/cover;
  aspect-ratio: 192/41;
}
html body main#volunteer section:not(#title) .inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: min(67.708vw, 1300px);
  padding: min(5.208vw, 100px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#volunteer section:not(#title) .inner {
    width: 100% !important;
    padding: 13.333vw 9.333vw;
  }
}
html body main#volunteer section:not(#title) .inner h2 > a,
html body main#volunteer section:not(#title) .inner h2 > div {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}
html body main#volunteer section:not(#title) .inner h2 > a span,
html body main#volunteer section:not(#title) .inner h2 > div span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-family: "DIN Condensed";
  font-size: min(5rem, 80px);
  font-weight: 300;
  margin: 0 min(1.042vw, 20px) 0 min(0.26vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#volunteer section:not(#title) .inner h2 > a span,
  html body main#volunteer section:not(#title) .inner h2 > div span {
    font-size: 2.428rem;
    margin: 0 2.667vw 0 1.333vw;
  }
}
html body main#volunteer section:not(#title) .inner h2 > a span::after,
html body main#volunteer section:not(#title) .inner h2 > div span::after {
  content: attr(data-subtitle);
  display: block;
  font-size: min(1.25rem, 20px);
  margin-top: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#volunteer section:not(#title) .inner h2 > a span::after,
  html body main#volunteer section:not(#title) .inner h2 > div span::after {
    font-size: 0.714rem;
    margin-top: 1.333vw;
  }
}
html body main#volunteer section:not(#title) .inner h2 > a img:nth-of-type(1),
html body main#volunteer section:not(#title) .inner h2 > div img:nth-of-type(1) {
  width: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#volunteer section:not(#title) .inner h2 > a img:nth-of-type(1),
  html body main#volunteer section:not(#title) .inner h2 > div img:nth-of-type(1) {
    width: 2.667vw;
  }
}
html body main#volunteer section:not(#title) .inner h2 > a img:nth-of-type(2),
html body main#volunteer section:not(#title) .inner h2 > div img:nth-of-type(2) {
  width: min(2.604vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#volunteer section:not(#title) .inner h2 > a img:nth-of-type(2),
  html body main#volunteer section:not(#title) .inner h2 > div img:nth-of-type(2) {
    width: 5.333vw;
  }
}
html body main#privacy section#title {
  background: url("../img/bg_title.png") no-repeat center/cover;
  aspect-ratio: 192/35;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#title {
    background: url("../img/bg_title.png") no-repeat center/cover;
    aspect-ratio: 15/7;
  }
}
html body main#privacy section#title .inner {
  position: absolute;
  top: min(7.813vw, 150px);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 0 min(6.25vw, 120px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#title .inner {
    top: 16vw !important;
    flex-direction: column;
    padding: 0 5.333vw;
  }
}
html body main#privacy section#title .inner h2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  color: #fff;
  font-family: "DIN Condensed";
  font-size: min(6.875rem, 110px);
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#title .inner h2 {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
    font-size: 2.428rem;
  }
}
html body main#privacy section#title .inner h2::after {
  content: attr(data-subtitle);
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#title .inner h2::after {
    font-size: 0.857rem;
    margin-top: 0;
    margin-left: 2.667vw;
  }
}
html body main#privacy section#title .inner p {
  color: #fff;
  font-size: min(1.375rem, 22px);
  line-height: 1.5;
  margin: min(1.823vw, 35px) 0 0 min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#title .inner p {
    font-size: 0.714rem;
    margin: 2.667vw 0 0 0;
  }
}
html body main#privacy section#title .breadcrumbs {
  position: absolute;
  right: min(6.25vw, 120px);
  bottom: min(1.563vw, 30px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#title .breadcrumbs {
    right: 5.333vw;
    bottom: 2.667vw;
  }
}
html body main#privacy section#title .breadcrumbs li {
  display: flex;
  align-items: center;
}
html body main#privacy section#title .breadcrumbs li::after {
  content: "";
  width: min(2.604vw, 50px);
  height: 1px;
  background: #fff;
  flex-grow: 1;
  margin: 0 min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#title .breadcrumbs li::after {
    width: 6.667vw;
    margin: 0 2.667vw;
  }
}
html body main#privacy section#title .breadcrumbs li:last-child::after {
  content: normal;
}
html body main#privacy section#title .breadcrumbs li:last-child span {
  max-width: min(23.438vw, 450px);
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#title .breadcrumbs li:last-child span {
    max-width: 100%;
  }
}
html body main#privacy section#title .breadcrumbs li span {
  color: #fff;
  font-size: min(1rem, 16px);
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#title .breadcrumbs li span {
    font-size: 0.571rem;
  }
}
html body main#privacy section#title .breadcrumbs li span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#title .breadcrumbs li span::after {
    content: none;
  }
}
html body main#privacy section#title .breadcrumbs li a:hover span::after {
  background: #fff;
  bottom: calc(-1 * min(0.26vw, 5px));
}
html body main#privacy section#img {
  background: url("../img/bg_img_privacy.png") no-repeat center top/cover;
  aspect-ratio: 192/41;
}
html body main#privacy section:not(#title) .inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: min(67.708vw, 1300px);
  padding: min(5.208vw, 100px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#privacy section:not(#title) .inner {
    width: 100% !important;
    padding: 13.333vw 9.333vw;
  }
}
html body main#privacy section:not(#title) .inner h2 > a,
html body main#privacy section:not(#title) .inner h2 > div {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}
html body main#privacy section:not(#title) .inner h2 > a span,
html body main#privacy section:not(#title) .inner h2 > div span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-family: "DIN Condensed";
  font-size: min(5rem, 80px);
  font-weight: 300;
  margin: 0 min(1.042vw, 20px) 0 min(0.26vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section:not(#title) .inner h2 > a span,
  html body main#privacy section:not(#title) .inner h2 > div span {
    font-size: 2.428rem;
    margin: 0 2.667vw 0 1.333vw;
  }
}
html body main#privacy section:not(#title) .inner h2 > a span::after,
html body main#privacy section:not(#title) .inner h2 > div span::after {
  content: attr(data-subtitle);
  display: block;
  font-size: min(1.25rem, 20px);
  margin-top: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section:not(#title) .inner h2 > a span::after,
  html body main#privacy section:not(#title) .inner h2 > div span::after {
    font-size: 0.714rem;
    margin-top: 1.333vw;
  }
}
html body main#privacy section:not(#title) .inner h2 > a img:nth-of-type(1),
html body main#privacy section:not(#title) .inner h2 > div img:nth-of-type(1) {
  width: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section:not(#title) .inner h2 > a img:nth-of-type(1),
  html body main#privacy section:not(#title) .inner h2 > div img:nth-of-type(1) {
    width: 2.667vw;
  }
}
html body main#privacy section:not(#title) .inner h2 > a img:nth-of-type(2),
html body main#privacy section:not(#title) .inner h2 > div img:nth-of-type(2) {
  width: min(2.604vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section:not(#title) .inner h2 > a img:nth-of-type(2),
  html body main#privacy section:not(#title) .inner h2 > div img:nth-of-type(2) {
    width: 5.333vw;
  }
}
html body main#contact section#title {
  background: url("../img/bg_title.png") no-repeat center/cover;
  aspect-ratio: 192/35;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#contact section#title {
    background: url("../img/bg_title.png") no-repeat center/cover;
    aspect-ratio: 15/7;
  }
}
html body main#contact section#title .inner {
  position: absolute;
  top: min(7.813vw, 150px);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 0 min(6.25vw, 120px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#title .inner {
    top: 16vw !important;
    flex-direction: column;
    padding: 0 5.333vw;
  }
}
html body main#contact section#title .inner h2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  color: #fff;
  font-family: "DIN Condensed";
  font-size: min(6.875rem, 110px);
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  html body main#contact section#title .inner h2 {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
    font-size: 2.428rem;
  }
}
html body main#contact section#title .inner h2::after {
  content: attr(data-subtitle);
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#title .inner h2::after {
    font-size: 0.857rem;
    margin-top: 0;
    margin-left: 2.667vw;
  }
}
html body main#contact section#title .inner p {
  color: #fff;
  font-size: min(1.375rem, 22px);
  line-height: 1.5;
  margin: min(1.823vw, 35px) 0 0 min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#title .inner p {
    font-size: 0.714rem;
    margin: 2.667vw 0 0 0;
  }
}
html body main#contact section#title .breadcrumbs {
  position: absolute;
  right: min(6.25vw, 120px);
  bottom: min(1.563vw, 30px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#contact section#title .breadcrumbs {
    right: 5.333vw;
    bottom: 2.667vw;
  }
}
html body main#contact section#title .breadcrumbs li {
  display: flex;
  align-items: center;
}
html body main#contact section#title .breadcrumbs li::after {
  content: "";
  width: min(2.604vw, 50px);
  height: 1px;
  background: #fff;
  flex-grow: 1;
  margin: 0 min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#title .breadcrumbs li::after {
    width: 6.667vw;
    margin: 0 2.667vw;
  }
}
html body main#contact section#title .breadcrumbs li:last-child::after {
  content: normal;
}
html body main#contact section#title .breadcrumbs li:last-child span {
  max-width: min(23.438vw, 450px);
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  html body main#contact section#title .breadcrumbs li:last-child span {
    max-width: 100%;
  }
}
html body main#contact section#title .breadcrumbs li span {
  color: #fff;
  font-size: min(1rem, 16px);
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#contact section#title .breadcrumbs li span {
    font-size: 0.571rem;
  }
}
html body main#contact section#title .breadcrumbs li span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  html body main#contact section#title .breadcrumbs li span::after {
    content: none;
  }
}
html body main#contact section#title .breadcrumbs li a:hover span::after {
  background: #fff;
  bottom: calc(-1 * min(0.26vw, 5px));
}
html body main#contact section#img {
  background: url("../img/bg_img_contact.png") no-repeat center top/cover;
  aspect-ratio: 192/41;
}
html body main#contact section:not(#title) .inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: min(67.708vw, 1300px);
  padding: min(5.208vw, 100px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#contact section:not(#title) .inner {
    width: 100% !important;
    padding: 13.333vw 9.333vw;
  }
}
html body main#contact section:not(#title) .inner h2 > a,
html body main#contact section:not(#title) .inner h2 > div {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}
html body main#contact section:not(#title) .inner h2 > a span,
html body main#contact section:not(#title) .inner h2 > div span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-family: "DIN Condensed";
  font-size: min(5rem, 80px);
  font-weight: 300;
  margin: 0 min(1.042vw, 20px) 0 min(0.26vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#contact section:not(#title) .inner h2 > a span,
  html body main#contact section:not(#title) .inner h2 > div span {
    font-size: 2.428rem;
    margin: 0 2.667vw 0 1.333vw;
  }
}
html body main#contact section:not(#title) .inner h2 > a span::after,
html body main#contact section:not(#title) .inner h2 > div span::after {
  content: attr(data-subtitle);
  display: block;
  font-size: min(1.25rem, 20px);
  margin-top: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#contact section:not(#title) .inner h2 > a span::after,
  html body main#contact section:not(#title) .inner h2 > div span::after {
    font-size: 0.714rem;
    margin-top: 1.333vw;
  }
}
html body main#contact section:not(#title) .inner h2 > a img:nth-of-type(1),
html body main#contact section:not(#title) .inner h2 > div img:nth-of-type(1) {
  width: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#contact section:not(#title) .inner h2 > a img:nth-of-type(1),
  html body main#contact section:not(#title) .inner h2 > div img:nth-of-type(1) {
    width: 2.667vw;
  }
}
html body main#contact section:not(#title) .inner h2 > a img:nth-of-type(2),
html body main#contact section:not(#title) .inner h2 > div img:nth-of-type(2) {
  width: min(2.604vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#contact section:not(#title) .inner h2 > a img:nth-of-type(2),
  html body main#contact section:not(#title) .inner h2 > div img:nth-of-type(2) {
    width: 5.333vw;
  }
}
html body main#complete section#title {
  background: url("../img/bg_title.png") no-repeat center/cover;
  aspect-ratio: 192/35;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#complete section#title {
    background: url("../img/bg_title.png") no-repeat center/cover;
    aspect-ratio: 15/7;
  }
}
html body main#complete section#title .inner {
  position: absolute;
  top: min(7.813vw, 150px);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 0 min(6.25vw, 120px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#title .inner {
    top: 16vw !important;
    flex-direction: column;
    padding: 0 5.333vw;
  }
}
html body main#complete section#title .inner h2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  color: #fff;
  font-family: "DIN Condensed";
  font-size: min(6.875rem, 110px);
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  html body main#complete section#title .inner h2 {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
    font-size: 2.428rem;
  }
}
html body main#complete section#title .inner h2::after {
  content: attr(data-subtitle);
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#title .inner h2::after {
    font-size: 0.857rem;
    margin-top: 0;
    margin-left: 2.667vw;
  }
}
html body main#complete section#title .inner p {
  color: #fff;
  font-size: min(1.375rem, 22px);
  line-height: 1.5;
  margin: min(1.823vw, 35px) 0 0 min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#title .inner p {
    font-size: 0.714rem;
    margin: 2.667vw 0 0 0;
  }
}
html body main#complete section#title .breadcrumbs {
  position: absolute;
  right: min(6.25vw, 120px);
  bottom: min(1.563vw, 30px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#complete section#title .breadcrumbs {
    right: 5.333vw;
    bottom: 2.667vw;
  }
}
html body main#complete section#title .breadcrumbs li {
  display: flex;
  align-items: center;
}
html body main#complete section#title .breadcrumbs li::after {
  content: "";
  width: min(2.604vw, 50px);
  height: 1px;
  background: #fff;
  flex-grow: 1;
  margin: 0 min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#title .breadcrumbs li::after {
    width: 6.667vw;
    margin: 0 2.667vw;
  }
}
html body main#complete section#title .breadcrumbs li:last-child::after {
  content: normal;
}
html body main#complete section#title .breadcrumbs li:last-child span {
  max-width: min(23.438vw, 450px);
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  html body main#complete section#title .breadcrumbs li:last-child span {
    max-width: 100%;
  }
}
html body main#complete section#title .breadcrumbs li span {
  color: #fff;
  font-size: min(1rem, 16px);
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#complete section#title .breadcrumbs li span {
    font-size: 0.571rem;
  }
}
html body main#complete section#title .breadcrumbs li span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  html body main#complete section#title .breadcrumbs li span::after {
    content: none;
  }
}
html body main#complete section#title .breadcrumbs li a:hover span::after {
  background: #fff;
  bottom: calc(-1 * min(0.26vw, 5px));
}
html body main#complete section#img {
  background: url("../img/bg_img_complete.png") no-repeat center top/cover;
  aspect-ratio: 192/41;
}
html body main#complete section:not(#title) .inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: min(67.708vw, 1300px);
  padding: min(5.208vw, 100px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#complete section:not(#title) .inner {
    width: 100% !important;
    padding: 13.333vw 9.333vw;
  }
}
html body main#complete section:not(#title) .inner h2 > a,
html body main#complete section:not(#title) .inner h2 > div {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}
html body main#complete section:not(#title) .inner h2 > a span,
html body main#complete section:not(#title) .inner h2 > div span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-family: "DIN Condensed";
  font-size: min(5rem, 80px);
  font-weight: 300;
  margin: 0 min(1.042vw, 20px) 0 min(0.26vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#complete section:not(#title) .inner h2 > a span,
  html body main#complete section:not(#title) .inner h2 > div span {
    font-size: 2.428rem;
    margin: 0 2.667vw 0 1.333vw;
  }
}
html body main#complete section:not(#title) .inner h2 > a span::after,
html body main#complete section:not(#title) .inner h2 > div span::after {
  content: attr(data-subtitle);
  display: block;
  font-size: min(1.25rem, 20px);
  margin-top: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#complete section:not(#title) .inner h2 > a span::after,
  html body main#complete section:not(#title) .inner h2 > div span::after {
    font-size: 0.714rem;
    margin-top: 1.333vw;
  }
}
html body main#complete section:not(#title) .inner h2 > a img:nth-of-type(1),
html body main#complete section:not(#title) .inner h2 > div img:nth-of-type(1) {
  width: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#complete section:not(#title) .inner h2 > a img:nth-of-type(1),
  html body main#complete section:not(#title) .inner h2 > div img:nth-of-type(1) {
    width: 2.667vw;
  }
}
html body main#complete section:not(#title) .inner h2 > a img:nth-of-type(2),
html body main#complete section:not(#title) .inner h2 > div img:nth-of-type(2) {
  width: min(2.604vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#complete section:not(#title) .inner h2 > a img:nth-of-type(2),
  html body main#complete section:not(#title) .inner h2 > div img:nth-of-type(2) {
    width: 5.333vw;
  }
}
html body main#news section#list .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  html body main#news section#list .inner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
html body main#news section#list .inner #contents {
  display: block;
  width: 75%;
}
@media screen and (max-width: 768px) {
  html body main#news section#list .inner #contents {
    width: 100%;
  }
}
html body main#news section#list .inner #contents article {
  border-top: 1px #000 dotted;
}
html body main#news section#list .inner #contents article:first-of-type {
  border: none;
  margin-top: calc(-1 * min(1.302vw, 25px));
}
html body main#news section#list .inner #contents article a {
  display: block;
  padding: min(1.042vw, 25px) 0;
}
@media screen and (max-width: 768px) {
  html body main#news section#list .inner #contents article a {
    padding: 5.333vw 0;
  }
}
html body main#news section#list .inner #contents article a div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
html body main#news section#list .inner #contents article a div time {
  display: block;
  color: #1851ad;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  html body main#news section#list .inner #contents article a div time {
    font-size: 0.714rem;
  }
}
html body main#news section#list .inner #contents article a div span {
  display: block;
  border: 1px #000 solid;
  background: #fff;
  border-radius: min(2.083vw, 40px);
  font-size: 0.625rem;
  font-weight: 400;
  padding: min(0.26vw, 5px) min(0.521vw, 10px);
  margin-left: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#news section#list .inner #contents article a div span {
    border-radius: 16vw;
    font-size: 0.571rem;
    padding: 1.333vw 2.667vw;
    margin-left: 5.333vw;
  }
}
html body main#news section#list .inner #contents article a h1 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#news section#list .inner #contents article a h1 {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#news_detail section#article .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#article .inner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
html body main#news_detail section#article .inner #contents {
  display: block;
  width: 75%;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#article .inner #contents {
    width: 100%;
  }
}
html body main#news_detail section#article .inner #contents > article {
  width: 100%;
}
html body main#news_detail section#article .inner #contents > article > .date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
html body main#news_detail section#article .inner #contents > article > .date time {
  display: block;
  color: #0071bc;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#article .inner #contents > article > .date time {
    font-size: 0.714rem;
  }
}
html body main#news_detail section#article .inner #contents > article > .date span {
  display: block;
  border: 1px #373739 solid;
  background: #fff;
  border-radius: min(2.083vw, 40px);
  font-size: 0.625rem;
  font-weight: 400;
  padding: min(0.26vw, 5px) min(0.521vw, 10px);
  margin-left: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#article .inner #contents > article > .date span {
    border-radius: 16vw;
    font-size: 0.571rem;
    padding: 1.333vw 2.667vw;
    margin-left: 5.333vw;
  }
}
html body main#news_detail section#article .inner #contents > article > h1 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: min(1.042vw, 20px);
  border-bottom: 1px #0071bc solid;
  margin: min(1.042vw, 20px) 0;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#article .inner #contents > article > h1 {
    font-size: 1rem;
    padding-bottom: 2.667vw;
    margin: 5.333vw 0;
  }
}
html body main#news_detail section#article .inner #contents > article > figure {
  width: 100%;
  aspect-ratio: 500/309;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#article .inner #contents > article > figure {
    margin: 20px 0;
  }
}
html body main#news_detail section#article .inner #contents > article > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#news_detail section#article .inner #contents > article > .comment {
  font-size: 1rem;
  line-height: 1.75;
  width: 100%;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#article .inner #contents > article > .comment {
    font-size: 0.625rem;
    margin-top: 5.333vw;
  }
}
html body main#news_detail section#article .inner #contents > article > .comment h2 {
  color: #373739;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  padding-bottom: min(0.26vw, 5px);
  border-bottom: 1px #5EACCC solid;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#article .inner #contents > article > .comment h2 {
    font-size: 0.857rem;
    padding-bottom: 1.333vw;
  }
}
html body main#news_detail section#article .inner #contents > article > .comment h3 {
  color: #373739;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  padding: min(0.26vw, 5px) min(0.521vw, 10px);
  border-left: 4px #5EACCC solid;
  background: #E4F1F6;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#article .inner #contents > article > .comment h3 {
    font-size: 0.857rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#news_detail section#article .inner #contents > article > .comment h4 {
  color: #373739;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  padding-left: min(0.521vw, 10px);
  border-left: 4px #5EACCC solid;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#article .inner #contents > article > .comment h4 {
    font-size: 0.857rem;
    padding: 0 2.667vw;
  }
}
html body main#news_detail section#article .inner #contents > article > .comment h5 {
  color: #373739;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#article .inner #contents > article > .comment h5 {
    font-size: 0.857rem;
  }
}
html body main#news_detail section#article .inner #contents > article > .comment h6 {
  color: #373739;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#article .inner #contents > article > .comment h6 {
    font-size: 0.857rem;
  }
}
html body main#news_detail section#article .inner #contents > article > .comment ul li {
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#article .inner #contents > article > .comment ul li {
    font-size: 0.714rem;
  }
}
html body main#news_detail section#article .inner #contents > article > .comment ul li::before {
  content: "・";
}
html body main#news_detail section#article .inner #contents > article > .comment ol li {
  list-style-type: decimal;
  font-size: 1rem;
  line-height: 2;
  margin-left: 2.1em;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#article .inner #contents > article > .comment ol li {
    font-size: 0.714rem;
  }
}
html body main#news_detail section#article .inner #contents > article > .comment p {
  white-space: pre-line;
  font-size: 1rem;
  line-height: 2;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#article .inner #contents > article > .comment p {
    font-size: 0.714rem;
    margin-top: 5.333vw;
  }
}
html body main#news_detail section#article .inner #contents > article > .comment a {
  text-decoration: underline;
}
html body main#news_detail section#article .inner #contents > article > .comment strong {
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#article .inner #contents > article > .comment strong {
    font-size: 0.714rem;
  }
}
html body main#news_detail section#article .inner #contents > article > .comment em {
  font-size: 1rem;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#article .inner #contents > article > .comment em {
    font-size: 0.714rem;
  }
}
html body main#news_detail section#article .inner #contents > article > .comment blockquote {
  background: #e5e5e5;
  font-size: 0.75rem;
  line-height: 2;
  padding: min(0.26vw, 5px) min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#article .inner #contents > article > .comment blockquote {
    padding: 1.333vw 2.667vw;
  }
}
html body main#news_detail section#article .inner #contents > article > .comment blockquote p {
  margin-top: 0;
}
html body main#news_detail section#article .inner #contents > article > .comment hr {
  height: 1px;
  padding: 0;
  display: block;
  border: 0;
  background: #000;
}
html body main#news_detail section#article .inner #contents > article > .comment a {
  color: #000;
  text-decoration: underline;
}
html body main#news_detail section#article .btn_common {
  margin: 0 auto min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#article .btn_common {
    margin: 0 auto min(16vw, 100px);
  }
}
html body main#works section#contents .inner > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(2.083vw, 40px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#works section#contents .inner > div {
    grid-template-columns: repeat(1, 1fr);
    gap: 5.333vw;
  }
}
html body main#works section#contents .inner > div article {
  width: 100%;
  position: relative;
}
html body main#works section#contents .inner > div article a {
  display: block;
}
html body main#works section#contents .inner > div article a figure {
  width: 100%;
  aspect-ratio: 125/103;
}
html body main#works section#contents .inner > div article a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#works section#contents .inner > div article a figure .gradation_overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.56) 100%);
  height: min(13.229vw, 254px);
}
@media screen and (max-width: 768px) {
  html body main#works section#contents .inner > div article a figure .gradation_overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.56) 100%);
    height: 67.733vw;
  }
}
html body main#works section#contents .inner > div article a figure figcaption {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0 min(4.167vw, 80px) min(1.563vw, 30px) min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#works section#contents .inner > div article a figure figcaption {
    padding: 0 10.667vw 2.667vw 2.667vw;
  }
}
html body main#works section#contents .inner > div article a figure figcaption time {
  display: block;
  background: #fff;
  font-size: min(0.625rem, 10px);
  padding: min(0.26vw, 5px) min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#works section#contents .inner > div article a figure figcaption time {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#works section#contents .inner > div article a figure figcaption h1 {
  display: block;
  background: #000;
  color: #fff;
  font-size: min(0.875rem, 14px);
  padding: min(0.26vw, 5px) min(0.521vw, 10px);
  margin-top: min(0.26vw, 5px);
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  html body main#works section#contents .inner > div article a figure figcaption h1 {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
    margin-top: 1.333vw;
  }
}
html body main#works section#contents .inner > div article a figure .arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(2.604vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#works section#contents .inner > div article a figure .arrow {
    width: 8vw;
  }
}
html body main#works_detail section#contents .inner {
  align-items: flex-start;
  width: min(52.083vw, 1000px);
}
html body main#works_detail section#contents .inner article {
  width: 100%;
}
html body main#works_detail section#contents .inner article > .swiper-container {
  width: 100%;
  overflow: hidden;
}
html body main#works_detail section#contents .inner article > .swiper-container .swiper-wrapper .swiper-slide figure {
  width: 100%;
  aspect-ratio: 4/3;
}
html body main#works_detail section#contents .inner article > .swiper-container .swiper-wrapper .swiper-slide figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#works_detail section#contents .inner article > .thumbnail-list {
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#contents .inner article > .thumbnail-list {
    margin-top: 1.333vw;
  }
}
html body main#works_detail section#contents .inner article > .thumbnail-list ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: min(1.042vw, 20px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#contents .inner article > .thumbnail-list ul {
    gap: 1.333vw;
  }
}
html body main#works_detail section#contents .inner article > .thumbnail-list ul li {
  width: 100%;
}
html body main#works_detail section#contents .inner article > .thumbnail-list ul li a {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
}
html body main#works_detail section#contents .inner article > .thumbnail-list ul li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#works_detail section#contents .inner article > time {
  display: block;
  font-size: min(1rem, 16px);
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#contents .inner article > time {
    font-size: 0.714rem;
    margin-top: 5.333vw;
  }
}
html body main#works_detail section#contents .inner article > h1 {
  display: block;
  font-size: min(1.5rem, 24px);
  font-weight: 700;
  line-height: 1.75;
  margin: min(1.042vw, 20px) 0;
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  html body main#works_detail section#contents .inner article > h1 {
    font-size: 1.285rem;
    padding-bottom: 2.667vw;
    margin: 5.333vw 0;
  }
}
html body main#works_detail section#contents .inner article > .comment {
  font-size: 1rem;
  line-height: 1.75;
  width: 100%;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#contents .inner article > .comment {
    font-size: 0.625rem;
    margin-top: 5.333vw;
  }
}
html body main#works_detail section#contents .inner article > .comment h2 {
  color: #373739;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  padding-bottom: min(0.26vw, 5px);
  border-bottom: 1px #5EACCC solid;
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#contents .inner article > .comment h2 {
    font-size: 0.857rem;
    padding-bottom: 1.333vw;
  }
}
html body main#works_detail section#contents .inner article > .comment h3 {
  color: #373739;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  padding: min(0.26vw, 5px) min(0.521vw, 10px);
  border-left: 4px #5EACCC solid;
  background: #E4F1F6;
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#contents .inner article > .comment h3 {
    font-size: 0.857rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#works_detail section#contents .inner article > .comment h4 {
  color: #373739;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  padding-left: min(0.521vw, 10px);
  border-left: 4px #5EACCC solid;
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#contents .inner article > .comment h4 {
    font-size: 0.857rem;
    padding: 0 2.667vw;
  }
}
html body main#works_detail section#contents .inner article > .comment h5 {
  color: #373739;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#contents .inner article > .comment h5 {
    font-size: 0.857rem;
  }
}
html body main#works_detail section#contents .inner article > .comment h6 {
  color: #373739;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#contents .inner article > .comment h6 {
    font-size: 0.857rem;
  }
}
html body main#works_detail section#contents .inner article > .comment img {
  width: auto !important;
  max-width: 100%;
  margin-bottom: 0.5rem;
}
html body main#works_detail section#contents .inner article > .comment img + br {
  display: none;
}
html body main#works_detail section#contents .inner article > .comment ul li {
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#contents .inner article > .comment ul li {
    font-size: 0.714rem;
  }
}
html body main#works_detail section#contents .inner article > .comment ul li::before {
  content: "・";
}
html body main#works_detail section#contents .inner article > .comment ol li {
  list-style-type: decimal;
  font-size: 1rem;
  line-height: 2;
  margin-left: 2.1em;
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#contents .inner article > .comment ol li {
    font-size: 0.714rem;
  }
}
html body main#works_detail section#contents .inner article > .comment > :first-child {
  margin-top: 0 !important;
}
html body main#works_detail section#contents .inner article > .comment p {
  white-space: pre-line;
  font-size: 1rem;
  line-height: 2;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#contents .inner article > .comment p {
    font-size: 0.714rem;
    margin-top: 5.333vw;
  }
}
html body main#works_detail section#contents .inner article > .comment a {
  text-decoration: underline;
}
html body main#works_detail section#contents .inner article > .comment strong {
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#contents .inner article > .comment strong {
    font-size: 0.714rem;
  }
}
html body main#works_detail section#contents .inner article > .comment em {
  font-size: 1rem;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#contents .inner article > .comment em {
    font-size: 0.714rem;
  }
}
html body main#works_detail section#contents .inner article > .comment blockquote {
  background: #e5e5e5;
  font-size: 0.75rem;
  line-height: 2;
  padding: min(0.26vw, 5px) min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#contents .inner article > .comment blockquote {
    padding: 1.333vw 2.667vw;
  }
}
html body main#works_detail section#contents .inner article > .comment blockquote p {
  margin-top: 0;
}
html body main#works_detail section#contents .inner article > .comment hr {
  height: 1px;
  padding: 0;
  display: block;
  border: 0;
  background: #000;
}
html body main#works_detail section#contents .inner article > .comment a {
  color: #000;
  text-decoration: underline;
}
html body main#works_detail section#contents .btn_common {
  margin: 0 auto min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#contents .btn_common {
    margin: 0 auto min(16vw, 100px);
  }
}
html body main#business section h3 {
  display: flex;
  align-items: center;
  color: #0071bc;
  font-family: "DIN Condensed";
  font-size: min(5rem, 80px);
  font-weight: 400;
  width: 100%;
  margin-bottom: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#business section h3 {
    font-size: 2.428rem;
    margin-bottom: 5.333vw;
  }
}
html body main#business section h3 span {
  display: flex;
  align-items: center;
  color: #000;
  font-size: min(1.25rem, 20px);
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#business section h3 span {
    font-size: 0.571rem;
    margin-top: 2.667vw;
  }
}
html body main#business section h3 span::before {
  content: "";
  width: min(2.083vw, 40px);
  height: 1px;
  background: #CCC;
  flex-grow: 1;
  margin: 0 min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#business section h3 span::before {
    width: 2.667vw;
    margin: 0 1.333vw;
  }
}
html body main#business section h4 {
  display: flex;
  justify-self: flex-start;
  align-items: flex-start;
  font-size: min(2.5rem, 40px);
  font-weight: 700;
  margin: 0 0 min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#business section h4 {
    font-size: 1.142rem;
    margin: 0 0 5.333vw;
  }
}
html body main#business section h4::before {
  content: "";
  display: block;
  background: #0071bc;
  width: min(0.26vw, 5px);
  height: min(1.823vw, 35px);
  margin-right: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#business section h4::before {
    width: 1.333vw;
    height: 4vw;
    margin-right: 2.667vw;
  }
}
html body main#business section strong {
  display: flex;
  align-items: center;
  background: #eceef0;
  color: #2f435b;
  font-size: min(1.75rem, 28px);
  font-weight: 700;
  width: 100%;
  padding: min(1.042vw, 20px) min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#business section strong {
    font-size: 1.142rem;
    padding: 2.667vw 2.667vw;
  }
}
html body main#business section strong img {
  width: min(1.563vw, 30px);
  margin-right: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#business section strong img {
    width: 8vw;
    margin-right: 2.667vw;
  }
}
html body main#business section#job {
  background: url("../img/bg_outline.png") repeat center top/min(2.708vw, 52px);
}
html body main#business section#job .inner {
  width: min(52.083vw, 1000px);
  padding: 0;
  height: min(15.625vw, 300px);
}
@media screen and (max-width: 768px) {
  html body main#business section#job .inner {
    padding: 0 9.333vw;
    height: 45.333vw;
  }
}
html body main#business section#job .inner em {
  display: block;
  color: #706327;
  font-size: min(2.5rem, 40px);
  font-weight: 700;
  margin-top: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#business section#job .inner em {
    font-size: 1.285rem;
    margin-top: 13.333vw;
  }
}
html body main#business section#job .inner .comment {
  font-size: min(1rem, 16px);
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#business section#job .inner .comment {
    text-align: center;
    font-size: 0.714rem;
    line-height: 1.75;
    margin-top: 2.667vw;
  }
}
html body main#business section#job .inner ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: min(2.604vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#business section#job .inner ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.667vw;
    width: 100%;
    margin-top: 8vw;
  }
}
html body main#business section#job .inner ul li {
  width: min(15.625vw, 300px);
}
@media screen and (max-width: 768px) {
  html body main#business section#job .inner ul li {
    width: 100%;
  }
}
html body main#business section#service .inner {
  align-items: flex-start;
  width: min(67.708vw, 1300px);
  margin-top: min(3.125vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#business section#service .inner {
    margin-top: 8vw;
  }
}
html body main#business section#service .inner > div {
  width: 100%;
}
html body main#business section#service .inner > div:nth-of-type(1) {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  html body main#business section#service .inner > div:nth-of-type(1) {
    display: block;
  }
}
html body main#business section#service .inner > div:nth-of-type(1) div {
  width: 100%;
}
html body main#business section#service .inner > div:nth-of-type(1) div .comment {
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#business section#service .inner > div:nth-of-type(1) div .comment {
    font-size: 0.625rem;
    margin-top: 2.667vw;
  }
}
html body main#business section#service .inner > div:nth-of-type(1) div .btn_common {
  margin: min(2.083vw, 40px) 0 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#business section#service .inner > div:nth-of-type(1) div .btn_common {
    margin: 5.333vw 0 0 auto;
  }
}
html body main#business section#service .inner > div:nth-of-type(1) > figure {
  flex-shrink: 0;
  width: min(36.458vw, 700px);
  margin: 0 0 0 min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#business section#service .inner > div:nth-of-type(1) > figure {
    width: 100%;
    margin: 5.333vw 0 0 0;
  }
}
html body main#business section#service .inner > div:nth-of-type(1) > figure a {
  display: block;
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 50/33;
  position: relative;
}
html body main#business section#service .inner > div:nth-of-type(1) > figure a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#business section#service .inner > div:nth-of-type(1) > figure a span {
  position: absolute;
  top: 0;
  right: 0;
  width: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#business section#service .inner > div:nth-of-type(1) > figure a span {
    width: 4vw;
  }
}
html body main#business section#service .inner > div:nth-of-type(2) {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#business section#service .inner > div:nth-of-type(2) {
    display: block;
    margin-top: 5.333vw;
  }
}
html body main#business section#service .inner > div:nth-of-type(2) > figure {
  flex-shrink: 0;
  width: min(29.167vw, 560px);
  aspect-ratio: 290/237;
  margin: 0 min(2.083vw, 40px) 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#business section#service .inner > div:nth-of-type(2) > figure {
    width: 100%;
    margin: 0 0 5.333vw 0;
  }
}
html body main#business section#service .inner > div:nth-of-type(2) > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#business section#service .inner > div:nth-of-type(2) > figure span {
  position: absolute;
  top: 0;
  right: 0;
  width: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#business section#service .inner > div:nth-of-type(2) > figure span {
    width: 4vw;
  }
}
html body main#business section#service .inner > div:nth-of-type(2) div {
  width: 100%;
}
html body main#business section#service .inner > div:nth-of-type(2) div em {
  font-size: min(1.5rem, 24px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  html body main#business section#service .inner > div:nth-of-type(2) div em {
    font-size: 1rem;
  }
}
html body main#business section#service .inner > div:nth-of-type(2) div .comment {
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#business section#service .inner > div:nth-of-type(2) div .comment {
    font-size: 0.714rem;
    margin-top: 2.667vw;
  }
}
html body main#business section#service .inner > div:nth-of-type(3), html body main#business section#service .inner > div:nth-of-type(4), html body main#business section#service .inner > div:nth-of-type(5) {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#business section#service .inner > div:nth-of-type(3), html body main#business section#service .inner > div:nth-of-type(4), html body main#business section#service .inner > div:nth-of-type(5) {
    display: block;
    margin-top: 10.667vw;
  }
}
html body main#business section#service .inner > div:nth-of-type(3) div, html body main#business section#service .inner > div:nth-of-type(4) div, html body main#business section#service .inner > div:nth-of-type(5) div {
  width: 100%;
}
html body main#business section#service .inner > div:nth-of-type(3) div .comment, html body main#business section#service .inner > div:nth-of-type(4) div .comment, html body main#business section#service .inner > div:nth-of-type(5) div .comment {
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#business section#service .inner > div:nth-of-type(3) div .comment, html body main#business section#service .inner > div:nth-of-type(4) div .comment, html body main#business section#service .inner > div:nth-of-type(5) div .comment {
    font-size: 0.714rem;
    margin-top: 2.667vw;
  }
}
html body main#business section#service .inner > div:nth-of-type(3) > figure, html body main#business section#service .inner > div:nth-of-type(4) > figure, html body main#business section#service .inner > div:nth-of-type(5) > figure {
  flex-shrink: 0;
  width: min(26.042vw, 500px);
  margin: 0 min(2.083vw, 40px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#business section#service .inner > div:nth-of-type(3) > figure, html body main#business section#service .inner > div:nth-of-type(4) > figure, html body main#business section#service .inner > div:nth-of-type(5) > figure {
    width: 100%;
    margin: 5.333vw 0 0 0;
  }
}
html body main#business section#service .inner > div:nth-of-type(3) > figure a, html body main#business section#service .inner > div:nth-of-type(4) > figure a, html body main#business section#service .inner > div:nth-of-type(5) > figure a {
  display: block;
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 25/14;
  position: relative;
}
html body main#business section#service .inner > div:nth-of-type(3) > figure a img, html body main#business section#service .inner > div:nth-of-type(4) > figure a img, html body main#business section#service .inner > div:nth-of-type(5) > figure a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#business section#service .inner > div:nth-of-type(3) > figure a span, html body main#business section#service .inner > div:nth-of-type(4) > figure a span, html body main#business section#service .inner > div:nth-of-type(5) > figure a span {
  position: absolute;
  top: 0;
  right: 0;
  width: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#business section#service .inner > div:nth-of-type(3) > figure a span, html body main#business section#service .inner > div:nth-of-type(4) > figure a span, html body main#business section#service .inner > div:nth-of-type(5) > figure a span {
    width: 4vw;
  }
}
html body main#business section#service .inner > div:nth-of-type(6) {
  margin-top: min(2.083vw, 40px);
  margin-bottom: min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main#business section#service .inner > div:nth-of-type(6) {
    margin-top: 5.333vw;
    margin-bottom: 10.667vw;
  }
}
html body main#business section#service .inner > div:nth-of-type(6) div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(1.042vw, 20px);
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#business section#service .inner > div:nth-of-type(6) div {
    grid-template-columns: repeat(1, 1fr);
    gap: 5.333vw;
    margin-top: 5.333vw;
  }
}
html body main#business section#service .inner > div:nth-of-type(6) div > figure {
  width: 100%;
}
html body main#business section#service .inner > div:nth-of-type(6) div > figure a {
  display: block;
  position: relative;
}
html body main#business section#service .inner > div:nth-of-type(6) div > figure a > p {
  width: 100%;
  aspect-ratio: 105/59;
  overflow: hidden;
}
html body main#business section#service .inner > div:nth-of-type(6) div > figure a > p img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#business section#service .inner > div:nth-of-type(6) div > figure a span {
  position: absolute;
  top: 0;
  right: 0;
  width: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#business section#service .inner > div:nth-of-type(6) div > figure a span {
    width: 4vw;
  }
}
html body main#business section#service .inner > div:nth-of-type(6) div > figure a figcaption {
  text-align: center;
  font-size: min(0.875rem, 14px);
  margin-top: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#business section#service .inner > div:nth-of-type(6) div > figure a figcaption {
    font-size: 0.714rem;
    margin-top: 1.333vw;
  }
}
html body main#business section#service .inner > div:nth-of-type(7) {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  html body main#business section#service .inner > div:nth-of-type(7) {
    display: block;
  }
}
html body main#business section#service .inner > div:nth-of-type(7) div {
  width: 100%;
}
html body main#business section#service .inner > div:nth-of-type(7) div em {
  font-size: min(1.5rem, 24px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  html body main#business section#service .inner > div:nth-of-type(7) div em {
    font-size: 1rem;
  }
}
html body main#business section#service .inner > div:nth-of-type(7) div .comment {
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#business section#service .inner > div:nth-of-type(7) div .comment {
    font-size: 0.714rem;
    margin-top: 2.667vw;
  }
}
html body main#business section#service .inner > div:nth-of-type(7) div .btn_common {
  margin: min(2.083vw, 40px) 0 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#business section#service .inner > div:nth-of-type(7) div .btn_common {
    margin: 5.333vw 0 0 auto;
  }
}
html body main#business section#service .inner > div:nth-of-type(7) > figure {
  flex-shrink: 0;
  width: min(36.458vw, 700px);
  aspect-ratio: 50/33;
  margin: 0 0 0 min(2.083vw, 40px);
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#business section#service .inner > div:nth-of-type(7) > figure {
    width: 100%;
    margin: 5.333vw 0 0 0;
  }
}
html body main#business section#service .inner > div:nth-of-type(7) > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#business section#service .inner > div:nth-of-type(7) > figure span {
  position: absolute;
  top: 0;
  right: 0;
  width: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#business section#service .inner > div:nth-of-type(7) > figure span {
    width: 4vw;
  }
}
html body main#business section#flow {
  background: #e6e6e6;
}
html body main#business section#flow .inner {
  align-items: flex-start;
  width: min(52.083vw, 1000px);
}
html body main#business section#flow .inner > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
html body main#business section#flow .inner > div:nth-of-type(n+2) {
  padding-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#business section#flow .inner > div:nth-of-type(n+2) {
    padding-top: 5.333vw;
  }
}
html body main#business section#flow .inner > div em {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #2f435b;
  font-size: min(1.5rem, 24px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#business section#flow .inner > div em {
    font-size: 0.714rem;
  }
}
html body main#business section#flow .inner > div em span {
  font-size: min(2.5rem, 40px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#business section#flow .inner > div em span {
    font-size: 1.285rem;
  }
}
html body main#business section#flow .inner > div .circle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(4.167vw, 80px);
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#business section#flow .inner > div .circle {
    width: 16vw;
  }
}
html body main#business section#flow .inner > div .circle::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: min(20.833vw, 400px);
  background: #2f435b;
}
@media screen and (max-width: 768px) {
  html body main#business section#flow .inner > div .circle::after {
    height: 106.667vw;
  }
}
html body main#business section#flow .inner > div .circle img {
  width: min(1.823vw, 35px);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  html body main#business section#flow .inner > div .circle img {
    width: 5.333vw;
  }
}
html body main#business section#flow .inner > div > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#business section#flow .inner > div > div {
    display: block;
  }
}
html body main#business section#flow .inner > div > div dl dt {
  color: #0071bc;
  font-size: min(2.5rem, 40px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#business section#flow .inner > div > div dl dt {
    font-size: 0.857rem;
  }
}
html body main#business section#flow .inner > div > div dl dd {
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#business section#flow .inner > div > div dl dd {
    font-size: 0.714rem;
    margin-top: 1.333vw;
  }
}
html body main#business section#flow .inner > div > div figure {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-shrink: 0;
  width: min(19.375vw, 372px);
  aspect-ratio: 93/67;
  padding: min(0.781vw, 15px);
  background: #2f435b;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#business section#flow .inner > div > div figure {
    flex-direction: column;
    width: 100%;
    padding: 1.333vw;
    margin-top: 4vw;
  }
}
html body main#business section#flow .inner > div > div figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#business section#flow .inner > div > div figure::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-100%, -50%);
  width: 0;
  height: 0;
  border-top: min(1.042vw, 20px) solid transparent;
  border-bottom: min(1.042vw, 20px) solid transparent;
  border-right: min(0.781vw, 15px) solid #2f435b;
}
@media screen and (max-width: 768px) {
  html body main#business section#flow .inner > div > div figure::before {
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);
    border-left: 4vw solid transparent;
    border-right: 4vw solid transparent;
    border-bottom: 2.667vw solid #2f435b;
    border-top: none;
  }
}
html body main#business section#qa .inner {
  align-items: flex-start;
  width: min(67.708vw, 1300px);
}
html body main#business section#qa .inner .list {
  width: 100%;
  padding: min(5.208vw, 100px) min(7.813vw, 150px);
  border: 1px #000 solid;
}
@media screen and (max-width: 768px) {
  html body main#business section#qa .inner .list {
    padding: 5.333vw 5.333vw;
  }
}
html body main#business section#qa .inner .list dl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #2f435b;
}
html body main#business section#qa .inner .list dl:nth-of-type(n+2) {
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#business section#qa .inner .list dl:nth-of-type(n+2) {
    margin-top: 5.333vw;
  }
}
html body main#business section#qa .inner .list dl dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: min(1.042vw, 20px) min(1.563vw, 30px);
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  html body main#business section#qa .inner .list dl dt {
    padding: 2.667vw 2.667vw;
  }
}
html body main#business section#qa .inner .list dl dt .title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-right: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#business section#qa .inner .list dl dt .title {
    margin-right: 2.667vw;
  }
}
html body main#business section#qa .inner .list dl dt .title .hl {
  color: #ff9150;
  font-size: min(1.5rem, 24px);
  line-height: 1.25;
  margin-right: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#business section#qa .inner .list dl dt .title .hl {
    font-size: 0.714rem;
    margin-right: 1.333vw;
  }
}
html body main#business section#qa .inner .list dl dt .title .name {
  color: #fff;
  font-size: min(1.25rem, 20px);
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  html body main#business section#qa .inner .list dl dt .title .name {
    font-size: 0.714rem;
  }
}
html body main#business section#qa .inner .list dl dt .arrow {
  display: block;
  width: min(0.521vw, 10px);
  height: min(0.521vw, 10px);
  border-width: 0 1px 1px 0;
  border-color: #fff;
  border-style: solid;
  transform: rotate(45deg);
  margin-top: calc(-1 * min(0.26vw, 5px));
}
@media screen and (max-width: 768px) {
  html body main#business section#qa .inner .list dl dt .arrow {
    width: 1.333vw;
    height: 1.333vw;
    margin-top: -1.333vw;
  }
}
html body main#business section#qa .inner .list dl dt.active .arrow {
  transform: rotate(-135deg);
}
html body main#business section#qa .inner .list dl dd {
  display: none;
  width: 100%;
  padding: 0 min(1.563vw, 30px) min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#business section#qa .inner .list dl dd {
    padding: 0 2.667vw 2.667vw;
  }
}
html body main#business section#qa .inner .list dl dd .disp {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
html body main#business section#qa .inner .list dl dd .disp .hl {
  color: #ff9150;
  font-size: min(1.5rem, 24px);
  line-height: 1.75;
  margin-right: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#business section#qa .inner .list dl dd .disp .hl {
    font-size: 0.714rem;
    margin-right: 1.333vw;
  }
}
html body main#business section#qa .inner .list dl dd .disp .comment {
  color: #fff;
  font-size: min(1rem, 16px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#business section#qa .inner .list dl dd .disp .comment {
    font-size: 0.714rem;
  }
}
html body main#recruit section h3 {
  display: flex;
  align-items: center;
  color: #0071bc;
  font-family: "DIN Condensed";
  font-size: min(5rem, 80px);
  font-weight: 400;
  width: 100%;
  margin-bottom: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section h3 {
    font-size: 2.428rem;
    margin-bottom: 5.333vw;
  }
}
html body main#recruit section h3 span {
  display: flex;
  align-items: center;
  color: #000;
  font-size: min(1.25rem, 20px);
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section h3 span {
    font-size: 0.571rem;
    margin-top: 2.667vw;
  }
}
html body main#recruit section h3 span::before {
  content: "";
  width: min(2.083vw, 40px);
  height: 1px;
  background: #CCC;
  flex-grow: 1;
  margin: 0 min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section h3 span::before {
    width: 2.667vw;
    margin: 0 1.333vw;
  }
}
html body main#recruit section h4 {
  display: flex;
  justify-self: flex-start;
  align-items: flex-start;
  font-size: min(2.5rem, 40px);
  font-weight: 700;
  margin: 0 0 min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section h4 {
    font-size: 1.142rem;
    margin: 0 0 5.333vw;
  }
}
html body main#recruit section h4::before {
  content: "";
  display: block;
  background: #0071bc;
  width: min(0.26vw, 5px);
  height: min(1.823vw, 35px);
  margin-right: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section h4::before {
    width: 1.333vw;
    height: 4vw;
    margin-right: 2.667vw;
  }
}
html body main#recruit section#img {
  aspect-ratio: auto;
  background-image: url("../img/bg_img_recruit.jpg");
}
@media screen and (max-width: 768px) {
  html body main#recruit section#img {
    background: url("../img/bg_img_recruit.jpg") no-repeat center left/cover;
  }
}
html body main#recruit section#img .inner {
  width: 100%;
  aspect-ratio: 32/11;
  padding: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#img .inner {
    aspect-ratio: 1/1;
  }
}
html body main#recruit section#img .inner > div {
  position: absolute;
  left: calc(50% - min(11.979vw, 230px));
  bottom: 0;
  background: rgba(0, 0, 0, 0.22);
  width: min(42.708vw, 820px);
  padding: min(2.604vw, 50px) min(3.646vw, 70px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#img .inner > div {
    left: 9.333vw;
    right: 9.333vw;
    width: auto;
    padding: 5.333vw 5.333vw;
  }
}
html body main#recruit section#img .inner > div h2 {
  margin-left: calc(-1 * min(1.302vw, 25px));
}
@media screen and (max-width: 768px) {
  html body main#recruit section#img .inner > div h2 {
    margin-left: -4vw;
  }
}
html body main#recruit section#img .inner > div h2 > div span {
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
  color: #fff;
  margin: 0 0 0 min(0.26vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#img .inner > div h2 > div span {
    margin: 0 0 0 1.333vw;
  }
}
html body main#recruit section#img .inner > div h2 > div span::after {
  content: attr(data-subtitle);
  display: block;
  color: #fff;
  margin-top: 0;
  margin-left: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#img .inner > div h2 > div span::after {
    margin-left: 2.667vw;
  }
}
html body main#recruit section#img .inner > div .comment {
  color: #fff;
  font-size: min(1rem, 16px);
  line-height: 1.75;
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#img .inner > div .comment {
    font-size: 0.714rem;
    margin-top: 2.667vw;
  }
}
html body main#recruit section#img .inner > div .signature {
  text-align: right;
  color: #fff;
  font-size: min(1.5rem, 24px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#img .inner > div .signature {
    font-size: 0.857rem;
  }
}
html body main#recruit section#img .inner > div .signature span {
  font-size: min(0.875rem, 14px);
  vertical-align: baseline;
  margin-right: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#img .inner > div .signature span {
    font-size: 0.571rem;
    margin-right: 2.667vw;
  }
}
html body main#recruit section#desired h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0071bc;
  color: #fff;
  font-size: min(2.5rem, 40px);
  font-weight: 700;
  padding: min(1.042vw, 20px) 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#desired h3 {
    font-size: 1.428rem;
    padding: 2.667vw 0;
  }
}
html body main#recruit section#desired .inner {
  padding: min(5.208vw, 100px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#desired .inner {
    padding: 13.333vw 9.333vw 0;
  }
}
html body main#recruit section#desired .inner > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(1.042vw, 20px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#desired .inner > div {
    grid-template-columns: repeat(1, 1fr);
    gap: 5.333vw;
  }
}
html body main#recruit section#desired .inner > div figure {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
html body main#recruit section#desired .inner > div figure > p {
  width: 100%;
  aspect-ratio: 7/4;
  overflow: hidden;
}
html body main#recruit section#desired .inner > div figure > p img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#recruit section#desired .inner > div figure figcaption {
  width: 100%;
}
html body main#recruit section#desired .inner > div figure figcaption strong {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: #2f435b;
  color: #fff;
  font-size: min(1.5rem, 24px);
  font-weight: 700;
  padding: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#desired .inner > div figure figcaption strong {
    font-size: 1rem;
    padding: 2.667vw;
  }
}
html body main#recruit section#desired .inner > div figure figcaption > p {
  font-size: min(0.875rem, 14px);
  margin-top: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#desired .inner > div figure figcaption > p {
    font-size: 0.714rem;
    margin-top: 1.333vw;
  }
}
html body main#recruit section#gallery .inner {
  padding: min(5.208vw, 100px) 0 0;
  overflow: visible;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#gallery .inner {
    padding: 13.333vw 9.333vw 0;
  }
}
html body main#recruit section#gallery .inner strong {
  width: 100%;
  font-size: min(1.5rem, 24px);
  font-weight: 700;
  margin-bottom: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#gallery .inner strong {
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 5.333vw;
  }
}
html body main#recruit section#gallery .inner .swiper-container {
  background: #333;
  width: 100vw;
  padding: min(1.042vw, 20px) 0;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#gallery .inner .swiper-container {
    padding: 2.667vw 0;
  }
}
html body main#recruit section#gallery .inner .swiper-container .swiper-wrapper .swiper-slide figure {
  width: 100%;
  aspect-ratio: 533/300;
}
html body main#recruit section#gallery .inner .swiper-container .swiper-wrapper .swiper-slide figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#recruit section#requirements .inner {
  width: min(52.083vw, 1000px);
}
html body main#recruit section#requirements .inner strong {
  display: flex;
  align-items: center;
  background: #eceef0;
  color: #2f435b;
  font-size: min(1.75rem, 28px);
  font-weight: 700;
  width: 100%;
  padding: min(1.042vw, 20px) min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#requirements .inner strong {
    font-size: 1.142rem;
    padding: 2.667vw 2.667vw;
  }
}
html body main#recruit section#requirements .inner strong img {
  width: min(1.563vw, 30px);
  margin-right: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#requirements .inner strong img {
    width: 8vw;
    margin-right: 2.667vw;
  }
}
html body main#recruit section#requirements .inner dl {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  border-top: 1px solid #eceef0;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#requirements .inner dl {
    display: block;
  }
}
html body main#recruit section#requirements .inner dl:first-of-type {
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#requirements .inner dl:first-of-type {
    margin-top: 5.333vw;
  }
}
html body main#recruit section#requirements .inner dl:last-of-type {
  border-bottom: 1px solid #eceef0;
}
html body main#recruit section#requirements .inner dl:last-of-type dt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: #eceef0;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#requirements .inner dl:last-of-type dt::after {
    content: none;
  }
}
html body main#recruit section#requirements .inner dl dt {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: min(1.25rem, 20px);
  line-height: 1.75;
  white-space: nowrap;
  width: min(11.979vw, 230px);
  padding: min(1.042vw, 20px) 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#requirements .inner dl dt {
    align-items: flex-start;
    font-size: 0.714rem;
    font-weight: 700;
    width: 21.333vw;
    padding: 5.333vw 0 0;
  }
}
html body main#recruit section#requirements .inner dl dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 100%;
  height: 3px;
  background: #eceef0;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#requirements .inner dl dt::before {
    content: none;
  }
}
html body main#recruit section#requirements .inner dl dd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-size: min(1.25rem, 20px);
  line-height: 1.75;
  width: 100%;
  padding: min(1.042vw, 20px) 0 min(1.042vw, 20px) min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#requirements .inner dl dd {
    font-size: 0.714rem;
    padding: 0 0 5.333vw;
  }
}
html body main#recruit section#requirements .inner .btn_common {
  width: min(18.75vw, 360px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#requirements .inner .btn_common {
    width: 100%;
  }
}
html body main#recruit section#requirements .inner .btn_common a {
  justify-content: center;
  aspect-ratio: 6/1;
}
html body main#recruit section#qa .inner {
  align-items: flex-start;
  width: min(67.708vw, 1300px);
}
html body main#recruit section#qa .inner .list {
  width: 100%;
  padding: min(5.208vw, 100px) min(7.813vw, 150px);
  border: 1px #000 solid;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#qa .inner .list {
    padding: 5.333vw 5.333vw;
  }
}
html body main#recruit section#qa .inner .list dl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #2f435b;
}
html body main#recruit section#qa .inner .list dl:nth-of-type(n+2) {
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#qa .inner .list dl:nth-of-type(n+2) {
    margin-top: 5.333vw;
  }
}
html body main#recruit section#qa .inner .list dl dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: min(1.042vw, 20px) min(1.563vw, 30px);
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#qa .inner .list dl dt {
    padding: 2.667vw 2.667vw;
  }
}
html body main#recruit section#qa .inner .list dl dt .title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-right: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#qa .inner .list dl dt .title {
    margin-right: 2.667vw;
  }
}
html body main#recruit section#qa .inner .list dl dt .title .hl {
  color: #ff9150;
  font-size: min(1.5rem, 24px);
  line-height: 1.25;
  margin-right: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#qa .inner .list dl dt .title .hl {
    font-size: 0.714rem;
    margin-right: 1.333vw;
  }
}
html body main#recruit section#qa .inner .list dl dt .title .name {
  color: #fff;
  font-size: min(1.25rem, 20px);
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#qa .inner .list dl dt .title .name {
    font-size: 0.714rem;
  }
}
html body main#recruit section#qa .inner .list dl dt .arrow {
  display: block;
  width: min(0.521vw, 10px);
  height: min(0.521vw, 10px);
  border-width: 0 1px 1px 0;
  border-color: #fff;
  border-style: solid;
  transform: rotate(45deg);
  margin-top: calc(-1 * min(0.26vw, 5px));
}
@media screen and (max-width: 768px) {
  html body main#recruit section#qa .inner .list dl dt .arrow {
    width: 1.333vw;
    height: 1.333vw;
    margin-top: -1.333vw;
  }
}
html body main#recruit section#qa .inner .list dl dt.active .arrow {
  transform: rotate(-135deg);
}
html body main#recruit section#qa .inner .list dl dd {
  display: none;
  width: 100%;
  padding: 0 min(1.563vw, 30px) min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#qa .inner .list dl dd {
    padding: 0 2.667vw 2.667vw;
  }
}
html body main#recruit section#qa .inner .list dl dd .disp {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
html body main#recruit section#qa .inner .list dl dd .disp .hl {
  color: #ff9150;
  font-size: min(1.5rem, 24px);
  line-height: 1.75;
  margin-right: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#qa .inner .list dl dd .disp .hl {
    font-size: 0.714rem;
    margin-right: 1.333vw;
  }
}
html body main#recruit section#qa .inner .list dl dd .disp .comment {
  color: #fff;
  font-size: min(1rem, 16px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#qa .inner .list dl dd .disp .comment {
    font-size: 0.714rem;
  }
}
html body main#company section h3 {
  display: flex;
  align-items: center;
  color: #0071bc;
  font-family: "DIN Condensed";
  font-size: min(5rem, 80px);
  font-weight: 400;
  width: 100%;
  margin-bottom: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#company section h3 {
    font-size: 2.428rem;
    margin-bottom: 5.333vw;
  }
}
html body main#company section h3 span {
  display: flex;
  align-items: center;
  color: #000;
  font-size: min(1.25rem, 20px);
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#company section h3 span {
    font-size: 0.571rem;
    margin-top: 2.667vw;
  }
}
html body main#company section h3 span::before {
  content: "";
  width: min(2.083vw, 40px);
  height: 1px;
  background: #CCC;
  flex-grow: 1;
  margin: 0 min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#company section h3 span::before {
    width: 2.667vw;
    margin: 0 1.333vw;
  }
}
html body main#company section#greetings .inner {
  padding: min(5.208vw, 100px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#company section#greetings .inner {
    padding: 13.333vw 9.333vw 0;
  }
}
html body main#company section#greetings .inner > div {
  background: #2f435b;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#company section#greetings .inner > div {
    display: block;
  }
}
html body main#company section#greetings .inner > div > figure {
  flex-shrink: 0;
  width: min(23.958vw, 460px);
  aspect-ratio: 23/21;
}
@media screen and (max-width: 768px) {
  html body main#company section#greetings .inner > div > figure {
    width: 100%;
  }
}
html body main#company section#greetings .inner > div > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#company section#greetings .inner > div > div {
  width: 100%;
  padding: 0 min(3.125vw, 60px) 0 min(4.688vw, 90px);
}
@media screen and (max-width: 768px) {
  html body main#company section#greetings .inner > div > div {
    padding: 5.333vw 5.333vw;
  }
}
html body main#company section#greetings .inner > div > div h2 {
  margin-left: calc(-1 * min(1.302vw, 25px));
}
@media screen and (max-width: 768px) {
  html body main#company section#greetings .inner > div > div h2 {
    margin-left: -4vw;
  }
}
html body main#company section#greetings .inner > div > div h2 > div span {
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
  color: #fff;
  margin: 0 0 0 min(0.26vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#company section#greetings .inner > div > div h2 > div span {
    margin: 0 0 0 1.333vw;
  }
}
html body main#company section#greetings .inner > div > div h2 > div span::after {
  content: attr(data-subtitle);
  display: block;
  color: #fff;
  margin-top: 0;
  margin-left: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#company section#greetings .inner > div > div h2 > div span::after {
    margin-left: 2.667vw;
  }
}
html body main#company section#greetings .inner > div > div .comment {
  color: #fff;
  font-size: min(1rem, 16px);
  line-height: 1.75;
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#company section#greetings .inner > div > div .comment {
    font-size: 0.714rem;
    margin-top: 2.667vw;
  }
}
html body main#company section#greetings .inner > div > div .signature {
  text-align: right;
  color: #fff;
  font-size: min(1.5rem, 24px);
}
@media screen and (max-width: 768px) {
  html body main#company section#greetings .inner > div > div .signature {
    font-size: 0.857rem;
  }
}
html body main#company section#greetings .inner > div > div .signature span {
  font-size: min(0.875rem, 14px);
  vertical-align: baseline;
  margin-right: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#company section#greetings .inner > div > div .signature span {
    font-size: 0.571rem;
    margin-right: 2.667vw;
  }
}
html body main#company section#outline .inner {
  align-items: flex-start;
  width: min(52.083vw, 1000px);
  padding: min(5.208vw, 100px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#company section#outline .inner {
    padding: 13.333vw 9.333vw 0;
  }
}
html body main#company section#outline .inner > div {
  background: url("../img/bg_outline.png") repeat center top/min(2.708vw, 52px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: min(2.083vw, 40px) min(2.604vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#company section#outline .inner > div {
    flex-direction: column;
    justify-content: flex-start;
    gap: 5.333vw;
    padding: 5.333vw 5.333vw;
  }
}
html body main#company section#outline .inner > div div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#company section#outline .inner > div div {
    gap: 5.333vw;
  }
}
html body main#company section#outline .inner > div div dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
html body main#company section#outline .inner > div div dl dt {
  flex-shrink: 0;
  font-size: min(1rem, 16px);
  font-weight: 700;
  line-height: 1.75;
  width: min(6.25vw, 120px);
}
@media screen and (max-width: 768px) {
  html body main#company section#outline .inner > div div dl dt {
    font-size: 0.714rem;
    width: 21.333vw;
  }
}
html body main#company section#outline .inner > div div dl dd {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  font-size: min(1rem, 16px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#company section#outline .inner > div div dl dd {
    font-size: 0.714rem;
  }
}
html body main#company section#map .inner {
  align-items: flex-start;
  width: min(52.083vw, 1000px);
  padding: min(5.208vw, 100px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#company section#map .inner {
    padding: 13.333vw 9.333vw 0;
  }
}
html body main#company section#map .inner iframe {
  width: 100%;
  aspect-ratio: 200/91;
}
@media screen and (max-width: 768px) {
  html body main#company section#map .inner iframe {
    aspect-ratio: 1/1;
  }
}
html body main#company section#mascot .inner {
  align-items: flex-start;
  width: min(52.083vw, 1000px);
}
html body main#company section#mascot .inner figure {
  width: 100%;
}
html body main#company section#mascot .inner figure a {
  display: block;
}
html body main#company section#mascot .inner figure a img {
  border-radius: min(1.302vw, 25px);
}
@media screen and (max-width: 768px) {
  html body main#company section#mascot .inner figure a img {
    border-radius: 2.667vw;
  }
}
html body main#company section#mascot .inner figure figcaption {
  font-size: min(0.875rem, 14px);
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#company section#mascot .inner figure figcaption {
    font-size: 0.714rem;
    line-height: 1.75;
    margin-top: 2.667vw;
  }
}
html body main#volunteer section h3 {
  display: flex;
  align-items: center;
  color: #0071bc;
  font-family: "DIN Condensed";
  font-size: min(5rem, 80px);
  font-weight: 400;
  width: 100%;
  margin-bottom: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#volunteer section h3 {
    font-size: 2.428rem;
    margin-bottom: 5.333vw;
  }
}
html body main#volunteer section h3 span {
  display: flex;
  align-items: center;
  color: #000;
  font-size: min(1.25rem, 20px);
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#volunteer section h3 span {
    font-size: 0.571rem;
    margin-top: 2.667vw;
  }
}
html body main#volunteer section h3 span::before {
  content: "";
  width: min(2.083vw, 40px);
  height: 1px;
  background: #CCC;
  flex-grow: 1;
  margin: 0 min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#volunteer section h3 span::before {
    width: 2.667vw;
    margin: 0 1.333vw;
  }
}
html body main#volunteer section h4 {
  display: flex;
  justify-self: flex-start;
  align-items: flex-start;
  font-size: min(2.5rem, 40px);
  font-weight: 700;
  margin: 0 0 min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#volunteer section h4 {
    font-size: 1.142rem;
    margin: 0 0 5.333vw;
  }
}
html body main#volunteer section h4::before {
  content: "";
  display: block;
  background: #0071bc;
  width: min(0.26vw, 5px);
  height: min(1.823vw, 35px);
  margin-right: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#volunteer section h4::before {
    width: 1.333vw;
    height: 4vw;
    margin-right: 2.667vw;
  }
}
html body main#volunteer section#shelter .inner {
  padding: min(5.208vw, 100px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#shelter .inner {
    padding: 13.333vw 9.333vw 0;
  }
}
html body main#volunteer section#shelter .inner > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#shelter .inner > div {
    display: block;
  }
}
html body main#volunteer section#shelter .inner > div > div {
  width: 100%;
}
html body main#volunteer section#shelter .inner > div > div .comment {
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#shelter .inner > div > div .comment {
    font-size: 0.714rem;
  }
}
html body main#volunteer section#shelter .inner > div > div .comment:nth-of-type(2) {
  color: #027eda;
}
html body main#volunteer section#shelter .inner > div > div strong {
  display: block;
  font-size: min(1.5rem, 24px);
  font-weight: 700;
  margin: min(2.083vw, 40px) 0 min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#shelter .inner > div > div strong {
    font-size: 0.857rem;
    margin: 5.333vw 0 2.667vw;
  }
}
html body main#volunteer section#shelter .inner > div > figure {
  flex-shrink: 0;
  width: min(27.917vw, 536px);
  margin: 0 0 0 min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#shelter .inner > div > figure {
    width: 100%;
    margin: 5.333vw 0 0 0;
  }
}
html body main#volunteer section#gallery .inner {
  padding: min(5.208vw, 100px) 0 0;
  overflow: visible;
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#gallery .inner {
    padding: 13.333vw 9.333vw 0;
  }
}
html body main#volunteer section#gallery .inner strong {
  width: 100%;
  font-size: min(1.5rem, 24px);
  font-weight: 700;
  margin-bottom: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#gallery .inner strong {
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 5.333vw;
  }
}
html body main#volunteer section#gallery .inner .swiper-container {
  background: #333;
  width: 100vw;
  padding: min(1.042vw, 20px) 0;
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#gallery .inner .swiper-container {
    padding: 2.667vw 0;
  }
}
html body main#volunteer section#gallery .inner .swiper-container .swiper-wrapper .swiper-slide figure {
  width: 100%;
  aspect-ratio: 533/300;
}
html body main#volunteer section#gallery .inner .swiper-container .swiper-wrapper .swiper-slide figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#volunteer section#mascot .inner {
  align-items: flex-start;
  width: min(52.083vw, 1000px);
  padding: min(5.208vw, 100px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#mascot .inner {
    padding: 13.333vw 9.333vw 0;
  }
}
html body main#volunteer section#mascot .inner figure {
  width: 100%;
}
html body main#volunteer section#mascot .inner figure img {
  border-radius: min(1.302vw, 25px);
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#mascot .inner figure img {
    border-radius: 2.667vw;
  }
}
html body main#volunteer section#mascot .inner figure figcaption {
  font-size: min(0.875rem, 14px);
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#mascot .inner figure figcaption {
    font-size: 0.714rem;
    line-height: 1.75;
    margin-top: 2.667vw;
  }
}
html body main#volunteer section#mascot .inner ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: min(1.042vw, 20px);
  width: 100%;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#mascot .inner ul {
    gap: 5.333vw;
    margin-top: 10.667vw;
  }
}
html body main#volunteer section#mascot .inner ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: min(1.042vw, 20px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#mascot .inner ul li {
    gap: 2.667vw;
  }
}
html body main#volunteer section#mascot .inner ul li img {
  flex-shrink: 0;
}
html body main#volunteer section#mascot .inner ul li img:nth-of-type(1) {
  width: min(6.25vw, 120px);
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#mascot .inner ul li img:nth-of-type(1) {
    width: 16vw;
  }
}
html body main#volunteer section#mascot .inner ul li img:nth-of-type(2) {
  width: min(4.323vw, 83px);
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#mascot .inner ul li img:nth-of-type(2) {
    width: 10.667vw;
  }
}
html body main#volunteer section#mascot .inner ul li p {
  font-size: min(1.25rem, 20px);
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#mascot .inner ul li p {
    font-size: 0.714rem;
  }
}
html body main#volunteer section#donation .inner {
  padding: min(5.208vw, 100px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#donation .inner {
    padding: 13.333vw 9.333vw 0;
  }
}
html body main#volunteer section#donation .inner > div, html body main#volunteer section#cleaning .inner > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#donation .inner > div, html body main#volunteer section#cleaning .inner > div {
    display: block;
  }
}
html body main#volunteer section#donation .inner > div div, html body main#volunteer section#cleaning .inner > div div {
  width: 100%;
}
html body main#volunteer section#donation .inner > div div h4, html body main#volunteer section#cleaning .inner > div div h4 {
  margin-top: 0;
}
html body main#volunteer section#donation .inner > div div em, html body main#volunteer section#cleaning .inner > div div em {
  font-size: min(1.5rem, 24px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#donation .inner > div div em, html body main#volunteer section#cleaning .inner > div div em {
    font-size: 1rem;
  }
}
html body main#volunteer section#donation .inner > div div .comment, html body main#volunteer section#cleaning .inner > div div .comment {
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#donation .inner > div div .comment, html body main#volunteer section#cleaning .inner > div div .comment {
    font-size: 0.714rem;
    margin-top: 2.667vw;
  }
}
html body main#volunteer section#donation .inner > div > figure, html body main#volunteer section#cleaning .inner > div > figure {
  flex-shrink: 0;
  width: min(31.406vw, 603px);
  margin: 0 0 0 min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#volunteer section#donation .inner > div > figure, html body main#volunteer section#cleaning .inner > div > figure {
    width: 100%;
    margin: 5.333vw 0 0 0;
  }
}
html body main#privacy section#contents .inner {
  align-items: flex-start;
  width: min(52.083vw, 1000px);
}
html body main#privacy section#contents .inner strong {
  font-size: min(1rem, 16px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#contents .inner strong {
    font-size: 0.714rem;
  }
}
html body main#privacy section#contents .inner em {
  display: block;
  width: 100%;
  font-size: min(1.5rem, 24px);
  font-weight: 700;
  padding-bottom: min(1.042vw, 20px);
  border-bottom: 1px #000 solid;
  margin: min(3.125vw, 60px) 0 min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#contents .inner em {
    font-size: 1rem;
    padding-bottom: 2.667vw;
    margin: 10.667vw 0 2.667vw;
  }
}
html body main#privacy section#contents .inner p {
  font-size: min(1rem, 16px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#contents .inner p {
    font-size: 0.714rem;
  }
}
html body main#privacy section#contents .inner p:last-of-type {
  font-size: min(1.125rem, 18px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#contents .inner p:last-of-type {
    font-size: 0.857rem;
  }
}
html body main#privacy section#contents .inner p a {
  color: #000;
}
html body main#privacy section#contents .inner ul li {
  font-size: min(1rem, 16px);
  line-height: 1.75;
  text-indent: -1em;
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#contents .inner ul li {
    font-size: 0.714rem;
  }
}
html body main#privacy section#contents .inner ul li::before {
  content: "・";
}
html body main#privacy section#contents .inner b {
  font-size: min(1.25rem, 20px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#contents .inner b {
    font-size: 1rem;
  }
}
html body main#contact > .step {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(52.083vw, 1000px);
  padding: min(5.208vw, 100px) 0 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#contact > .step {
    width: 100%;
    padding: 13.333vw 0 0;
  }
}
html body main#contact > .step li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
html body main#contact > .step li .txt {
  text-align: center;
  font-size: min(1.125rem, 18px);
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  html body main#contact > .step li .txt {
    font-size: 0.714rem;
  }
}
html body main#contact > .step li .circle {
  flex-shrink: 0;
  width: min(1.563vw, 30px);
  height: min(1.563vw, 30px);
  background: #e6e6e6;
  border-radius: 50%;
  margin-top: min(0.521vw, 10px);
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#contact > .step li .circle {
    width: 5.333vw;
    height: 5.333vw;
    margin-top: 2.667vw;
  }
}
html body main#contact > .step li .circle::after {
  content: "";
  position: absolute;
  top: calc(min(0.781vw, 15px) - 1px);
  left: 50%;
  width: min(17.188vw, 330px);
  height: 2px;
  background: #e6e6e6;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  html body main#contact > .step li .circle::after {
    top: calc(2.667vw - 1px);
    width: 32.558vw;
  }
}
html body main#contact > .step li:last-child .circle::after {
  width: 0;
}
html body main#contact > .step li.active .circle {
  background: #000;
}
html body main#contact section#inquiry .inner {
  width: min(52.083vw, 1000px);
  padding: min(5.208vw, 100px) 0;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner {
    padding: 13.333vw 0;
  }
}
html body main#contact section#inquiry .inner .note p {
  text-align: center;
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .note p {
    text-align: left;
    font-size: 0.714rem;
    padding: 0 9.333vw;
  }
}
html body main#contact section#inquiry .inner .note p:last-of-type {
  color: #ce000d;
}
html body main#contact section#inquiry .inner form {
  width: 100%;
}
html body main#contact section#inquiry .inner form .bg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #e6e6e6;
  width: 100%;
  padding: min(1.042vw, 20px) min(2.604vw, 50px) min(2.083vw, 40px);
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .bg {
    padding: 5.333vw 9.333vw;
    margin-top: 8vw;
  }
}
html body main#contact section#inquiry .inner form .btn_area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .btn_area {
    margin-top: 5.333vw;
  }
}
html body main#contact section#inquiry .inner form .btn_area p {
  text-align: center;
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
  margin-bottom: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .btn_area p {
    text-align: left;
    font-size: 0.714rem;
    margin-bottom: 2.667vw;
  }
}
html body main#contact section#inquiry .inner form .btn_area p a {
  text-decoration: underline;
}
html body main#contact section#inquiry .inner form .btn_area .btn_confirm {
  background: #dcc196 url(../img/btn_arrow.svg) no-repeat right min(0.781vw, 15px) center/min(0.573vw, 11px);
  width: min(9.375vw, 180px);
  aspect-ratio: 4/1;
  font-size: min(0.875rem, 14px);
  padding: 0;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .btn_area .btn_confirm {
    background: #dcc196 url(../img/btn_arrow.svg) no-repeat right 2.667vw center/1.867vw;
    font-size: 0.714rem;
    width: 40vw;
  }
}
html body main#contact section#inquiry .inner form .btn_area .btn_submit {
  background: #dcc196 url(../img/btn_arrow.svg) no-repeat right min(0.781vw, 15px) center/min(0.573vw, 11px);
  width: min(9.375vw, 180px);
  aspect-ratio: 4/1;
  font-size: min(0.875rem, 14px);
  padding: 0;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .btn_area .btn_submit {
    background: #dcc196 url(../img/btn_arrow.svg) no-repeat right 2.667vw center/1.867vw;
    font-size: 0.714rem;
    width: 40vw;
  }
}
html body main#contact section#inquiry .inner form .btn_area .btn_fixes {
  background: #dcc196 url(../img/btn_arrow.svg) no-repeat right min(0.781vw, 15px) center/min(0.573vw, 11px);
  width: min(9.375vw, 180px);
  aspect-ratio: 4/1;
  font-size: min(0.875rem, 14px);
  padding: 0;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .btn_area .btn_fixes {
    background: #dcc196 url(../img/btn_arrow.svg) no-repeat right 2.667vw center/1.867vw;
    font-size: 0.714rem;
    width: 40vw;
  }
}
html body main#contact section#inquiry .inner form .must {
  background: #ce000d;
  color: #fff;
  font-size: min(0.75rem, 12px);
  padding: min(0.26vw, 5px) min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .must {
    font-size: 0.571rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#contact section#inquiry .inner form .w30 {
  width: 30% !important;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .w30 {
    width: 40% !important;
  }
}
html body main#contact section#inquiry .inner form .w30 + input {
  width: 100%;
  margin-top: 10px;
}
html body main#contact section#inquiry .inner form .w20 {
  width: 20% !important;
}
html body main#contact section#inquiry .inner form span.error {
  display: block;
  text-align: left;
  margin-top: min(0.26vw, 5px);
  flex-basis: 100%;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form span.error {
    margin-top: 1.333vw;
  }
}
html body main#contact section#inquiry .inner form dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: min(1.042vw, 20px) 0;
  border-bottom: 1px #000 solid;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form dl {
    flex-direction: column;
    padding: 5.333vw 0;
  }
}
html body main#contact section#inquiry .inner form dl:last-of-type {
  border: none;
}
html body main#contact section#inquiry .inner form dl dt {
  flex-shrink: 0;
  width: 25%;
  margin: 0 min(1.563vw, 30px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form dl dt {
    width: 100%;
    margin: 0 0 2.667vw 0;
  }
}
html body main#contact section#inquiry .inner form dl dt .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: min(1rem, 16px);
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form dl dt .wrap {
    font-size: 1rem;
  }
}
html body main#contact section#inquiry .inner form dl dd {
  display: flex;
  align-items: center;
  width: 100%;
}
html body main#contact section#inquiry .inner form dl dd .wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  font-size: min(1rem, 16px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form dl dd .wrap {
    font-size: 0.714rem;
  }
}
html body main#contact section#inquiry .inner form dl dd .wrap.birthWrap {
  flex-direction: row;
  gap: 1em;
  align-items: center;
}
html body main#contact section#inquiry .inner form :is(input:not([type=file]):not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea) {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px #000 solid;
  color: #000;
  font-size: min(1rem, 16px);
  letter-spacing: 1px;
  width: 100%;
  height: min(3.125vw, 60px);
  padding: min(0.26vw, 5px) min(0.521vw, 10px);
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form :is(input:not([type=file]):not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea) {
    font-size: 0.714rem;
    height: 13.333vw;
    padding: 1.333vw 2.667vw;
  }
}
html body main#contact section#inquiry .inner form :is(input:not([type=file]):not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea):focus {
  outline: none;
}
html body main#contact section#inquiry .inner form textarea {
  height: min(10.417vw, 200px) !important;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form textarea {
    height: 53.333vw !important;
  }
}
html body main#contact section#inquiry .inner form input[type=file] {
  font-size: min(1rem, 16px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form input[type=file] {
    font-size: 0.714rem;
  }
}
html body main#contact section#inquiry .inner form .select {
  width: 100%;
  position: relative;
}
html body main#contact section#inquiry .inner form .select::after {
  content: "";
  display: block;
  width: min(0.26vw, 5px);
  height: min(0.26vw, 5px);
  border-width: 0 2px 2px 0;
  border-color: #000;
  border-style: solid;
  position: absolute;
  right: min(0.521vw, 10px);
  top: calc(50% - min(0.26vw, 5px));
  transform-origin: center;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .select::after {
    width: 1.333vw;
    height: 1.333vw;
    right: 2.667vw;
    top: calc(50% - 1.333vw);
  }
}
html body main#contact section#inquiry .inner form .radio {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
html body main#contact section#inquiry .inner form .radio input[type=radio] {
  position: absolute;
  visibility: hidden;
  width: auto;
}
html body main#contact section#inquiry .inner form .radio .mwform-radio-field label {
  display: flex;
}
html body main#contact section#inquiry .inner form .radio .mwform-radio-field label .mwform-radio-field-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(1rem, 16px);
  margin: 0 min(1.042vw, 20px) 0 0;
  line-height: 1;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .radio .mwform-radio-field label .mwform-radio-field-text {
    font-size: 0.714rem;
    margin: 0 5.333vw 0 0;
  }
}
html body main#contact section#inquiry .inner form .radio .mwform-radio-field label .mwform-radio-field-text::before {
  content: "";
  display: inline-block;
  position: relative;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  margin: 0 min(0.521vw, 10px) 0 0;
  border: 1px solid #000;
  background: #fff;
  box-sizing: border-box;
  border-radius: 50%;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .radio .mwform-radio-field label .mwform-radio-field-text::before {
    margin: 0 2.667vw 0 0;
  }
}
html body main#contact section#inquiry .inner form .radio input[type=radio]:checked + .mwform-radio-field-text::before {
  border: 1px solid #000;
}
html body main#contact section#inquiry .inner form .radio input[type=radio]:checked + .mwform-radio-field-text::after {
  display: inline-block;
  position: absolute;
  left: 5px;
  content: "";
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  box-sizing: border-box;
  vertical-align: middle;
}
html body main#contact section#inquiry .inner form .check {
  font-size: min(1rem, 16px);
  line-height: 1.25;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .check {
    font-size: 0.714rem;
  }
}
html body main#contact section#inquiry .inner form .check input[type=checkbox] {
  position: absolute;
  visibility: hidden;
  width: auto;
}
html body main#contact section#inquiry .inner form .check .mwform-checkbox-field {
  display: block;
}
html body main#contact section#inquiry .inner form .check .mwform-checkbox-field label {
  display: flex;
}
html body main#contact section#inquiry .inner form .check .mwform-checkbox-field label .mwform-checkbox-field-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(1rem, 16px);
  line-height: 1.25;
  margin: 0;
  cursor: pointer;
  position: relative;
  padding: 0 0 0 calc(20px + min(0.521vw, 10px));
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .check .mwform-checkbox-field label .mwform-checkbox-field-text {
    font-size: 0.714rem;
    padding: 0 0 0 calc(20px + 2.667vw);
  }
}
html body main#contact section#inquiry .inner form .check .mwform-checkbox-field label .mwform-checkbox-field-text::before, html body main#contact section#inquiry .inner form .check .mwform-checkbox-field label .mwform-checkbox-field-text::after {
  content: "";
  display: inline-block;
  position: absolute;
}
html body main#contact section#inquiry .inner form .check .mwform-checkbox-field label .mwform-checkbox-field-text::before {
  top: 50%;
  transform: translate(-50%);
  left: 0;
  background: #fff;
  border: 1px solid #000;
  width: 20px;
  height: 20px;
  margin: 0;
  transform: translateY(-50%);
  box-sizing: border-box;
  border-radius: 0;
}
html body main#contact section#inquiry .inner form .check .mwform-checkbox-field label .mwform-checkbox-field-text::after {
  top: calc(50% - min(0.208vw, 4px));
  transform: translate(-50%, -50%);
  left: 3px;
  border-width: 2px;
  border-color: transparent transparent #000 #000;
  border-style: solid;
  width: 10px;
  height: 5px;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .check .mwform-checkbox-field label .mwform-checkbox-field-text::after {
    top: calc(50% - 0.8vw);
  }
}
html body main#contact section#inquiry .inner form .check input[type=checkbox]:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
}
html body main#contact section#inquiry .inner .mw_wp_form_confirm {
  width: 100%;
}
html body main#contact section#inquiry .inner .mw_wp_form_confirm .select::after {
  content: none;
}
html body main#complete > .step {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(52.083vw, 1000px);
  padding: min(5.208vw, 100px) 0 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#complete > .step {
    width: 100%;
    padding: 13.333vw 0 0;
  }
}
html body main#complete > .step li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
html body main#complete > .step li .txt {
  text-align: center;
  font-size: min(1.125rem, 18px);
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  html body main#complete > .step li .txt {
    font-size: 0.714rem;
  }
}
html body main#complete > .step li .circle {
  flex-shrink: 0;
  width: min(1.563vw, 30px);
  height: min(1.563vw, 30px);
  background: #e6e6e6;
  border-radius: 50%;
  margin-top: min(0.521vw, 10px);
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#complete > .step li .circle {
    width: 5.333vw;
    height: 5.333vw;
    margin-top: 2.667vw;
  }
}
html body main#complete > .step li .circle::after {
  content: "";
  position: absolute;
  top: calc(min(0.781vw, 15px) - 1px);
  left: 50%;
  width: min(17.188vw, 330px);
  height: 2px;
  background: #e6e6e6;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  html body main#complete > .step li .circle::after {
    top: calc(2.667vw - 1px);
    width: 32.558vw;
  }
}
html body main#complete > .step li:last-child .circle::after {
  width: 0;
}
html body main#complete > .step li.active .circle {
  background: #000;
}
html body main#complete section#contents .inner {
  width: min(52.083vw, 1000px);
  padding: min(3.646vw, 70px) 0;
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner {
    padding: 13.333vw 9.333vw;
  }
}
html body main#complete section#contents .inner > strong {
  font-size: min(1.125rem, 18px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > strong {
    text-align: center;
    font-size: 0.857rem;
    line-height: 1.75;
  }
}
html body main#complete section#contents .inner > .comment {
  text-align: center;
  font-size: min(1rem, 16px);
  line-height: 2;
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > .comment {
    font-size: 0.714rem;
    margin-top: 5.333vw;
  }
}
html body main#complete section#contents .inner > div {
  border-radius: min(1.042vw, 20px);
  background: #e6e6e6;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  width: 62%;
  padding: min(1.042vw, 20px) min(2.083vw, 40px);
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > div {
    border-radius: 1.333vw;
    width: 100%;
    padding: 5.333vw;
    margin-top: 5.333vw;
  }
}
html body main#complete section#contents .inner > div > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > div > div {
    flex-direction: column;
  }
}
html body main#complete section#contents .inner > div > div figure {
  width: min(2.083vw, 40px);
  margin: 0 min(1.042vw, 20px) 0 0;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > div > div figure {
    width: 10.667vw;
    margin: 0 0 2.667vw 0;
  }
}
html body main#complete section#contents .inner > div > div div {
  width: 100%;
}
html body main#complete section#contents .inner > div > div div p {
  font-size: min(0.875rem, 14px);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > div > div div p {
    font-size: 0.714rem;
  }
}
html body main#complete section#contents .inner > div > em {
  font-size: min(1rem, 16px);
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > div > em {
    font-size: 0.857rem;
    margin-top: 5.333vw;
  }
}
html body main#complete section#contents .inner > div > p {
  text-align: center;
  font-size: min(0.875rem, 14px);
  line-height: 2;
  margin-top: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > div > p {
    font-size: 0.714rem;
    margin-top: 2.667vw;
  }
}
html body main#complete section#contents .inner > div > p a {
  color: #000;
}
html body main#notfound section#illust {
  margin-top: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#illust {
    margin-top: min(13.333vw, 50px);
  }
}
html body main#notfound section#illust .inner {
  padding: 0;
}
@media screen and (max-width: 768px) {
  html body main#notfound section#illust .inner {
    padding: 0 min(5.333vw, 20px);
  }
}
html body main#notfound section#contents .inner .comment {
  text-align: center;
  font-size: min(fs16, 16px);
  line-height: 1.75;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#contents .inner .comment {
    margin-top: min(5.333vw, 20px);
  }
}
html body main#page section#contents .inner p {
  font-size: min(1rem, 16px);
  line-height: 1.75;
}
html body .btn_common {
  width: min(11.458vw, 220px);
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body .btn_common {
    width: 40vw;
    margin-top: 5.333vw;
  }
}
html body .btn_common a {
  background: #dcc196 url(../img/btn_arrow.svg) no-repeat right min(0.781vw, 15px) center/min(0.573vw, 11px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  font-size: min(0.875rem, 14px);
  aspect-ratio: 4/1;
  padding: 0 min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body .btn_common a {
    background: #dcc196 url(../img/btn_arrow.svg) no-repeat right 2.667vw center/1.867vw;
    font-size: 0.714rem;
    padding: 0 2.667vw;
  }
}
html body .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(0.521vw, 10px);
  margin: 0 auto min(5.208vw, 100px);
  position: relative;
}
@media screen and (max-width: 768px) {
  html body .pagination {
    gap: 2.667vw;
    margin: 0 auto 13.333vw;
  }
}
html body .pagination li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #000;
  height: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body .pagination li a {
    height: 8vw;
  }
}
html body .pagination li a span {
  font-size: min(1rem, 16px);
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  html body .pagination li a span {
    font-size: 0.857rem;
  }
}
html body .pagination li .page-numbers {
  font-size: min(1rem, 16px);
  width: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body .pagination li .page-numbers {
    font-size: 0.857rem;
    width: 8vw;
  }
}
html body .pagination li .page-numbers.current {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  color: #fff;
  font-size: min(1rem, 16px);
  height: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body .pagination li .page-numbers.current {
    font-size: 0.857rem;
    height: 8vw;
  }
}
html body #sidebar {
  width: 20%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  html body #sidebar {
    width: 100%;
    margin-top: 2.667vw;
  }
}
html body #sidebar h3 {
  display: block !important;
  color: #0071bc;
  font-family: "LINE Seed JP" !important;
  font-size: min(1.5rem, 24px) !important;
  font-weight: 700 !important;
  padding-bottom: min(0.521vw, 10px) !important;
  border-bottom: 1px #0071bc solid !important;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 768px) {
  html body #sidebar h3 {
    font-size: 1rem !important;
    padding-bottom: 2.667vw !important;
    margin-top: 5.333vw !important;
  }
}
html body #sidebar h3:nth-of-type(n+2) {
  margin-top: min(2.083vw, 40px);
}
html body #sidebar > ul li a {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: min(1.042vw, 20px) min(0.521vw, 10px);
  border-bottom: 1px #D1D1D1 solid;
  transition: all 0.5s ease;
}
@media screen and (max-width: 768px) {
  html body #sidebar > ul li a {
    padding: 5.333vw 2.667vw;
  }
}
html body #sidebar > ul li a:hover {
  filter: alpha(opacity=50);
  opacity: 0.5;
}
html body #sidebar > ul li a span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #373739;
  font-size: 1rem;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  html body #sidebar > ul li a span {
    font-size: 0.714rem;
  }
}
html body #sidebar > ul li a span::before {
  content: "-";
}
html body #sidebar .select {
  width: 100%;
  margin-top: min(1.042vw, 20px);
  position: relative;
}
@media screen and (max-width: 768px) {
  html body #sidebar .select {
    margin-top: 5.333vw;
  }
}
html body #sidebar .select::after {
  content: "";
  display: block;
  width: min(0.26vw, 5px);
  height: min(0.26vw, 5px);
  border-width: 0 2px 2px 0;
  border-color: #000;
  border-style: solid;
  position: absolute;
  right: min(0.521vw, 10px);
  top: calc(50% - min(0.26vw, 5px));
  transform-origin: center;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  html body #sidebar .select::after {
    width: 1.333vw;
    height: 1.333vw;
    right: 2.667vw;
    top: calc(50% - 1.333vw);
  }
}
html body #sidebar .select select {
  display: flex;
  align-items: center;
  background: #e6e6e6;
  border-radius: min(0.26vw, 5px);
  border: none;
  font-size: 1rem;
  letter-spacing: 1px;
  width: 100%;
  height: min(2.083vw, 40px);
  padding: min(0.26vw, 5px) min(0.521vw, 10px);
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
@media screen and (max-width: 768px) {
  html body #sidebar .select select {
    border-radius: 1.333vw;
    font-size: 0.714rem;
    height: 10.667vw;
    padding: 1.333vw 2.667vw;
  }
}
html body footer .inner {
  margin: 0 auto;
}
html body footer .inner:nth-of-type(1) {
  background: #2f435b;
}
html body footer .inner:nth-of-type(1) ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: min(78.125vw, 1500px);
  margin: 0 auto;
  border-left: 1px #fff solid;
  border-right: 1px #fff solid;
}
@media screen and (max-width: 768px) {
  html body footer .inner:nth-of-type(1) ul {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
    border: none;
  }
}
html body footer .inner:nth-of-type(1) ul li a {
  background: url(../img/btn_arrow_wt.svg) no-repeat right min(2.604vw, 50px) center/min(0.573vw, 11px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: min(5.208vw, 100px);
  padding-left: min(3.125vw, 60px);
}
@media screen and (max-width: 768px) {
  html body footer .inner:nth-of-type(1) ul li a {
    background: url(../img/btn_arrow_wt.svg) no-repeat right 9.333vw center/1.867vw;
    height: 13.333vw;
    padding-left: 9.333vw;
  }
}
html body footer .inner:nth-of-type(1) ul li a span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
  font-size: min(1rem, 16px);
}
@media screen and (max-width: 768px) {
  html body footer .inner:nth-of-type(1) ul li a span {
    font-size: 0.75rem;
  }
}
html body footer .inner:nth-of-type(1) ul li a span::before {
  content: "";
  width: min(1.25vw, 24px);
  aspect-ratio: 1/1;
  margin-right: min(0.521vw, 10px);
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  html body footer .inner:nth-of-type(1) ul li a span::before {
    width: 3.2vw;
    margin-right: 2.667vw;
  }
}
html body footer .inner:nth-of-type(1) ul li:nth-of-type(1) a span::before {
  background: url("../img/icon_web.svg") no-repeat center/cover;
}
html body footer .inner:nth-of-type(1) ul li:nth-of-type(2) {
  border-left: 1px #fff solid;
}
@media screen and (max-width: 768px) {
  html body footer .inner:nth-of-type(1) ul li:nth-of-type(2) {
    border-left: none;
    border-top: 1px #fff solid;
  }
}
html body footer .inner:nth-of-type(1) ul li:nth-of-type(2) a span::before {
  background: url("../img/icon_tel.svg") no-repeat center/cover;
}
html body footer .inner:nth-of-type(2) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(78.125vw, 1500px);
  padding: min(5.208vw, 100px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body footer .inner:nth-of-type(2) {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 8vw 0;
  }
}
html body footer .inner:nth-of-type(2) p {
  color: #CCC;
  font-family: "DIN Condensed";
  font-size: min(6.25rem, 100px);
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  html body footer .inner:nth-of-type(2) p {
    font-size: 10.667vw;
  }
}
html body footer .inner:nth-of-type(2) div {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body footer .inner:nth-of-type(2) div {
    margin-top: 5.333vw;
  }
}
html body footer .inner:nth-of-type(2) div h1 {
  width: min(11.563vw, 222px);
}
@media screen and (max-width: 768px) {
  html body footer .inner:nth-of-type(2) div h1 {
    width: 29.6vw;
  }
}
html body footer .inner:nth-of-type(2) div address {
  margin-left: min(2.604vw, 50px);
  border-left: min(0.26vw, 5px) #000 solid;
  padding-left: min(2.604vw, 50px);
  font-size: min(1rem, 16px);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  html body footer .inner:nth-of-type(2) div address {
    margin-left: 2.667vw;
    border-left: 0.8vw #000 solid;
    padding-left: 2.667vw;
    font-size: 0.571rem;
  }
}
html body footer .inner:nth-of-type(3) {
  border-top: 1px #e6e6e6 solid;
}
html body footer .inner:nth-of-type(3) ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body footer .inner:nth-of-type(3) ul li {
    width: 50%;
  }
}
html body footer .inner:nth-of-type(3) ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(1rem, 16px);
  width: min(12.24vw, 200px);
  height: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body footer .inner:nth-of-type(3) ul li a {
    font-size: 0.75rem;
    width: 100%;
    height: 13.333vw;
  }
}
html body footer .copyright {
  background: url("../img/bg_footer.png") no-repeat center top/cover;
  aspect-ratio: 96/7;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  html body footer .copyright {
    background: url("../img/bg_footer_sp.png") no-repeat center top/cover;
    aspect-ratio: 75/14;
  }
}
html body footer .copyright small {
  display: flex;
  justify-content: center;
  align-items: center;
  height: min(7.292vw, 140px);
  color: #808080;
  font-size: min(0.75rem, 12px);
  margin-bottom: min(2.604vw, 50px);
}
@media screen and (max-width: 768px) {
  html body footer .copyright small {
    height: 18.667vw;
    font-size: 0.571rem;
    margin-bottom: 0;
  }
}
html .pagetop {
  display: none;
  width: min(3.542vw, 68px);
  position: fixed;
  right: min(4.688vw, 90px);
  bottom: min(1.563vw, 30px);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  html .pagetop {
    width: 8vw;
    right: 2.667vw;
    bottom: 2.667vw;
  }
}

/* 2025-08-18 Masago */
#mainvisual-fv {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #2f435b;
  -webkit-mask: url(../img/sb_fv_mask_sp.svg) center no-repeat;
          mask: url(../img/sb_fv_mask_sp.svg) center no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
}
@media screen and (min-width: 768px) {
  #mainvisual-fv {
    -webkit-mask-image: url(../img/sb_fv_mask_pc.svg);
            mask-image: url(../img/sb_fv_mask_pc.svg);
  }
}
#mainvisual-fv:before {
  position: relative;
  display: block;
  padding-top: 117.8666666%;
  content: "";
}
@media screen and (min-width: 768px) {
  #mainvisual-fv:before {
    padding-top: 46.3541666%;
  }
}
#mainvisual-fv__slide {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
}
#mainvisual-fv .slick-list, #mainvisual-fv .slick-track, #mainvisual-fv .slick-item {
  height: 100%;
}
#mainvisual-fv .slick-item > img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=style.css.map */